Imported Upstream version 16.0.1 09/94709/1
authorDongHun Kwak <dh0128.kwak@samsung.com>
Tue, 1 Nov 2016 02:11:26 +0000 (11:11 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Tue, 1 Nov 2016 02:11:27 +0000 (11:11 +0900)
Change-Id: I33b12c915493858e51a4c3b0b14036de7d0d75ba
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
69 files changed:
VERSION.cmake
package/libzypp.changes
po/CMakeLists.txt
po/PotfileUpadte.sh [new file with mode: 0755]
po/af.po
po/ar.po
po/be.po
po/bg.po
po/bn.po
po/bs.po
po/ca.po
po/cs.po
po/cy.po
po/da.po
po/de.po
po/el.po
po/en_GB.po
po/en_US.po
po/eo.po
po/es.po
po/et.po
po/eu.po
po/fa.po
po/fi.po
po/fr.po
po/gl.po
po/gu.po
po/he.po
po/hi.po
po/hr.po
po/hu.po
po/id.po
po/it.po
po/ja.po
po/ka.po
po/km.po
po/ko.po
po/ku.po
po/lo.po
po/lt.po
po/mk.po
po/mr.po
po/nb.po
po/nds.po
po/nl.po
po/nn.po
po/pa.po
po/pl.po
po/pt.po
po/pt_BR.po
po/ro.po
po/ru.po
po/si.po
po/sk.po
po/sl.po
po/sr.po
po/sv.po
po/ta.po
po/tg.po
po/th.po
po/tr.po
po/uk.po
po/vi.po
po/wa.po
po/xh.po
po/zh_CN.po
po/zh_TW.po
po/zu.po
zypp/base/DefaultIntegral.h

index 845cc33..25d3b46 100644 (file)
@@ -61,8 +61,8 @@
 SET(LIBZYPP_MAJOR "16")
 SET(LIBZYPP_COMPATMINOR "0")
 SET(LIBZYPP_MINOR "0")
-SET(LIBZYPP_PATCH "0")
+SET(LIBZYPP_PATCH "1")
 #
-# LAST RELEASED: 16.0.0 (0)
+# LAST RELEASED: 16.0.1 (0)
 # (The number in parenthesis is LIBZYPP_COMPATMINOR)
 #=======
index b6a334e..923ddd8 100644 (file)
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Sun Jun  5 16:12:42 CEST 2016 - ma@suse.de
+
+- po: upadte makefiles
+- DefaultIntegral: provide asString (for FATE#320447)
+- version 16.0.1 (0)
+
+-------------------------------------------------------------------
 Fri May 13 08:45:53 CEST 2016 - ma@suse.de
 
 - Prepare cmake to maintain the .pot and .po files in git. Add
index 23cf304..18e8b22 100644 (file)
@@ -1,37 +1,69 @@
 # Translation set name
 SET( POT_NAME "zypp" )
 
-SET( POT_FILE ${CMAKE_CURRENT_SOURCE_DIR}/${POT_NAME}.pot )
-SET( NEW_POT_FILE ${CMAKE_CURRENT_BINARY_DIR}/${POT_NAME}.pot )
-
-FILE( GLOB PO_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*.po" )
-
-# Provides the 'translations' target that
-# creates the .gmo files out of the .po files
-GETTEXT_CREATE_TRANSLATIONS( ${POT_FILE} "ALL" ${PO_FILES} )
-
-# Creating the .pot file and preparing the .po files.
+# Creating the .pot file....
 # POT_FILE_DEPENDS was set in ../src
-# Don't update for changed line numbers only.
+SET( POT_FILE ${CMAKE_CURRENT_BINARY_DIR}/${POT_NAME}.pot )
+
 SET( XGETTEXT_CMD "xgettext" )
 SET( XGETTEXT_OPTIONS -L C++ --boost --no-wrap --add-comments --add-location --foreign-user )
 SET( XGETTEXT_OPTIONS ${XGETTEXT_OPTIONS} --keyword=_ --keyword=_:1,2 --keyword=__ --keyword=N_ --keyword=PL_:1,2 )
 SET( XGETTEXT_OPTIONS ${XGETTEXT_OPTIONS} --copyright-holder=\"SuSE Linux GmbH, Nuernberg\" )
 SET( XGETTEXT_OPTIONS ${XGETTEXT_OPTIONS} --package-name=${POT_NAME} --default-domain=${POT_NAME} )
 
-ADD_CUSTOM_COMMAND( OUTPUT ${NEW_POT_FILE}
-  COMMAND ${XGETTEXT_CMD} ${XGETTEXT_OPTIONS} --output=${NEW_POT_FILE} ${POT_FILE_DEPENDS}
+SET( _abs_POT_FILE_DEPENDS )
+FOREACH( _currentDepends ${POT_FILE_DEPENDS} )
+  SET( _abs_POT_FILE_DEPENDS ${_abs_POT_FILE_DEPENDS} ${LIBZYPP_SOURCE_DIR}/${_currentDepends} )
+ENDFOREACH()
+
+ADD_CUSTOM_COMMAND( OUTPUT ${POT_FILE}
+  COMMAND ${XGETTEXT_CMD} ${XGETTEXT_OPTIONS} --output=${POT_FILE} ${POT_FILE_DEPENDS}
   WORKING_DIRECTORY ${LIBZYPP_SOURCE_DIR}
-  COMMENT "Extract translatable messages to ${NEW_POT_FILE}"
+  DEPENDS ${_abs_POT_FILE_DEPENDS}
+  COMMENT "Extract translatable messages to ${POT_FILE}"
 )
 
-ADD_CUSTOM_COMMAND( OUTPUT ${POT_FILE}
-  COMMAND diff -u -I ^\#: -I ^.POT-Creation-Date: ${POT_FILE} ${NEW_POT_FILE} || cp -v ${NEW_POT_FILE} ${POT_FILE} && touch -t 200001010000 ${NEW_POT_FILE}
-  DEPENDS ${NEW_POT_FILE}
-  COMMENT "Update translatable messages in ${POT_FILE}"
+
+# Creating the .gmo files out of the .po files
+FILE( GLOB PO_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*.po" )
+
+SET( GMO_FILES )
+FOREACH( _currentPoFile ${PO_FILES} )
+  GET_FILENAME_COMPONENT( _absFile ${_currentPoFile} ABSOLUTE )
+  GET_FILENAME_COMPONENT( _lang ${_absFile} NAME_WE )
+
+  SET( _poFile ${CMAKE_CURRENT_BINARY_DIR}/${_lang}.po )
+  SET( _gmoFile ${CMAKE_CURRENT_BINARY_DIR}/${_lang}.gmo )
+
+  ADD_CUSTOM_COMMAND( OUTPUT ${_gmoFile}
+    COMMAND ${GETTEXT_MSGMERGE_EXECUTABLE} --quiet -o ${_poFile} ${_absFile} ${POT_FILE}
+    COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} -o ${_gmoFile} ${_poFile}
+    DEPENDS ${POT_FILE} ${_absFile}
+    COMMENT "Update ${_gmoFile}"
+  )
+
+  INSTALL( FILES ${_gmoFile}
+    DESTINATION share/locale/${_lang}/LC_MESSAGES
+    RENAME ${POT_NAME}.mo
+  )
+
+  SET( GMO_FILES ${GMO_FILES} ${_gmoFile} )
+ENDFOREACH()
+
+
+# Provides the 'translations' target that
+# creates the .gmo files out of the .po files
+SET( SOURCE_POT_FILE ${CMAKE_CURRENT_SOURCE_DIR}/${POT_NAME}.pot )
+
+ADD_CUSTOM_TARGET( translations ALL
+  COMMAND diff -u -I ^\#: -I ^.POT-Creation-Date: ${SOURCE_POT_FILE} ${POT_FILE} | grep '^[+-][^\#]' || true
+  DEPENDS ${GMO_FILES}
 )
 
-ADD_CUSTOM_TARGET( potfile
-  COMMAND rm -f ${NEW_POT_FILE}
-  COMMAND make translations
+ADD_CUSTOM_TARGET( potfile_update
+  COMMAND diff -q -I ^\#: -I ^.POT-Creation-Date: ${SOURCE_POT_FILE} ${POT_FILE}
+       || ./PotfileUpadte.sh ${CMAKE_CURRENT_BINARY_DIR}
+  WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
+  DEPENDS translations
+  COMMENT "Checking for uncommitted changes to the .pot file..."
 )
diff --git a/po/PotfileUpadte.sh b/po/PotfileUpadte.sh
new file mode 100755 (executable)
index 0000000..45e28f1
--- /dev/null
@@ -0,0 +1,25 @@
+#! /bin/bash
+set -e
+
+function errexit() {
+  echo "$0: $@" >&2
+  exit 1
+}
+
+test -d "../.git" || errexit "Not a git repository"
+test "$(git status --porcelain 2>/dev/null| grep '^[^ !?]' | wc -l)" == 0 || errexit "Index not clean: wont't commit"
+
+BINDIR="${1}"
+test -z "$BINDIR" && errexit "Missing argument: BINDIR"
+test -d "$BINDIR" || errexit "Not a directory: BINDIR '$BINDIR'"
+echo "Updating .pot .po files from $BINDIR..."
+for F in *.pot *.po; do
+  if [ -f "$BINDIR/$F" ]; then
+    cp "$BINDIR/$F" .
+  else
+    errexit "Missing file $BINDIR/$F (touch CMakeLists.txt?)"
+  fi
+done
+
+git add -A *.pot *.po
+git commit -m 'Translation: updated .pot file'
index a22b045..523f2c1 100644 (file)
--- a/po/af.po
+++ b/po/af.po
@@ -14,17 +14,93 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal-uitsondering"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Ongeldige LDAP URL-navraagstring"
+
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Ongeldige LDAP URL-navraagparameter '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Kan Url-voorwerp nie kloon nie"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Ongeldige leë Url-voorwerpverwysing"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Kan Url-komponente nie ontleed nie"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Kan mutex-eienskappe nie inisialiseer nie"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Kan terugkerende mutex-eienskappe nie stel nie"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Kan terugkerende mutex nie inisialiseer nie"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Kan die mutex-slot nie verkry nie"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Kan die mutex-slot nie ontsluit nie"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr ""
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr ""
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
 #, fuzzy
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr "Daar is geen installeerbare verskaffers van %s nie"
+msgid "Obsoletes"
+msgstr "%s uitgediendes:%s"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -37,10 +113,6 @@ msgstr "Voer uit"
 msgid " execution failed"
 msgstr "DBI Execution failed: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -49,93 +121,121 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s verkeer in konflik met %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+#, fuzzy
+msgid "Error sending update message notification."
+msgstr "Fout tydens sleutelenkriptering."
+
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s voorsien %s, maar dit het ’n ander argitektuur."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Installasie is gestaak soos gelas."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "nie geïnstalleer nie"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s is gesluit en kan nie ongeïnstalleer word nie."
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext nie verbind nie"
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, fuzzy, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s uitgediendes %s"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive nie geïnisialiseer nie"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume nie geïnisialiseer nie"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Kan dbus-verbinding nie skep nie"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Kan libhal-konteks nie skep nie"
+
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: Kan dbus-verbinding nie stel nie"
+
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Kan HAL-konteks nie inisialiseer nie -- hald loop nie?"
+
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Nie ’n CDROM-aandrywer nie"
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
 #, fuzzy
-msgid "(does not expire)"
-msgstr "'%1' bestaan nie."
+msgid "RPM failed: "
+msgstr "het misluk"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhazies"
-
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achinees"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, fuzzy, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Kan die openbare sleutel nie kry nie."
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Gewysigde konfigurasielêers vir %s:"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, fuzzy, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm geberg %s as %s, maar dit was onmoontlik om die verskil te bepaal"
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"rpm geberg %s as %s.\n"
+"Hier is die eerste 25 rëels van verskil:\n"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, fuzzy, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm geskep %s as %s, maar dit was onmoontlik om die verskil te bepaal"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"rpm geskep %s as %s.\n"
+"Hier is die eerste 25 rëels van verskil:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -144,679 +244,1976 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "Bykomende rpm-uitset:"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adyghe"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "geskepte rugsteun %s"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "Inskywing nie gevind nie."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "Inskywing nie gevind nie."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "Inskywing nie gevind nie."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+#, fuzzy
+msgid "Repository alias cannot start with dot."
+msgstr "Die SM se naam kan nie met ’n syfer begin nie."
+
+#: zypp/RepoManager.cc:349
+#, fuzzy
+msgid "Service alias cannot start with dot."
+msgstr "Die SM se naam kan nie met ’n syfer begin nie."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Kan lêer nie vir skryf open nie."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Kan werkskermitem '%s' nie open nie"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "Kan gids %1 nie skep nie: %2."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Fout met lees vanaf slapskyf."
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Ongeldige uitvoerlêernaam."
+
+#: zypp/RepoManager.cc:1740
+#, fuzzy, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Terugstel van hulpbronne"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Kan werkskermitem '%s' nie open nie"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Url-skema laat nie ’n %s toe nie"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Ongeldige %s komponent '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Ongeldige %s komponent"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Navraagstring-ontleding nie vir hierdie URL ondersteun nie"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Url-skema is ’n vereiste komponent"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Ongeldige Url-skema '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Url-skema laat nie ’n gebruikernaam toe nie"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Url-skema laat nie ’n wagwoord toe nie"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Url-skema vereis ’n gasheerkomponent"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Url-skema laat nie ’n gasheerkomponent toe nie"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Ongeldige gasheerkomponent '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Url-skema laat nie ’n poort toe nie"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Ongeldige poortkomponent '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Url-skema vereis padnaam"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Relatiewe pad nie toegelaat indien magtiging bestaan nie"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Enkoderingstring bevat ’n NUL-greep"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Ongeldige parametermatryssplyt-skeierkarakter"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Ongeldige parameterbindingsplyt-skeierkarakter"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Ongeldige parametermatrysaansluit-skeierkarakter"
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Kan lêer '%1' nie open nie."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Kan %s nie vind nie."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, fuzzy, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Kan %s nie vind nie."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "Opdrag uitgevoer wanneer verbind word"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+#, fuzzy
+msgid "(does not expire)"
+msgstr "'%1' bestaan nie."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "onbekend"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+#, fuzzy
+msgid "The vendor does not provide support."
+msgstr "Die skyf bestaan nie."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Onbekende land:"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Geen kode nie"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Verenigde Arabiese Emirate"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afghanistan"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua en Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albanië"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenië"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Nederlands-Antille"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktika"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentinië"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Amerikaanse Samoa"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Oostenryk"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australië"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Aland-eilande"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaijan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnië en Herzegowina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "België"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgarye"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrein"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Broenei Darussalam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivië"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasilië"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhoetan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvet-eiland"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Belo-Rusland"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Cocos- (Keeling-) eilande"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Republiek van Sentraal-Afrika"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Switserland"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Ivoorkus"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cook-eilande"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kameroen"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Sjina"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Kaap Verde"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Kersfees-eiland"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Siprus"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Tseggiese Republiek"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Duitsland"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djiboeti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Denemarke"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominika"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikaanse Republiek"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algerië"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonië"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egipte"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Wes-Sahara"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spanje"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Ethiopië"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finland"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falkland-eilande (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Federasie van Mikronesië"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Faroë-eilande"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Frankryk"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Metropolitaanse Frankryk"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gaboen"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Verenigde Koninkryk"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgië"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Frans-Guyana"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Duitsland"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Groenland"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambië"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinee"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Ekwatoriaal-Guinee"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Griekeland"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Suid-Georgia en die Suid-Sandwich-eilande"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinee-Bissau"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hongkong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heard-eiland en McDonald-eilande"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Kroasië"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haïti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hongarye"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesië"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Ierland"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Indië"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Brits-Indiese Oseaangebied"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Ysland"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italië"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaika"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordanië"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japan"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenia"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgisië"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodja"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comore"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "St. Kitts en Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Noord-Korea"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Suid-Korea"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Koeweit"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Kaaimanseilande"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazakstan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Lao Demokratiese Republiek"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Lebanon"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "St. Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberië"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litoue"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxemburg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Letland"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libië"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marokko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldowa"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "Mongo"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "San Marino"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshall-eilande"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Masedonië"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Mianmar"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolië"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Noord-Mariana-eilande"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritanië"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maledive"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Meksiko"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Maleisië"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Afrihili"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mosambiek"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikaans"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibië"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-Asiaties (ander)"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nieu-Kaledonië"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Ainu"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Akan"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolk-eilande"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Akkadies"
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigerië"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Aland-eilande"
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albanië"
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Nederland"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albanies"
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Noorweë"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aleut"
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algerië"
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauroe"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Algonquianse tale"
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaïes (ander)"
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nieu-Seeland"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Amerikaanse Samoa"
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amharies"
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Frans-Polinesië"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papoea-Nieu-Guinee"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Philippyne"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Pole"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "St. Pierre en Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestynse Gebied"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palaoe"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Réunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Roemenië"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "Serwies"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Russiese Federasie"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudi-Arabië"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Solomon-eilande"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychelle"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Soedan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Swede"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapoer"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "St. Helena"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slowenië"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard en Jan Mayen"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktika"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slowakye"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua en Barbuda"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Apache-tale"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Arabies"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonees"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalië"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Aramees"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tomé en Principe"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Araukanies"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Sirië"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentinië"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swaziland"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenië"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks- en Caicos-eiland"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armeens"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Tsjad"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Kunsmatig (ander)"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Franse Suidelike Gebiede"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Assamees"
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thailand"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Astoeries"
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tajikistan"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Athapaskanse tale"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australië"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Toerkmenië"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Australiese tale"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisië"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Oostenryk"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronesies (ander)"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Oos-Timor"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turkye"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Avaries"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad en Tobago"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Avesties"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Toewaloe"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Awadhi"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Aimara"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzanië"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaijan"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Oekraïne"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Azerbaijaans"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Verenigde State van Kleiner Buite-eilande"
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Verenigde State"
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrein"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Oesbekistan"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinees"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Vatikaanstad"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Balties (ander)"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "St. Vincent en die Grenadine"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Baluchi"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Bambaries"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Britse Maagde-eilande"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Bamileke-tale"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Maagde-eilande, .V.S.A."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Bandies"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Viëtnam"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (ander)"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis en Futuna"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bashkir"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baskies"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Suid-Afrika"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonesië)"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambië"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Beja"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belo-Rusland"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Onbekende taal:"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Belo-Russies"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "België"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abkhazies"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achinees"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Bemba"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengali"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adyghe"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Berbers (ander)"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-Asiaties (ander)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Afrihili"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Bhojpuri"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikaans"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhoetan"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Ainu"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihari"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Akan"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikol"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Akkadies"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Bini"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albanies"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aleut"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Algonquianse tale"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivië"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Suid-Altaïs"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnië en Herzegowina"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amharies"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosnies"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Engels, Oud (ca.450-1100)"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Apache-tale"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvet-eiland"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Arabies"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Braj"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Aramees"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasilië"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonees"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretons"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armeens"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Brits-Indiese Oseaangebied"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Araukanies"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Britse Maagde-eilande"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Broenei Darussalam"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Kunsmatig (ander)"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Boeginees"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Assamees"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgarye"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Astoeries"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgaars"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Athapaskanse tale"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriat"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Australiese tale"
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Avaries"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Burmees"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Avesties"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Awadhi"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Kaddo"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Aimara"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodja"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Azerbaijaans"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kameroen"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Bandies"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "Kan die lêer nie skep nie."
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Bamileke-tale"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Kan die mutex-slot nie verkry nie"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bashkir"
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Kan %s nie vind nie."
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Baluchi"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Bambaries"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinees"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Kan werkskermitem '%s' nie open nie"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Baskies"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
 
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "Kan gids %1 nie skep nie: %2."
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Balties (ander)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Beja"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Kan werkskermitem '%s' nie open nie"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Belo-Russies"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Bemba"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengali"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Berbers (ander)"
 
-#: zypp/ExternalProgram.cc:381
-#, fuzzy, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Kan %s nie vind nie."
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Bhojpuri"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Kan mutex-eienskappe nie inisialiseer nie"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Bihari"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Kan terugkerende mutex nie inisialiseer nie"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikol"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Kan lêer nie vir skryf open nie."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Bini"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Kan lêer '%1' nie open nie."
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Kan lêer '%1' nie open nie."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (ander)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, fuzzy, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Kan %s vanaf %s nie voorsien nie"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosnies"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Kan die mutex-slot nie ontsluit nie"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Braj"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Kan terugkerende mutex-eienskappe nie stel nie"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretons"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonesië)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriat"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Kan werkskermitem '%s' nie open nie"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Boeginees"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgaars"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Burmees"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Kan nie na lêer %1 toe skryf nie."
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Kaddo"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Kaap Verde"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Sentraal-Amerikaanse Indiaans (ander)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -833,11 +2230,6 @@ msgstr "Katalaans"
 msgid "Caucasian (Other)"
 msgstr "Kaukasies (ander)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Kaaimanseilande"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -848,167 +2240,80 @@ msgstr "Cebuano"
 msgid "Celtic (Other)"
 msgstr "Kelties (ander)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Republiek van Sentraal-Afrika"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Sentraal-Amerikaanse Indiaans (ander)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Tsjad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Chamiese tale"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Gewysigde konfigurasielêers vir %s:"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "Chibcha"
 
 #. language code: che ce
 #: zypp/LanguageCode.cc:319
 msgid "Chechen"
 msgstr "Tjetjeens"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne"
-
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "Chibcha"
-
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Sjinees"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Sjina"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukees"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Sjinees"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
 
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Chinook-jargon"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewiaans"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Choctaw"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Kersfees-eiland"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewiaans"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "Kerk-Slawies"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukees"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "Chuvash"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Klassieke Newari"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Cocos- (Keeling-) eilande"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "Opdrag uitgevoer wanneer verbind word"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comore"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cook-eilande"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Chamiese tale"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1025,31 +2330,6 @@ msgstr "Kornies"
 msgid "Corsican"
 msgstr "Korsikaans"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Ivoorkus"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Kreole en pidgintale (ander)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1065,46 +2345,36 @@ msgstr "Kreole en pidgintale, Frans-gebaseer (ander)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Kreole en pidgintale, Portugees-gebaseer (ander)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Krimse Tataars"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Kroasië"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Kroasies"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Kreole en pidgintale (ander)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kashubies"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Kushities (ander)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Siprus"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Tsjeggies"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Tseggiese Republiek"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1130,10 +2400,15 @@ msgstr "Daiak"
 msgid "Delaware"
 msgstr "Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Denemarke"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slawetaal (Athapaskies)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1145,71 +2420,36 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Divehi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djiboeti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominika"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikaanse Republiek"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Drawidies (ander)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Laer Sorbies"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Nederlands, Middel- (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Nederlands"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Nederlands, Middel- (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1220,26 +2460,11 @@ msgstr "Dyula"
 msgid "Dzongkha"
 msgstr "Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Oos-Timor"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egipte"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1250,33 +2475,11 @@ msgstr "Egipties (Antieke)"
 msgid "Ekajuk"
 msgstr "Ekajuk"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Elamities"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-#, fuzzy
-msgid "Empty host name in URI"
-msgstr "Leë CA-naam."
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Enkoderingstring bevat ’n NUL-greep"
-
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Elamities"
+
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1287,74 +2490,16 @@ msgstr "Engels"
 msgid "English, Middle (1100-1500)"
 msgstr "Engels, Middel- (ca.1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Engels, Oud (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Ekwatoriaal-Guinee"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-#, fuzzy
-msgid "Error sending update message notification."
-msgstr "Fout tydens sleutelenkriptering."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonië"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estonies"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Ethiopië"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1365,253 +2510,51 @@ msgstr "Ewe"
 msgid "Ewondo"
 msgstr "Ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Misluk om die SM te begin."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Kan %s - %s nie open nie\n"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, fuzzy, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Pakket %s se integriteitsnagaan misluk. Wil u dit weer probeer aflaai?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, fuzzy, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Kan die openbare sleutel nie kry nie."
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Misluk om module \"%s\" te laai."
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falkland-eilande (Malvinas)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Fang"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Faroë-eilande"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "Faroëes"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Federasie van Mikronesië"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "Fijiaans"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Lêer %1 nie in die bewaarplek gevind nie."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finland"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
 msgstr "Fins"
 
 #. language code: fiu
-#: zypp/LanguageCode.cc:441
-msgid "Finno-Ugrian (Other)"
-msgstr "Fins-Oegries (ander)"
-
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
+#: zypp/LanguageCode.cc:441
+msgid "Finno-Ugrian (Other)"
+msgstr "Fins-Oegries (ander)"
 
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Frankryk"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Frans"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Frans-Guyana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Frans-Polinesië"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Franse Suidelike Gebiede"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1627,46 +2570,21 @@ msgstr "Frans, Oud- (842-ca.1400)"
 msgid "Frisian"
 msgstr "Fries"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friulies"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fulah"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friulies"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gaboen"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gallies"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galisies"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambië"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1677,15 +2595,10 @@ msgstr "Gaïo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Geez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgië"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germaans (ander)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1697,6 +2610,36 @@ msgstr "Georgies"
 msgid "German"
 msgstr "Duits"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Geez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertees"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gallies"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Iers"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galisies"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1707,30 +2650,6 @@ msgstr "Duits, Middelhoog- (ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Duits, Oudhoog- (ca.1050-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germaans (ander)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Duitsland"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertees"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1751,11 +2670,6 @@ msgstr "Goties"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Griekeland"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1766,62 +2680,16 @@ msgstr "Grieks, Antieke (tot 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Grieks, Moderne (tot 1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Groenland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Duitsland"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinee"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinee-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1832,52 +2700,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haïda"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haïti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haïties"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal-uitsondering"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext nie verbind nie"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive nie geïnisialiseer nie"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume nie geïnisialiseer nie"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaïes"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heard-eiland en McDonald-eilande"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1903,16 +2740,6 @@ msgstr "Himachali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1923,31 +2750,21 @@ msgstr "Hittities"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Vatikaanstad"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hongkong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Oppersorbies"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Hongaars"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hongarye"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1958,10 +2775,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Ysland"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1973,250 +2790,105 @@ msgstr "Yslands"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
-
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
+
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Intertale"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Inari Sami"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Indië"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (Internasionale Hulptaalvereniging)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Indies (ander)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indo-Europees (ander)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesië"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonesies"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indo-Europees (ander)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Ingush"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Installasie is gestaak soos gelas."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (Internasionale Hulptaalvereniging)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Intertale"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Inupiaq"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Ongeldige %s komponent"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Ongeldige %s komponent '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Ongeldige LDAP URL-navraagparameter '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Ongeldige LDAP URL-navraagstring"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Ongeldige Url-skema '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Ongeldige leë Url-voorwerpverwysing"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Ongeldige gasheerkomponent '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Ongeldige parametermatrysaansluit-skeierkarakter"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Ongeldige parametermatryssplyt-skeierkarakter"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Ongeldige parameterbindingsplyt-skeierkarakter"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Ongeldige poortkomponent '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Ongeldige Url-skema '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Ongeldige uitvoerlêernaam."
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Iraans (ander)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Ierland"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Iers"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Iers, Middel- (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Iers, Oud- (tot 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Iroquoi-tale"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italiaans"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italië"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaika"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javaans"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japan"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japannees"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javaans"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordanië"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Judeo-Persies"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Judeo-Arabies"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Judeo-Persies"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardies"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2233,11 +2905,6 @@ msgstr "Kachin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmies"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2248,21 +2915,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannadees"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karachay-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2273,10 +2925,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kashmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kashubies"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2284,35 +2936,30 @@ msgid "Kawi"
 msgstr "Kawi"
 
 #. language code: kaz kk
-#: zypp/LanguageCode.cc:609
-msgid "Kazakh"
-msgstr "Kazaks"
-
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazakstan"
+#: zypp/LanguageCode.cc:609
+msgid "Kazakh"
+msgstr "Kazaks"
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenia"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardies"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Khoisan (ander)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2323,11 +2970,6 @@ msgstr "Khotanees"
 msgid "Kikuyu"
 msgstr "Kikoejoe"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2338,15 +2980,15 @@ msgstr "Kiniarwanda"
 msgid "Kirghiz"
 msgstr "Kirghiz"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2358,11 +3000,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2378,11 +3015,21 @@ msgstr "Kosraeaans"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karachay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2398,26 +3045,11 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Koerdies"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Koeweit"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgisië"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2438,68 +3070,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Lao Demokratiese Republiek"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latyn"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Letland"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Letties"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Lebanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezghiaans"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberië"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libië"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2510,61 +3095,46 @@ msgstr "Limburgs"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litoue"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Litaus"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Platduits"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Laer Sorbies"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburgies"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lule Sami"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2580,35 +3150,11 @@ msgstr "Luo (Kenia en Tanzanië)"
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburgies"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Masedonië"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Masedonies"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2619,188 +3165,75 @@ msgstr "Madurees"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshallees"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
 msgstr "Maithili"
 
 #. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr "Makasar"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malagassies"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Maleis"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "Malayalam"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Maleisië"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maledive"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltees"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Mantsjoe"
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
+msgstr "Makasar"
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "Malayalam"
 
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Manobo-tale"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronesies (ander)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshall-eilande"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshallees"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritanië"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Maya-tale"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Maleis"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mendies"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Metropolitaanse Frankryk"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Meksiko"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Iers, Middel- (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2812,87 +3245,61 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandees"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Verskillende tale"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Khmer (ander)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malagassies"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltees"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Mantsjoe"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Manobo-tale"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldawies"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldowa"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Khmer (ander)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolië"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongools"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "Mongo"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marokko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mosambiek"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2903,211 +3310,141 @@ msgstr "Veelvoudige tale"
 msgid "Munda languages"
 msgstr "Munda-tale"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Mianmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandees"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Maya-tale"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibië"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Noord-Amerikaanse Indiaans"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauroe"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Neapolitaans"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele, Noord-"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele, Suid-"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele, Noord-"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Neapolitaans"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepal Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Platduits"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepali"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Nederland"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Nederlands-Antille"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nieu-Kaledonië"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nieu-Seeland"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepal Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Niger-Kordofanies (ander)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigerië"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-Sahara (ander)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niueaans"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Geen kode nie"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Noors Nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-#, fuzzy
-msgid "No url in repository."
-msgstr "Lêer %1 nie in die bewaarplek gevind nie."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Noors Bokmal"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolk-eilande"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Noors, Oud-"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Noord-Amerikaanse Indiaans"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Noord-Korea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Noord-Mariana-eilande"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Noord-Sami"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Noord-Sotho"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Noorweë"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Noors"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Noors Bokmal"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Noors Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Nie ’n CDROM-aandrywer nie"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Noord-Sotho"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Nubiese tale"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Klassieke Newari"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3128,11 +3465,6 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "%s uitgediendes:%s"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3143,20 +3475,6 @@ msgstr "Occitaans (na 1500)"
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3177,162 +3495,85 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Ossetiaans"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turks, Ottomaans (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Otomiese tale"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, fuzzy, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr "Pakket %s se integriteitsnagaan misluk. Wil u dit weer probeer aflaai?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papuaans (ander)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinan"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palaoe"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauaans"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestynse Gebied"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "Pampanga"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinan"
-
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "Panjabi"
-
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "Papiamento"
-
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papoea-Nieu-Guinee"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papuaans (ander)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, fuzzy, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "%1 is nie ’n gids nie."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "Panjabi"
 
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Toelatings geweier"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "Papiamento"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persies"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauaans"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Persies, Oud- (ca.600-400 B.C.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persies"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Philippyns (ander)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Philippyne"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Fenisies"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeiaans"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Pole"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Pools"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeiaans"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3344,78 +3585,21 @@ msgstr "Portugees"
 msgid "Prakrit Languages"
 msgstr "Prakrit-tale"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Provensaals, Oud- (tot 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pushto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Navraagstring-ontleding nie vir hierdie URL ondersteun nie"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "het misluk"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Raeto-Romaans"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3431,58 +3615,26 @@ msgstr "Rapanui"
 msgid "Rarotongan"
 msgstr "Rarotongaans"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Relatiewe pad nie toegelaat indien magtiging bestaan nie"
-
-#: zypp/RepoManager.cc:1740
-#, fuzzy, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Terugstel van hulpbronne"
-
-#: zypp/RepoManager.cc:338
-#, fuzzy
-msgid "Repository alias cannot start with dot."
-msgstr "Die SM se naam kan nie met ’n syfer begin nie."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Réunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Romaans (ander)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Roemenië"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Roemeens"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Raeto-Romaans"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Sigeunertaal"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Roemeens"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3493,120 +3645,71 @@ msgstr "Rundi"
 msgid "Russian"
 msgstr "Russies"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Russiese Federasie"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "St. Helena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "St. Kitts en Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "St. Lucia"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandawe"
 
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "San Marino"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "St. Pierre en Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Jakut"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "St. Vincent en die Grenadine"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Suid-Amerikaanse Indiaans (ander)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
 msgid "Salishan Languages"
-msgstr "Salishan-tale"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Samaritaanse Aramees"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Sami-tale (ander)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoaans"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandawe"
+msgstr "Salishan-tale"
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sango"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Samaritaanse Aramees"
 
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskrit"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tomé en Principe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardinies"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serwies"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudi-Arabië"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Siciliaans"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Skots"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Kroasies"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3617,149 +3720,40 @@ msgstr "Selkup"
 msgid "Semitic (Other)"
 msgstr "Semities (ander)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "Serwies"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serwies"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-#, fuzzy
-msgid "Service alias cannot start with dot."
-msgstr "Die SM se naam kan nie met ’n syfer begin nie."
-
-#: zypp/repo/RepoException.cc:129
-#, fuzzy
-msgid "Service plugin does not support changing an attribute."
-msgstr "hulpbronsoort VAR1 ondersteun nie toon wysigings-eienskap nie"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Iers, Oud- (tot 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelle"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Gebaretale"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Shan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Siciliaans"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Gebaretale"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "Inskywing nie gevind nie."
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Inskywing nie gevind nie."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "Inskywing nie gevind nie."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "Inskywing nie gevind nie."
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapoer"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Sinhala"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-Tibetaans (ander)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Siouaanse tale"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Skolt Sami"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slawetaal (Athapaskies)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-Tibetaans (ander)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3771,210 +3765,141 @@ msgstr "Slawies (ander)"
 msgid "Slovak"
 msgstr "Slowaaks"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slowakye"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slowenië"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Sloweens"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "Sogdiaans"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Suid-Sami"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Solomon-eilande"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Noord-Sami"
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Somalies"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Sami-tale (ander)"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalië"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lule Sami"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "Songhai"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Inari Sami"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoaans"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Skolt Sami"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
 
 #. language code: snk
 #: zypp/LanguageCode.cc:979
 msgid "Soninke"
 msgstr "Soninke"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Sorbiese tale"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "Sogdiaans"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Somalies"
+
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "Songhai"
 
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Sotho, Suid-"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Suid-Afrika"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Suid-Amerikaanse Indiaans (ander)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Suid-Georgia en die Suid-Sandwich-eilande"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Suid-Korea"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Suid-Altaïs"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Suid-Sami"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spanje"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Spaans"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardinies"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Soedan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr ""
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-Sahara (ander)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumeries"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Soedanees"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard en Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumeries"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Swahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Swede"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Sweeds"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Switserland"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Sirië"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Siries"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3985,36 +3910,11 @@ msgstr "Tahities"
 msgid "Tai (Other)"
 msgstr "Tai (ander)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tajik"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tajikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamashek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzanië"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4025,6 +3925,11 @@ msgstr "Tartaars"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4035,35 +3940,21 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tajik"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Thai"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thailand"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-#, fuzzy
-msgid "The vendor does not provide support."
-msgstr "Die skyf bestaan nie."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-#, fuzzy
-msgid "This request will break your system!"
-msgstr "Die navraag bestaan reeds."
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4079,46 +3970,25 @@ msgstr "Tigre"
 msgid "Tigrinya"
 msgstr "Tigrinies"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4130,103 +4000,66 @@ msgstr "Tonga (Njassa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Tonga-eilande)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad en Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimshian"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmen"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Toemboeka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisië"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Tupi-tale"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turkye"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turks"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turks, Ottomaans (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkmen"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Toerkmenië"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks- en Caicos-eiland"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaïes (ander)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Toewaloe"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "Tuvinies"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Oedmoert"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4237,11 +4070,6 @@ msgstr "Oegarities"
 msgid "Uighur"
 msgstr "Oeighoer"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Oekraïne"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4252,208 +4080,36 @@ msgstr "Oekraïnies"
 msgid "Umbundu"
 msgstr "Oembundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Kan Url-voorwerp nie kloon nie"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Kan dbus-verbinding nie skep nie"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Kan HAL-konteks nie inisialiseer nie -- hald loop nie?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Kan Url-komponente nie ontleed nie"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Onbepaal"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr ""
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Verenigde Arabiese Emirate"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Verenigde Koninkryk"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Verenigde State"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Verenigde State van Kleiner Buite-eilande"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Onbekende land:"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Fout met lees vanaf slapskyf."
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Onbekende taal:"
-
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Onbekende opdrag"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr ""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr ""
-
-#: zypp/media/MediaException.cc:140
-#, fuzzy, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Ongeldige URL-skema '%1'."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Oppersorbies"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "Oerdoe"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Url-skema laat nie ’n %s toe nie"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Url-skema laat nie ’n gasheerkomponent toe nie"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Url-skema laat nie ’n wagwoord toe nie"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Url-skema laat nie ’n poort toe nie"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Url-skema laat nie ’n gebruikernaam toe nie"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Url-skema is ’n vereiste komponent"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Url-skema vereis ’n gasheerkomponent"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Url-skema vereis padnaam"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "Oesbeks"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Oesbekistan"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "Vai"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "Venda"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Viëtnam"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "Viëtnamees"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Maagde-eilande, .V.S.A."
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4469,20 +4125,10 @@ msgstr "Voties"
 msgid "Wakashan Languages"
 msgstr "Wakashan-tale"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Walamo"
-
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis en Futuna"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Walloons"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Walamo"
 
 #. language code: war
 #: zypp/LanguageCode.cc:1111
@@ -4499,26 +4145,31 @@ msgstr "Washo"
 msgid "Welsh"
 msgstr "Wallies"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Wes-Sahara"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Sorbiese tale"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Walloons"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "Wolof"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmies"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "Xhosa"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Jakut"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4529,11 +4180,6 @@ msgstr "Yao"
 msgid "Yapese"
 msgstr "Japees"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
-
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
 msgid "Yiddish"
@@ -4544,344 +4190,715 @@ msgstr "Jiddish"
 msgid "Yoruba"
 msgstr "Joruba"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Jupik-tale"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Jupik-tale"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapotek"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Misluk om die SM te begin."
+
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Inskywing nie gevind nie."
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, fuzzy, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Kan %s vanaf %s nie voorsien nie"
+
+#: zypp/repo/RepoProvideFile.cc:265
+#, fuzzy
+msgid "No url in repository."
+msgstr "Lêer %1 nie in die bewaarplek gevind nie."
+
+#: zypp/repo/RepoException.cc:129
+#, fuzzy
+msgid "Service plugin does not support changing an attribute."
+msgstr "hulpbronsoort VAR1 ondersteun nie toon wysigings-eienskap nie"
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, fuzzy, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr "Pakket %s se integriteitsnagaan misluk. Wil u dit weer probeer aflaai?"
+
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, fuzzy, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Pakket %s se integriteitsnagaan misluk. Wil u dit weer probeer aflaai?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm-nagaan het misluk."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm het misluk."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s voorsien %s, maar dit het ’n ander argitektuur."
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "opdrag om pakkette te oninstalleer"
+
+#: zypp/solver/detail/SATResolver.cc:986
+#, fuzzy
+msgid "conflicting requests"
+msgstr "Verbindingsversoek aan:"
+
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "Kan %s nie installeer nie vanweë afhanklikheidsprobleme"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, fuzzy, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "Geen voorsiening %s nie"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "Die skyf bestaan nie."
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s is gesluit en kan nie ongeïnstalleer word nie."
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "nie geïnstalleer nie"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, fuzzy, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s word benodig deur %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Kan %s nie installeer nie"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s verkeer in konflik met %s"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, fuzzy, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s uitgediendes %s"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s uitgediendes %s"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s verkeer in konflik met %s"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1070
+#, fuzzy
+msgid "deleted providers: "
+msgstr "Geen voorsiening %s nie"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+#, fuzzy
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr "Daar is geen installeerbare verskaffers van %s nie"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "Daar is geen installeerbare verskaffers van %s nie"
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "moenie %s installeer nie"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "hou %s"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "moenie %s installeer nie"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambië"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+#, fuzzy
+msgid "This request will break your system!"
+msgstr "Die navraag bestaan reeds."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapotek"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, fuzzy, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "Daar is geen installeerbare verskaffers van %s nie"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "Moenie waar oplossings ter sprake is, installeer of skrap nie"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, fuzzy, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s voorsien %s, maar dit het ’n ander argitektuur."
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, fuzzy, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "Installeer %s, hoewel dit die argitektuur kan verander"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%s uitgediendes %s"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm-nagaan het misluk."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm het misluk."
+#: zypp/solver/detail/SATResolver.cc:1318
+#, fuzzy, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "%s afgelaai vanaf %s"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr ""
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Installasie"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, fuzzy, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "Ignoreer dié vereiste net hier"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "Ignoreer dié vereiste net hier"
+
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
+
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
+
+#: zypp/base/InterProcessMutex.cc:83
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Kan %s nie installeer nie"
+msgid "Can't open lock file: %s"
+msgstr "Kan lêer '%1' nie open nie."
 
-#: zypp/solver/detail/SATResolver.cc:986
-#, fuzzy
-msgid "conflicting requests"
-msgstr "Verbindingsversoek aan:"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr ""
+
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Onbekende opdrag"
+
+#: zypp/base/StrMatcher.cc:153
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "geskepte rugsteun %s"
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
+
+#: zypp/base/StrMatcher.cc:158
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Installasie"
+msgid "Invalid regular expression '%s'"
+msgstr "Ongeldige Url-skema '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-#, fuzzy
-msgid "deleted providers: "
-msgstr "Geen voorsiening %s nie"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "Moenie waar oplossings ter sprake is, installeer of skrap nie"
+msgid "Failed to mount %s on %s"
+msgstr "Kan %s - %s nie open nie\n"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:41
 #, fuzzy, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "Daar is geen installeerbare verskaffers van %s nie"
+msgid "Failed to unmount %s"
+msgstr "Misluk om module \"%s\" te laai."
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "moenie %s installeer nie"
+msgid "Bad file name: %s"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:60
 #, fuzzy, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "%s afgelaai vanaf %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Lêer %1 nie in die bewaarplek gevind nie."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Kan nie na lêer %1 toe skryf nie."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
+
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr ""
+
+#: zypp/media/MediaException.cc:106
+#, fuzzy, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "%1 is nie ’n gids nie."
+
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:125
 #, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "Ignoreer dié vereiste net hier"
+msgid "Empty host name in URI"
+msgstr "Leë CA-naam."
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:140
+#, fuzzy, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Ongeldige URL-skema '%1'."
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, fuzzy, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "Installeer %s, hoewel dit die argitektuur kan verander"
-
-#: zypp/solver/detail/SATResolver.cc:1298
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s uitgediendes %s"
-
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "hou %s"
-
-#: zypp/solver/detail/SATResolver.cc:1279
-#, fuzzy, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s voorsien %s, maar dit het ’n ander argitektuur."
-
-#: zypp/solver/detail/SATResolver.cc:1293
-#, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%s uitgediendes %s"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Kan libhal-konteks nie skep nie"
-
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: Kan dbus-verbinding nie stel nie"
-
-#: zypp/solver/detail/SATResolver.cc:1012
-#, fuzzy, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s word benodig deur %s"
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, fuzzy, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "Geen voorsiening %s nie"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "Die skyf bestaan nie."
+msgid "Cannot eject media '%s'"
+msgstr "Kan werkskermitem '%s' nie open nie"
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:199
 #, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "opdrag om pakkette te oninstalleer"
+msgid "Permission to access '%s' denied."
+msgstr "Toelatings geweier"
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "moenie %s installeer nie"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, fuzzy, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm geskep %s as %s, maar dit was onmoontlik om die verskil te bepaal"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
+
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
-"rpm geskep %s as %s.\n"
-"Hier is die eerste 25 rëels van verskil:\n"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, fuzzy, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm geberg %s as %s, maar dit was onmoontlik om die verskil te bepaal"
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "Kan die lêer nie skep nie."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm geberg %s as %s.\n"
-"Hier is die eerste 25 rëels van verskil:\n"
-
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s verkeer in konflik met %s"
 
-#: zypp/solver/detail/SATResolver.cc:989
-#, fuzzy
-msgid "some dependency problem"
-msgstr "Kan %s nie installeer nie vanweë afhanklikheidsprobleme"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-#, fuzzy
-msgid "uninstallable providers: "
-msgstr "Daar is geen installeerbare verskaffers van %s nie"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "onbekend"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#, fuzzy
-#~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
-#~ msgstr ""
-#~ "\n"
-#~ "Daar is geen hulpbron wat hierdie vereiste ondersteun, beskikbaar nie."
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
-#~ msgstr ""
-#~ "\n"
-#~ "Hierdie oplossings sal uit die stelsel geskrap word."
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#~ msgid " Error!"
-#~ msgstr "Fout!"
+#, fuzzy
+#~ msgid "do not keep %s installed"
+#~ msgstr "nie geïnstalleer nie"
 
-#~ msgid " Important!"
-#~ msgstr "Belangrik!"
+#, fuzzy
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Kan %s - %s nie open nie\n"
 
-#~ msgid " fails checksum verification."
-#~ msgstr "slaag nie nagaansom-bevestiging nie."
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Serwië en Montenegro"
 
-#~ msgid " miss checksum."
-#~ msgstr "nagaansom ontbreek."
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "Onbekende lys-opsie"
 
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "%s kan nie geïnstalleer word nie vanweë ontbrekende afhanklikhede"
+#, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "kon afhanklikhede nie oplos nie"
 
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "%s verkeer in konflik met ander oplossings"
+#~ msgid ""
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Lêer %s het nie ’n nagaansom nie. \n"
+#~ "Gebruik die lêer in elk geval?"
 
 #~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s verkeer in konflik met:\n"
-#~ "%s"
+#~ "Lêer %s het nie integriteitsnagaan geslaag met die volgende sleutel nie:\n"
+#~ "%s|%s|%s\n"
+#~ " Gebruik die lêer in elk geval?"
 
-#~ msgid "%s depended on %s"
-#~ msgstr "%s afgehang van %s"
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Lêer %s het ’n ongeldige nagaansom. \n"
+#~ "Verwag %s, kry %s\n"
+#~ " Gebruik die lêer in elk geval?"
 
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s afhanklik van %s"
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Lêer %s het ’n onbekende nagaansom %s. \n"
+#~ "Gebruik die lêer in elk geval?"
 
-#~ msgid "%s depends on %s"
-#~ msgstr "%s hang af van %s"
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "Lêer %s is nie geteken nie.\n"
+#~ "Gebruik dit in elk geval?"
 
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s hang van ander oplossings af"
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Lêer %s word geteken met ’n onbekende sleutel:\n"
+#~ "%s|%s|%s\n"
+#~ " Gebruik die lêer in elk geval?"
 
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s hang af van:%s"
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "Onbetroubare sleutel gevind:\n"
+#~ "%s|%s|%s\n"
+#~ " Vertrou sleutel?"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "%s vervul afhanklikhede van %s, maar sal op u stelsel gehou word"
+#~ msgid "%s remove failed"
+#~ msgstr "%s verwyder het misluk"
 
 #, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "%s vervul afhanklikhede van %s, maar sal ongeïnstalleer word"
-
-#~ msgid "%s has missing dependencies"
-#~ msgstr "%s het afhanklikhede wat ontbreek"
+#~ msgid "Invalid user name or password."
+#~ msgstr "Wysig u wagwoord"
 
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "%s het vereistes waaraan nie voldoen is nie"
+#~ msgid "rpm output:"
+#~ msgstr "rpm-uitset:"
 
 #~ msgid "%s install failed"
 #~ msgstr "%s installasie misluk"
@@ -4889,136 +4906,85 @@ msgstr ""
 #~ msgid "%s installed ok"
 #~ msgstr "%s geïnstalleer is goed"
 
-#, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s word vervang deur %s"
-
-#, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s word benodig deur %s"
+#~ msgid "%s remove ok"
+#~ msgstr "%s verwyder is goed"
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s het nie die vereiste %s"
-
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "%s word deur ander oplossings benodig"
-
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
 #~ msgstr ""
-#~ "%s word benodig deur:\n"
-#~ "%s"
-
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "%s word nie geïnstalleer nie en is as oninstalleerbaar gemerk"
-
-#, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s word benodig deur %s"
-
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s word vervang deur %s"
+#~ "%s voorsien hierdie afhanklikheid, maar sal die argitektuur van die "
+#~ "geïnstalleerde item wysig"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
 #~ msgstr ""
-#~ "%s word vereis deur ’n ander geïnstalleerde oplossing; gevolglik sal dit "
-#~ "nie ontkoppel word nie."
+#~ "%s voorsien hierdie afhanklikheid, maar sal die argitektuur van die "
+#~ "geïnstalleerde item wysig"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
-#~ msgstr ""
-#~ "%s word vereis deur ’n ander geïnstalleerde oplossing; gevolglik sal dit "
-#~ "nie ontkoppel word nie."
-
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
-#~ msgstr ""
-#~ "%s word vereis deur ’n ander om-geïnstalleer-te-word-oplossing; gevolglik "
-#~ "sal dit nie ontkoppel word nie."
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "Moenie waar oplossings ter sprake is, installeer of skrap nie"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr ""
-#~ "%s word geskeduleer om geïnstalleer te word, maar dit is vanweë "
-#~ "afhanklikheidsprobleme nie moontlik nie."
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "Ignoreer dat %s reeds gestel is om te installeer"
 
-#, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s word benodig deur %s"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "Ignoreer die uitgediende %s in %s"
 
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s word benodig deur %s"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "Ignoreer hierdie konflik van %s"
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s is oninstalleerbaar vanweë konflikte met %s"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "Ignoreer dié vereiste net hier"
 
 #, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr ""
-#~ "%s uitgediendes %s. Maar %s kan nie geskrap word nie, want dit is gesluit."
-
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s maak ander oplossings uitgedien"
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "Installeer %s, hoewel dit die argitektuur kan verander"
 
-#~ msgid "%s part of %s"
-#~ msgstr "%s deel van %s"
+#~ msgid "Install missing resolvables"
+#~ msgstr "Installeer ontbrekende oplossings"
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s voorsien %s, maar word geskeduleer om gehou te word."
+#~ msgid "Keep resolvables"
+#~ msgstr "Hou oplossings"
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr ""
-#~ "%s voorsien %s, maar ’n ander weergawe van daardie %s is reeds "
-#~ "geïnstalleer."
+#~ msgid "Unlock these resolvables"
+#~ msgstr "Ontsluit hierdie oplossings"
 
-#, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s voorsien %s, maar dit het ’n ander argitektuur."
+#~ msgid "delete %s"
+#~ msgstr "skrap %s?"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s voorsien %s, maar word geskeduleer om ongeïnstalleer te word."
+#~ msgid "install %s"
+#~ msgstr "installeer %s"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s voorsien %s, maar dit is gesluit."
+#~ msgid "unlock %s"
+#~ msgstr "ontsluit %s"
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s voorsien %s, maar dit is oninstalleerbaar.  Probeer om dit alleen te "
-#~ "installeer vir meer besonderhede."
+#~ msgid "unlock all resolvables"
+#~ msgstr "ontsluit alle oplossings"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr ""
-#~ "%s voorsien hierdie afhanklikheid, maar sal die argitektuur van die "
-#~ "geïnstalleerde item wysig"
+#~ msgid "Can't open solv-file: "
+#~ msgstr "Kan lêer '%1' nie open nie."
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr ""
-#~ "%s voorsien hierdie afhanklikheid, maar sal die argitektuur van die "
-#~ "geïnstalleerde item wysig"
+#~ msgid "Error reading solv-file: "
+#~ msgstr "Fout tydens lees van sektor %u."
 
-#~ msgid "%s remove failed"
-#~ msgstr "%s verwyder het misluk"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "Padparameter-ontleding nie vir hierdie URL ondersteun nie"
 
-#~ msgid "%s remove ok"
-#~ msgstr "%s verwyder is goed"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "Padparameter-ontleding nie vir hierdie URL ondersteun nie"
+
+#~ msgid "Software management is already running."
+#~ msgstr "Sagtewarebestuur loop reeds."
+
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s word vervang deur %s"
 
 #~ msgid "%s replaced by %s"
 #~ msgstr "%s vervang deur %s"
@@ -5033,359 +4999,393 @@ msgstr ""
 #~ msgid "%s will be installed by the user.\n"
 #~ msgstr "%s sal nie ongeïnstalleer word nie, want dit word steeds vereis"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "%s sal nie ongeïnstalleer word nie, want dit word steeds vereis"
+#~ msgid "Invalid information"
+#~ msgstr "Ongeldige inligting"
 
-#~ msgid ", Action: "
-#~ msgstr ", Aksie:"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s word deur ander oplossings benodig"
 
-#~ msgid ", Trigger: "
-#~ msgstr ", Sneller:"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s word benodig deur:\n"
+#~ "%s"
+
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "%s verkeer in konflik met ander oplossings"
 
-#, fuzzy
 #~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
+#~ "%s conflicts with:\n"
+#~ "%s"
 #~ msgstr ""
-#~ "’n Konflik oor %s (%s) vereis die verwydering van om-geïnstalleer-te-word-"
+#~ "%s verkeer in konflik met:\n"
 #~ "%s"
 
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s maak ander oplossings uitgedien"
+
 #~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
 #~ msgstr ""
-#~ "Ten minste een bron reeds geregistreer, gebergde bronne kan nie "
-#~ "teruggestel word nie."
+#~ "\n"
+#~ "Hierdie oplossings sal uit die stelsel geskrap word."
+
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s hang van ander oplossings af"
+
+#~ msgid "%s depends on %s"
+#~ msgstr "%s hang af van %s"
+
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s hang af van:%s"
+
+#~ msgid "Child of"
+#~ msgstr "Kind van"
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
 #~ msgstr ""
-#~ "Kan %s nie installeer nie, aangesien dit reeds gemerk is om "
-#~ "ongeïnstalleer te word"
+#~ "\n"
+#~ "Daar is geen hulpbron wat hierdie vereiste ondersteun, beskikbaar nie."
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
 #~ msgstr ""
-#~ "Kan %s nie installeer nie, aangesien %s reeds gemerk is om geïnstalleer "
-#~ "te word"
+#~ "Toekomstige probleme wat bo/onder hierdie resolusie beskryf word, sal nie "
+#~ "alle afhanklikhede oplos nie"
 
 #, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr ""
-#~ "Kan %s nie installeer nie, aangesien dit nie op hierdie stelsel van "
-#~ "toepassing is nie."
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "Kan %s nie installeer nie, omdat dit in konflik verkeer met %s"
+
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "%s word nie geïnstalleer nie en is as oninstalleerbaar gemerk"
+
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "%s het vereistes waaraan nie voldoen is nie"
+
+#~ msgid "%s has missing dependencies"
+#~ msgstr "%s het afhanklikhede wat ontbreek"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "%s kan nie geïnstalleer word nie vanweë ontbrekende afhanklikhede"
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "Kan lêer '%1' nie open nie."
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "%s vervul afhanklikhede van %s, maar sal ongeïnstalleer word"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "Kan nie aan vereiste %s vir %s voldoen nie"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "%s vervul afhanklikhede van %s, maar sal op u stelsel gehou word"
 
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
-#~ msgstr "Kan %s nie installeer om die afhanklikhede van %s te vervul nie"
+#~ msgid "No need to install %s"
+#~ msgstr "Geen nodigheid om %s te installeer nie"
 
-#~ msgid "Cannot create a file needed to perform update installation."
-#~ msgstr ""
-#~ "Kan nie ’n lêer wat benodig word om bywerkinstallasie uit te voer, skep "
-#~ "nie."
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "Kan %s nie installeer om die afhanklikhede van %s te vervul nie"
 
 #~ msgid "Cannot install %s to fulfil the dependencies of %s"
 #~ msgstr "Kan %s nie installeer om die afhanklikhede van %s te vervul nie"
 
 #, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "Kan %s nie installeer om die afhanklikhede van %s te vervul nie"
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "%s sal nie ongeïnstalleer word nie, want dit word steeds vereis"
+
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr ""
+#~ "%s uitgediendes %s. Maar %s kan nie geskrap word nie, want dit is gesluit."
 
 #, fuzzy
 #~ msgid "Cannot install %s, because it is conflicting"
 #~ msgstr "Kan %s nie installeer nie, want dit verkeer in konflik"
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "Kan %s nie installeer nie, omdat dit in konflik verkeer met %s"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s is oninstalleerbaar vanweë konflikte met %s"
 
-#~ msgid "Child of"
-#~ msgstr "Kind van"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "om %s vir %s te vereis tydens bywerk van %s"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "Moenie waar oplossings ter sprake is, installeer of skrap nie"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s het nie die vereiste %s"
 
-#~ msgid "Downloading %s"
-#~ msgstr "Aflaai van %s"
+#~ msgid ", Action: "
+#~ msgstr ", Aksie:"
 
-#, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "Toekomstige probleme wat bo/onder hierdie resolusie beskryf word, sal nie "
-#~ "alle afhanklikhede oplos nie"
+#~ msgid ", Trigger: "
+#~ msgstr ", Sneller:"
 
-#, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "Fout tydens lees van sektor %u."
+#~ msgid "package"
+#~ msgstr "pakket"
 
-#~ msgid "Establishing %s"
-#~ msgstr "Vestig van %s"
+#~ msgid "selection"
+#~ msgstr "keuse"
 
-#, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Kan %s - %s nie open nie\n"
+#~ msgid "pattern"
+#~ msgstr "patroon"
 
-#~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "Lêer %s het nie ’n nagaansom nie. \n"
-#~ "Gebruik die lêer in elk geval?"
+#~ msgid "product"
+#~ msgstr "produk"
 
-#~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "Lêer %s het nie integriteitsnagaan geslaag met die volgende sleutel nie:\n"
-#~ "%s|%s|%s\n"
-#~ " Gebruik die lêer in elk geval?"
+#~ msgid "patch"
+#~ msgstr "regstelling"
+
+#~ msgid "script"
+#~ msgstr "skrip"
+
+#~ msgid "message"
+#~ msgstr "boodskap"
+
+#~ msgid "atom"
+#~ msgstr "atoom"
+
+#~ msgid "system"
+#~ msgstr "stelsel"
+
+#~ msgid "Resolvable"
+#~ msgstr "Oplossings"
 
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "Merk van hierdie resolusiepoging as ongeldig."
+
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "Merk van oplossing %s as oninstalleerbaar"
+
+#, fuzzy
 #~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
 #~ msgstr ""
-#~ "Lêer %s het ’n ongeldige nagaansom. \n"
-#~ "Verwag %s, kry %s\n"
-#~ " Gebruik die lêer in elk geval?"
+#~ "%s word geskeduleer om geïnstalleer te word, maar dit is vanweë "
+#~ "afhanklikheidsprobleme nie moontlik nie."
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
 #~ msgstr ""
-#~ "Lêer %s het ’n onbekende nagaansom %s. \n"
-#~ "Gebruik die lêer in elk geval?"
+#~ "Kan %s nie installeer nie, aangesien dit reeds gemerk is om "
+#~ "ongeïnstalleer te word"
 
-#~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
 #~ msgstr ""
-#~ "Lêer %s is nie geteken nie.\n"
-#~ "Gebruik dit in elk geval?"
+#~ "Kan %s nie installeer nie, aangesien dit nie op hierdie stelsel van "
+#~ "toepassing is nie."
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
 #~ msgstr ""
-#~ "Lêer %s word geteken met ’n onbekende sleutel:\n"
-#~ "%s|%s|%s\n"
-#~ " Gebruik die lêer in elk geval?"
-
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "Ignoreer dat %s reeds gestel is om te installeer"
-
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "Ignoreer die uitgediende %s in %s"
-
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "Ignoreer hierdie konflik van %s"
-
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "Ignoreer hierdie vereiste oor die algemeen"
-
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "Ignoreer dié vereiste net hier"
+#~ "Kan %s nie installeer nie, aangesien %s reeds gemerk is om geïnstalleer "
+#~ "te word"
 
-#, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "Installeer %s, hoewel dit die argitektuur kan verander"
+#~ msgid "This would invalidate %s."
+#~ msgstr "Dit sal %s ongeldig maak."
 
-#~ msgid "Install missing resolvables"
-#~ msgstr "Installeer ontbrekende oplossings"
+#~ msgid "Establishing %s"
+#~ msgstr "Vestig van %s"
 
 #~ msgid "Installing %s"
 #~ msgstr "Installeer van %s"
 
-#~ msgid "Invalid information"
-#~ msgstr "Ongeldige inligting"
+#~ msgid "Updating %s to %s"
+#~ msgstr "Bywerk van %s na %s"
+
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "Oorslaan van %s: reeds geïnstalleer"
 
 #, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "Wysig u wagwoord"
-
-#~ msgid "Keep resolvables"
-#~ msgstr "Hou oplossings"
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "Daar is geen alternatief-geïnstalleerde verskaffers van %s nie"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "Merk van %s as oninstalleerbaar vanweë konflikte oor %s"
+#~ msgid "for %s"
+#~ msgstr "vir %s nie"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "Merk van oplossing %s as oninstalleerbaar"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "Bywerking na %s om verwyder van %s te verhoed, is nie moontlik nie."
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "Merk van hierdie resolusiepoging as ongeldig."
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s voorsien %s, maar word geskeduleer om ongeïnstalleer te word."
 
-#~ msgid "No need to install %s"
-#~ msgstr "Geen nodigheid om %s te installeer nie"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr ""
+#~ "%s voorsien %s, maar ’n ander weergawe van daardie %s is reeds "
+#~ "geïnstalleer."
 
-#, fuzzy
 #~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "Pakket %s se integriteitsnagaan misluk. Wil u dit weer probeer aflaai, of "
-#~ "die installasie staak?"
-
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "Padparameter-ontleding nie vir hierdie URL ondersteun nie"
+#~ "%s voorsien %s, maar dit is oninstalleerbaar.  Probeer om dit alleen te "
+#~ "installeer vir meer besonderhede."
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "Padparameter-ontleding nie vir hierdie URL ondersteun nie"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s voorsien %s, maar dit is gesluit."
 
-#~ msgid "Reading filelist from %s"
-#~ msgstr "Lees van lêerlys vanaf %s"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s voorsien %s, maar word geskeduleer om gehou te word."
 
-#~ msgid "Reading index files"
-#~ msgstr "Lees van indekslêers"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s voorsien %s, maar dit het ’n ander argitektuur."
 
-#~ msgid "Reading packages file"
-#~ msgstr "Lees van pakkettelêer"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "Kan nie aan vereiste %s vir %s voldoen nie"
 
-#~ msgid "Reading packages from %s"
-#~ msgstr "Lees van pakkette vanaf %s"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s word vereis deur ’n ander geïnstalleerde oplossing; gevolglik sal dit "
+#~ "nie ontkoppel word nie."
 
-#~ msgid "Reading patch %s"
-#~ msgstr "Lees van regstelling %s"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s word vereis deur ’n ander geïnstalleerde oplossing; gevolglik sal dit "
+#~ "nie ontkoppel word nie."
 
-#~ msgid "Reading patches index %s"
-#~ msgstr "Lees van regstellingsindeks %s"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr ""
+#~ "’n Konflik oor %s (%s) vereis die verwydering van om-geïnstalleer-te-word-"
+#~ "%s"
 
-#~ msgid "Reading pattern from %s"
-#~ msgstr "Lees van patroon vanaf %s"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "Merk van %s as oninstalleerbaar vanweë konflikte oor %s"
 
-#~ msgid "Reading product from %s"
-#~ msgstr "Lees van produk vanaf %s"
+#~ msgid "from %s"
+#~ msgstr "vanaf %s"
 
-#~ msgid "Reading selection from %s"
-#~ msgstr "Lees van keuse vanaf %s"
+#~ msgid " Error!"
+#~ msgstr "Fout!"
 
-#~ msgid "Reading translation: %s"
-#~ msgstr "Lees van vertaling: %s"
+#~ msgid " Important!"
+#~ msgstr "Belangrik!"
 
-#~ msgid "Resolvable"
-#~ msgstr "Oplossings"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s afgehang van %s"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Serwië en Montenegro"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s word benodig deur %s"
 
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "Oorslaan van %s: reeds geïnstalleer"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s word benodig deur %s"
 
-#~ msgid "Software management is already running."
-#~ msgstr "Sagtewarebestuur loop reeds."
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s word vervang deur %s"
 
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "Die skriplêer het nie die nagaansomtoets geslaag nie."
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s word benodig deur %s"
 
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr ""
-#~ "Die getekende repomd.xml-lêer het nie die handtekeningnagaan geslaag nie."
+#~ msgid "%s part of %s"
+#~ msgstr "%s deel van %s"
 
 #, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "Daar is geen alternatief-geïnstalleerde verskaffers van %s nie"
-
-#~ msgid "This would invalidate %s."
-#~ msgstr "Dit sal %s ongeldig maak."
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s word benodig deur %s"
 
 #~ msgid "Unable to parse Url authority"
 #~ msgstr "Kan Url-magtiging nie ontleed nie"
 
-#~ msgid "Unable to restore all sources."
-#~ msgstr "Kan nie alle bronne terugstel nie."
-
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "Onbekende lys-opsie"
-
-#~ msgid "Unlock these resolvables"
-#~ msgstr "Ontsluit hierdie oplossings"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "Ignoreer hierdie vereiste oor die algemeen"
 
 #~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
 #~ msgstr ""
-#~ "Onbetroubare sleutel gevind:\n"
-#~ "%s|%s|%s\n"
-#~ " Vertrou sleutel?"
+#~ "%s word vereis deur ’n ander om-geïnstalleer-te-word-oplossing; gevolglik "
+#~ "sal dit nie ontkoppel word nie."
 
-#~ msgid "Updating %s to %s"
-#~ msgstr "Bywerk van %s na %s"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr ""
+#~ "Kan nie ’n lêer wat benodig word om bywerkinstallasie uit te voer, skep "
+#~ "nie."
 
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "Bywerking na %s om verwyder van %s te verhoed, is nie moontlik nie."
+#~ msgid "Unable to restore all sources."
+#~ msgstr "Kan nie alle bronne terugstel nie."
 
-#~ msgid "atom"
-#~ msgstr "atoom"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr ""
+#~ "Ten minste een bron reeds geregistreer, gebergde bronne kan nie "
+#~ "teruggestel word nie."
 
-#~ msgid "delete %s"
-#~ msgstr "skrap %s?"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "Kan %s nie installeer om die afhanklikhede van %s te vervul nie"
 
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "nie geïnstalleer nie"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s afhanklik van %s"
 
-#~ msgid "for %s"
-#~ msgstr "vir %s nie"
+#~ msgid "Reading index files"
+#~ msgstr "Lees van indekslêers"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "om %s vir %s te vereis tydens bywerk van %s"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr ""
+#~ "Die getekende repomd.xml-lêer het nie die handtekeningnagaan geslaag nie."
 
-#~ msgid "from %s"
-#~ msgstr "vanaf %s"
+#~ msgid "Reading product from %s"
+#~ msgstr "Lees van produk vanaf %s"
 
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "kon afhanklikhede nie oplos nie"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "Lees van lêerlys vanaf %s"
 
-#~ msgid "install %s"
-#~ msgstr "installeer %s"
+#~ msgid "Reading packages from %s"
+#~ msgstr "Lees van pakkette vanaf %s"
 
-#~ msgid "message"
-#~ msgstr "boodskap"
+#~ msgid "Reading selection from %s"
+#~ msgstr "Lees van keuse vanaf %s"
 
-#~ msgid "package"
-#~ msgstr "pakket"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "Lees van patroon vanaf %s"
 
-#~ msgid "patch"
-#~ msgstr "regstelling"
+#~ msgid "Reading patches index %s"
+#~ msgstr "Lees van regstellingsindeks %s"
 
-#~ msgid "pattern"
-#~ msgstr "patroon"
+#~ msgid "Reading patch %s"
+#~ msgstr "Lees van regstelling %s"
 
-#~ msgid "product"
-#~ msgstr "produk"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "Die skriplêer het nie die nagaansomtoets geslaag nie."
 
-#~ msgid "rpm output:"
-#~ msgstr "rpm-uitset:"
+#~ msgid "Reading packages file"
+#~ msgstr "Lees van pakkettelêer"
 
-#~ msgid "script"
-#~ msgstr "skrip"
+#~ msgid "Reading translation: %s"
+#~ msgstr "Lees van vertaling: %s"
 
-#~ msgid "selection"
-#~ msgstr "keuse"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "Pakket %s se integriteitsnagaan misluk. Wil u dit weer probeer aflaai, of "
+#~ "die installasie staak?"
 
-#~ msgid "system"
-#~ msgstr "stelsel"
+#~ msgid " miss checksum."
+#~ msgstr "nagaansom ontbreek."
 
-#~ msgid "unlock %s"
-#~ msgstr "ontsluit %s"
+#~ msgid " fails checksum verification."
+#~ msgstr "slaag nie nagaansom-bevestiging nie."
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "ontsluit alle oplossings"
+#~ msgid "Downloading %s"
+#~ msgstr "Aflaai van %s"
index 5d55bfd..2bb8d41 100644 (file)
--- a/po/ar.po
+++ b/po/ar.po
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
-#
+# Arabic message file for YaST2 (@memory@).
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002 SuSE Linux AG.
+# Copyright (C) 1999 SuSE GmbH.
+# Ghayss Tarraf <jodi@suse.de>, 2000.
+# Mohammad Alhargan <malham1@gmail.com>, 2011, 2012.
+# moh <malham1@gmail.com>, 2011.
+# محمد الحرقان <malham1@gmail.com>, 2012, 2013.
+# malhargan <malham1@hotmail.com>, 2014.
+# malhargan <malham1@gmail.com>, 2014, 2015.
 msgid ""
 msgstr ""
-"Project-Id-Version: zypp\n"
+"Project-Id-Version: YaST (@memory@)\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 17:01\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2015-06-01 14:17+0300\n"
+"Last-Translator: malhargan <malham1@gmail.com>\n"
+"Language-Team: سوزي\n"
+"Language: ar\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
+"X-Generator: Virtaal 0.7.1\n"
+"X-Language-English: Arabic\n"
+"X-Language-Local: Arabic*\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"موفرون غير قابلين لإزالة التثبيت:"
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "استثناء في Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "سلسلة استعلام المسار لبروتوكول LDAP غير صالحة"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr " مشكلة في شهادة SSL، تحقق من أن شهادة CA صالحة لـ '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "معلمة استعلام المسار لبروتوكول LDAP غير صالحة '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "تعذر استنساخ كائن المسار"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "مرجع كائن المسار فارغ غير صالح"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "تعذر تحليل مكونات المسار"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "تعذرت تهيئة خاصية mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "تعذر تعيين خاصية mutex المتكررة"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "تعذرت تهيئة mutex متكرر"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "تعذر الحصول على قفل mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "تعذر تحرير قفل mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "توفّر"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "تتطلب"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "تتطلّب"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "تعارضات"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "تَلغي"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "مستحسن"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "يقترح"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "محسّن"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "ملحقات"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "نوع '%s' مشبو %u بايت للمجموع الاختباري '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
-msgstr " Ù\85Ù\8fÙ\86Ù\81Ù\91Ù\8eذ"
+msgstr " Ù\86Ù\81Ù\91Ù\90ذ"
 
 #: zypp/target/TargetImpl.cc:332
 msgid " execution failed"
-msgstr " فشل التنفيذ"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " تم تخطي التنفيذ أثناء الإيقاف"
+msgstr " فشل تنفيذ"
 
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
@@ -46,1115 +128,815 @@ msgstr " تم تخطي التنفيذ أثناء الإيقاف"
 #: zypp/target/TargetImpl.cc:449
 #, c-format, boost-format
 msgid "%s already executed as %s)"
-msgstr "تم تنفيذ %s بالفعل كـ %s)"
+msgstr "%s منفذ مسبقاً ك %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "يتعارض %s مع %s المتوفر من قبل %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " تم تخطي التنفيذ أثناء الإحباط"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "لا ينتمي %s إلى مخزن ترقية التوزيع"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "خطأ إرسال رسالة تنبيه بالتحديث."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "هيكل %s غير ملائم"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "رسالة تحديث جديد"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s غير قابل للتثبيت"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "تم إيقاف التثبيت وفقًا للتعليمات."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "يتم توفير %s من خلال النظام ولا يمكن حذفها"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "عذراً، ولكن هذا الإصدار من libzypp مبني بدون دعم HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s يُبطِل %s المتوفر من قبل %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext غير متصل"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s يتطلب %s، ولكن يتعذر توفير هذا المتطلب"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "لم تتم تهيئة HalDrive"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(انتهت الصلاحية)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "لم تتم تهيئة HalVolume"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(الصلاحية غير منتهية)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "تعذر إنشاء اتصال dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(ستنتهي الصلاحية خلال 24 ساعة)"
-msgstr[1] "(ستنتهي الصلاحية خلال 24 ساعة)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: تعذر إنشاء سياق libhal"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(ستنتهي الصلاحية خلال 24 ساعة)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: تعذر تعيين اتصال dbus"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "أذربيجان"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "تعذرت تهيئة سياق HAL -- hald ليس قيد التشغيل؟"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "الأتشينيزية"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "ليس محرك أقراص مضغوطة"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "الأكولية"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "فشل RPM: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "الأدانجمية"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "فشل استيراد المفتاح العمومي من الملف %s: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "إضافة المخزن '%s'"
+msgid "Failed to remove public key %s: %s"
+msgstr "فشل في إزالة المفتاع العمومي %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "مطلوب عقد عميل إضافي"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "ملفات إعداد %s التي تم تغييرها:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "تم حفظ rpm %s ; %s، ولكن كان من المستحيل تحديد الفرق"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"تم حفظ rpm %s باعتبارها %s.\n"
+"فيما يلي أول 25 سطرًا من سطور الفرق:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "تم إنشاء rpm %s ك %s، ولكن كان من المستحيل تحديد الفرق"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"تم إنشاء rpm %s باعتبارها %s.\n"
+"فيما يلي أول 25 سطرًا من سطور الفرق:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
 #: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
 msgid "Additional rpm output"
-msgstr "مخرجات rpm إضافية"
+msgstr "Ù\85خرجات rpm Ø§Ù\84إضاÙ\81Ù\8aØ©"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "اÙ\84أدÙ\8aجÙ\87"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "تÙ\85 Ø¥Ù\86شاء Ø§Ù\84Ù\86سخة Ø§Ù\84احتÙ\8aاطÙ\8aØ© %s"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "اÙ\84Ø£Ù\81ارÙ\8aØ©"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "تÙ\85ت Ø§Ù\84Ù\85صادÙ\82Ø© Ø¹Ù\84Ù\89 Ø§Ù\84تÙ\88Ù\82Ù\8aع"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "افغانستان"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "نوع التوقيع غير معروف"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "اÙ\84Ø£Ù\81رÙ\8aÙ\87Ù\8aÙ\84Ù\8aØ©"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "تعذر Ø§Ù\84تحÙ\82Ù\82 Ù\85Ù\86 Ø§Ù\84تÙ\88Ù\82Ù\8aع"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "اÙ\84Ø£Ù\81رÙ\8aÙ\83اÙ\86س"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "تÙ\85ت Ø§Ù\84Ù\85صادÙ\82Ø© Ø¹Ù\84Ù\89 Ø§Ù\84تÙ\88Ù\82Ù\8aعØ\8c Ù\84Ù\83Ù\86 Ø§Ù\84Ù\85Ù\81تاح ØºÙ\8aر Ù\85Ù\88Ø«Ù\88Ù\82 Ø¨Ù\87"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "اÙ\84Ø£Ù\81رÙ\88 Ø¢Ø³Ù\8aÙ\88Ù\8aØ© - (أخرÙ\89)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "تÙ\88اÙ\82Ù\8aع Ø§Ù\84Ù\85Ù\81تاح Ø§Ù\84عÙ\85Ù\88Ù\85Ù\8a ØºÙ\8aر Ù\85تÙ\88Ù\81رة"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "الآينوية"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "الملف غير موجود أو لا يمكن التحقق من توقيعه"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "الأكانية"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "سيتم اتباع الإجراءات التالية:"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "الأكادية"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "لا يمكن قراءة مجلد المستودعات '%1%': تم رفض الإذن"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "جزر ألاند"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "فشل في قراءة المجلد '%s'"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "البانيا"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "لا يمكن قراءة ملف المستودعات '%1%': تم رفض الإذن"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "الألبانية"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "لا يمكن تشغيل مستودع يبدء اسمه المستعار بنقطه."
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "الأليوتية"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "اسم الخدمة المستعار لا يمكن أن يبدء بنقطه."
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "الجزائر"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "تعذّر فتح الملف '%s' للكتابة."
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "اللغات الأمريكية الهندية"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr "خدمة غير معروف '%1%': إزالة مستودع الخدمة اليتيم '%2%'"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "الألطائية (أخرى)"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
+msgstr[1] "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
+msgstr[2] "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
+msgstr[3] "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
+msgstr[4] "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
+msgstr[5] "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "ساموا الأمريكية"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "لا يمكن إنشاء %s"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "الأمهرية"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "لا يمكن إنشاء مجلد التخزين المؤقت للبيانات الفوقية."
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "مطلوب عقد عميل إضافي للحصول على الدعم."
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "بناء ذاكرة مستودع '%s' المؤقت"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "أندورا"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "لا يمكن إنشاء ذاكرة التخزين المؤقت في %s- لا توجد أذونات للكتابة."
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "أنجولا"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "فشل في ذاكرة التخزين المؤقت للمستودع (%d)."
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "أنجيلا"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "نوع المستودع غير معالج"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "أنتاركتيكا"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "خطأ أثناء محاولة القراءة من '%s'"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "أنتيغوا و باربودا"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "خطأ غير معروف عند القراءة من '%s'"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "اÙ\84Ù\84غات Ø§Ù\84أباتشÙ\8aØ©"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "إضاÙ\81Ø© Ù\85ستÙ\88دع '%s'"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "العربية"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "اسم ملف غير صالح المستودع في '%s'"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "اÙ\84أراجÙ\88Ù\86Ù\8aØ©"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "إزاÙ\84Ø© Ø§Ù\84Ù\85ستÙ\88دع '%s'"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "الآرامية"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "لا يمكن معرفة أين يتم تخزين المستودع."
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "الأراباهو"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "لا يمكن حذف '%s'"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "الأروكانية"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "لا يمكن معرفة أين يتم تخزين الخدمة."
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "الأراواكية"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "لا يسمح مخطط المسار بـ %s"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "الأرجنتين"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "مكون %s غير صالح '%s'"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "ارمينيا"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "مكون %s غير صالح"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "الأرمينية"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "تحليل سلسلة الاستعلام غير مدعوم لعنوان المسار هذا"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "الصناعية (أخرى)"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "يعتبر مخطط المسار مكونًا مطلوبًا"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "أروبا"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "مخطط المسار غير صالح '%s'"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "الأسامية"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "لا يسمح مخطط المسار بإدخال اسم مستخدم"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "الأسترية"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "لا يسمح مخطط المسار بإدخال كلمة مرور"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "اللغات الأزباسكانية"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "يتطلب مخطط المسار وجود مكون مضيف"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "أستراليا"
-
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "اللغات الأسترالية"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "لا يسمح مخطط المسار بوجود مكون مضيف"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "النمسا"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "مكون المضيف '%s' غير صالح"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "الأوسترونيسيان (أخرى)"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "لا يسمح مخطط المسار بإدخال منفذ"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "التصديق مطلوب لـ '%s'"
+msgid "Invalid port component '%s'"
+msgstr "مكون المنفذ '%s' غير صالح"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "الأفاريكية"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "يتطلب مخطط المسار وجود مسار اسم"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "الأفستية"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "غير مسموح بالمسار النسبي عند وجود سلطة"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "الأوادية"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "تحتوي السلسلة المُرمَّزة على وحدة بايت NUL"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "الأيمارا"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "حرف تقسيم مصفوفة المعلمات الفاصل غير صالح"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "أذربيجان"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "حرف تقسيم مخطط المعلمات الفاصل غير صالح"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "الأذربيجانية"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "حرف ربط مصفوفة المعلمات الفاصل غير صالح"
 
-#: zypp/media/MediaException.cc:47
+#: zypp/ExternalProgram.cc:258
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "اسÙ\85 Ù\85Ù\84Ù\81 ØºÙ\8aر ØµØ§Ù\84Ø­: %s"
+msgid "Can't open pty (%s)."
+msgstr "تعذر Ù\81تح pty (%s)."
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "نقطة إرفاق وسائط غير صالحة"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "لا يمكن فتح الانبوب (%s)."
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "جزر البهاما"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "لا يمكن تغيير مجلد العمل '%s' (%s)."
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "البحرين"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "لا يمكن عمل chdir إلى '%s' داخل chroot '%s' (%s)."
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "اللغة البالية"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "لا يمكن إجراء chdir إلى '%s' (%s)."
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "البلطيقية (أخرى)"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "لا يمكن تنفيذ '%s' (%s)."
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "البلوشية"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "لا يمكن تفريق (%s)."
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "اÙ\84باÙ\85بارا"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "خرج Ø§Ù\84اÙ\85ر Ø¨Ø§Ù\84حاÙ\84Ø© %d."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "اللغات الباميليكية"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "قتل الأمر بإشارة %d (%s)."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "الباندا"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "خرج الأمر بخطأ غير معروف."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "بنغلاديش"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(لا تنتهي)"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "البانتو (أخرى)"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(انتهت)"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "بربادوس"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(تنتهي في غضون 24 ساعة)"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "الباسا"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(تنتهي في غضون 24 ساعة)"
+msgstr[1] "(تنتهي في غضون 24 ساعة)"
+msgstr[2] "(تنتهي في غضون 24 ساعة)"
+msgstr[3] "(تنتهي في غضون 24 ساعة)"
+msgstr[4] "(تنتهي في غضون 24 ساعة)"
+msgstr[5] "(تنتهي في غضون 24 ساعة)"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "الباشكيرية"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "غير معروف"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "الباسك"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "غير مدعوم"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "الباتاكية (إندونسيا)"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "المستوى 1"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "البيجا"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "المستوى 2"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "روسيا البيضاء"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "المستوى 3"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "بلاروسي"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "يلزم عقود إضافية للعميل"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "بلجيكا"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "غير صالح"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "بليز"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "مستوى الدعم غير محدد"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "البيمبا"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "البائع لا يوفر الدعم."
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "بنجلاديشي"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"تحديد المشكلة، وهو يعني الدعم الفني بهدف توفير معلومات التوافق، والمساعدة في "
+"التثبيت، ودعم الاستخدام والصيانة واستكشاف الأخطاء والإصلاحات الأساسية. الدعم "
+"من المستوى 1 لا يهدف إلى تصحيح أخطاء وعيوب في المنتج."
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "بنين"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"عزل المشكلة ، ويقصد به الدعم الفني المصمم لمشاكل العملاء المتكررة، وتقديم حل "
+"للمشاكل التي لم تحل بدعم المستوى 1."
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "البربرية (أخرى)"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"قرار مشكلة، ويقصد به الدعم الفني لحل المشاكل المعقدة بإشراك المهندسين في "
+"قرارات تصحيح عيوب المنتج التي تم تحديدها بدعم المستوى 2."
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "برمودا"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "يجب الحصول على عقد عميل إضافي للحصول على الدعم."
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "البهوجبرية"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "خيار الدعم غير معروف. الوصف غير متوفر"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "بوتان"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "دولة غير معروفة: "
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "البيهارية"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "بدون رمز"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "البيكولية"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "أندورا"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "اÙ\84بÙ\8aÙ\86Ù\8aة"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "اÙ\84Ø¥Ù\85ارات Ø§Ù\84عربÙ\8aØ© Ø§Ù\84Ù\85تحدة"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "اÙ\84بÙ\8aسÙ\84اÙ\85Ù\8aØ©"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "اÙ\81غاÙ\86ستاÙ\86"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "اÙ\84بÙ\84Ù\8aÙ\86Ù\8aØ©"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Ø£Ù\86تÙ\8aغÙ\88ا Ù\88 Ø¨Ø§Ø±Ø¨Ù\88دا"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "بÙ\88Ù\84Ù\8aÙ\81Ù\8aا"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Ø£Ù\86جÙ\8aÙ\84ا"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "البوسنة والهرسك"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "البانيا"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "البوسنية"
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "ارمينيا"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "بوتسوانا"
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "هولندا"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "جزÙ\8aرة Ø¨Ù\88Ù\81Ù\8aÙ\87"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Ø£Ù\86جÙ\88Ù\84ا"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "اÙ\84براجÙ\8aØ©"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Ø£Ù\86تارÙ\83تÙ\8aÙ\83ا"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "اÙ\84برازÙ\8aÙ\84"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "اÙ\84أرجÙ\86تÙ\8aÙ\86"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "اÙ\84برÙ\8aتÙ\88Ù\86"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "ساÙ\85Ù\88ا Ø§Ù\84Ø£Ù\85رÙ\8aÙ\83Ù\8aØ©"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "مقاطعة المحيط الهندي البريطانية"
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "النمسا"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "جزر Ù\81Ù\8aرجÙ\86 Ø§Ù\84برÙ\8aطاÙ\86Ù\8aØ©"
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "أستراÙ\84Ù\8aا"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "برÙ\88Ù\86اÙ\8a Ø¯Ø§Ø± Ø§Ù\84سÙ\84اÙ\85"
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "أرÙ\88با"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "اÙ\84بجÙ\8aÙ\86Ù\8aزÙ\8aØ©"
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "جزر Ø£Ù\84اÙ\86د"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "بÙ\86اء Ø§Ù\84ذاÙ\83رة Ø§Ù\84Ù\85ؤÙ\82تة Ù\84Ù\85خزÙ\86 '%s'"
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "أذربÙ\8aجاÙ\86"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "بÙ\84غارÙ\8aا"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "اÙ\84بÙ\88سÙ\86Ø© Ù\88اÙ\84Ù\87رسÙ\83"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "اÙ\84بÙ\84غارÙ\8aØ©"
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "بربادÙ\88س"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "البرياتية"
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "بنغلاديش"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "بلجيكا"
 
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
 msgstr "بوركينا فاسو"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "البورمية"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "بلغاريا"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "البحرين"
 
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "بوروندي"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "اÙ\84Ù\83ادÙ\88"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "بÙ\86Ù\8aÙ\86"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "كمبوديا"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "برمودا"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "اÙ\84Ù\83اÙ\85Ù\8aرÙ\88Ù\86"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "برÙ\88Ù\86اÙ\8a Ø¯Ø§Ø± Ø§Ù\84سÙ\84اÙ\85"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "تعذر إنشاء sat-pool."
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "بوليفيا"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "تعذر الحصول على قفل mutex"
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "البرازيل"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "لا يمكن إجراء chdir إلى '%s' (%s)."
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "جزر البهاما"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "لا يمكن إجراء chdir إلى '%s' داخل chroot '%s' (%s)."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "بوتان"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "تعذر تغيير الدليل الجذر إلى '%s' (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "يتعذر إنشاء %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "يتعذر إنشاء ذاكرة التخزين المؤقت على %s - لا توجد أذونات كتابية."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "يتعذر إنشاء دليل لذاكرة التخزين المؤقت لبيانات التعريف."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "تعذر حذف '%s'"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "تعذر تنفيذ '%s' (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "تعذرت معرفة مكان تخزين repo."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "تعذر معرفة مكان تخزين الخدمة."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "تعذر تشعيب (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "تعذرت تهيئة سمات mutex"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "تعذرت تهيئة mutex متكرر"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "تعذر فتح الملف '%s' للكتابة."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "تعذر فتح ملف القفل: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "تعذر فتح المسار (%s)."
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "تعذر فتح pty (%s)."
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "جزيرة بوفيه"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "تعذر ØªÙ\88Ù\81Ù\8aر Ø§Ù\84Ù\85Ù\84Ù\81 '%s' Ù\85Ù\86 Ø§Ù\84Ù\85خزÙ\86 '%s'"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "بÙ\88تسÙ\88اÙ\86ا"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "تعذر تحرير قفل mutex"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "روسيا البيضاء"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "تعذر تعيين سمة mutex المتكررة"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "بليز"
 
 #. :BLZ:084:
 #: zypp/CountryCode.cc:194
 msgid "Canada"
 msgstr "كندا"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "تعذر إخراج أية وسائط"
-
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "تعذر إخراج الوسائط '%s'"
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr "تعذر العثور على جهاز التسلسل المتاح لتوصيل ملف الصور من '%s'"
-
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "لا يمكن قراءة مجلد المستودعات '%1%': تم رفض الإذن"
-
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "لا يمكن قراءة ملف المستودعات '%1%': تم رفض الإذن"
-
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "تعذرت كتابة الملف '%s'."
-
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "الرأس الأخضر"
-
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "الكاريبية"
-
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "الكاتالانية"
-
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "القوقازية (أخرى)"
-
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "جزر كيمان"
-
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "السيبيونو"
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "جزر كوكوس (كيلنج)"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "السلتية (أخرى)"
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "الكونغو"
 
 #. :COD:180:
 #: zypp/CountryCode.cc:197
 msgid "Central African Republic"
 msgstr "جمهورية أفريقيا الوسطى"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "الهندية الأمريكية الوسطى (أخرى)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "تشاد"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "التشاجاتاى"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "اللغات التشاميكية"
-
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "التشامورو"
-
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "ملفات تكوين %s التي تم تغييرها:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "الشيشانية"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "الشيروكى"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "الشايان"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "سويسرا"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "اÙ\84تشÙ\8aبشا"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "ساحÙ\84 Ø§Ù\84عاج"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "اÙ\84تشÙ\8aتشÙ\88ا"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "جزر Ù\83Ù\88Ù\83"
 
 #. :COK:184:
 #: zypp/CountryCode.cc:202
 msgid "Chile"
 msgstr "تشيلي"
 
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "الكاميرون"
+
 #. :CMR:120:
 #: zypp/CountryCode.cc:204
 msgid "China"
 msgstr "الصين"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "الصينية"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "كولومبيا"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "الشينوك جارجون"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "كوستاريكا"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "الشيباوايان"
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "كوبا"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "اÙ\84Ø´Ù\88Ù\83تÙ\88"
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "اÙ\84رأس Ø§Ù\84أخضر"
 
 #. :CPV:132:
 #: zypp/CountryCode.cc:209
 msgid "Christmas Island"
 msgstr "جزيرة الكريسماس"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "سلافية كنسية"
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "التشكيزية"
-
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "التشفاش"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "النوارية التقليدية"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "جزر كوكوس (كيلنج)"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "كولومبيا"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "تم إنهاء الأمر بالحالة %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "تم إنهاء الأمر بخطأ غير معروف."
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "تم إنهاء الأمر بواسطة الإشارة %d (%s)."
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "جزر القمر"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "يتعارض"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "الكونغو"
-
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "جزر كوك"
-
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "القبطية"
-
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "الكورنية"
-
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "الكورسيكية"
-
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "كوستاريكا"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "ساحل العاج"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "الكري"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "كريك"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "الكرييولى واللغات المبسطة الأخرى للتفاهم بين الشعوب (أخرى)"
-
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr ""
-"الكرييولى واللغات المبسطة الأخرى للتفاهم بين الشعوب على أساس الأنجليزية"
-
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "الكرييولى واللغات المبسطة الأخرى للتفاهم بين الشعوب على أساس الفرنسية"
-
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr ""
-"الكرييولى واللغات المبسطة الأخرى للتفاهم بين الشعوب على أساس البرتغالية"
-
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "لغة توركية كريمينية"
-
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "كرواتيا"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "الكرواتية"
-
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "كوبا"
-
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr "الكشيتيك (أخرى)"
-
 #. :CXR:162:
 #: zypp/CountryCode.cc:210
 msgid "Cyprus"
 msgstr "قبرص"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "التشيكية"
-
 #. :CYP:196:
 #: zypp/CountryCode.cc:211
 msgid "Czech Republic"
 msgstr "جمهورية التشيك"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "الداكوتا"
-
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "الدانماركية"
-
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr "الدارجوا"
-
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr "الدياك"
-
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "الديلوير"
-
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "الدنمارك"
-
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "الدنكا"
-
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "المالديفية"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "ألمانيا"
 
 #. :DEU:276:
 #: zypp/CountryCode.cc:213
 msgid "Djibouti"
 msgstr "جيبوتي"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "الدوجرى"
-
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "الدوجريب"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "الدنمارك"
 
 #. :DNK:208:
 #: zypp/CountryCode.cc:215
@@ -1166,453 +948,1605 @@ msgstr "دومينيكان"
 msgid "Dominican Republic"
 msgstr "جمهورية الدومينيكان"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"خطأ في إنزال (curl) لـ '%s':\n"
-"رمز الخطأ: %s\n"
-"رسالة الخطأ: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "فشلت تهيئة إنزال (curl) لـ '%s'"
-
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "الدرافيدين (أخرى)"
-
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "الديولا"
-
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
-"النوع المشكوك فيه '%s' للمجموع الاختباري لوحدات البايت %u الذي يبلغ '%s'"
-
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "الهولندية"
-
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "الهولندية الوسطى (1050-1350)"
-
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr "الدايلا"
-
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "الزونخاية"
-
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "تيمور الشرقية"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "الجزائر"
 
 #. :DZA:012:
 #: zypp/CountryCode.cc:218
 msgid "Ecuador"
 msgstr "الإكوادور"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "الافيك"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "استونيا"
 
 #. :EST:233:
 #: zypp/CountryCode.cc:220
 msgid "Egypt"
 msgstr "مصر"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "المصرية القديمة"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "الصحراء الغربية"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "اÙ\84اÙ\83اجÙ\83"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "إرتÙ\8aرÙ\8aا"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "اÙ\84سÙ\84Ù\81ادÙ\88ر"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "أسباÙ\86Ù\8aا"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "اÙ\84اÙ\85اÙ\8aت"
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "إثÙ\8aÙ\88بÙ\8aا"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "وجهة فارغة في URI"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "فنلندا"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "نظام ملفات فارغ في URI"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "فيجي"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "اسم مضيف فارغ في URI"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "جزر فوكلاند (مالفينس)"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "تحتوي السلسلة المُرمَّزة على وحدة بايت NUL"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "اتحاد دول ميكرونيزيا"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "اÙ\84Ø¥Ù\86جÙ\84Ù\8aزÙ\8aØ©"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "جزر Ù\81Ù\8aرÙ\88"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "الإنجليزية الوسطى (1100-1500)"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "فرنسا"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "الإنجليزية القديمة (450-1100)"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "فرنسا المركزية"
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "يعزز"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "الجابون"
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "غÙ\8aÙ\86Ù\8aا Ø§Ù\84استÙ\88ائÙ\8aة"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "اÙ\84Ù\85Ù\85Ù\84Ù\83Ø© Ø§Ù\84Ù\85تحدة"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "إرتÙ\8aرÙ\8aا"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "غرÙ\8aÙ\86ادا"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "حدث خطأ أثناء تعيين خيارات إنزال (curl) لـ '%s':"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "جورجيا"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "حدث خطأ أثناء إرسال إعلامات رسائل التحديث"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "جيانا الفرنسية"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "حدث خطأ أثناء محاولة القراءة من '%s'"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "جيرنسي"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "اللغة الأرزية"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "غانا"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "اÙ\84إسبراÙ\86تÙ\88"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "جبÙ\84 Ø·Ø§Ø±Ù\82"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "استÙ\88Ù\86Ù\8aا"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "جرÙ\8aÙ\86 Ù\84اÙ\86د"
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "اÙ\84إستÙ\88Ù\86Ù\8aØ©"
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "جاÙ\85بÙ\8aا"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "إثÙ\8aÙ\88بيا"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "غÙ\8aÙ\86يا"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Ø¥Ù\8aÙ\88Ù\8a"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "جÙ\88ادÙ\84Ù\88ب"
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "اÙ\84Ø¥Ù\8aÙ\88Ù\86دÙ\88"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "غÙ\8aÙ\86Ù\8aا Ø§Ù\84استÙ\88ائÙ\8aØ©"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "فشل تخزين repo (%d) مؤقتًا."
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "اليونان"
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "فشل حذف المفتاح."
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "جورجيا الجنوبية وجزر ساندويتش الجنوبية"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "فشل استيراد المفتاح العام من الملف %s: %s"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "غواتيمالا"
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "فشل توصيل %s بـ %s"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "جوام"
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "فشل تقديم الحزمة %s. هل تريد إعادة محاولة الاسترداد؟"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "غينيا بيساو"
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "فشلت قراءة الدليل '%s'"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "جيانا"
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "فشلت إزالة المفتاح العام %s: %s"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "هونج كونج"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "فشل إلغاء توصيل %s"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "جزيرة هيرد وجزر ماكدونالد"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "جزر فوكلاند (مالفينس)"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "هندوراس"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "كرواتيا"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "هايتي"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "المجر"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "إندونيسيا"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "أيرلندا"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "اسرائيل"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "جزيرة مان"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "الهند"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "مقاطعة المحيط الهندي البريطانية"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "العراق"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "إيران"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "أيسلندا"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "إيطاليا"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "جيرسي"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "جامايكا"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "الأردن"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "اليابان"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "كينيا"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "قيرقيزستان"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "كمبوديا"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "كيريباتي"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "جزر القمر"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "سانت كيتس ونيفيس"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "كوريا الشمالية"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "كوريا الجنوبية"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "الكويت"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "جزر كيمان"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "كازاخستان"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "جمهورية لاو الشعبية الديمقراطية"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "لبنان"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "سانت لوشا"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "ليشتنشتاين"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "سيريلانكا"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "ليبريا"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "ليسوتو"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "ليتوانيا"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "لوكسمبورغ"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "لاتفيا"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "ليبيا"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "المغرب"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "موناكو"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "مولدافا"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "الجبل الأسود"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "سانت مارتن"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "مدغشقر"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "جزر مارشال"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "مقدونيا"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "مالي"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "ميانمار"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "منغوليا"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "ماكاو"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "جزر ماريانا الشمالية"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "مارتينيك"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "موريتانيا"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "مونتسيرات"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "مالطة"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "موريشيوس"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "جزر المالديف"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "مالاوي"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "المكسيك"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "ماليزيا"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "موزمبيق"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "ناميبيا"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "كاليدونيا الجديدة"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "النيجر"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "جزيرة نورفولك"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "نيجيريا"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "نيكاراجوا"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "هولندا"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "النرويج"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "نيبال"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "ناورو"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "نيوي"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "نيوزيلاندا"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "عمان"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "بنما"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "البيرو"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "بولينيسيا الفرنسية"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "بابواغينيا الجديدة"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "الفلبين"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "باكستان"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "بولندا"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "سان بيير ومكويلون"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "بيتكيرن"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "بورتوريكو"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "فلسطين"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "البرتغال"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "بالاو"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "باراغواي"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "قطر"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "ريونيون"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "رومانيا"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "صربيا"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "روسيا الاتحادية"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "رواندا"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "المملكة العربية السعودية"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "جزر سليمان"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "سيشل"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "السودان"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "السويد"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "سنغافورا"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "سانت هلينا"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "سلوفينيا"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "سفالبارد وجان ماين"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "سلوفاكيا"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "سيراليون"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "سان مارينو"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "السنغال"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "الصومال"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "سورينام"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "سان تومي وبرينسيبي"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "السلفادور"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "سوريا"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "سوازيلند"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "جزر توركس وكايكوس"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "تشاد"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "المقاطعات الجنوبية الفرنسية"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "توجو"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "تايلاند"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "طاجكستان"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "توكيلو"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "تركمانستان"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "تونس"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "تونجا"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "تيمور الشرقية"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "تركيا"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "ترينيداد وتوباغو"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "توفالو"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "تايوان"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "تنزانيا"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "أوكرانيا"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "أوغندا"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "الجزر الفرعية النائية التابعة للولايات المتحدة الأميركية"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "الولايات المتحدة"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "الأوروغواي"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "أوزباكستان"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "الكرسي البابوي (دولة الفاتيكان)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "سانت فنسنت وجزر غرينادين"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "فنزويلا"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "جزر فيرجن البريطانية"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "جزر فيرجن الأمريكية."
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "فيتنام"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "فانواتو"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "جزر والس وفوتونا"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "ساموا"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "اليمن"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "مايوت"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "جنوب أفريقيا"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "زامبيا"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "زيمبابوي"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "لغة غير معروفة: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "الأفارية"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "أذربيجان"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "الأتشينيزية"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "الأكولية"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "الأدانجمية"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "الأديجه"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "الأفرو آسيوية-(أخرى)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "الأفريهيلية"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "الأفريكانس"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "الآينوية"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "الأكانية"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "الأكادية"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "الألبانية"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "الأليوتية"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "اللغات الأمريكية الهندية"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "الألطائية الجنوبية"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "الأمهرية"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "الإنجليزية القديمة (450-1100)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "اللغات الأباتشية"
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "العربية"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "الآرامية"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "الأراجونية"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "الأرمينية"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "الأروكانية"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "الأراباهو"
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "الصناعية (أخرى)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "الأراواكية"
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "الأسامية"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "الأسترية"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "اللغات الأزباسكانية"
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "اللغات الأسترالية"
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "الأفاريكية"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "الأفستية"
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "الأوادية"
+
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "الأيمارا"
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "الأذربيجانية"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "الباندا"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "اللغات الباميليكية"
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "الباشكيرية"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "البلوشية"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "البامبارا"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "اللغة البالية"
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "الباسك"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "الباسا"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "البلطيقية (أخرى)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "البيجا"
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "بلاروسي"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "البيمبا"
+
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "بنجلاديشي"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "البربرية (أخرى)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "البهوجبرية"
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "البيهارية"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "البيكولية"
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "البينية"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "البيسلامية"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "السيكسيكية"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "البانتو (أخرى)"
+
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "البوسنية"
+
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "البراجية"
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "البريتون"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "الباتاكية (إندونسيا)"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "البرياتية"
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "البجينيزية"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "البلغارية"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "البورمية"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "البلينية"
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "الكادو"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "الهندية الأمريكية الوسطى (أخرى)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "الكاريبية"
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "الكاتالانية"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "القوقازية (أخرى)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "السيبيونو"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "السلتية (أخرى)"
+
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "التشامورو"
+
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "التشيبشا"
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "الشيشانية"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "التشاجاتاى"
+
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "الصينية"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "الفانج"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "التشكيزية"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "اÙ\84Ù\81اÙ\86تÙ\89"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "اÙ\84Ù\85ارÙ\8aØ©"
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "جزر فيرو"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "الشينوك جارجون"
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "الشوكتو"
+
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "الشيباوايان"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "الشيروكى"
+
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "سلافية كنسية"
+
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "التشفاش"
+
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "الشايان"
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "اللغات التشاميكية"
+
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "القبطية"
+
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "الكورنية"
+
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "الكورسيكية"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr ""
+"الكرييولى واللغات المبسطة الأخرى للتفاهم بين الشعوب على أساس (الأنجليزية)"
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr ""
+"الكرييولى واللغات المبسطة الأخرى للتفاهم بين الشعوب على أساس (الفرنسية)"
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr ""
+"الكرييولى واللغات المبسطة الأخرى للتفاهم بين الشعوب على أساس (البرتغالية)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "الكري"
+
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "لغة توركية كريمينية"
+
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "الكرييولى واللغات المبسطة الأخرى للتفاهم بين الشعوب (أخرى)"
+
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "الكاشبايان"
+
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr "الكشيتيك (أخرى)"
+
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "التشيكية"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "الداكوتا"
+
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "الدانماركية"
+
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr "الدارجوا"
+
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr "الدياك"
+
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "الديلوير"
+
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "السلافية (الأزباسكانية)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "الدوجريب"
+
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "الدنكا"
+
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "المالديفية"
+
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "الدوجرى"
+
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "الدرافيدين (أخرى)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "الصربية السفلى"
+
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "الديولا"
+
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "الهولندية الوسطى (1050-1350)"
+
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "الهولندية"
+
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
+msgstr "الدايلا"
+
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "الزونخاية"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "الافيك"
+
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "المصرية (القديمة)"
+
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "الاكاجك"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "الامايت"
+
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "الإنجليزية"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "الإنجليزية الوسطى (1100-1500)"
+
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "الإسبرانتو"
+
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "الإستونية"
+
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "إيوي"
+
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "الإيوندو"
+
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "الفانج"
 
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "الفارويز"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "اتحاد دول ميكرونيزيا"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "فيجي"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "الفانتى"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "الفيجية"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"يتعارض ملف %1%\n"
-"  من تثبيت\n"
-"     %2%\n"
-"  مع الملف\n"
-"     %3%\n"
-"  من تثبيت\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"يتعارض ملف %1%\n"
-"  من تثبيت\n"
-"     %2%\n"
-"  مع الملف\n"
-"     %3%\n"
-"  من الحزمة\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"يتعارض ملف %1%\n"
-"  من تثبيت\n"
-"     %2%\n"
-"  مع الملف من تثبيت\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"يتعارض ملف %1%\n"
-"  من تثبيت\n"
-"     %2%\n"
-"  مع الملف من الحزمة\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"يتعارض ملف %1%\n"
-"  من الحزمة\n"
-"     %2%\n"
-"  مع الملف\n"
-"     %3%\n"
-"  من تثبيت\n"
-"     %4%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"يتعارض ملف %1%\n"
-"  من الحزمة\n"
-"     %2%\n"
-"  مع الملف\n"
-"     %3%\n"
-"  من الحزمة\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"يتعارض ملف %1%\n"
-"  من الحزمة\n"
-"     %2%\n"
-"  مع الملف من تثبيت\n"
-"     %3%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"يتعارض ملف %1%\n"
-"  من الحزمة\n"
-"     %2%\n"
-"  مع الملف من الحزمة\n"
-"     %3%"
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "لم يتم العثور على الملف '%s' في الوسيط '%s'"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "الملف غير موجود أو لا يمكن التحقق من توقيعه"
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "الفلبينية"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "فنلندا"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1623,40 +2557,16 @@ msgstr "الفنلندية"
 msgid "Finno-Ugrian (Other)"
 msgstr "فينو أجرايان (أخرى)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "سيتم تنفيذ الإجراءات التالية:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "الفون"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "فرنسا"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "الفرنسية"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "جيانا الفرنسية"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "بولينيسيا الفرنسية"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "المقاطعات الجنوبية الفرنسية"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1672,46 +2582,21 @@ msgstr "الفرنسية القديمة (842-1400)"
 msgid "Frisian"
 msgstr "الفريزيان"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "الفريلايان"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "الفلة"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "الفريلايان"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "الجا"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "الجابون"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "الغيلية"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "الجاليكية"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "جامبيا"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "الجاندا"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1722,25 +2607,50 @@ msgstr "الجايو"
 msgid "Gbaya"
 msgstr "الجبيا"
 
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "الجرمانية (أخرى)"
+
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
+msgstr "الجورجية"
+
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+msgid "German"
+msgstr "الألمانية"
+
 #. language code: gez
 #: zypp/LanguageCode.cc:475
 msgid "Geez"
 msgstr "الجيز"
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "جورجيا"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "لغة أهل جبل طارق"
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
-msgstr "الجورجية"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "الغيلية"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "الأيرلندية"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "الجاليكية"
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-msgid "German"
-msgstr "الألمانية"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "المنكية"
 
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
@@ -1752,30 +2662,6 @@ msgstr "الألمانية العليا الوسطى (1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "الألمانية العليا القديمة (750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "الجرمانية (أخرى)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "ألمانيا"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "غانا"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "جبل طارق"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "لغة أهل جبل طارق"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1796,11 +2682,6 @@ msgstr "الجرمانية"
 msgid "Grebo"
 msgstr "الجريبو"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "اليونان"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1811,61 +2692,16 @@ msgstr "اليونانية القديمة (حتى 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "اليونانية الحديثة (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "جرين لاند"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "غرينادا"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "جوادلوب"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "جوام"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "الجوارانى"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "غواتيمالا"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "غويرنسي"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "غينيا"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "غينيا بيساو"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "الغوجاراتية"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "جيانا"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1876,52 +2712,21 @@ msgstr "جويتشن"
 msgid "Haida"
 msgstr "الهيدا"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "هايتي"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "الهايتية"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "استثناء في Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext غير متصل"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "لم تتم تهيئة HalDrive"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "لم تتم تهيئة HalVolume"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "الهوسا"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "هل قمت بتمكين كل المخازن المطلوبة؟"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "لغة أهل الهاواى"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "جزيرة هيرد وجزر ماكدونالد"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1947,16 +2752,6 @@ msgstr "الهيماتشالى"
 msgid "Hindi"
 msgstr "هندية"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "الهيرى موتو"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "المحفوظات:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1967,31 +2762,21 @@ msgstr "الحثية"
 msgid "Hmong"
 msgstr "الهمونجية"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "الكرسي البابوي (دولة الفاتيكان)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "هندوراس"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "الهيرى موتو"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "هونج كونج"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "الصربية العليا"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "المجرية"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "المجر"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2002,10 +2787,10 @@ msgstr "الهبا"
 msgid "Iban"
 msgstr "الإيبان"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Ø£Ù\8aسÙ\84Ù\86دا"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "اÙ\84Ø¥Ù\8aجبÙ\88"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2017,250 +2802,105 @@ msgstr "الآيسلندية"
 msgid "Ido"
 msgstr "الإيدو"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "اÙ\84Ø¥Ù\8aجبÙ\88"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "اÙ\84سÙ\8aتشÙ\8aÙ\88Ù\86 Ù\8aÙ\89"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "الإيجو"
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr "الإيلوكو"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "الإيناري سامي"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "الهند"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr "الهندية (أخرى)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "الهندية الأوروبية (أخرى)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "إندونيسيا"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "الإندونيسية"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "الإنجوشية"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "تم إيقاف التثبيت وفقًا للتعليمات."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "اللغة الوسيطة (جمعية اللغات المساعدة الدولية)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "الإنترلينج"
-
 #. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "الإينكتيتت"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "الإينبياك"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "مكون %s غير صالح"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "مكون %s غير صالح '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "معلمة استعلام URL لبروتوكول LDAP غير صالحة '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "سلسلة استعلام URL لبروتوكول LDAP غير صالحة"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "مخطط Url غير صالح '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "مرجع كائن Url فارغ غير صالح"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "مكون المضيف '%s' غير صالح"
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "الإينكتيتت"
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "حرف فاصل ربط مصفوفة المعلمات غير صالح"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "الإنترلينج"
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "حرف فاصل تقسيم مصفوفة المعلمات غير صالح"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr "الإيلوكو"
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "حرف فاصل تقسيم مخطط المعلمات غير صالح"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "اللغة الوسيطة (جمعية اللغات المساعدة الدولية)"
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "مكون المنفذ '%s' غير صالح"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr "الهندية (أخرى)"
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "اÙ\84تعبÙ\8aر Ø§Ù\84عادÙ\8a '%s' ØºÙ\8aر ØµØ§Ù\84Ø­"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "اÙ\84Ø¥Ù\86دÙ\88Ù\86Ù\8aسÙ\8aØ©"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "تعبÙ\8aر Ø¹Ø§Ø¯Ù\8a ØºÙ\8aر ØµØ§Ù\84Ø­ '%s': regcomp Ø£Ø¹Ø§Ø¯ %d"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "اÙ\84Ù\87Ù\86دÙ\8aØ© Ø§Ù\84Ø£Ù\88رÙ\88بÙ\8aØ© (أخرÙ\89)"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "اسم ملف repo غير صالح على '%s'"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "الإنجوشية"
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Ø¥Ù\8aراÙ\86"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "اÙ\84Ø¥Ù\8aÙ\86بÙ\8aاÙ\83"
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "الإيرانية (أخرى)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "العراق"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "أيرلندا"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "الأيرلندية"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "الأيرلندية الوسطى (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "الأيرلندية القديمة (إلى 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "اللغات الإيروكويانية"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "جزيرة مان"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "اسرائيل"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "الإيطالية"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "إيطاليا"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "جامايكا"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "الجاوية"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "اÙ\84Ù\8aابان"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "اÙ\84Ù\84Ù\88جبان"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "اليابانية"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "الجاوية"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "جيرسي"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "الأردن"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "الجيدو الفارسى"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "الجيدو العربي"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "الجيدو الفارسى"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "الكاباردايان"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "الكارا كالباك"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2277,11 +2917,6 @@ msgstr "الكاتشين"
 msgid "Kalaallisut"
 msgstr "الكالاليست"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "الكالميك"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2292,21 +2927,6 @@ msgstr "الكامبا"
 msgid "Kannada"
 msgstr "الكانادا"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "الكانيورى"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "الكارا كالباك"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "الكاراتشاى بالكار"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2317,10 +2937,10 @@ msgstr "الكاريين"
 msgid "Kashmiri"
 msgstr "الكاشميرية"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "الكاشبايان"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "الكانيورى"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2332,31 +2952,26 @@ msgstr "الكوي"
 msgid "Kazakh"
 msgstr "الكازاخستانية"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "كازاخستان"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "كينيا"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "الكاباردايان"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "الخاسي"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "الخميرية"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "الخويسان (أخرى)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "الخميرية"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2367,11 +2982,6 @@ msgstr "الخوتانيز"
 msgid "Kikuyu"
 msgstr "الكيكيو"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "الكيمبندو"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2382,15 +2992,15 @@ msgstr "الكينيارواندا"
 msgid "Kirghiz"
 msgstr "القيرغستانية"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "كيريباتي"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "الكيمبندو"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "اÙ\84Ù\83Ù\84Ù\8aÙ\86جÙ\88Ù\86"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "اÙ\84Ù\83Ù\88Ù\86Ù\83اÙ\86Ù\8aØ©"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2402,11 +3012,6 @@ msgstr "الكومى"
 msgid "Kongo"
 msgstr "الكونغو"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "الكونكانية"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2422,11 +3027,21 @@ msgstr "الكوسراين"
 msgid "Kpelle"
 msgstr "الكبيل"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "الكاراتشاى بالكار"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "الكرو"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "كوروخ"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2442,26 +3057,11 @@ msgstr "الكميك"
 msgid "Kurdish"
 msgstr "الكردية"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "كوروخ"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "الكتيناى"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "الكويت"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "قيرقيزستان"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2477,73 +3077,26 @@ msgstr "اللاهندا"
 msgid "Lamba"
 msgstr "اللامبا"
 
-#. language code: lao lo
-#: zypp/LanguageCode.cc:661
-msgid "Lao"
-msgstr "اللاوية"
-
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "جمهورية لاو الشعبية الديمقراطية"
+#. language code: lao lo
+#: zypp/LanguageCode.cc:661
+msgid "Lao"
+msgstr "اللاوية"
 
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "اللاتينية"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "لاتفيا"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "اللاتفية"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "لبنان"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "ليسوتو"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "المستوى 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "المستوى 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "المستوى 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "الليزجهايانية"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "ليبريا"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "ليبيا"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "ليشتنشتاين"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2554,61 +3107,46 @@ msgstr "الليمبورغية"
 msgid "Lingala"
 msgstr "اللينجالا"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "ليتوانيا"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "الليتوانية"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "يتعذر الوصول إلى الموقع '%s' مؤقتًا."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "اللوجبان"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "الألمانية السفلى"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "الصربية السفلى"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "المنغولية"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "اللوزى"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "اللبا-كاتانجا"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "اللوكسمبرجية"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "اللبا-لؤلؤ"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "اللبا-كاتانجا"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "الجاندا"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "اللوسينو"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "اللول سامي"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2624,35 +3162,11 @@ msgstr "اللو (كينيا وتنزانيا)"
 msgid "Lushai"
 msgstr "اللشاى"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "لوكسمبورغ"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "اللوكسمبرجية"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "ماكاو"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "مقدونيا"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "المقدونية"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "مدغشقر"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2663,6 +3177,11 @@ msgstr "المادريز"
 msgid "Magahi"
 msgstr "الماجا"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "المارشالية"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2673,178 +3192,60 @@ msgstr "المايثلية"
 msgid "Makasar"
 msgstr "الماكاسار"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "المالاجاشية"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "مالاوي"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "الملايو"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "الماليالام"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "ماليزيا"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "جزر المالديف"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "URI غير صالح"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "مالي"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "مالطة"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "المالطية"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "المانشو"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "الماندار"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "الماندينغ"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "المانيبرى"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "لغات مانوبو"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "المنكية"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "الموري"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "الأوسترونيسيان (أخرى)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "المراثي"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "المارية"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "جزر مارشال"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "المارشالية"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "مارتينيك"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "الماروارى"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "الماساي"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "موريتانيا"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "موريشيوس"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "لغات المايا"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "مايوت"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "لا يحتوي مصدر الوسائط '%s' على الوسيط المطلوب"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "الوسيط '%s' مستخدَم بواسطة مثيل آخر"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "الملايو"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "لم يتم إرفاق الوسيط"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "الموكشا"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "لم يتم فتح الوسيط أثناء محاولة تنفيذ الإجراء '%s'."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "الماندار"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "الميند"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "فرنسا المركزية"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "المكسيك"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "الأيرلندية الوسطى (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2856,86 +3257,61 @@ msgstr "الميكماكيونية"
 msgid "Minangkabau"
 msgstr "المينانجكاباو"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "الميرانديز"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "اللغات المتنوعة"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "المون خمير (أخرى)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "المالاجاشية"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "المالطية"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "المانشو"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "المانيبرى"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "لغات مانوبو"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "الموهوك"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "الموكشا"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "المولدوفية"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "مولدافا"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "المون خمير (أخرى)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "موناكو"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "المنغولية"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "منغوليا"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "المنغولية"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "الجبل الأسود"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "مونتسيرات"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "المغرب"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "موسي"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "موزمبيق"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2946,210 +3322,141 @@ msgstr "اللغات المتعددة"
 msgid "Munda languages"
 msgstr "لغات المندا"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "ميانمار"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "كريك"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "الميرانديز"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "الماروارى"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "لغات المايا"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "اللغة الأرزية"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "الناهيوتل"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "ناميبيا"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "الهندية الأمريكية الشمالية"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "ناورو"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "اللغة النابولية"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "نافاجو"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "النديبيل الشمالي"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "النديبيل الجنوبى"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "النديبيل الشمالي"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "الندونجا"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "اللغة النابولية"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "نيبال"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "نيبال فاسا"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "الألمانية السفلى"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "النيبالية"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "هولندا"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "هولندا"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "كاليدونيا الجديدة"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "نيوزيلاندا"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "رسالة تحديث جديد"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "نيبال فاسا"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "نياس"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "نيكاراجوا"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "النيجر"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "النيجر-كوردوفانايان (أخرى)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "نيجيريا"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "النيلية الصحراوية (أخرى)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "نيوي"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "نيويان"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "بدون رمز"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "النينورسك النرويجي"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "لا يوجد عنوان url في المخزن."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "البوكمال النرويجي"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
-msgid "Nogai"
-msgstr "نوجاى"
-
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "جزيرة نورفولك"
+msgid "Nogai"
+msgstr "نوجاى"
 
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "النورس القديم"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "الهندية الأمريكية الشمالية"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "كوريا الشمالية"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "جزر ماريانا الشمالية"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "السامية الشمالية"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "سوتو الشمالي"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "النرويج"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "النرويجية"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "البوكمال النرويجي"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "النينورسك النرويجي"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "ليس محرك أقراص مضغوطة"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "سوتو الشمالي"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "اللغات النوبية"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "النوارية التقليدية"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "التشيتشوا"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3170,10 +3477,6 @@ msgstr "النيورو"
 msgid "Nzima"
 msgstr "النزيما"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "العناصر القديمة"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3184,20 +3487,6 @@ msgstr "أوكيتان (بعد 1500)"
 msgid "Ojibwa"
 msgstr "الأوجيبوا"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "عمان"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "إحدى السمتين '%s' أو '%s' أو كلتيهما مطلوبة."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "لا يدعم الوسيط العملية"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3218,1636 +3507,1962 @@ msgstr "الأوساج"
 msgid "Ossetian"
 msgstr "الأوسيتيان"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "التركية العثمانية (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "اللغات العثمانية"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"يبدو أنه قد تم إتلاف الحزمة %s أثناء النقل. هل تريد إعادة محاولة الاسترداد؟ "
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "الغينية (أخرى)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "البانجاسينان"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "البهلوية"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "باÙ\83ستاÙ\86"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "اÙ\84باÙ\85باÙ\86جا"
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "بالاو"
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "بانجابي"
+
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "البابيامينتو"
 
 #. language code: pau
 #: zypp/LanguageCode.cc:857
 msgid "Palauan"
 msgstr "البالوان"
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "فلسطين"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
+msgstr "الفارسية القديمة (600-400 قبل الميلاد)"
+
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "الفارسية"
+
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
+msgstr "الفليبينية (أخرى)"
+
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
+msgstr "الفينيقية"
 
 #. language code: pli pi
 #: zypp/LanguageCode.cc:869
 msgid "Pali"
 msgstr "البالية"
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "البامبانجا"
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
+msgstr "البولندية"
+
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "البوهنبيايان"
+
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
+msgstr "البرتغالية"
+
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
+msgstr "اللغات البراقريطية"
+
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
+msgstr "البروفانسية القديمة (حتى 1500)"
+
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
+msgstr "بوشتو"
+
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
+msgstr "الكويتشوا"
+
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
+msgstr "الراجاسثانية"
+
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
+msgstr "الرابانى"
+
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
+msgstr "الراروتونجانى"
+
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
+msgstr "الرومانسية (أخرى)"
+
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "الرهايتو-رومانس"
+
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "الرومانية"
+
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "الرومانية"
+
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "روندي"
+
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "الروسية"
+
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "السانداوي"
+
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "السانجو"
+
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "الياكت"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "الهندية الأمريكية الجنوبية (أخرى)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "لغات ساليشان"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "الآرامية السومارية"
+
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
+msgstr "السنسكريتية"
+
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "الساساك"
+
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "السانتالي"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "بÙ\86Ù\85ا"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "اÙ\84صربÙ\8aØ©"
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "اÙ\84باÙ\86جاسÙ\8aÙ\86اÙ\86"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "اÙ\84صÙ\82Ù\84Ù\8aØ©"
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "باÙ\86جابÙ\8a"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "اÙ\84أسÙ\83تÙ\84Ù\86دÙ\8aØ©"
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "البابيامينتو"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "الكرواتية"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "بابÙ\88اغÙ\8aÙ\86Ù\8aا Ø§Ù\84جدÙ\8aدة"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "اÙ\84سÙ\8aÙ\84Ù\83ب"
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "اÙ\84غÙ\8aÙ\86ية (أخرى)"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "اÙ\84ساÙ\85ية (أخرى)"
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "باراغÙ\88اÙ\8a"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "اÙ\84Ø£Ù\8aرÙ\84Ù\86دÙ\8aØ© Ø§Ù\84Ù\82دÙ\8aÙ\85Ø© (Ø¥Ù\84Ù\89 900)"
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "المسار '%s' في الوسيط '%s' ليس دليلاً."
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "لغات الإشارة"
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "المسار '%s' في الوسيط '%s' ليس ملفًا."
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "الشانية"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "تÙ\85 Ø±Ù\81ض Ø¥Ø°Ù\86 Ø§Ù\84Ù\88صÙ\88Ù\84 Ø¥Ù\84Ù\89 '%s'."
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "اÙ\84سÙ\8aداÙ\85Ù\88"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "الفارسية"
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr "السينهالا"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr "الفارسية القديمة (600-400 قبل الميلاد)"
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+msgid "Siouan Languages"
+msgstr "لغات السيويون"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "اÙ\84بÙ\8aرÙ\88"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "اÙ\84صÙ\8aÙ\86Ù\8aØ© Ø§Ù\84تÙ\8aبتÙ\8aØ© (أخرÙ\89)"
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
-msgstr "الفليبينية (أخرى)"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
+msgstr "السلافية (أخرى)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "الفلبين"
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "السلوفاكية"
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
-msgstr "الفينيقية"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "السلوفينية"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "بÙ\8aتÙ\83Ù\8aرÙ\86"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "اÙ\84ساÙ\85Ù\8aØ© Ø§Ù\84جÙ\86Ù\88بÙ\8aØ©"
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "الرجاء تثبيت حزمة 'lsof' أولًا."
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "السامية الشمالية"
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "البوهنبيايان"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "اللغات السامية (أخرى)"
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "بÙ\88Ù\84Ù\86دا"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "اÙ\84Ù\84Ù\88Ù\84 Ø³Ø§Ù\85Ù\8a"
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
-msgstr "بÙ\88Ù\84Ù\88Ù\86Ù\8aØ©"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "اÙ\84Ø¥Ù\8aÙ\86ارÙ\8a Ø³Ø§Ù\85Ù\8a"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "اÙ\84برتغاÙ\84"
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "اÙ\84ساÙ\85Ù\88ائÙ\8aØ©"
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
-msgstr "اÙ\84برتغاÙ\84Ù\8aØ©"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "اÙ\84سÙ\83Ù\88Ù\84ت Ø³Ø§Ù\85Ù\8a"
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
-msgstr "اللغات البراقريطية"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "الشونا"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "متطلبات مبدئية"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "السيندي"
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"تحديد المشكلة والذي يعني دعمًا فنيًا مصممًا لتوفير معلومات التوافق والمساعدة في "
-"التثبيت ودعم الاستخدام والصيانة المستمرة والمستوى الأساسي من حل المشاكل. "
-"والدعم من المستوى 1 ليس مخصصًا لتصحيح أخطاء عيوب المنتجات."
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "السونينك"
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"عزل المشكلة، والذي يعني دعمًا فنيًا مصممًا لعمل نسخ مطابقة من مشاكل العملاء "
-"وعزل منطقة المشكلة وتوفير حل للمشاكل التي لم يتم حلها من خلال دعم المستوى 1."
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "السوجديان"
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"حل المشكلة، والذي يعني دعمًا فنيًا مصممًا لحل المشاكل المعقدة من خلال إشراك "
-"الهندسة في حل عيوب المنتج التي تم تحديدها في دعم المستوى 2."
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "الصومالية"
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
-msgstr "اÙ\84برÙ\88Ù\81اÙ\86سÙ\8aØ© Ø§Ù\84Ù\82دÙ\8aÙ\85Ø© (حتÙ\89 1500)"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "اÙ\84سÙ\88Ù\86جÙ\87اÙ\89"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "يوفر"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "سوتو الجنوبي"
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "بورتوريكو"
+#. language code: spa es
+#: zypp/LanguageCode.cc:989
+msgid "Spanish"
+msgstr "الأسبانية"
+
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "السردينية"
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
-msgstr "بÙ\88شتÙ\88"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "سÙ\8aرÙ\8aر"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "قطر"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "النيلية الصحراوية (أخرى)"
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
-msgstr "الكويتشوا"
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "السواتي"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "تحليل سلسلة الاستعلام غير مدعوم لعنوان URL هذا"
+#. language code: suk
+#: zypp/LanguageCode.cc:999
+msgid "Sukuma"
+msgstr "السوكوما"
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "فشل RPM: "
+#. language code: sun su
+#: zypp/LanguageCode.cc:1001
+msgid "Sundanese"
+msgstr "السودانية"
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "اÙ\84رÙ\87اÙ\8aتÙ\88-رÙ\88Ù\85اÙ\86س"
+#. language code: sus
+#: zypp/LanguageCode.cc:1003
+msgid "Susu"
+msgstr "اÙ\84سÙ\88سÙ\88"
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
-msgstr "اÙ\84راجاسثاÙ\86ية"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "اÙ\84سÙ\88Ù\85ارية"
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
-msgstr "اÙ\84راباÙ\86Ù\89"
+#. language code: swa sw
+#: zypp/LanguageCode.cc:1007
+msgid "Swahili"
+msgstr "اÙ\84سÙ\88احÙ\84Ù\8aØ©"
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr "اÙ\84رارÙ\88تÙ\88Ù\86جاÙ\86Ù\89"
+#. language code: swe sv
+#: zypp/LanguageCode.cc:1009
+msgid "Swedish"
+msgstr "اÙ\84سÙ\88Ù\8aدÙ\8aØ©"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "يوصي"
+#. language code: syr
+#: zypp/LanguageCode.cc:1011
+msgid "Syriac"
+msgstr "السريانية"
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "غير مسموح بالمسار النسبي في حالة وجود سلطة"
+#. language code: tah ty
+#: zypp/LanguageCode.cc:1013
+msgid "Tahitian"
+msgstr "التاهيتية"
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "إزاÙ\84Ø© Ø§Ù\84Ù\85خزÙ\86 '%s'"
+#. language code: tai
+#: zypp/LanguageCode.cc:1015
+msgid "Tai (Other)"
+msgstr "تاÙ\8a (أخرÙ\89)"
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "لا يمكن أن يبدأ الاسم المستعار للمخزن بنقطة."
+#. language code: tam ta
+#: zypp/LanguageCode.cc:1017
+msgid "Tamil"
+msgstr "التاميلية"
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "اÙ\84سÙ\85Ø© Ø§Ù\84Ù\85Ø·Ù\84Ù\88بة '%s' Ù\85Ù\81Ù\82Ù\88دة."
+#. language code: tat tt
+#: zypp/LanguageCode.cc:1019
+msgid "Tatar"
+msgstr "اÙ\84تتارÙ\8aØ©"
 
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "يتطلب"
+#. language code: tel te
+#: zypp/LanguageCode.cc:1021
+msgid "Telugu"
+msgstr "تيلوغو"
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "رÙ\8aÙ\88Ù\86Ù\8aÙ\88ن"
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "اÙ\84تÙ\8aÙ\85ن"
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "اÙ\84رÙ\88Ù\85اÙ\86سÙ\8aØ© (أخرÙ\89)"
+#. language code: ter
+#: zypp/LanguageCode.cc:1025
+msgid "Tereno"
+msgstr "اÙ\84تÙ\8aرÙ\8aÙ\86Ù\88"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "رÙ\88Ù\85اÙ\86Ù\8aا"
+#. language code: tet
+#: zypp/LanguageCode.cc:1027
+msgid "Tetum"
+msgstr "اÙ\84تÙ\8aتÙ\85"
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "اÙ\84رÙ\88Ù\85اÙ\86ية"
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "اÙ\84طاجÙ\83ية"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "اÙ\84رÙ\88Ù\85اÙ\86ية"
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "اÙ\84تاغاÙ\84Ù\88غية"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "رÙ\88Ù\86دÙ\8a"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "اÙ\84تاÙ\8aÙ\84اÙ\86دÙ\8aØ©"
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "اÙ\84رÙ\88سية"
+#. language code: tib bod bo
+#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
+msgid "Tibetan"
+msgstr "اÙ\84تبتية"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "روسيا الاتحادية"
+#. language code: tig
+#: zypp/LanguageCode.cc:1039
+msgid "Tigre"
+msgstr "التيجر"
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "رÙ\88اÙ\86دا"
+#. language code: tir ti
+#: zypp/LanguageCode.cc:1041
+msgid "Tigrinya"
+msgstr "اÙ\84تÙ\8aجرÙ\8aÙ\86Ù\8aا"
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "ساÙ\86ت Ù\87Ù\84Ù\8aÙ\86ا"
+#. language code: tiv
+#: zypp/LanguageCode.cc:1043
+msgid "Tiv"
+msgstr "اÙ\84تÙ\8aÙ\81"
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "ساÙ\86ت Ù\83Ù\8aتس Ù\88Ù\86Ù\8aÙ\81Ù\8aس"
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "اÙ\84Ù\83Ù\84Ù\8aÙ\86جÙ\88Ù\86"
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "ساÙ\86ت Ù\84Ù\88شا"
+#. language code: tli
+#: zypp/LanguageCode.cc:1049
+msgid "Tlingit"
+msgstr "اÙ\84تÙ\84Ù\8aÙ\86غÙ\8aتÙ\8aØ©"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "سان مارينو"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "التاماشيك"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "ساÙ\86 Ø¨Ù\8aÙ\8aر Ù\88Ù\85Ù\83Ù\88Ù\8aÙ\84Ù\88Ù\86"
+#. language code: tog
+#: zypp/LanguageCode.cc:1053
+msgid "Tonga (Nyasa)"
+msgstr "تÙ\88Ù\86جا (Ù\86Ù\8aاسا)"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "ساÙ\86ت Ù\81Ù\86سÙ\86ت Ù\88جزر ØºØ±Ù\8aÙ\86ادÙ\8aÙ\86"
+#. language code: ton to
+#: zypp/LanguageCode.cc:1055
+msgid "Tonga (Tonga Islands)"
+msgstr "تÙ\88Ù\86جا (جزر ØªÙ\88Ù\86جا)"
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "لغات ساليشان"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "التوك بيسين"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "اÙ\84آراÙ\85Ù\8aØ© Ø§Ù\84سÙ\88Ù\85ارÙ\8aØ©"
+#. language code: tsi
+#: zypp/LanguageCode.cc:1059
+msgid "Tsimshian"
+msgstr "اÙ\84تسÙ\8aÙ\85Ø´Ù\8aاÙ\86"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "اللغات السامية (أخرى)"
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "التسوانية"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "ساÙ\85Ù\88ا"
+#. language code: tso ts
+#: zypp/LanguageCode.cc:1063
+msgid "Tsonga"
+msgstr "تسÙ\88Ù\86جا"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "اÙ\84ساÙ\85Ù\88ائية"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "اÙ\84ترÙ\83Ù\85اÙ\86ية"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "ساÙ\86 Ù\85ارÙ\8aÙ\86Ù\88"
+#. language code: tum
+#: zypp/LanguageCode.cc:1067
+msgid "Tumbuka"
+msgstr "اÙ\84تاÙ\85بÙ\88Ù\83ا"
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "السانداوي"
+#. language code: tup
+#: zypp/LanguageCode.cc:1069
+msgid "Tupi Languages"
+msgstr "اللغات التوبية"
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "اÙ\84ساÙ\86جÙ\88"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "اÙ\84ترÙ\83Ù\8aØ©"
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
-msgstr "اÙ\84سÙ\86سÙ\83رÙ\8aتÙ\8aØ©"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "اÙ\84Ø£Ù\84طائÙ\8aØ© (أخرÙ\89)"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "اÙ\84ساÙ\86تاÙ\84ي"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "اÙ\84تÙ\88ي"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "ساÙ\86 ØªÙ\88Ù\85Ù\8a Ù\88برÙ\8aÙ\86سÙ\8aبي"
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "تÙ\88Ù\81اÙ\86ي"
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "اÙ\84سردÙ\8aÙ\86Ù\8aØ©"
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "اÙ\84أدÙ\85رت"
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "الساساك"
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "اليجاريتيك"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "المملكة العربية السعودية"
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "الأغورية"
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "الأسكتلندية"
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "الأوكرانية"
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "اÙ\84سÙ\8aÙ\84Ù\83ب"
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "اÙ\84Ø£Ù\85بÙ\86دÙ\88"
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "اÙ\84ساÙ\85Ù\8aØ© (أخرÙ\89)"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "غÙ\8aر Ù\85حددة"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "اÙ\84سÙ\86غاÙ\84"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "اÙ\84أردÙ\8aØ©"
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "صربÙ\8aا"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "اÙ\84Ø£Ù\88زبÙ\83Ù\8aØ©"
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "الصربية"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "الفاي"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "سÙ\8aرÙ\8aر"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "اÙ\84Ù\81Ù\8aÙ\86دا"
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "لا يمكن أن يبدأ الاسم المستعار للخدمة بنقطة."
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "الفيتنامية"
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "لا تدعم الأداة الإضافية للخدمة تغيير إحدى السمات."
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "الفولابوك"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "سÙ\8aØ´Ù\84"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "اÙ\84Ù\81Ù\88تÙ\8aÙ\83"
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "الشانية"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "لغات الواكاشان"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "الشونا"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "الوالامو"
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "السيتشيون يى"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "الواراي"
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "الصقلية"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "الواشو"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "السيدامو"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "الويلزية"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "سÙ\8aراÙ\84Ù\8aÙ\88Ù\86"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "اÙ\84Ù\84غات Ø§Ù\84صربÙ\8aØ©"
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "لغات الإشارة"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "الولونية"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "تعذر Ø§Ù\84تحÙ\82Ù\82 Ù\85Ù\86 Ø§Ù\84تÙ\88Ù\82Ù\8aع"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "اÙ\84Ù\88Ù\84Ù\88Ù\81"
 
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "ملف التوقيع  %s غير موجود"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "الكالميك"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "تÙ\85ت Ø§Ù\84Ù\85صادÙ\82Ø© Ø¹Ù\84Ù\89 Ø§Ù\84تÙ\88Ù\82Ù\8aع"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "اÙ\84Ù\87اÙ\88سا"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "تÙ\85ت Ø§Ù\84Ù\85صادÙ\82Ø© Ø¹Ù\84Ù\89 Ø§Ù\84تÙ\88Ù\82Ù\8aعØ\8c Ù\84Ù\83Ù\86 Ø§Ù\84Ù\85Ù\81تاح ØºÙ\8aر Ù\85Ù\88Ø«Ù\88Ù\82 Ø¨Ù\87"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "اÙ\84Ù\8aاÙ\88"
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "فشل التحقق من التوقيع"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "اليابيز"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "تÙ\88اÙ\82Ù\8aع Ø§Ù\84Ù\85Ù\81تاح Ø§Ù\84عÙ\85Ù\88Ù\85Ù\8a ØºÙ\8aر Ù\85تÙ\88Ù\81رة"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "اÙ\84Ù\8aÙ\8aدÙ\8aة"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "السيكسيكية"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "اليوروبية"
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "السيندي"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "اللغات اليوبيكية"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "سÙ\86غاÙ\81Ù\88را"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "اÙ\84زابÙ\88تÙ\8aÙ\83"
 
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
-msgstr "اÙ\84سÙ\8aÙ\86Ù\87اÙ\84ا"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "اÙ\84زÙ\8aÙ\86اجا"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "اÙ\84صÙ\8aÙ\86Ù\8aØ© Ø§Ù\84تÙ\8aبتÙ\8aØ© (أخرÙ\89)"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "اÙ\84زÙ\87Ù\8aÙ\88Ù\86ج"
 
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-msgid "Siouan Languages"
-msgstr "لغات السيويون"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "الزاند"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "اÙ\84سÙ\83Ù\88Ù\84ت Ø³Ø§Ù\85Ù\8a"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "اÙ\84زÙ\88Ù\84Ù\88"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "اÙ\84سÙ\84اÙ\81Ù\8aØ© (اÙ\84أزباسÙ\83اÙ\86Ù\8aØ©)"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "اÙ\84زÙ\88Ù\86Ù\8aØ©"
 
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr "السلافية (أخرى)"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "حاول استيراد المفتاح غير الموجود %s لحلقة مفاتيح %s"
 
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "السلوفاكية"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "فشل في حذف المفتاح."
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "سÙ\84Ù\88Ù\81اÙ\83Ù\8aا"
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "تÙ\88Ù\82Ù\8aع Ø§Ù\84Ù\85Ù\84Ù\81 %s ØºÙ\8aر Ù\85Ù\88جÙ\88د"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "سلوفينيا"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "لا يمكن تقديم الملف '%s' من المستودع '%s'"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "السلوفينية"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "لا يوجد مسار في المستودع."
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "السوجديان"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "لا يدعم البرنامج المساعد خدمة تغيير السمة."
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "جزر سليمان"
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr "يبدو أن الحزمة %s تلفت أثناء النقل. هل تريد محاولة استرجاعها؟"
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "الصومالية"
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "فشل التحقق من التوقيع"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "الصومال"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "فشل في تقديم حزمة %s. هل تريد محاولة إعادة استرجاعها؟"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "السونجهاى"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "فشل التحقق من applydeltarpm."
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "السونينك"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "فشل applydeltarpm."
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "اللغات الصربية"
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"إدارة النظام مؤمنة من قبل التطبيق مع pid %d (%s).\n"
+"أغلق هذا التطبيق قبل أن تحاول مرة أخرى."
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "عذرًا، تم إنشاء هذا الإصدار من libzypp بدون دعم HAL."
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s لا ينتمي إلى مستودع الترقية المباشرة"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "سوتو الجنوبي"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s لديه الحد الأدنى من المعمارية"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "جنوب أفريقيا"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "مشكلة في تثبيت الحزمة %s"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "الهندية الأمريكية الجنوبية (أخرى)"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "الطلبات المتعارضة"
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "جورجيا الجنوبية وجزر ساندويتش الجنوبية"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "بعض مشاكل التبعية"
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Ù\83Ù\88رÙ\8aا Ø§Ù\84جÙ\86Ù\88بÙ\8aØ©"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "Ù\84اأحد Ù\8aÙ\88Ù\81ر %s"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "الألطائية الجنوبية"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "هل قمت بتمكين كل المستودعات المطلوبة؟"
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "اÙ\84ساÙ\85Ù\8aØ© Ø§Ù\84جÙ\86Ù\88بÙ\8aØ©"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "اÙ\84حزÙ\85Ø© %s ØºÙ\8aر Ù\85Ù\88جÙ\88د"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "أسبانيا"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "الطلب غير معتمد"
 
-#. language code: spa es
-#: zypp/LanguageCode.cc:989
-msgid "Spanish"
-msgstr "الأسبانية"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s يتم توفيرها من قبل النظام ولا يمكن حذفها"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "سيريلانكا"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s غير قابل للتثبيت"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "السودان"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "لا احد يوفر %s التي يحتاجها %s"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "يقترح"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "لا يمكن تثبيت كل من %s و %s"
 
-#. language code: suk
-#: zypp/LanguageCode.cc:999
-msgid "Sukuma"
-msgstr "السوكوما"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s يتعارض مع %s التي توفر من%s"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "السومارية"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s يلغي %s الموفر من %s"
 
-#. language code: sun su
-#: zypp/LanguageCode.cc:1001
-msgid "Sundanese"
-msgstr "السودانية"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "المثبت %s يلغي %s الموفر من %s"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "يُضيف"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "القابلة للحل %s تتعارض مع %s المقدمة بنفسها"
 
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "سورينام"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s يتطلب%s، ولكن لا يمكن توفير هذا الشرط"
 
-#. language code: sus
-#: zypp/LanguageCode.cc:1003
-msgid "Susu"
-msgstr "السوسو"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "حذف مقدمي الخدمات: "
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "سفالبارد وجان ماين"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"موفر قابل لإلغاء التثبيت: "
 
-#. language code: swa sw
-#: zypp/LanguageCode.cc:1007
-msgid "Swahili"
-msgstr "السواحلية"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "موفر قابل لإلغاء التثبيت: "
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "اÙ\84سÙ\88اتÙ\8a"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "إزاÙ\84Ø© Ø§Ù\84Ù\82Ù\81Ù\84 Ù\84Ù\84سÙ\85اح Ø¨Ø§Ù\84حذÙ\81 %s"
 
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "سوازيلند"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "عدم تثبيت %s"
 
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "السويد"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "الاحتفاظ بـ %s"
 
-#. language code: swe sv
-#: zypp/LanguageCode.cc:1009
-msgid "Swedish"
-msgstr "اÙ\84سÙ\88Ù\8aدÙ\8aØ©"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "إزاÙ\84Ø© Ø§Ù\84Ù\82Ù\81Ù\84 Ù\84Ù\84سÙ\85اح Ø¨Ø§Ù\84تثبÙ\8aت %s"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "سويسرا"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "هذا الطلب سيحطم النظام!"
 
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "سÙ\88رÙ\8aا"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "تجاÙ\87Ù\84 Ø§Ù\84تحذÙ\8aر Ù\85Ù\86 Ù\83سر Ø§Ù\84Ù\86ظاÙ\85"
 
-#. language code: syr
-#: zypp/LanguageCode.cc:1011
-msgid "Syriac"
-msgstr "السريانية"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "لا تسأل لتثبيت المتوفرات القابلة للحل %s"
 
-#: zypp/media/MediaException.cc:91
+#: zypp/solver/detail/SATResolver.cc:1245
 #, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "استثناء النظام '%s' في الوسيط '%s'."
+msgid "do not ask to delete all solvables providing %s"
+msgstr "لا تسأل لحذف جميع الموفرين القابلين للحل %s"
 
-#: zypp/ZYppFactory.cc:394
+#: zypp/solver/detail/SATResolver.cc:1258
 #, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"يتم قفل إدارة النظام بواسطة التطبيق الذي يتضمن معرف العملية %d (%s).\n"
-"الرجاء إغلاق هذا التطبيق قبل المحاولة مرة أخرى."
+msgid "do not install most recent version of %s"
+msgstr "لا تقم بتثبيت أحدث إصدار من %s"
 
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "اÙ\84تاغاÙ\84Ù\88غÙ\8aØ©"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "إبÙ\82اء%s Ø¨Ø±ØºÙ\85 Ø¨Ù\86Ù\8aتÙ\87 Ø§Ù\84دÙ\86Ù\8aا"
 
-#. language code: tah ty
-#: zypp/LanguageCode.cc:1013
-msgid "Tahitian"
-msgstr "اÙ\84تاÙ\87Ù\8aتÙ\8aØ©"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "ثبت %s Ø¨Ø±ØºÙ\85 Ø¨Ù\86Ù\8aتÙ\87 Ø§Ù\84دÙ\86Ù\8aا"
 
-#. language code: tai
-#: zypp/LanguageCode.cc:1015
-msgid "Tai (Other)"
-msgstr "تاÙ\8a (أخرÙ\89)"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "إبÙ\82اء%s Ø§Ù\84Ù\82دÙ\8aÙ\85Ø©"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "تاÙ\8aÙ\88اÙ\86"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "تثبÙ\8aت %s Ù\85Ù\86 Ø§Ù\84Ù\85ستÙ\88دع Ø§Ù\84Ù\85ستبعد"
 
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "اÙ\84طاجÙ\83Ù\8aØ©"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "اÙ\84إرجاع Ù\85Ù\86 %s Ø¥Ù\84Ù\89 %s"
 
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "طاجÙ\83ستاÙ\86"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "تغÙ\8aÙ\8aر Ø§Ù\84بÙ\86Ù\8aØ© Ù\85Ù\86 %s Ø¥Ù\84Ù\89 %s"
 
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "التاماشيك"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"ثبت %s (مع تغيير البائع)\n"
+"  %s  -->  %s"
 
-#. language code: tam ta
-#: zypp/LanguageCode.cc:1017
-msgid "Tamil"
-msgstr "التاميلية"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "استبدال %s ب %s"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "تÙ\86زاÙ\86Ù\8aا"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Ø¥Ù\84غاء ØªØ«Ø¨Ù\8aت %s"
 
-#. language code: tat tt
-#: zypp/LanguageCode.cc:1019
-msgid "Tatar"
-msgstr "التتارية"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "كسر%s بتجاهل بعض التبعيات الخاصة به"
 
-#. language code: tel te
-#: zypp/LanguageCode.cc:1021
-msgid "Telugu"
-msgstr "تيلوغو"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "تجاهل بشكل عام لبعض التبعيات"
 
-#. language code: ter
-#: zypp/LanguageCode.cc:1025
-msgid "Tereno"
-msgstr "اÙ\84تÙ\8aرÙ\8aÙ\86Ù\88"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "اÙ\84خاصÙ\8aØ© Ø§Ù\84Ù\85Ø·Ù\84Ù\88بة '%s' Ù\85Ù\81Ù\82Ù\88دة."
 
-#. language code: tet
-#: zypp/LanguageCode.cc:1027
-msgid "Tetum"
-msgstr "التيتم"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "مطلوب واحد من '%s' أو '%s' سمات أو كليهما."
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr "التايلاندية"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "لا يمكن فتح ملف مؤمن: %s"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "تايلاند"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "تم تشغيل هذا الإجراء ببرنامج آخر مسبقاً."
 
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "مستوى الدعم غير محدد"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "التاريخ:"
 
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "البائع لا يوفر الدعم."
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "وضع التطابق غير معروف '%s'"
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "يتم الآن تشغيل هذا الإجراء بالفعل من قبل برنامج آخر."
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "وضع التطابق غير معروف '%s' للنمط '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "سÙ\8aؤدÙ\8a Ù\87ذا Ø§Ù\84Ø·Ù\84ب Ø¥Ù\84Ù\89 ØªØ¹Ø·Ù\84 Ø§Ù\84Ù\86ظاÙ\85!"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "اÙ\84تعبÙ\8aر Ø§Ù\84عادÙ\8a ØºÙ\8aر ØµØ§Ù\84Ø­ '%s': Ø±Ø¬Ø¹ regcomp Ø¯%d"
 
-#. language code: tib bod bo
-#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
-msgid "Tibetan"
-msgstr "اÙ\84تبتÙ\8aØ©"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "اÙ\84تعبÙ\8aر Ø§Ù\84عادÙ\8aØ© ØºÙ\8aر ØµØ§Ù\84Ø­ '%s'"
 
-#. language code: tig
-#: zypp/LanguageCode.cc:1039
-msgid "Tigre"
-msgstr "التيجر"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "الرجاء تثبيت حزمة 'lsof' أولاً."
 
-#. language code: tir ti
-#: zypp/LanguageCode.cc:1041
-msgid "Tigrinya"
-msgstr "التيجرينيا"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "المصادقة المطلوبة '%s'"
 
-#: zypp/media/MediaException.cc:207
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "تم تجاوز المهلة عند الوصول إلى '%s'."
+msgid "Failed to mount %s on %s"
+msgstr "فشل في تحميل %s على %s"
 
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "التيمن"
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "فشل فصل %s"
 
-#. language code: tiv
-#: zypp/LanguageCode.cc:1043
-msgid "Tiv"
-msgstr "التيف"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "اسم ملف غير صالح: %s"
 
-#. language code: tli
-#: zypp/LanguageCode.cc:1049
-msgid "Tlingit"
-msgstr "التلينغيتية"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "لم يفتح الوسيط عند محاولة تنفيذ الإجراء '%s'."
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "تÙ\88جÙ\88"
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "اÙ\84Ù\85Ù\84Ù\81 '%s' ØºÙ\8aر Ù\85Ù\88جÙ\88د Ø¹Ù\84Ù\89 Ø§Ù\84Ù\88سÙ\8aØ· '%s'"
 
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "التوك بيسين"
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "لا يمكن كتابة الملف '%s'."
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "توكيلو"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "لم يتم توصيل الوسيط"
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "تونجا"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "نقطة إرفاق وسائط تالفة"
 
-#. language code: tog
-#: zypp/LanguageCode.cc:1053
-msgid "Tonga (Nyasa)"
-msgstr "تونجا (نياسا)"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "فشلت تهيئة التحميل (curl) '%s'"
 
-#. language code: ton to
-#: zypp/LanguageCode.cc:1055
-msgid "Tonga (Tonga Islands)"
-msgstr "تÙ\88Ù\86جا (جزر ØªÙ\88Ù\86جا)"
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr "استثÙ\86اء Ø§Ù\84Ù\86ظاÙ\85 '%s' Ø¹Ù\84Ù\89 Ø§Ù\84Ù\88سÙ\8aØ· '%s'."
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "جرت Ù\85حاÙ\88Ù\84Ø© Ø§Ø³ØªÙ\8aراد Ø§Ù\84Ù\85Ù\81تاح ØºÙ\8aر Ø§Ù\84Ù\85Ù\88جÙ\88د %s Ø¥Ù\84Ù\89 Ø­Ù\84Ù\82Ø© Ø§Ù\84Ù\85Ù\81اتÙ\8aØ­ %s"
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "اÙ\84Ù\85سار '%s' Ø¹Ù\84Ù\89 Ø§Ù\84Ù\88سÙ\8aØ· '%s' Ù\84Ù\8aس Ù\85Ù\84Ù\81."
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "ترÙ\8aÙ\86Ù\8aداد Ù\88تÙ\88باغÙ\88"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "اÙ\84Ù\85سار '%s' Ø¹Ù\84Ù\89 Ø§Ù\84Ù\88سÙ\8aØ· '%s' Ù\84Ù\8aس Ù\85جÙ\84د."
 
-#. language code: tsi
-#: zypp/LanguageCode.cc:1059
-msgid "Tsimshian"
-msgstr "التسيمشيان"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "مسار مشوَّه"
 
-#. language code: tso ts
-#: zypp/LanguageCode.cc:1063
-msgid "Tsonga"
-msgstr "تسونجا"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "اسم مضيف فارغ في المسار"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "التسوانية"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "نظام الملفات فارغ في المسار"
 
-#. language code: tum
-#: zypp/LanguageCode.cc:1067
-msgid "Tumbuka"
-msgstr "التامبوكا"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "الوجهة فارغة في المسار"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "تونس"
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "نظام مسار غير معتمد في '%s'."
 
-#. language code: tup
-#: zypp/LanguageCode.cc:1069
-msgid "Tupi Languages"
-msgstr "اللغات التوبية"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "العملية غير معتمدة من الوسيط"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "تركيا"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"تحميل (curl) خطأ '%s':\n"
+"رمز الخطأ: %s\n"
+"رسالة الخطأ: %s\n"
 
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "التركية"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "حدث خطأ أثناء إعداد خيارات التحميل (curl) ل '%s':"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "التركية العثمانية (1500-1928)"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "لم يحتو مصدر الوسائط '%s' على الوسائط المتوقعة"
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "التركمانية"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "الوسيط '%s' قيد الاستخدام بواسطة برنامج آخر"
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "تركمانستان"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "لا يمكن إخراج أي وسيط"
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "جزر توركس وكايكوس"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
+msgstr "لا يمكن إخراج الوسيط '%s'"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "توفالو"
+#: zypp/media/MediaException.cc:199
+#, c-format, boost-format
+msgid "Permission to access '%s' denied."
+msgstr "إذن الوصول إلى '%s' رُفض."
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "توفاني"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "تجاوز المهلة عند وصول '%s'."
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "التوي"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "موقع '%s' غير متاح مؤقتاً."
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "الأدمرت"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr " مشكلة شهادة SSL، تحقق من تثبيت شهادة CA ل '%s'."
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "أوغندا"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr "لا يمكن العثور على الجهاز المتكرر المتاح لضم صورة الملف من '%s'"
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "اÙ\84Ù\8aجارÙ\8aتÙ\8aÙ\83"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "أسÙ\84Ù\88ب Ù\85صادÙ\82Ø© HTTP ØºÙ\8aر Ù\85عتÙ\85د '%s'"
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "الأغورية"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr "قم بزيارة مركز عملاء Novell للتحقق من أن التسجيل صالح ولم ينته."
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "أوكرانيا"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "تعذر إنشاء sat-pool."
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"الملف %1%\n"
+"  من الحزمة\n"
+"     %2%\n"
+"  يتعارض مع ملف من الحزمة\n"
+"     %3%"
+
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"الملف %1%\n"
+"  من الحزمة\n"
+"     %2%\n"
+"  يتعارض مع ملف من التثبيت\n"
+"     %3%"
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "الأوكرانية"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"ملف %1%\n"
+"  من تثبيت\n"
+"     %2%\n"
+"  يتعارض مع ملف من الحزمة\n"
+"     %3%"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "الأمبندو"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"الملف%1%\n"
+"  من تثبيت\n"
+"     %2%\n"
+"  يتعارض مع ملف من تثبيت\n"
+"     %3%"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "تعذر استنساخ كائن Url"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"الملف%1%\n"
+"  من الحزمة\n"
+"     %2%\n"
+"  يتعارض مع الملف \n"
+"     %3%\n"
+"  من الحزمة\n"
+"     %4%"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "تعذر إنشاء اتصال dbus"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"ملف %1%\n"
+"  من الحزمة\n"
+"     %2%\n"
+"  يتعارض مع الملف\n"
+"     %3%\n"
+"  من تثبيت\n"
+"     %4%"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "تعذرت تهيئة سياق HAL--هل hald ليس قيد التشغيل?"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"الملف%1%\n"
+"  من تثبيت\n"
+"     %2%\n"
+"  يتعارض مع الملف\n"
+"     %3%\n"
+"  من الحزمة\n"
+"     %4%"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "تعذر تحليل مكونات Url"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"ملف %1%\n"
+"  من التثبيت\n"
+"     %2%\n"
+"  يتعارض مع الملف\n"
+"     %3%\n"
+"  من تثبيت\n"
+"     %4%"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "غير محددة"
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "عموما تجاهل بعض المعتمدات"
+
+#~ msgid "do not forbid installation of %s"
+#~ msgstr "لا تمنع تثبيت %s"
+
+#~ msgid "do not keep %s installed"
+#~ msgstr "عدم الإبقاء على %s مثبت"
+
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr "لا يمكن إنشاء المفتاح العام %s من %s إلى ملف حلقة المفاتيح %s"
+
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr "حاول استيراد مفتاح غير موجود %s إلى حلقة مفاتيح %s"
+
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "لا يمكن تغيير مجلد العمل '/' داخل استجذار (%s)."
+
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "فشل تهيئة تحميل (Metalink curl) '%s'"
+
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "تحميل (metalink curl) خطأ '%s':\n"
+#~ "رمز الخطأ: %s\n"
+#~ "رسالة الخطأ: %s\n"
+
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "توقف التحميل في %d%%"
+
+#~ msgid "Download interrupted by user"
+#~ msgstr "توقف التحميل بواسطة المستخدم"
+
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr "حدث خطأ أثناء إعداد خيارات التحميل (metalink curl) ل '%s':"
+
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "فشل في تحميل %s من%s"
+
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "صربيا ومونتنيجرو"
+
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "خيار list غير معروف"
+
+#, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "تعذر حل التبعيات"
+
+#~ msgid ""
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "لا يحتوي الملف %s على مجموع اختباري.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الملف %s باستخدام المفتاح التالي:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير صالح.\n"
+#~ "متوقع %s، تم العثور على %s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير معروف %s.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "لم يتم توقيع الملف %s.\n"
+#~ "هل تريد استخدامه على أي حال؟"
+
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "تم توقيع الملف %s باستخدام مفتاح غير معروف:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "تم العثور على مفتاح غير موثوق:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد الوثوق بالمفتاح؟"
+
+#~ msgid "%s remove failed"
+#~ msgstr "فشلت إزالة %s"
+
+#, fuzzy
+#~ msgid "Invalid user name or password."
+#~ msgstr "كلمة السر CA غير صالحة."
+
+#~ msgid "rpm output:"
+#~ msgstr "مخرجات rpm:"
+
+#~ msgid "%s install failed"
+#~ msgstr "فشل تثبيت %s"
+
+#~ msgid "%s installed ok"
+#~ msgstr "تم تثبيت %s بنجاح"
+
+#~ msgid "%s remove ok"
+#~ msgstr "تمت إزالة %s بنجاح"
+
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
+
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
+
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "تجاهل %s القديم في %s"
+
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "تجاهل تعارض %s هذا"
+
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "تجاهل هذا المتطلب هنا فقط"
+
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
+
+#~ msgid "Install missing resolvables"
+#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
+
+#~ msgid "Keep resolvables"
+#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
+
+#~ msgid "Unlock these resolvables"
+#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
+
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
+
+#~ msgid "install %s"
+#~ msgstr "تثبيت %s"
+
+#~ msgid "unlock %s"
+#~ msgstr "إلغاء قفل %s"
+
+#~ msgid "unlock all resolvables"
+#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
+
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "تعذر فتح الملف %1."
+
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "تعذرت قراءة القطاع %u."
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "نوع مخزن غير معالج"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "الإمارات العربية المتحدة"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "المملكة المتحدة"
+#~ msgid "Software management is already running."
+#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "الولايات المتحدة"
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "الجزر الفرعية النائية التابعة للولايات المتحدة الأميركية"
+#~ msgid "%s replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "دولة غير معروفة:"
+#, fuzzy
+#~ msgid "%s will be deleted by the user.\n"
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "حدث خطأ غير معروف أثناء القراءة من '%s'"
+#, fuzzy
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "لغة غير معروفة:"
+#~ msgid "Invalid information"
+#~ msgstr "المعلومات غير صالحة"
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "وضع التطابق '%s' غير معروف"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "وضع التطابق '%s' غير معروف للنمط '%s'"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s مطلوب بواسطة\n"
+#~ "%s"
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr "خدمة غير معروفة '%1%': إزالة مخزن الخدمة الوحيد '%2%'"
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "خيار دعم غير معروف. الوصف غير متاح"
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s يتعارض مع:\n"
+#~ "%s"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "نوع التوقيع غير معروف"
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "أسلوب تصديق HTTP غير مدعوم '%s'"
+#~ msgid "%s obsoletes:%s"
+#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "مخطط URI غير مدعم في '%s'."
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "الصربية العليا"
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "الأردية"
+#~ msgid "%s depends on %s"
+#~ msgstr "%s يعتمد على %s"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "لا يسمح مخطط Url بـ %s"
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s يعتمد على:%s"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "لا يسمح مخطط Url بوجود مكون مضيف"
+#~ msgid "Child of"
+#~ msgstr "عنصر فرعي لـ"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "لا يسمح مخطط Url بإدخال كلمة سر"
+#, fuzzy
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "لا يسمح مخطط Url بإدخال منفذ"
+#, fuzzy
+#~ msgid ""
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "لا يسمح مخطط Url بإدخال اسم مستخدم"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "يعتبر مخطط Url مكونًا مطلوبًا"
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "يتطلب مخطط Url وجود مكون مضيف"
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "لم يتم استيفاء متطلبات %s"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "يتطلب مخطط Url وجود مسار اسم"
+#~ msgid "%s has missing dependencies"
+#~ msgstr "تم فقد تبعيات %s"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "الأوروغواي"
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "الأوزبكية"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "أوزباكستان"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "الفاي"
+#~ msgid "No need to install %s"
+#~ msgstr "لا داعي لتثبيت %s"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "فانواتو"
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "الفيندا"
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "فنزويلا"
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "فيتنام"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "تعذر تثبيت %s لأنه متعارض"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "الفيتنامية"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "جزر فيرجن الأمريكية"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"تفضل بزيارة Novell Customer Center (مركز خدمة عملاء Novell) للتحقق من صلاحية "
-"التسجيل وعدم انتهائها."
+#, fuzzy
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s يفتقد المتطلب %s"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "الفولابوك"
+#~ msgid ", Action: "
+#~ msgstr "، الإجراء:"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "الفوتيك"
+#~ msgid ", Trigger: "
+#~ msgstr "، تشغيل:"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "لغات الواكاشان"
+#~ msgid "package"
+#~ msgstr "الحزمة"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "الوالامو"
+#~ msgid "selection"
+#~ msgstr "التحديد"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "جزر والس وفوتونا"
+#~ msgid "pattern"
+#~ msgstr "النمط"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "الولونية"
+#~ msgid "product"
+#~ msgstr "المنتج"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "الواراي"
+#~ msgid "patch"
+#~ msgstr "التصحيح"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "الواشو"
+#~ msgid "script"
+#~ msgstr "البرنامج النصي"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "الويلزية"
+#~ msgid "message"
+#~ msgstr "الرسالة"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "الصحراء الغربية"
+#~ msgid "atom"
+#~ msgstr "الذرة"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "الولوف"
+#~ msgid "system"
+#~ msgstr "النظام"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "الهاوسا"
+#~ msgid "Resolvable"
+#~ msgstr "التبعية القابلة للتحليل"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "الياكت"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "الياو"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "اليابيز"
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "اليمن"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "الييدية"
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "اليوروبية"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "اللغات اليوبيكية"
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "زامبيا"
+#~ msgid "Establishing %s"
+#~ msgstr "تأسيس %s"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "الزاند"
+#~ msgid "Installing %s"
+#~ msgstr "تثبيت %s"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "الزابوتيك"
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "الزيناجا"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "تخطي %s: تم التثبيت بالفعل"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "الزهيونج"
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "زيمبابوي"
+#~ msgid "for %s"
+#~ msgstr "لـ %s"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "الزولو"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "الزونية"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "فشل التحقق من applydeltarpm."
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "فشل applydeltarpm."
+#~ msgid ""
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
+#~ msgstr ""
+#~ "%s يوفر %s، لكنه قابل لإلغاء التثبيت.  حاول تثبيته للحصول على مزيد من "
+#~ "التفاصيل."
 
-#: zypp/solver/detail/SATResolver.cc:1325
-#, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "تغيير الهيكل الخاص بـ %s إلى %s"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s يوفر %s، لكنه مقفل."
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "توقيف %s عن طريق تجاهل بعض تبعياتها"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
 
-#: zypp/solver/detail/SATResolver.cc:1017
-#, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "تعذر تثبيت كل من %s و%s"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "طلبات متعارضة"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
 
-#: zypp/target/rpm/RpmDb.cc:2344
-#, c-format, boost-format
-msgid "created backup %s"
-msgstr "تم إنشاء النسخة الاحتياطية %s"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#: zypp/solver/detail/SATResolver.cc:1354
-#, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "إلغاء تثبيت %s"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "الموفرون المحذوفون:"
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "عدم طلب حذف كل المشاكل القابلة للحل التي توفر %s"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "عدم طلب تثبيت كل المشاكل القابلة للحل التي توفر %s"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, c-format, boost-format
-msgid "do not install %s"
-msgstr "عدم تثبيت %s"
+#~ msgid "from %s"
+#~ msgstr "من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "عدم تثبيت أحدث إصدار من %s"
+#~ msgid " Error!"
+#~ msgstr "خطأ!"
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "تخفيض إصدار %s إلى %s"
+#~ msgid " Important!"
+#~ msgstr "هام!"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "تجاهل بشكل عام لبعض التبعيات"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "تجاهل تحذير النظام المعطل"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"تثبيت %s (مع تغيير البائع)\n"
-"  %s  -->  %s"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "تثبيت %s بغض النظر عن الهيكل غير الملائم"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "تثبيت %s من المخزن المستبعد"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s المثبَت سيُبطل %s الموفَر بواسطة %s"
+#~ msgid "%s part of %s"
+#~ msgstr "%s جزء من %s"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "غير صالح"
+#, fuzzy
+#~ msgid "Double timeout"
+#~ msgstr "موعد الاستحقاق: %1"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "الاحتفاظ بـ %s"
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "الحفاظ على %s بغض النظر عن الهيكل غير الملائم"
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "تعذر تحليل سلطة Url"
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "الحفاظ على %s الملغية"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: تعذر إنشاء سياق libhal"
+#~ msgid ""
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
+#~ "الارتباط."
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: تعذر تعيين اتصال dbus"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "لا يوجد مصدر لتوفير %s المطلوب من قبل %s"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "تعذرت استعادة كافة المصادر."
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "لا يوجد مصدر لتوفير %s المطلوب"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "الحزمة %s غير موجود"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "توجد مشكلة بالحزمة المثبتة %s"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "إزالة القفل للسماح بالتثبيت %s"
+#~ msgid "Reading index files"
+#~ msgstr "قراءة ملفات الفهرس"
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "إزالة القفل للسماح بالحذف %s"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "استبدال %s بـ %s"
+#~ msgid "Reading product from %s"
+#~ msgstr "قراءة المنتج من %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "قامت rpm بإنشاء %s باعتبارها %s، ولكن تعذر تحديد الفرق"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "قراءة قائمة الملفات من %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"تم إنشاء rpm %s باعتبارها %s.\n"
-"فيما يلي أول 25 سطرًا من سطور الفرق:\n"
+#~ msgid "Reading packages from %s"
+#~ msgstr "قراءة الحزم من %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "قامت rpm بحفظ %s باعتبارها %s، ولكن تعذر تحديد الفرق"
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
-msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"تم حفظ rpm %s باعتبارها %s.\n"
-"فيما يلي أول 25 سطرًا من سطور الفرق:\n"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "المشكلة القابلة للحل %s تتعارض مع %s المتوفرة من نفسها"
+#~ msgid "Reading patches index %s"
+#~ msgstr "قراءة فهرس التصحيحات %s"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "بعض مشكلات التبعية"
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "الموفرون القابلون لإلغاء التثبيت:"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "غير معروف"
+#~ msgid "Reading packages file"
+#~ msgstr "قراءة ملف الحزم"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "غير مدعوم"
+#~ msgid "Reading translation: %s"
+#~ msgstr "قراءة الترجمة: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "الطلب غير مدعوم"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
+#~ "التثبيت؟"
+
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
+
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
+
+#~ msgid "Downloading %s"
+#~ msgstr "إنزال %s"
index 7d3f51b..43ddcc5 100644 (file)
--- a/po/be.po
+++ b/po/be.po
@@ -17,1559 +17,2541 @@ msgstr ""
 "Plural-Forms: Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n"
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-msgid " execution failed"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:99
+msgid "Conflicts"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
-#, fuzzy, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Даданне ўключаных сховішчаў..."
-
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#: zypp/target/TargetImpl.cc:332
+msgid " execution failed"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-#, fuzzy
-msgid "Afghanistan"
-msgstr "Пакістан"
-
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-#, fuzzy
-msgid "Aland Islands"
-msgstr "Фарэрскія астравы"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Албанія"
-
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-#, fuzzy
-msgid "Albanian"
-msgstr "Албанія"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Ð\90лжÑ\8bÑ\80"
+#: zypp/target/hal/HalContext.cc:229
+#, fuzzy
+msgid "Unable to create dbus connection"
+msgstr "Ð\9fÑ\80авеÑ\80Ñ\8bÑ\86Ñ\8c Ñ\96нÑ\82Ñ\8dÑ\80нÑ\8dÑ\82 Ð·Ð»Ñ\83Ñ\87Ñ\8dнне"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr ""
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, fuzzy, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Змяніць канфігурацыю IrDA"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-#, fuzzy
-msgid "Apache Languages"
-msgstr "&Мова"
-
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
 msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Аргенціна"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
 msgstr ""
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
 msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
 msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
 msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
 msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
 msgstr ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Аўстралія"
-
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-#, fuzzy
-msgid "Australian Languages"
-msgstr "Аўстралія"
-
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Аўстрыя"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
 msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr ""
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
 msgstr ""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
 msgstr ""
 
-#: zypp/media/MediaException.cc:47
+#: zypp/RepoManager.cc:1282
 #, c-format, boost-format
-msgid "Bad file name: %s"
+msgid "Building repository '%s' cache"
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
 msgstr ""
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
 msgstr ""
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
+#: zypp/RepoManager.cc:1377
 #, fuzzy
-msgid "Bahrain"
-msgstr "Бахрэйн"
-
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr ""
+msgid "Unhandled repository type"
+msgstr "Дадаць уключаныя сховішчы"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr ""
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Невядомая опцыя для каманды '%1': %2"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr ""
+#: zypp/RepoManager.cc:1611
+#, fuzzy, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Даданне ўключаных сховішчаў..."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr ""
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Бангладэш"
+#: zypp/RepoManager.cc:1740
+#, fuzzy, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Выдаленне непатрэбных сховішчаў..."
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
 msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
 msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-#, fuzzy
-msgid "Batak (Indonesia)"
-msgstr "Інданэзія"
-
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Беларусь"
-
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-#, fuzzy
-msgid "Belarusian"
-msgstr "Беларусь"
-
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Бельгія"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
 msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
 msgstr ""
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
 msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
 msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr ""
+#: zypp/url/UrlBase.cc:1049
+#, fuzzy, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Памылковае значэнне для опцыі '%1': %2"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
 msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr ""
+#: zypp/url/UrlBase.cc:1081
+#, fuzzy, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Памылковае значэнне для опцыі '%1': %2"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Балівія"
-
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-#, fuzzy
-msgid "Bosnia and Herzegovina"
-msgstr "Боснія і Герцагавіна"
-
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
 msgstr ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Батсвана"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-#, fuzzy
-msgid "Bouvet Island"
-msgstr "Фарэрскія астравы"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
 msgstr ""
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
 msgstr ""
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
 msgstr ""
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
 msgstr ""
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
 msgstr ""
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
 msgstr ""
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
 msgstr ""
 
-#: zypp/RepoManager.cc:1282
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
 #, c-format, boost-format
-msgid "Building repository '%s' cache"
+msgid "Can't exec '%s' (%s)."
 msgstr ""
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Балгарыя"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-#, fuzzy
-msgid "Bulgarian"
-msgstr "Балгарыя"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
 msgstr ""
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
 msgstr ""
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
 msgstr ""
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "невядомы"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+#, fuzzy
+msgid "Unknown country: "
+msgstr "Невядомая каманда: %1"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr ""
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr ""
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Аб'яднаныя Арабскія Эміраты"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+#, fuzzy
+msgid "Afghanistan"
+msgstr "Пакістан"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr ""
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr ""
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Албанія"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr ""
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+#, fuzzy
+msgid "Netherlands Antilles"
+msgstr "Нідэрланды"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr ""
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr ""
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Аргенціна"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr ""
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Аўстрыя"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Аўстралія"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr ""
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+#, fuzzy
+msgid "Aland Islands"
+msgstr "Фарэрскія астравы"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr ""
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+#, fuzzy
+msgid "Bosnia and Herzegovina"
+msgstr "Боснія і Герцагавіна"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr ""
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Бангладэш"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Бельгія"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr ""
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Балгарыя"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+#, fuzzy
+msgid "Bahrain"
+msgstr "Бахрэйн"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr ""
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr ""
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr ""
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr ""
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Балівія"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr ""
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr ""
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr ""
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+#, fuzzy
+msgid "Bouvet Island"
+msgstr "Фарэрскія астравы"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Батсвана"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Беларусь"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr ""
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Канада"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr ""
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr ""
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+#, fuzzy
+msgid "Central African Republic"
+msgstr "Сірыя"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Швейцарыя"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr ""
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+#, fuzzy
+msgid "Cook Islands"
+msgstr "Фарэрскія астравы"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Чылі"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr ""
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr ""
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Калумбія"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Коста Рыка"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr ""
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr ""
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr ""
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr ""
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Чэхія"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Германія"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr ""
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Данія"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+#, fuzzy
+msgid "Dominica"
+msgstr "Дамініканская Рэспубліка"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Дамініканская Рэспубліка"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Алжыр"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Эквадор"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Эстонія"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Егіпет"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr ""
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr ""
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Іспанія"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr ""
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Фінляндыя"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr ""
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr ""
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr ""
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Фарэрскія астравы"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Францыя"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr ""
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr ""
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr ""
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+#, fuzzy
+msgid "Grenada"
+msgstr "Канада"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Грузія"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr ""
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Германія"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr ""
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr ""
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Грэнландыя"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr ""
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr ""
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr ""
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr ""
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Грэцыя"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr ""
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Гватэмала"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr ""
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr ""
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr ""
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Гонк Конг"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr ""
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Гандурас"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Харватыя"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr ""
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Венгрыя"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Інданэзія"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Ірландыя"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Ізраіль"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Індыя"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr ""
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Ірак"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr ""
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Ісландыя"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Італія"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr ""
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Іарданія"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Японія"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr ""
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr ""
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
 msgid "Cambodia"
 msgstr ""
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr ""
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr ""
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr ""
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr ""
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+#, fuzzy
+msgid "South Korea"
+msgstr "Паўдневая Афрыка"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Кувейт"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+#, fuzzy
+msgid "Cayman Islands"
+msgstr "Фарэрскія астравы"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+#, fuzzy
+msgid "Kazakhstan"
+msgstr "Пакістан"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr ""
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Ліван"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr ""
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Ліхтэнштэйн"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr ""
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr ""
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr ""
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Літва"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+#, fuzzy
+msgid "Luxembourg"
+msgstr "Люксембург"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Латвія"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr ""
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Марока"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr ""
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr ""
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr ""
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr ""
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr ""
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+#, fuzzy
+msgid "Marshall Islands"
+msgstr "Фарэрскія астравы"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Македонія"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr ""
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr ""
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr ""
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr ""
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr ""
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr ""
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+#, fuzzy
+msgid "Mauritania"
+msgstr "Літва"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr ""
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Мальта"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr ""
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr ""
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+#, fuzzy
+msgid "Malawi"
+msgstr "Малайзія"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Мексіка"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Малайзія"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr ""
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr ""
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+#, fuzzy
+msgid "New Caledonia"
+msgstr "Македонія"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr ""
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+#, fuzzy
+msgid "Norfolk Island"
+msgstr "Фарэрскія астравы"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+#, fuzzy
+msgid "Nigeria"
+msgstr "Алжыр"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Нікарагуа"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Нідэрланды"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Нарвегія"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr ""
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr ""
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr ""
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Новая Зеландыя"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Аман"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Панама"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Перу"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr ""
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr ""
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Філіпіны"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Пакістан"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Польша"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr ""
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr ""
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Пуэрта Рыка"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr ""
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Партугалія"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr ""
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Парагвай"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Катар"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr ""
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Румынія"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "Алжыр"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr ""
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr ""
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Саудаўская Аравія"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+#, fuzzy
+msgid "Solomon Islands"
+msgstr "Фарэрскія астравы"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr ""
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Судан"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Швецыя"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Сінгапур"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr ""
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Славенія"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr ""
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Славакія"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr ""
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr ""
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr ""
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr ""
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr ""
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr ""
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "Сальвадор"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr ""
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+#, fuzzy
+msgid "Swaziland"
+msgstr "Тайланд"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr ""
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr ""
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr ""
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr ""
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Тайланд"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Таджыкістан"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr ""
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+#, fuzzy
+msgid "Turkmenistan"
+msgstr "Таджыкістан"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Туніс"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr ""
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr ""
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Турцыя"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
 msgstr ""
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr ""
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Тайвань"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Украіна"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
 msgstr ""
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
 msgstr ""
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+#, fuzzy
+msgid "United States"
+msgstr "Аб'яднаныя Арабскія Эміраты"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr ""
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Уругвай"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr ""
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Узбексітан"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Венесуэла"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr ""
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Йемен"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr ""
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Паўдневая Афрыка"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
 msgstr ""
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Ð\9aанада"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Ð\97Ñ\96мбабве"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#: zypp/LanguageCode.cc:49
+#, fuzzy
+msgid "Unknown language: "
+msgstr "Невядомая каманда: %1"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-#, fuzzy
-msgid "Catalan"
-msgstr "Каталонія"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr ""
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
 msgstr ""
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-#, fuzzy
-msgid "Cayman Islands"
-msgstr "Фарэрскія астравы"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr ""
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 #, fuzzy
-msgid "Central African Republic"
-msgstr "Сірыя"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr ""
+msgid "Albanian"
+msgstr "Албанія"
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
 msgstr ""
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
+#. language code: alt
+#: zypp/LanguageCode.cc:193
 #, fuzzy
-msgid "Chamic Languages"
-msgstr "&Мова"
+msgid "Southern Altai"
+msgstr "Паўдневая Афрыка"
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
 msgstr ""
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, fuzzy, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Змяніць канфігурацыю IrDA"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr ""
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+#, fuzzy
+msgid "Apache Languages"
+msgstr "&Мова"
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
 msgstr ""
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
 msgstr ""
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Чылі"
-
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
 msgstr ""
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
 msgstr ""
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
 msgstr ""
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
 msgstr ""
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr ""
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+#, fuzzy
+msgid "Australian Languages"
+msgstr "Аўстралія"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
 msgstr ""
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Калумбія"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
 msgstr ""
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
 msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-#, fuzzy
-msgid "Cook Islands"
-msgstr "Фарэрскія астравы"
-
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
 msgstr ""
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Коста Рыка"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr ""
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
 msgstr ""
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
 msgstr ""
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+#, fuzzy
+msgid "Belarusian"
+msgstr "Беларусь"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
 msgstr ""
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Харватыя"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr ""
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-#, fuzzy
-msgid "Croatian"
-msgstr "Харватыя"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
 msgstr ""
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Чэхія"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr ""
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
 msgstr ""
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
+#. language code: btk
+#: zypp/LanguageCode.cc:287
 #, fuzzy
-msgid "Danish"
-msgstr "Завяршыць"
-
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr ""
+msgid "Batak (Indonesia)"
+msgstr "Інданэзія"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
 msgstr ""
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Данія"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+#, fuzzy
+msgid "Bulgarian"
+msgstr "Балгарыя"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
 msgstr ""
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
 msgstr ""
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
 #, fuzzy
-msgid "Dominica"
-msgstr "Дамініканская Рэспубліка"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Дамініканская Рэспубліка"
+msgid "Catalan"
+msgstr "Каталонія"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
 msgstr ""
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
 msgstr ""
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
 msgstr ""
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
 msgstr ""
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
 msgstr ""
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
 msgstr ""
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Эквадор"
-
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Егіпет"
-
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "Сальвадор"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
 msgstr ""
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
 msgstr ""
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+#, fuzzy
+msgid "Chamic Languages"
+msgstr "&Мова"
+
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
 msgstr ""
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
 msgstr ""
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
 msgstr ""
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
 msgstr ""
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
 msgstr ""
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
 msgstr ""
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Эстонія"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr ""
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
 #, fuzzy
-msgid "Estonian"
-msgstr "ЭÑ\81Ñ\82онÑ\96Ñ\8f"
+msgid "Danish"
+msgstr "Ð\97авÑ\8fÑ\80Ñ\88Ñ\8bÑ\86Ñ\8c"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
 msgstr ""
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
 msgstr ""
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
 msgstr ""
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
 msgstr ""
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
 msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Фарэрскія астравы"
-
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-#, fuzzy
-msgid "Faroese"
-msgstr "Фарэрскія астравы"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+#, fuzzy
+msgid "Estonian"
+msgstr "Эстонія"
+
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+#, fuzzy
+msgid "Faroese"
+msgstr "Фарэрскія астравы"
+
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
 msgstr ""
 
 #. language code: fil
@@ -1578,11 +2560,6 @@ msgstr ""
 msgid "Filipino"
 msgstr "Філіпіны"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Фінляндыя"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 #, fuzzy
@@ -1594,40 +2571,16 @@ msgstr "Завяршыць"
 msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Францыя"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr ""
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr ""
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr ""
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr ""
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1643,46 +2596,21 @@ msgstr ""
 msgid "Frisian"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr ""
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr ""
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr ""
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr ""
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr ""
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr ""
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr ""
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr ""
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr ""
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1693,16 +2621,11 @@ msgstr ""
 msgid "Gbaya"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
 msgstr ""
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Грузія"
-
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
 #, fuzzy
@@ -1715,33 +2638,9 @@ msgstr "Грузія"
 msgid "German"
 msgstr "Германія"
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
-msgstr ""
-
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
-msgstr ""
-
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr ""
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Германія"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr ""
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
 msgstr ""
 
 #. language code: gil
@@ -1749,86 +2648,69 @@ msgstr ""
 msgid "Gilbertese"
 msgstr ""
 
-#. language code: gon
-#: zypp/LanguageCode.cc:491
-msgid "Gondi"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
 msgstr ""
 
-#. language code: gor
-#: zypp/LanguageCode.cc:493
-msgid "Gorontalo"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
 msgstr ""
 
-#. language code: got
-#: zypp/LanguageCode.cc:495
-msgid "Gothic"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
 msgstr ""
 
-#. language code: grb
-#: zypp/LanguageCode.cc:497
-msgid "Grebo"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Грэцыя"
-
-#. language code: grc
-#: zypp/LanguageCode.cc:499
-msgid "Greek, Ancient (to 1453)"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
 msgstr ""
 
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Грэнландыя"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-#, fuzzy
-msgid "Grenada"
-msgstr "Канада"
+#. language code: gon
+#: zypp/LanguageCode.cc:491
+msgid "Gondi"
+msgstr ""
 
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
+#. language code: gor
+#: zypp/LanguageCode.cc:493
+msgid "Gorontalo"
 msgstr ""
 
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
+#. language code: got
+#: zypp/LanguageCode.cc:495
+msgid "Gothic"
 msgstr ""
 
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
+#. language code: grb
+#: zypp/LanguageCode.cc:497
+msgid "Grebo"
 msgstr ""
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Гватэмала"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Германія"
+#. language code: grc
+#: zypp/LanguageCode.cc:499
+msgid "Greek, Ancient (to 1453)"
+msgstr ""
 
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
 msgstr ""
 
 #. language code: guj gu
@@ -1836,11 +2718,6 @@ msgstr ""
 msgid "Gujarati"
 msgstr ""
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr ""
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1851,53 +2728,21 @@ msgstr ""
 msgid "Haida"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr ""
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr ""
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-#, fuzzy
-msgid "Have you enabled all requested repositories?"
-msgstr "Выдаліць непатрэбныя сховішчы"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr ""
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1923,16 +2768,6 @@ msgstr ""
 msgid "Hindi"
 msgstr ""
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr ""
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1943,20 +2778,15 @@ msgstr ""
 msgid "Hmong"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Гандурас"
-
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Гонк Конг"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr ""
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
@@ -1964,11 +2794,6 @@ msgstr "Гонк Конг"
 msgid "Hungarian"
 msgstr "Венгрыя"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Венгрыя"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1979,10 +2804,10 @@ msgstr ""
 msgid "Iban"
 msgstr ""
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Ісландыя"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr ""
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1995,181 +2820,66 @@ msgstr "Ісландыя"
 msgid "Ido"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr ""
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+#, fuzzy
+msgid "Sichuan Yi"
+msgstr "Літва"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr ""
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr ""
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr ""
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Індыя"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr ""
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr ""
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Інданэзія"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-#, fuzzy
-msgid "Indonesian"
-msgstr "Інданэзія"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr ""
-
 #. language code: iku iu
 #: zypp/LanguageCode.cc:555
 msgid "Inuktitut"
 msgstr ""
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr ""
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr ""
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1049
-#, fuzzy, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Памылковае значэнне для опцыі '%1': %2"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, fuzzy, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Памылковае значэнне для опцыі '%1': %2"
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Памылковае значэнне для опцыі '%1': %2"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
 msgstr ""
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
 msgstr ""
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Ірак"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr ""
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Ірландыя"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+#, fuzzy
+msgid "Indonesian"
+msgstr "Інданэзія"
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr ""
+
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
 msgstr ""
 
 #. language code: iro
@@ -2177,35 +2887,21 @@ msgstr ""
 msgid "Iroquoian Languages"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Ізраіль"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 #, fuzzy
 msgid "Italian"
 msgstr "Італія"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Італія"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
 msgstr ""
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Японія"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr ""
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
@@ -2213,34 +2909,19 @@ msgstr "Японія"
 msgid "Japanese"
 msgstr "Японія"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr ""
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Іарданія"
-
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr ""
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr ""
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
 #. language code: kab
@@ -2258,11 +2939,6 @@ msgstr ""
 msgid "Kalaallisut"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr ""
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2274,21 +2950,6 @@ msgstr ""
 msgid "Kannada"
 msgstr "Канада"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr ""
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr ""
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr ""
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2299,9 +2960,9 @@ msgstr ""
 msgid "Kashmiri"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
 #. language code: kaw
@@ -2314,15 +2975,9 @@ msgstr ""
 msgid "Kazakh"
 msgstr ""
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-#, fuzzy
-msgid "Kazakhstan"
-msgstr "Пакістан"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
 #. language code: kha
@@ -2330,16 +2985,16 @@ msgstr ""
 msgid "Khasi"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr ""
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr ""
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr ""
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2350,11 +3005,6 @@ msgstr ""
 msgid "Kikuyu"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr ""
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2365,14 +3015,14 @@ msgstr ""
 msgid "Kirghiz"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
 #. language code: kom kv
@@ -2385,11 +3035,6 @@ msgstr ""
 msgid "Kongo"
 msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr ""
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2405,11 +3050,21 @@ msgstr ""
 msgid "Kpelle"
 msgstr ""
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr ""
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr ""
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr ""
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2425,26 +3080,11 @@ msgstr ""
 msgid "Kurdish"
 msgstr ""
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr ""
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Кувейт"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr ""
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2466,69 +3106,22 @@ msgstr ""
 msgid "Lao"
 msgstr "Ліван"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr ""
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr ""
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Латвія"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 #, fuzzy
 msgid "Latvian"
 msgstr "Латвія"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Ліван"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr ""
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr ""
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Ліхтэнштэйн"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 #, fuzzy
@@ -2537,13 +3130,8 @@ msgstr "Люксембург"
 
 #. language code: lin ln
 #: zypp/LanguageCode.cc:671
-msgid "Lingala"
-msgstr ""
-
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Літва"
+msgid "Lingala"
+msgstr ""
 
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
@@ -2551,30 +3139,25 @@ msgstr "Літва"
 msgid "Lithuanian"
 msgstr "Літва"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: loz
+#: zypp/LanguageCode.cc:677
+msgid "Lozi"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
 #, fuzzy
-msgid "Low German"
-msgstr "Германія"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr ""
+msgid "Luxembourgish"
+msgstr "Люксембург"
 
-#. language code: loz
-#: zypp/LanguageCode.cc:677
-msgid "Lozi"
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
 msgstr ""
 
 #. language code: lub lu
@@ -2582,9 +3165,9 @@ msgstr ""
 msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
 msgstr ""
 
 #. language code: lui
@@ -2592,12 +3175,6 @@ msgstr ""
 msgid "Luiseno"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-#, fuzzy
-msgid "Lule Sami"
-msgstr "Імя модуля"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2613,38 +3190,12 @@ msgstr ""
 msgid "Lushai"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-#, fuzzy
-msgid "Luxembourg"
-msgstr "Люксембург"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-#, fuzzy
-msgid "Luxembourgish"
-msgstr "Люксембург"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr ""
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Македонія"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 #, fuzzy
 msgid "Macedonian"
 msgstr "Македонія"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr ""
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2655,6 +3206,11 @@ msgstr ""
 msgid "Magahi"
 msgstr ""
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr ""
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2665,279 +3221,132 @@ msgstr ""
 msgid "Makasar"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-#, fuzzy
-msgid "Malagasy"
-msgstr "Малайзія"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-#, fuzzy
-msgid "Malawi"
-msgstr "Малайзія"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-#, fuzzy
-msgid "Malay"
-msgstr "Малайзія"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 #, fuzzy
 msgid "Malayalam"
 msgstr "Малайзія"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Малайзія"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr ""
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr ""
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Мальта"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-#, fuzzy
-msgid "Maltese"
-msgstr "Мальта"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr ""
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr ""
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr ""
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-#, fuzzy
-msgid "Manobo Languages"
-msgstr "&Мова"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr ""
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr ""
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr ""
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-#, fuzzy
-msgid "Marshall Islands"
-msgstr "Фарэрскія астравы"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr ""
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr ""
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr ""
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr ""
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
 #, fuzzy
-msgid "Mauritania"
-msgstr "Ð\9bÑ\96Ñ\82ва"
+msgid "Malay"
+msgstr "Ð\9cалайзÑ\96Ñ\8f"
 
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-#, fuzzy
-msgid "Mayan Languages"
-msgstr "&Мова"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
 msgstr ""
 
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
+#. language code: men
+#: zypp/LanguageCode.cc:731
+msgid "Mende"
 msgstr ""
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: mic
+#: zypp/LanguageCode.cc:735
+msgid "Mi'kmaq"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: min
+#: zypp/LanguageCode.cc:737
+msgid "Minangkabau"
 msgstr ""
 
-#. language code: men
-#: zypp/LanguageCode.cc:731
-msgid "Mende"
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Мексіка"
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+#, fuzzy
+msgid "Malagasy"
+msgstr "Малайзія"
 
-#. language code: mic
-#: zypp/LanguageCode.cc:735
-msgid "Mi'kmaq"
-msgstr ""
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+#, fuzzy
+msgid "Maltese"
+msgstr "Мальта"
 
-#. language code: min
-#: zypp/LanguageCode.cc:737
-msgid "Minangkabau"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
-msgstr ""
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+#, fuzzy
+msgid "Manobo Languages"
+msgstr "&Мова"
 
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr ""
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 #, fuzzy
 msgid "Moldavian"
 msgstr "Югаславія"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr ""
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr ""
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr ""
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr ""
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr ""
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr ""
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr ""
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr ""
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Марока"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr ""
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2949,9 +3358,30 @@ msgstr ""
 msgid "Munda languages"
 msgstr "Захаванне мовы..."
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr ""
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr ""
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr ""
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+#, fuzzy
+msgid "Mayan Languages"
+msgstr "&Мова"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
 msgstr ""
 
 #. language code: nah
@@ -2959,15 +3389,14 @@ msgstr ""
 msgid "Nahuatl"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
 msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
 #. language code: nav nv
@@ -2975,65 +3404,35 @@ msgstr ""
 msgid "Navajo"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr ""
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr ""
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr ""
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr ""
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr ""
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr ""
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+#, fuzzy
+msgid "Low German"
+msgstr "Германія"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr ""
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Нідэрланды"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-#, fuzzy
-msgid "Netherlands Antilles"
-msgstr "Нідэрланды"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-#, fuzzy
-msgid "New Caledonia"
-msgstr "Македонія"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Новая Зеландыя"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
 #. language code: nia
@@ -3041,50 +3440,24 @@ msgstr ""
 msgid "Nias"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Нікарагуа"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr ""
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-#, fuzzy
-msgid "Nigeria"
-msgstr "Алжыр"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr ""
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
 #. language code: nog
@@ -3092,65 +3465,20 @@ msgstr ""
 msgid "Nogai"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-#, fuzzy
-msgid "Norfolk Island"
-msgstr "Фарэрскія астравы"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr ""
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr ""
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr ""
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr ""
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr ""
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Нарвегія"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 #, fuzzy
 msgid "Norwegian"
-msgstr "Нарвегія"
-
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr ""
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr ""
+msgstr "Нарвегія"
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
 #. language code: nub
@@ -3159,6 +3487,16 @@ msgstr ""
 msgid "Nubian Languages"
 msgstr "&Мова"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr ""
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr ""
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3179,10 +3517,6 @@ msgstr ""
 msgid "Nzima"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr ""
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3193,20 +3527,6 @@ msgstr ""
 msgid "Ojibwa"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Аман"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3227,18 +3547,25 @@ msgstr ""
 msgid "Ossetian"
 msgstr ""
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr ""
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 #, fuzzy
 msgid "Otomian Languages"
 msgstr "&Мова"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr ""
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
 #. language code: pal
@@ -3246,46 +3573,11 @@ msgstr ""
 msgid "Pahlavi"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Пакістан"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr ""
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr ""
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr ""
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr ""
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Панама"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr ""
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3296,34 +3588,14 @@ msgstr ""
 msgid "Papiamento"
 msgstr ""
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr ""
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr ""
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Парагвай"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
 #. language code: per fas fa
@@ -3331,39 +3603,25 @@ msgstr ""
 msgid "Persian"
 msgstr ""
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr ""
-
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Перу"
-
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 #, fuzzy
 msgid "Philippine (Other)"
 msgstr "Філіпіны"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Філіпіны"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
 msgstr ""
 
 #. language code: pon
@@ -3371,21 +3629,6 @@ msgstr ""
 msgid "Pohnpeian"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Польша"
-
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
-msgstr ""
-
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Партугалія"
-
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
 #, fuzzy
@@ -3398,122 +3641,35 @@ msgstr "Партугалія"
 msgid "Prakrit Languages"
 msgstr "&Мова"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Пуэрта Рыка"
-
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
-msgstr ""
-
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Катар"
-
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr ""
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr ""
-
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
-msgstr ""
-
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-#, fuzzy
-msgid "Rapanui"
-msgstr "Японія"
-
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr ""
-
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, fuzzy, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Выдаленне непатрэбных сховішчаў..."
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
 msgstr ""
 
-#: zypp/Dep.cc:98
-msgid "Requires"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
 msgstr ""
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+#, fuzzy
+msgid "Rapanui"
+msgstr "Японія"
+
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
 msgstr ""
 
 #. language code: roa
@@ -3521,9 +3677,15 @@ msgstr ""
 msgid "Romance (Other)"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr ""
+
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+#, fuzzy
+msgid "Romany"
 msgstr "Румынія"
 
 #. language code: rum ron ro
@@ -3532,12 +3694,6 @@ msgstr "Румынія"
 msgid "Romanian"
 msgstr "Румынія"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-#, fuzzy
-msgid "Romany"
-msgstr "Румынія"
-
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3549,42 +3705,24 @@ msgstr ""
 msgid "Russian"
 msgstr "Расія"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr ""
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr ""
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr ""
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr ""
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
 msgstr ""
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
 #. language code: sal
@@ -3598,71 +3736,42 @@ msgstr "Захаванне мовы..."
 msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr ""
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr ""
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr ""
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr ""
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr ""
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr ""
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr ""
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr ""
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr ""
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
 msgstr ""
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Саудаўская Аравія"
-
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr ""
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+#, fuzzy
+msgid "Croatian"
+msgstr "Харватыя"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3673,69 +3782,9 @@ msgstr ""
 msgid "Semitic (Other)"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr ""
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "Алжыр"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr ""
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr ""
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
-
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr ""
-
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr ""
-
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr ""
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-#, fuzzy
-msgid "Sichuan Yi"
-msgstr "Літва"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr ""
-
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr ""
-
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
 #. language code: sgn
@@ -3744,74 +3793,30 @@ msgstr ""
 msgid "Sign Languages"
 msgstr "&Мова"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
 msgstr ""
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Сінгапур"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 #, fuzzy
 msgid "Siouan Languages"
 msgstr "Захаванне мовы..."
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -3825,122 +3830,106 @@ msgstr ""
 msgid "Slovak"
 msgstr "Славакія"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Славакія"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Славенія"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 #, fuzzy
 msgid "Slovenian"
 msgstr "Славенія"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-#, fuzzy
-msgid "Solomon Islands"
-msgstr "Фарэрскія астравы"
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
 msgstr ""
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr ""
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+#, fuzzy
+msgid "Lule Sami"
+msgstr "Імя модуля"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-#, fuzzy
-msgid "Sorbian Languages"
-msgstr "Захаванне мовы..."
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
 msgstr ""
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Паўдневая Афрыка"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr ""
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
 msgstr ""
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-#, fuzzy
-msgid "South Korea"
-msgstr "Паўдневая Афрыка"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr ""
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-#, fuzzy
-msgid "Southern Altai"
-msgstr "Паўдневая Афрыка"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr ""
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
 msgstr ""
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Іспанія"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr ""
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr ""
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
 msgstr ""
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Судан"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
 #. language code: suk
@@ -3948,33 +3937,19 @@ msgstr ""
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr ""
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr ""
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr ""
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
 #. language code: swa sw
@@ -3982,102 +3957,33 @@ msgstr ""
 msgid "Swahili"
 msgstr ""
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr ""
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-#, fuzzy
-msgid "Swaziland"
-msgstr "Тайланд"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Швецыя"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 #, fuzzy
 msgid "Swedish"
 msgstr "Швецыя"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Швейцарыя"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr ""
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
-msgstr ""
-
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
-#. language code: tah ty
-#: zypp/LanguageCode.cc:1013
-msgid "Tahitian"
-msgstr ""
-
-#. language code: tai
-#: zypp/LanguageCode.cc:1015
-#, fuzzy
-msgid "Tai (Other)"
-msgstr "Іншае"
-
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Тайвань"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-#, fuzzy
-msgid "Tajik"
-msgstr "Таджыкістан"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Таджыкістан"
+msgstr ""
 
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
+#. language code: tah ty
+#: zypp/LanguageCode.cc:1013
+msgid "Tahitian"
 msgstr ""
 
+#. language code: tai
+#: zypp/LanguageCode.cc:1015
+#, fuzzy
+msgid "Tai (Other)"
+msgstr "Іншае"
+
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr ""
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 #, fuzzy
@@ -4089,6 +3995,11 @@ msgstr "Катар"
 msgid "Telugu"
 msgstr ""
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4099,34 +4010,23 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+#, fuzzy
+msgid "Tajik"
+msgstr "Таджыкістан"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr ""
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 #, fuzzy
 msgid "Thai"
 msgstr "Тайланд"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Тайланд"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr ""
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4142,45 +4042,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4193,15 +4072,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4209,70 +4082,48 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+#, fuzzy
+msgid "Tswana"
+msgstr "Батсвана"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr ""
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
 #, fuzzy
-msgid "Tswana"
-msgstr "Ð\91аÑ\82Ñ\81вана"
+msgid "Turkmen"
+msgstr "ТÑ\83Ñ\80Ñ\86Ñ\8bÑ\8f"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Туніс"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 #, fuzzy
 msgid "Tupi Languages"
 msgstr "&Мова"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Турцыя"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 #, fuzzy
 msgid "Turkish"
 msgstr "Турцыя"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr ""
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-#, fuzzy
-msgid "Turkmen"
-msgstr "Турцыя"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-#, fuzzy
-msgid "Turkmenistan"
-msgstr "Таджыкістан"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
 msgstr ""
 
 #. language code: tyv
@@ -4280,21 +4131,11 @@ msgstr ""
 msgid "Tuvinian"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr ""
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr ""
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4305,580 +4146,739 @@ msgstr ""
 msgid "Uighur"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Украіна"
-
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-#, fuzzy
-msgid "Ukrainian"
-msgstr "Украіна"
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+#, fuzzy
+msgid "Ukrainian"
+msgstr "Украіна"
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr ""
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+#, fuzzy
+msgid "Uzbek"
+msgstr "Узбексітан"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+#, fuzzy
+msgid "Vietnamese"
+msgstr "Імя файла"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr ""
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr ""
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr ""
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr ""
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr ""
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr ""
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr ""
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+#, fuzzy
+msgid "Sorbian Languages"
+msgstr "Захаванне мовы..."
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr ""
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr ""
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-#, fuzzy
-msgid "Unable to create dbus connection"
-msgstr "Праверыць інтэрнэт злучэнне"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
 #, fuzzy
-msgid "Unhandled repository type"
-msgstr "Дадаць уключаныя сховішчы"
+msgid "Yupik Languages"
+msgstr "&Мова"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Аб'яднаныя Арабскія Эміраты"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
 msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-#, fuzzy
-msgid "United States"
-msgstr "Аб'яднаныя Арабскія Эміраты"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr ""
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-#, fuzzy
-msgid "Unknown country: "
-msgstr "Невядомая каманда: %1"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Невядомая опцыя для каманды '%1': %2"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr ""
 
-#: zypp/LanguageCode.cc:49
-#, fuzzy
-msgid "Unknown language: "
-msgstr "Невядомая каманда: %1"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Невядомая каманда: %1"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid "Signature file %s not found"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr ""
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+#, fuzzy
+msgid "Have you enabled all requested repositories?"
+msgstr "Выдаліць непатрэбныя сховішчы"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Уругвай"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-#, fuzzy
-msgid "Uzbek"
-msgstr "Узбексітан"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Узбексітан"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
 msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Венесуэла"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-#, fuzzy
-msgid "Vietnamese"
-msgstr "Імя файла"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr ""
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "Захаваць налады ўсталёўкі"
+
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Йемен"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Захаваць налады ўсталёўкі"
+
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-#, fuzzy
-msgid "Yupik Languages"
-msgstr "&Мова"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Ð\97Ñ\96мбабве"
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Ð\9dевÑ\8fдомаÑ\8f ÐºÐ°Ð¼Ð°Ð½Ð´Ð°: %1"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:158
+#, fuzzy, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Памылковае значэнне для опцыі '%1': %2"
+
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Failed to mount %s on %s"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Failed to unmount %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
-#, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Захаваць налады ўсталёўкі"
-
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "keep %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "Захаваць налады ўсталёўкі"
-
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "невядомы"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
index e656392..81c054f 100644 (file)
--- a/po/bg.po
+++ b/po/bg.po
@@ -23,17 +23,96 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: KBabel 1.10.2\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
 #, fuzzy
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr "Няма инсталируеми доставчици на %s"
+msgid "Hal Exception"
+msgstr "Криптиране"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr ""
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr ""
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr ""
+
+#: zypp/Url.cc:313
+#, fuzzy
+msgid "Invalid empty Url object reference"
+msgstr "Невалидно име за празно действие за услугата '%1'"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:77
+#, fuzzy
+msgid "Can't acquire the mutex lock"
+msgstr "Не може да се придобие заключването на zypp."
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr ""
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Доставя"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Изисква"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "В конфликт с"
+
+#: zypp/Dep.cc:100
+#, fuzzy
+msgid "Obsoletes"
+msgstr "%s прави ненужно: %s"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Препоръчва"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Предлага"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Подобрява"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Допълва"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -46,10 +125,6 @@ msgstr ""
 msgid " execution failed"
 msgstr "Настройването чрез %s бе неуспешно."
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -58,92 +133,123 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s е в конфликт с %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s доставя %s, но има друга архитектура."
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "Инсталирането на %s бе неуспешно"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s е заключен и не може да бъде деинсталиран."
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, fuzzy, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s прави ненужно %s"
+#: zypp/target/hal/HalContext.cc:117
+#, fuzzy
+msgid "HalContext not connected"
+msgstr "не е свързан"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/target/hal/HalContext.cc:229
+#, fuzzy
+msgid "Unable to create dbus connection"
+msgstr "връзка канал-към-канал"
+
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Ð\90бÑ\85азки"
+#: zypp/target/hal/HalContext.cc:851
+#, fuzzy
+msgid "Not a CDROM drive"
+msgstr "Ð\9dе Ñ\81а Ð¾Ñ\82кÑ\80иÑ\82и CD-ROM Ñ\83Ñ\81Ñ\82Ñ\80ойÑ\81Ñ\82ва."
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Ачински"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+#, fuzzy
+msgid "RPM failed: "
+msgstr "пропадна."
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Аколи"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Адангме"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "Changed configuration files for %s:"
+msgstr "Променени файлове с настройки за %s:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, fuzzy, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm запази %s като %s, но е невъзможно да се открие разликата"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"rpm запази %s като %s.\n"
+"Ето първите 25 реда от разликите:\n"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, fuzzy, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm създаде %s като %s, но е невъзможно да се открие разликата"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"rpm създаде %s като %s.\n"
+"Ето първите 25 реда от разликите:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -152,395 +258,541 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "Допълнителен изход от rpm:"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Адиге"
-
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Африкански"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "създадено резервно копие %s"
 
-# AF
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Афганистан"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "KScreensaver не е открит."
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Африхили"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Африкаанс"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "KScreensaver не е открит."
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Афро-азиатски (друг)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "KScreensaver не е открит."
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Аину"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Акан"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Акадски"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
 
-# KY
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Алански Острови"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Албания"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Неуспешно зареждане на модула \"%s\"."
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Албански"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Алют"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Алжир"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-#, fuzzy
-msgid "Algonquian Languages"
-msgstr "Алгонквиански езици"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Файлът не може да бъде отворен за запис."
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Алтайски (друг)"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
 
-# AS
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Американска Самоа"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Ð\90мÑ\85аÑ\80ик"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Ð\9dе Ð¼Ð¾Ð¶Ðµ Ð´Ð° Ñ\81е Ñ\81Ñ\8aздаде %s: %m\n"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
 msgstr ""
 
-# AD
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Андора"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
 
-# AO
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Ангола"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
 
-# AI
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Ангила"
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Достъпът до носителя за обновяване на драйверите е неуспешен."
 
-# AQ
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Антарктика"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
 
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Антигуа и Барбуда"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-#, fuzzy
-msgid "Apache Languages"
-msgstr "Ð\90паÑ\87и ÐµÐ·Ð¸Ñ\86и"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Ð\93Ñ\80еÑ\88ка Ð¿Ñ\80и Ñ\87еÑ\82енеÑ\82о Ð¾Ñ\82 Ð´Ð¸Ñ\81кеÑ\82аÑ\82а."
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Арабски"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Арагонски"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "невалидно име на услуга '%1'."
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Арамайски"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Арапахо"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Араукански"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "%s не може да бъде инсталиран"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Аравак"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Аржентина"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
 
-# AM
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Армения"
+#: zypp/url/UrlBase.cc:173
+#, fuzzy, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "невалидно име на услуга '%1'."
 
-# AM
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Арменски"
+#: zypp/url/UrlBase.cc:180
+#, fuzzy, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Невалидна информация"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Изкуствен (друг)"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
 
-# AW
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Аруба"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Ð\90Ñ\81амеÑ\81ки"
+#: zypp/url/UrlBase.cc:830
+#, fuzzy, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "невалидно Ð¸Ð¼Ðµ Ð½Ð° Ñ\83Ñ\81лÑ\83га '%1'."
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Астурийски"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-#, fuzzy
-msgid "Athapascan Languages"
-msgstr "Атапаскан езици"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Австралия"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-#, fuzzy
-msgid "Australian Languages"
-msgstr "Австралийски езици"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Австрия"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Австронезийски (друг)"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
+msgid "Invalid port component '%s'"
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Аварски"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Авестански"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
 
-# SZ
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Авадхи"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
 
-# MM
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Аймара"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
 
-# AZ
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Азербайджан"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Азербайджански"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
 
-#: zypp/media/MediaException.cc:47
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Възникнала е грешка при отварянето на %s: %m"
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Възникнала е грешка при отварянето на %s: %m"
+
+#: zypp/ExternalProgram.cc:350
 #, c-format, boost-format
-msgid "Bad file name: %s"
+msgid "Can't chroot to '%s' (%s)."
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
 msgstr ""
 
-# BS
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Бахами"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Бахрейн"
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Възникнала е грешка при отварянето на %s: %m"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Балинески"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Балтийски (друг)"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Балучи"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Бамбара"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
+#: zypp/ExternalProgram.cc:532
 #, fuzzy
-msgid "Bamileke Languages"
-msgstr "Бамилеке езици"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Банда"
+msgid "Command exited with unknown error."
+msgstr "Команда за изпълнение при свързване"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Бангладеш"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Банту (друг)"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Барбадос"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Баса"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Башкирски"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "неизвестно"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Баски"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Батак (Индонезия)"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Бея"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Беларус"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Беларуски"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Неизвестна държава: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+#, fuzzy
+msgid "No Code"
+msgstr "без код"
+
+# AD
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Андора"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Обединени арабски емирства"
+
+# AF
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Афганистан"
+
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Антигуа и Барбуда"
+
+# AI
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Ангила"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Албания"
+
+# AM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Армения"
+
+# AN
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Холандски Антили"
+
+# AO
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Ангола"
+
+# AQ
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Антарктика"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Аржентина"
+
+# AS
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Американска Самоа"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Австрия"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Австралия"
+
+# AW
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Аруба"
+
+# KY
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Алански Острови"
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Азербайджан"
+
+# BA
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Босна и Херцеговина"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Барбадос"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Бангладеш"
 
 #. :BGD:050:
 #: zypp/CountryCode.cc:178
 msgid "Belgium"
 msgstr "Белгия"
 
-# BZ
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Белиз"
+# BF
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Буркина Фасо"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Бебма"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "България"
 
-# SN
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Бенгалски"
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Бахрейн"
+
+# BI
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Бурунди"
 
 # BJ
 #. :BDI:108:
@@ -548,20 +800,33 @@ msgstr "Бенгалски"
 msgid "Benin"
 msgstr "Бенин"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Бербер (друг)"
-
 #. :BEN:204:
 #: zypp/CountryCode.cc:184
 msgid "Bermuda"
 msgstr "Бермуда"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Бходжури"
+# BN
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Бруней"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Боливия"
+
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Бразилия"
+
+# BS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Бахами"
 
 # BT
 #. :BHS:044:
@@ -569,300 +834,1553 @@ msgstr "Бходжури"
 msgid "Bhutan"
 msgstr "Бутан"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Бихари"
+# BV
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Остров Бувет"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Ð\91икол"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Ð\91оÑ\86вана"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Ð\91ини"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Ð\91елаÑ\80Ñ\83Ñ\81"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Бислама"
+# BZ
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Белиз"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Канада"
+
+# CC
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Кокосови Острови"
+
+# CG
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Конго"
+
+# CF
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+#, fuzzy
+msgid "Central African Republic"
+msgstr "Централноафриканска Република"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Швейцария"
+
+# CI
+# fuzzy
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Кот д'ивоар"
+
+# CK
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Острови Кук"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Чили"
+
+# CM
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Камерун"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Китай"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Колумбия"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Коста Рика"
+
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Куба"
+
+# CV
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Капо Верде"
+
+# CX
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Коледни Острови"
+
+# CY
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Кипър"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Чешка република"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Германия"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Джибути"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Дания"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Доминика"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Доминиканска република"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Алжир"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Еквадор"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Естония"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Египет"
+
+# EH
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Западна Сахара"
+
+# ER
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Еритрея"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Испания"
+
+# ET
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Етиопия"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Финландия"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Фуджи"
+
+# FK
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Фолклендски Острови (Малвини)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Федерални Щати Микронезия"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Фароеви острови"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Франция"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Френска метрополия"
+
+# GA
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Габон"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Великобритания"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Гренада"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Грузия"
+
+# GF
+# fuzzy
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Френска Гвиана"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Германия"
+
+# GH
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Гана"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Гибралтар"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Гренландия"
+
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Гамбия"
+
+# GN
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Гвинея"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Гваделупа"
+
+# GQ
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Екваториална Гвинея"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Гърция"
+
+# GS
+# fuzzy
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Южни Сандвичеви Острови"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Гватемала"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Гуам"
+
+# GW
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Гвинея-Бисау"
+
+# GY
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Гияна"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Хонг Конг"
+
+# HM
+# fuzzy
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Хърд и МакДоналд Острови"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Хондурас"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Хърватска"
+
+# HT
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Хаити"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Унгария"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Индонезия"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Ирландия"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Израел"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Индия"
+
+# IO
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Английски територии в Индийския океан"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Ирак"
+
+# IR
+# fuzzy
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Ирак"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Исландия"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Италия"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Ямайка"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Йордания"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Япония"
+
+# KE
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Кения"
+
+# KG
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Киргизтан"
+
+# KH
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Камбоджа"
+
+# KI
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Кирибати"
+
+# KM
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Комори"
+
+# KN
+# fuzzy
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Свети Китс и Невис"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Северна Корея"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Южна Корея"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Кувейт"
+
+# KY
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Кайманови Острови"
+
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Казахстан"
+
+# CD
+# fuzzy
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Лао Народна Демократична Република"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Ливан"
+
+# LC
+# fuzzy
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Санта Лучия"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Лихтенщайн"
+
+# LK
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Шри Ланка"
+
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Либерия"
+
+# LS
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Лесото"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Литва"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Люксембург"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Латвия"
+
+# LY
+# fuzzy
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Либерия"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Мароко"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Монако"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Молдова"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Черна Гора"
+
+# SM
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "Сан Марино"
+
+# MG
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Мадагаскар"
+
+# MH
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Маршалови Острови"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Македония"
+
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Мали"
+
+# MM
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Мианмар"
+
+# MN
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Монголия"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Макао"
+
+# MP
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Северни Марианови Острови"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Мартиник"
+
+# MR
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Мавритания"
+
+# MS
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Монсерат"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Малта"
+
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Мавриций"
+
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Мали"
+
+# MW
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Малави"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Мексико"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Малайзия"
+
+# MZ
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Мозамбик"
+
+# NA
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Намибия"
+
+# NC
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Нова Каледония"
+
+# NE
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Нигер"
+
+# NF
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Норфолк Остров"
+
+# NG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Нигерия"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Никарагуа"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Холандия"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Норвегия"
+
+# NP
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Непал"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Науру"
+
+# NU
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Нию"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Нова Зеландия"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Оман"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Панама"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Перу"
+
+# PF
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Френска Полинезия"
+
+# PG
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Папуа Нова Гвинея"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Филипини"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Пакистан"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Полша"
+
+# PM
+# fuzzy
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Свети Пиер и Микелон"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Питкаирн"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Пуерто Рико"
+
+# IO
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Палестински територии"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Португалия"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Палау"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Парагвай"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Катар"
+
+# RE
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Риюниън"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Румъния"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Сърбия"
+
+# RU
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Руска Федерация"
+
+# RW
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Руанда"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Саудитска Арабия"
+
+# SB
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Соломонови Острови"
+
+# SC
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Сейшели"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Судан"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Швеция"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Сингапур"
+
+# SH
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Света Елена"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Словения"
+
+# SJ
+# fuzzy
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Свалбард и Ян Майен Острови"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Словакия"
+
+# SL
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Сиера Леоне"
+
+# SM
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "Сан Марино"
+
+# SN
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Сенегал"
+
+# SO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Сомалия"
+
+# SR
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Суринам"
+
+# ST
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Сао Томе и Принсипи"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "Ел Салвадор"
+
+# SY
+# fuzzy
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Суринам"
+
+# SZ
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Свазиленд"
+
+# TC
+# fuzzy
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Тюрк и Кайкос Острови"
+
+# TD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Чад"
+
+# TF
+# fuzzy
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Франция Южни Територии"
+
+# TG
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Того"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Тайланд"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Таджикистан"
+
+# TK
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Токелау"
+
+# TM
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Туркменистан"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Тунис"
+
+# TO
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Тонга"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Източен Тимор"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Турция"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Тринидад и Тобаго"
+
+# TV
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Тувалу"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Тайван"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Танзания"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Украйна"
+
+# UG
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Уганда"
+
+# UM
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Малки Острови по крайбрежието на САЩ"
+
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "САЩ"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Уругвай"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Узбекистан"
+
+# VA
+# fuzzy
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Ватикана"
+
+# VC
+# fuzzy
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Свети Винсент и Гренадин"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Венецуела"
+
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Вирджински Острови (Великобритания)"
+
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Вирджински Острови (САЩ)"
+
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Виетнам"
+
+# VU
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Вануату"
+
+# WF
+# fuzzy
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Уолис и Футуна Острови"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Самоа"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Йемен"
+
+# YT
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Майот"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Южна Африка"
+
+# ZM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Замбия"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Зимбабве"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Неизвестен език: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Африкански"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Абхазки"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Ачински"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Аколи"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Адангме"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Адиге"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Афро-азиатски (друг)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Африхили"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Африкаанс"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Аину"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Акан"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Акадски"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Албански"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Алют"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Блин"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+#, fuzzy
+msgid "Algonquian Languages"
+msgstr "Алгонквиански езици"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Ð\91оливиÑ\8f"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Южно-алÑ\82айÑ\81ки"
 
-# BA
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Босна и Херцеговина"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Амхарик"
 
-# BJ
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Босненски"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Английски, стар (ок. 450-1100)"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Боцвана"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+#, fuzzy
+msgid "Apache Languages"
+msgstr "Апачи езици"
 
-# BV
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Остров Бувет"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Арабски"
 
-# BR
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Брая"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Арамайски"
 
-# BR
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Бразилия"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Арагонски"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Бретон"
+# AM
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Арменски"
 
-# IO
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Английски територии в Индийския океан"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Араукански"
 
-# VI
-# fuzzy
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Вирджински Острови (Великобритания)"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Арапахо"
 
-# BN
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Бруней"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Изкуствен (друг)"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Ð\91Ñ\83гинеÑ\81ки"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Ð\90Ñ\80авак"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Асамески"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Ð\91Ñ\8aлгаÑ\80иÑ\8f"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Ð\90Ñ\81Ñ\82Ñ\83Ñ\80ийÑ\81ки"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Български"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+#, fuzzy
+msgid "Athapascan Languages"
+msgstr "Атапаскан езици"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Бурият"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+#, fuzzy
+msgid "Australian Languages"
+msgstr "Австралийски езици"
 
-# BF
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Буркина Фасо"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Аварски"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Ð\91Ñ\83Ñ\80мийски"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Ð\90веÑ\81Ñ\82ански"
 
-# BI
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Ð\91Ñ\83Ñ\80Ñ\83нди"
+# SZ
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Ð\90вадÑ\85и"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Каддо"
+# MM
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Аймара"
 
-# KH
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Камбоджа"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Азербайджански"
 
-# CM
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Камерун"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Банда"
 
-#: zypp/sat/detail/PoolImpl.cc:184
+#. language code: bai
+#: zypp/LanguageCode.cc:239
 #, fuzzy
-msgid "Can not create sat-pool."
-msgstr "Ð\92Ñ\8aзникнала Ðµ Ð³Ñ\80еÑ\88ка Ð¿Ñ\80и Ñ\81Ñ\8aздаванеÑ\82о Ð½Ð° Ð²Ñ\80еменниÑ\8f Ñ\84айл %s: %m"
+msgid "Bamileke Languages"
+msgstr "Ð\91амилеке ÐµÐ·Ð¸Ñ\86и"
 
-#: zypp/thread/Mutex.cc:77
-#, fuzzy
-msgid "Can't acquire the mutex lock"
-msgstr "Ð\9dе Ð¼Ð¾Ð¶Ðµ Ð´Ð° Ñ\81е Ð¿Ñ\80идобие Ð·Ð°ÐºÐ»Ñ\8eÑ\87ванеÑ\82о Ð½Ð° zypp."
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Ð\91аÑ\88киÑ\80Ñ\81ки"
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Ð\92Ñ\8aзникнала Ðµ Ð³Ñ\80еÑ\88ка Ð¿Ñ\80и Ð¾Ñ\82ваÑ\80Ñ\8fнеÑ\82о Ð½Ð° %s: %m"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Ð\91алÑ\83Ñ\87и"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Бамбара"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Балинески"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Не може да се създаде %s: %m\n"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Баски"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Баса"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Балтийски (друг)"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr ""
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Бея"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "%s не може да бъде инсталиран"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Беларуски"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Бебма"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
+# SN
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Бенгалски"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Бербер (друг)"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr ""
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Бходжури"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr ""
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Бихари"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr ""
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Бикол"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Файлът не може да бъде отворен за запис."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Бини"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Ð\92Ñ\8aзникнала Ðµ Ð³Ñ\80еÑ\88ка Ð¿Ñ\80и Ð¾Ñ\82ваÑ\80Ñ\8fнеÑ\82о Ð½Ð° %s: %m"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Ð\91иÑ\81лама"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Ð\92Ñ\8aзникнала Ðµ Ð³Ñ\80еÑ\88ка Ð¿Ñ\80и Ð¾Ñ\82ваÑ\80Ñ\8fнеÑ\82о Ð½Ð° %s: %m"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "СикÑ\81ика"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Ð\92Ñ\8aзникнала Ðµ Ð³Ñ\80еÑ\88ка Ð¿Ñ\80и Ð¾Ñ\82ваÑ\80Ñ\8fнеÑ\82о Ð½Ð° %s: %m"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Ð\91анÑ\82Ñ\83 (дÑ\80Ñ\83г)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, fuzzy, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Никой не доставя %s"
+# BJ
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Босненски"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr ""
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Брая"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr ""
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Бретон"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Ð\9aанада"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Ð\91аÑ\82ак (Ð\98ндонезиÑ\8f)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Бурият"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "%s не може да бъде инсталиран"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Бугинески"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Български"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Бурмийски"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Блин"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Ð\92Ñ\80еменниÑ\8fÑ\82 Ñ\84айл (%s) Ð½Ðµ Ð¼Ð¾Ð¶Ðµ Ð´Ð° Ð±Ñ\8aде Ñ\81Ñ\8aздаден: %m"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Ð\9aаддо"
 
-# CV
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Капо Верде"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Централно-американски индиански (друг)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -879,12 +2397,6 @@ msgstr "Каталунски"
 msgid "Caucasian (Other)"
 msgstr "Кауказийски (друг)"
 
-# KY
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Кайманови Острови"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -893,180 +2405,86 @@ msgstr "Кебуано"
 #. language code: cel
 #: zypp/LanguageCode.cc:313
 msgid "Celtic (Other)"
-msgstr "Келтски (друг)"
-
-# CF
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-#, fuzzy
-msgid "Central African Republic"
-msgstr "Централноафриканска Република"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Централно-американски индиански (друг)"
-
-# TD
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Чад"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Чагатай"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-#, fuzzy
-msgid "Chamic Languages"
-msgstr "Чамик езици"
-
-# KM
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "Коморийски"
-
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Променени файлове с настройки за %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Чеченски"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Чероки"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Кайенски"
+msgstr "Келтски (друг)"
+
+# KM
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "Коморийски"
 
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Чибча"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Чичева"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Чили"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Чеченски"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Ð\9aитай"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Чагатай"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Китайски"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Чуукски"
+
+# ML
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Мари"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 #, fuzzy
 msgid "Chinook Jargon"
 msgstr "Чинук жаргон"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Чипеуан"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Чоктау"
 
-# CX
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Коледни Острови"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Чипеуан"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Чероки"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "Църковно-славянски"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Чуукски"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "Чуваш"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Класически невари"
-
-# CC
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Кокосови Острови"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Колумбия"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Кайенски"
 
-#: zypp/ExternalProgram.cc:532
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
 #, fuzzy
-msgid "Command exited with unknown error."
-msgstr "Команда за изпълнение при свързване"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-# KM
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Комори"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "В конфликт с"
-
-# CG
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Конго"
-
-# CK
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Острови Кук"
+msgid "Chamic Languages"
+msgstr "Чамик езици"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1083,34 +2501,6 @@ msgstr "Корнски"
 msgid "Corsican"
 msgstr "Корсикански"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Коста Рика"
-
-# CI
-# fuzzy
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Кот д'ивоар"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Крее"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Креек"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-#, fuzzy
-msgid "Creoles and Pidgins (Other)"
-msgstr "Креолски и пидгински (друг)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 #, fuzzy
@@ -1129,48 +2519,37 @@ msgstr "Креолски и пидгински, базиран на френск
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Креолски и пидгински, базиран на португалски (друг)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Крее"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Кримин татарски"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Хърватска"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Хърватска"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+#, fuzzy
+msgid "Creoles and Pidgins (Other)"
+msgstr "Креолски и пидгински (друг)"
 
-# CU
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Куба"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Кашубски"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Кушитик (друг)"
 
-# CY
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Кипър"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Чешка"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Чешка република"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1196,10 +2575,15 @@ msgstr "Даяк"
 msgid "Delaware"
 msgstr "Делауеър"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Дания"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Славе (Атапаскан)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Догриб"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1211,71 +2595,36 @@ msgstr "Динка"
 msgid "Divehi"
 msgstr "Дивехи"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Джибути"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Догри"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Догриб"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Доминика"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Доминиканска република"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Дравидски (друг)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Долно-сорбийски"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "ДуалаДу"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
-
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Холандска"
-
 #. language code: dum
 #: zypp/LanguageCode.cc:399
 msgid "Dutch, Middle (ca.1050-1350)"
 msgstr "Холандски, среден (ок. 1050-1350)"
 
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Холандска"
+
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1287,26 +2636,11 @@ msgstr "Дюла"
 msgid "Dzongkha"
 msgstr "Дзонга"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Източен Тимор"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Еквадор"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Ефик"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Египет"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1317,328 +2651,66 @@ msgstr "Египетски (древен)"
 msgid "Ekajuk"
 msgstr "Екаджук"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "Ел Салвадор"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "Еламите"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr ""
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
 msgstr "Английски"
 
 #. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Английски, среден (1100-1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Английски, стар (ок. 450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Подобрява"
-
-# GQ
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Екваториална Гвинея"
-
-# ER
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Еритрея"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
-
-# SY
-# fuzzy
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Ерзя"
-
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Есперанто"
-
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Естония"
-
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Естонска"
-
-# ET
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Етиопия"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Еве"
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Евондо"
-
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Достъпът до носителя за обновяване на драйверите е неуспешен."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Неуспешно зареждане на модула \"%s\"."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Неуспешно зареждане на модула \"%s\"."
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Неуспешно зареждане на модула \"%s\"."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Неуспешно зареждане на модула \"%s\"."
-
-# FK
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Фолклендски Острови (Малвини)"
-
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "Фанг"
-
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Фанти"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Фароеви острови"
-
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Фаероски"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Федерални Щати Микронезия"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Фуджи"
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Фуджиянски"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Английски, среден (1100-1500)"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Есперанто"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Естонска"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Еве"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Евондо"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr ""
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "Фанг"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Фаероски"
+
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Фанти"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Фуджиянски"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Филипино"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Финландия"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1649,45 +2721,16 @@ msgstr "Финландска"
 msgid "Finno-Ugrian (Other)"
 msgstr "Фино-угрийски (друг)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Фон"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Франция"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Френска"
 
-# GF
-# fuzzy
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Френска Гвиана"
-
-# PF
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Френска Полинезия"
-
-# TF
-# fuzzy
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Франция Южни Територии"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1703,50 +2746,22 @@ msgstr "Френски, стар (842-ок. 1400)"
 msgid "Frisian"
 msgstr "Фризийски"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Флюлийски"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Фула"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Флюлийски"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Га"
 
 # GA
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Габон"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Гаелски"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Галицийски"
-
-# GM
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Гамбия"
-
-# GH
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ганда"
-
-# GA
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1757,15 +2772,10 @@ msgstr "Гайо"
 msgid "Gbaya"
 msgstr "Гбая"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Гииз"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Грузия"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Германски (друг)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1777,6 +2787,36 @@ msgstr "Грузински"
 msgid "German"
 msgstr "Германска"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Гииз"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Гилбертезки"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Гаелски"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Ирландски"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Галицийски"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Манкс"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1787,31 +2827,6 @@ msgstr "Немски, късно среден (ок. 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Немски, късно стар (ок. 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Германски (друг)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Германия"
-
-# GH
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Гана"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Гибралтар"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Гилбертезки"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1832,80 +2847,26 @@ msgstr "Готски"
 msgid "Grebo"
 msgstr "Гребо"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Гърция"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
 msgstr "Гръцки, древен (до 1453)"
 
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
-msgstr "Гръцки, модерен (след 1453)"
-
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Гренландия"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Гренада"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Гваделупа"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Гуам"
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
+msgstr "Гръцки, модерен (след 1453)"
 
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Гуарани"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Гватемала"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Германия"
-
-# GN
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Гвинея"
-
-# GW
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Гвинея-Бисау"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Гуджарити"
 
-# GY
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Гияна"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1917,57 +2878,21 @@ msgid "Haida"
 msgstr "Хайда"
 
 # HT
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Хаити"
-
-# HT
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Хаитски"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-#, fuzzy
-msgid "Hal Exception"
-msgstr "Криптиране"
-
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "не е свързан"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Хауза"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Хавайски"
 
-# HM
-# fuzzy
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Хърд и МакДоналд Острови"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1994,18 +2919,6 @@ msgid "Hindi"
 msgstr "Хинди"
 
 # HT
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Хири Моту"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-#, fuzzy
-msgid "History:"
-msgstr "Преглед на историята"
-
-# HT
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -2016,33 +2929,22 @@ msgstr "Хитите"
 msgid "Hmong"
 msgstr "Хмонг"
 
-# VA
-# fuzzy
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Ватикана"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Хондурас"
+# HT
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Хири Моту"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Хонг Ð\9aонг"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Ð\93оÑ\80но-Ñ\81оÑ\80бийÑ\81ки"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Унгарска"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Унгария"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2055,10 +2957,10 @@ msgstr "Хупа"
 msgid "Iban"
 msgstr "Ибан"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Исландия"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Игбо"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2070,255 +2972,106 @@ msgstr "Исландска"
 msgid "Ido"
 msgstr "Идо"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Ð\98гбо"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "СиÑ\87Ñ\83ан Ñ\8eи"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ижо"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Инуктитут"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Интерезичен"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Илоко"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Инари сами"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Индия"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Интерлингва (Международна Асоциация за Помощен Език)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Индски (друг)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Индо-европейски (друг)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Индонезия"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Индонезийски"
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "Ингуш"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Интерлингва (Международна Асоциация за Помощен Език)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Интерезичен"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Инуктитут"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "Инупиаг"
-
-#: zypp/url/UrlBase.cc:180
-#, fuzzy, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Невалидна информация"
-
-#: zypp/url/UrlBase.cc:173
-#, fuzzy, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "невалидно име на услуга '%1'."
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:830
-#, fuzzy, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "невалидно име на услуга '%1'."
-
-#: zypp/Url.cc:313
-#, fuzzy
-msgid "Invalid empty Url object reference"
-msgstr "Невалидно име за празно действие за услугата '%1'"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "невалидно име на услуга '%1'."
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Индо-европейски (друг)"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "невалидно име на услуга '%1'."
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "Ингуш"
 
-# IR
-# fuzzy
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Ирак"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "Инупиаг"
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Ирански (друг)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Ирак"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Ирландия"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Ирландски"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Ирландски, среден (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Ирландски, стар (до 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 #, fuzzy
 msgid "Iroquoian Languages"
 msgstr "Ирокуонски езици"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Израел"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Италианска"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Италия"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Ямайка"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Явайски"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "ЯпониÑ\8f"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Ð\9bоджбан"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Японска"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Явайски"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Йордания"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Юдейо-персийски"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Юдейо-арабски"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Юдейо-персийски"
-
-# MR
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Кабардийски"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Кара-калпака-кал"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2335,11 +3088,6 @@ msgstr "Качин"
 msgid "Kalaallisut"
 msgstr "Калаалисут"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Калмик"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2350,21 +3098,6 @@ msgstr "Камба"
 msgid "Kannada"
 msgstr "Канада"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Канури"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Кара-калпака-кал"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Карачай-балкар"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2375,10 +3108,10 @@ msgstr "Карен"
 msgid "Kashmiri"
 msgstr "Кашмирски"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Кашубски"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Канури"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2392,34 +3125,27 @@ msgstr "Кави"
 msgid "Kazakh"
 msgstr "Казакски"
 
-# KZ
-# fuzzy
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Казахстан"
-
-# KE
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Кения"
+# MR
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Кабардийски"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Каси"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Хмерски"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Койсан (друг)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Хмерски"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2430,11 +3156,6 @@ msgstr "Котанески"
 msgid "Kikuyu"
 msgstr "Кикую"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Кимбунду"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2445,16 +3166,15 @@ msgstr "Кинярванда"
 msgid "Kirghiz"
 msgstr "Киргизки"
 
-# KI
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Кирибати"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Кимбунду"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Ð\9aлингон"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Ð\9aонкани"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2467,11 +3187,6 @@ msgstr "Коми"
 msgid "Kongo"
 msgstr "Конго"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Конкани"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2487,11 +3202,21 @@ msgstr "Косраейски"
 msgid "Kpelle"
 msgstr "Кпеле"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Карачай-балкар"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Крю"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Курук"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2507,29 +3232,12 @@ msgstr "Кумикумик"
 msgid "Kurdish"
 msgstr "Кюрдски"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Курук"
-
 # KE
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Кутенай"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Кувейт"
-
-# KG
-# fuzzy
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Киргизтан"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2550,74 +3258,21 @@ msgstr "Ламба"
 msgid "Lao"
 msgstr "Лао"
 
-# CD
-# fuzzy
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Лао Народна Демократична Република"
-
-#. language code: lat la
-#: zypp/LanguageCode.cc:663
-msgid "Latin"
-msgstr "Латински"
-
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Латвия"
-
-#. language code: lav lv
-#: zypp/LanguageCode.cc:665
-msgid "Latvian"
-msgstr "Латвийски"
-
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Ливан"
-
-# LS
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Лесото"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
+#. language code: lat la
+#: zypp/LanguageCode.cc:663
+msgid "Latin"
+msgstr "Латински"
 
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
+#. language code: lav lv
+#: zypp/LanguageCode.cc:665
+msgid "Latvian"
+msgstr "Латвийски"
 
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Лезганийски"
 
-# LR
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Либерия"
-
-# LY
-# fuzzy
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Либерия"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Лихтенщайн"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2629,61 +3284,48 @@ msgstr "Лимбурган"
 msgid "Lingala"
 msgstr "Лингала"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Литва"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Литовска"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Лоджбан"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Долно-германски"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Долно-сорбийски"
+# CG
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Монго"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Лози"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Ð\9bÑ\83ба-каÑ\82анга"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Ð\9bÑ\8eкÑ\81ембÑ\83Ñ\80гÑ\81ки"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Луба-лулуя"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Луба-катанга"
+
+# GH
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ганда"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Луисено"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Люле сами"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2700,36 +3342,11 @@ msgstr "Луо (Кения и Танзания)"
 msgid "Lushai"
 msgstr "Лушай"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Люксембург"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Люксембургски"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Макао"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Македония"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Македонски"
 
-# MG
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Мадагаскар"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2740,6 +3357,12 @@ msgstr "Мадурейски"
 msgid "Magahi"
 msgstr "Магахи"
 
+# MH
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Маршалски"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2751,198 +3374,63 @@ msgstr "Майтили"
 msgid "Makasar"
 msgstr "Макасар"
 
-# MG
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Малагаси"
-
-# MW
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Малави"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Малайски"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Малаялам"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Малайзия"
-
-# MV
-# fuzzy
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Мали"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-# ML
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Мали"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Малта"
-
-# MV
-# fuzzy
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Малтийски"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Манчу"
-
-# MM
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Мандар"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Мандинго"
 
 # ML
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Манпури"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-#, fuzzy
-msgid "Manobo Languages"
-msgstr "Манобо езици"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Манкс"
-
-# ML
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Маори"
 
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
-msgid "Marathi"
-msgstr "Марати"
-
-# ML
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Мари"
-
-# MH
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Маршалови Острови"
-
-# MH
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Маршалски"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Мартиник"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Марвари"
-
-# MW
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
-msgstr "Масаи"
-
-# MR
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Мавритания"
-
-# MU
-# fuzzy
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Мавриций"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-#, fuzzy
-msgid "Mayan Languages"
-msgstr "Майски езици"
-
-# YT
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Майот"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Австронезийски (друг)"
 
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+msgid "Marathi"
+msgstr "Марати"
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+# MW
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
+msgstr "Масаи"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Малайски"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Мокша"
+
+# MM
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Мандар"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Менде"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Френска метрополия"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Мексико"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Ирландски, среден (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2954,94 +3442,68 @@ msgstr "Ми'кмак"
 msgid "Minangkabau"
 msgstr "Минанкубау"
 
-# FM
-# fuzzy
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Мирандейски"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 #, fuzzy
 msgid "Miscellaneous Languages"
 msgstr "Разни езици"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Мон-кхмер (друг)"
+
+# MG
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Малагаси"
+
+# MV
+# fuzzy
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Малтийски"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Манчу"
+
+# ML
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Манпури"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+#, fuzzy
+msgid "Manobo Languages"
+msgstr "Манобо езици"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Мохаук"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Мокша"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Молдовски"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Молдова"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Мон-кхмер (друг)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Монако"
-
-# CG
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Монго"
-
-# MN
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Монголия"
-
 # MN
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Монголски"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Черна Гора"
-
-# MS
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Монсерат"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Мароко"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Моси"
 
-# MZ
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Мозамбик"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 #, fuzzy
@@ -3053,154 +3515,115 @@ msgstr "Множество езици"
 msgid "Munda languages"
 msgstr "Мунда езици"
 
-# MM
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Мианмар"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Креек"
+
+# FM
+# fuzzy
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Мирандейски"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Марвари"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+#, fuzzy
+msgid "Mayan Languages"
+msgstr "Майски езици"
+
+# SY
+# fuzzy
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Ерзя"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Нахуати"
 
-# NA
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Намибия"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Северна-американски индиански"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Ð\9dаÑ\83Ñ\80Ñ\83"
+# NP
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Ð\9dеаполиÑ\82анÑ\81ки"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Навахо"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ндебеле, северерен"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ндебеле, южен"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ндебеле, северерен"
+
 # TO
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
-msgid "Ndonga"
-msgstr "Ндонга"
-
-# NP
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Неаполитански"
-
-# NP
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Непал"
-
-# NP
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Непал баса"
-
-# NP
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
-msgstr "Непалски"
-
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Холандия"
-
-# AN
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Холандски Антили"
-
-# NC
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Нова Каледония"
+msgid "Ndonga"
+msgstr "Ндонга"
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Ð\9dова Ð\97еландиÑ\8f"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Ð\94олно-геÑ\80манÑ\81ки"
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+# NP
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
+msgstr "Непалски"
+
+# NP
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Непал баса"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Ниас"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Никарагуа"
-
-# NE
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Нигер"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Нигер-гордофански (друг)"
 
-# NG
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Нигерия"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Нило-сахарски (друг)"
-
-# NU
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Нию"
-
 # NU
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Нюеан"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-#, fuzzy
-msgid "No Code"
-msgstr "без код"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Норвежки нинорск"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr ""
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Норвежки бокмал"
 
 # TO
 #. language code: nog
@@ -3208,67 +3631,20 @@ msgstr ""
 msgid "Nogai"
 msgstr "Ногай"
 
-# NF
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Норфолк Остров"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Норсе, стар"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Северна-американски индиански"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Северна Корея"
-
-# MP
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Северни Марианови Острови"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Северно сами"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Северно сото"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Норвегия"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Норвежка"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Норвежки бокмал"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Норвежки нинорск"
-
-#: zypp/target/hal/HalContext.cc:851
-#, fuzzy
-msgid "Not a CDROM drive"
-msgstr "Не са открити CD-ROM устройства."
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Северно сото"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
@@ -3276,6 +3652,16 @@ msgstr "Не са открити CD-ROM устройства."
 msgid "Nubian Languages"
 msgstr "Нубийски езици"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Класически невари"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Чичева"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3296,11 +3682,6 @@ msgstr "Ньоро"
 msgid "Nzima"
 msgstr "Нзима"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "%s прави ненужно: %s"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3311,20 +3692,6 @@ msgstr "Окцитан (след 1500)"
 msgid "Ojibwa"
 msgstr "Ожибва"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Оман"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 # SY
 # fuzzy
 #. language code: ori or
@@ -3347,66 +3714,37 @@ msgstr "Осаге"
 msgid "Ossetian"
 msgstr "Осетински"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Турски, отомански (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 #, fuzzy
 msgid "Otomian Languages"
 msgstr "Османски езици"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Папуански (друг)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Пангасински"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Пахлави"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Пакистан"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Палау"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Палауан"
-
-# IO
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Палестински територии"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Пали"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "Пампанга"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Панама"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Пангасински"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3417,95 +3755,45 @@ msgstr "Панджаби"
 msgid "Papiamento"
 msgstr "Папияменто"
 
-# PG
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Папуа Нова Гвинея"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Папуански (друг)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Парагвай"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr ""
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Персийски"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Палауан"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Персийски, стар (ок. 600-400 пр.н.е.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Ð\9fеÑ\80Ñ\83"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Ð\9fеÑ\80Ñ\81ийÑ\81ки"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Филипински (друг)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Филипини"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Финикийски"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Питкаирн"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Понпейски"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Полша"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Пали"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Полска"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Португалия"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Понпейски"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3518,78 +3806,21 @@ msgstr "Португалска"
 msgid "Prakrit Languages"
 msgstr "Пракрит езици"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Провенциален, стар (до 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Доставя"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Пуерто Рико"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Пущо"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Катар"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Куечуа"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "пропадна."
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Раето-романс"
-
 # KZ
 # fuzzy
 #. language code: raj
@@ -3607,58 +3838,26 @@ msgstr "Папануй"
 msgid "Rarotongan"
 msgstr "Раротоган"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Препоръчва"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr ""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Изисква"
-
-# RE
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Риюниън"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Романски (друг)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Румъния"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Румънски"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Раето-романс"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Романи"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Румънски"
+
 # RE
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
@@ -3670,90 +3869,6 @@ msgstr "Рунди"
 msgid "Russian"
 msgstr "Руска"
 
-# RU
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Руска Федерация"
-
-# RW
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Руанда"
-
-# SH
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Света Елена"
-
-# KN
-# fuzzy
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Свети Китс и Невис"
-
-# LC
-# fuzzy
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Санта Лучия"
-
-# SM
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "Сан Марино"
-
-# PM
-# fuzzy
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Свети Пиер и Микелон"
-
-# VC
-# fuzzy
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Свети Винсент и Гренадин"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-#, fuzzy
-msgid "Salishan Languages"
-msgstr "Салишан езици"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Самаритан арамаик"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-#, fuzzy
-msgid "Sami Languages (Other)"
-msgstr "Сами езици (друг)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Самоа"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Самоански"
-
-# SM
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "Сан Марино"
-
 #. language code: sad
 #: zypp/LanguageCode.cc:905
 msgid "Sandawe"
@@ -3764,43 +3879,62 @@ msgstr "Сандауе"
 msgid "Sango"
 msgstr "Санго"
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
-msgstr "СанÑ\81кÑ\80ит"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "ЯкÑ\83т"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "СанÑ\82али"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Южно-амеÑ\80иканÑ\81ки Ð¸Ð½Ð´Ð¸Ð°Ð½Ñ\81ки (дÑ\80Ñ\83г)"
 
-# ST
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Сао Томе и Принсипи"
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+#, fuzzy
+msgid "Salishan Languages"
+msgstr "Салишан езици"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Самаритан арамаик"
 
-# MR
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Сардински"
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
+msgstr "Санскрит"
 
 #. language code: sas
 #: zypp/LanguageCode.cc:919
 msgid "Sasak"
 msgstr "Сасак"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Саудитска Арабия"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "Сантали"
+
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Сръбски"
+
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Сицилиански"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Скотски"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Хърватска"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3811,152 +3945,42 @@ msgstr "Селкуп"
 msgid "Semitic (Other)"
 msgstr "Семитски (друг)"
 
-# SN
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Сенегал"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Сърбия"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Сръбски"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Серер"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Ирландски, стар (до 900)"
 
-# SC
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Сейшели"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Знакови езици"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Шан"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Шона"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Сичуан юи"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Сицилиански"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Сидамо"
 
-# SL
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Сиера Леоне"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Знакови езици"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "KScreensaver не е открит."
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "KScreensaver не е открит."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "KScreensaver не е открит."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "KScreensaver не е открит."
-
-# %s is either BOOTP or DHCP
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "Настройването чрез %s бе неуспешно."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Сиксика"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Синди"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Сингапур"
-
 # AO
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Синхала"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Сино-тибетски (друг)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 #, fuzzy
 msgid "Siouan Languages"
 msgstr "Сиуан езици"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Сколт сами"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Славе (Атапаскан)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Сино-тибетски (друг)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3968,162 +3992,129 @@ msgstr "Славянски (друг)"
 msgid "Slovak"
 msgstr "Словашка"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Словакия"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Словения"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Словенски"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "Согдийски"
-
-# SB
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Соломонови Острови"
-
-# SO
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Сомалийски"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Южно сами"
 
-# SO
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Сомалия"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Северно сами"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "Сонгхай"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+#, fuzzy
+msgid "Sami Languages (Other)"
+msgstr "Сами езици (друг)"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Синонке"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Ð\9bÑ\8eле Ñ\81ами"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-#, fuzzy
-msgid "Sorbian Languages"
-msgstr "Сорбийски езици"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Инари сами"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Самоански"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "СоÑ\82о, Ñ\8eжно"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "СколÑ\82 Ñ\81ами"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Южна Ð\90Ñ\84Ñ\80ика"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Шона"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Южно-амеÑ\80иканÑ\81ки Ð¸Ð½Ð´Ð¸Ð°Ð½Ñ\81ки (дÑ\80Ñ\83г)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Синди"
 
-# GS
-# fuzzy
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Южни Сандвичеви Острови"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Синонке"
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Южна Ð\9aоÑ\80еÑ\8f"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "СогдийÑ\81ки"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Южно-алтайски"
+# SO
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Сомалийски"
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Южно Ñ\81ами"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "СонгÑ\85ай"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Ð\98Ñ\81паниÑ\8f"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "СоÑ\82о, Ñ\8eжно"
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Испанска"
 
-# LK
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "ШÑ\80и Ð\9bанка"
+# MR
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "СаÑ\80динÑ\81ки"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Судан"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Серер"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Предлага"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Нило-сахарски (друг)"
+
+# HT
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Свати"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Сукума"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Шумерски"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Сундански"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Допълва"
-
-# SR
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Суринам"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Сусу"
 
-# SJ
-# fuzzy
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Свалбард и Ян Майен Острови"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Шумерски"
 
 # SZ
 #. language code: swa sw
@@ -4131,40 +4122,11 @@ msgstr "Свалбард и Ян Майен Острови"
 msgid "Swahili"
 msgstr "Свахили"
 
-# HT
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Свати"
-
-# SZ
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Свазиленд"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Швеция"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Шведска"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Швейцария"
-
-# SY
-# fuzzy
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Суринам"
-
 # SY
 # fuzzy
 #. language code: syr
@@ -4172,23 +4134,6 @@ msgstr "Суринам"
 msgid "Syriac"
 msgstr "Сирийски"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Тагалог"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4199,36 +4144,11 @@ msgstr "Таитски"
 msgid "Tai (Other)"
 msgstr "Тай (друг)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Тайван"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Таджикски"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Таджикистан"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Тамашек"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Тамилски"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Танзания"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4239,6 +4159,11 @@ msgstr "Татарски"
 msgid "Telugu"
 msgstr "Телугу"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Тимне"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4249,33 +4174,21 @@ msgstr "Терено"
 msgid "Tetum"
 msgstr "Тетум"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Таджикски"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Тагалог"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Тайландски"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Тайланд"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr ""
-
 # TW
 # fuzzy
 #. language code: tib bod bo
@@ -4294,49 +4207,25 @@ msgstr "Тигре"
 msgid "Tigrinya"
 msgstr "Тигриния"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Тимне"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Тив"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Клингон"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Тлингит"
 
-# TG
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Того"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Ток писин"
-
-# TK
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Токелау"
-
-# TO
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Тонга"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Тамашек"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4349,111 +4238,68 @@ msgstr "Тонга (Няса)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Тонга (Острови Тонга)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-# TT
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Тринидад и Тобаго"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Ток писин"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Цимашински"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Цвана"
+
 # TO
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Цонга"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Цвана"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "ТÑ\83Ñ\80кменÑ\81ки"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Тумбука"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Тунис"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 #, fuzzy
 msgid "Tupi Languages"
 msgstr "Тупи езици"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Турция"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Турска"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Турски, отомански (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Туркменски"
-
-# TM
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Туркменистан"
-
-# TC
-# fuzzy
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Тюрк и Кайкос Острови"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Алтайски (друг)"
 
-# TV
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Тувалу"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Тви"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "Тувински"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Тви"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Удмурт"
 
-# UG
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Уганда"
-
 # HT
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
@@ -4465,11 +4311,6 @@ msgstr "Угаритски"
 msgid "Uighur"
 msgstr "Уигурски"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Украйна"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4480,655 +4321,772 @@ msgstr "Украинска"
 msgid "Umbundu"
 msgstr "Умбурду"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr ""
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Неопределен"
 
-#: zypp/target/hal/HalContext.cc:229
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Урду"
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Узбекски"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Вай"
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Венда"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Виетнамски"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Волапук"
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Вотски"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
 #, fuzzy
-msgid "Unable to create dbus connection"
-msgstr "вÑ\80Ñ\8aзка ÐºÐ°Ð½Ð°Ð»-кÑ\8aм-канал"
+msgid "Wakashan Languages"
+msgstr "Ð\92акаÑ\88ан ÐµÐ·Ð¸Ñ\86и"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Валамо"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr ""
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Варай"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Ð\9dеопÑ\80еделен"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Ð\92аÑ\88о"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr ""
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Уелски"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Обединени арабски емирства"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+#, fuzzy
+msgid "Sorbian Languages"
+msgstr "Сорбийски езици"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Великобритания"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Валун"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Волоф"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Калмик"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Ксоса"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Яо"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Япесе"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Юдийски"
+
+# AW
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Йоруба"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+#, fuzzy
+msgid "Yupik Languages"
+msgstr "Юпик езици"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Запотек"
+
+# SN
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Зенага"
+
+# BT
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Цуанг"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Занде"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Зулу"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Зуни"
 
-# US
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "САЩ"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
 
-# UM
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Малки Острови по крайбрежието на САЩ"
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Неуспешно зареждане на модула \"%s\"."
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Неизвестна държава: "
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "KScreensaver не е открит."
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#: zypp/repo/RepoProvideFile.cc:259
 #, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Ð\93Ñ\80еÑ\88ка Ð¿Ñ\80и Ñ\87еÑ\82енеÑ\82о Ð¾Ñ\82 Ð´Ð¸Ñ\81кеÑ\82аÑ\82а."
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Ð\9dикой Ð½Ðµ Ð´Ð¾Ñ\81Ñ\82авÑ\8f %s"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Неизвестен език: "
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Неизвестен потребител: %s\n"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+# %s is either BOOTP or DHCP
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "Настройването чрез %s бе неуспешно."
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:975
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Горно-сорбийски"
-
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Урду"
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s доставя %s, но има друга архитектура."
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "%s не може да бъде инсталиран поради пробем със зависимостите"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:992
+#, fuzzy, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "Никой не доставя %s"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "Пакетът не е подписан"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s е заключен и не може да бъде деинсталиран."
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "УÑ\80Ñ\83гвай"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "Ð\98нÑ\81Ñ\82алиÑ\80анеÑ\82о Ð½Ð° %s Ð±Ðµ Ð½ÐµÑ\83Ñ\81пеÑ\88но"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Узбекски"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, fuzzy, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s е необходим на %s"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Узбекистан"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "%s не може да бъде инсталиран"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Вай"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s е в конфликт с %s"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1027
+#, fuzzy, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s прави ненужно %s"
 
-# VU
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Вануату"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s прави ненужно %s"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Венда"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s е в конфликт с %s"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Венецуела"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
 
-# VN
-# fuzzy
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Виетнам"
+#: zypp/solver/detail/SATResolver.cc:1070
+#, fuzzy
+msgid "deleted providers: "
+msgstr "Никой не доставя %s"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+#, fuzzy
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr "Няма инсталируеми доставчици на %s"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "Няма инсталируеми доставчици на %s"
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "без инсталиране на %s"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "запазване на %s"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Ð\92иеÑ\82намÑ\81ки"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "без Ð¸Ð½Ñ\81Ñ\82алиÑ\80ане Ð½Ð° %s"
 
-# VI
-# fuzzy
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Вирджински Острови (САЩ)"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Ð\92олапÑ\83к"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, fuzzy, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "Ð\9dÑ\8fма Ð¸Ð½Ñ\81Ñ\82алиÑ\80Ñ\83еми Ð´Ð¾Ñ\81Ñ\82авÑ\87иÑ\86и Ð½Ð° %s"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Ð\92оÑ\82Ñ\81ки"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "Ð\91ез Ð¸Ð½Ñ\81Ñ\82алиÑ\80ане Ð¸Ð»Ð¸ Ð¿Ñ\80емаÑ\85ване Ð½Ð° ÐºÐ¾Ð½Ñ\84ликÑ\82ниÑ\82е Ð¿Ð°ÐºÐµÑ\82и"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-#, fuzzy
-msgid "Wakashan Languages"
-msgstr "Вакашан езици"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Валамо"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, fuzzy, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s доставя %s, но има друга архитектура."
 
-# WF
-# fuzzy
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Уолис и Футуна Острови"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, fuzzy, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "Инсталиране на %s, въпреки че ще промени архитектурата"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Валун"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%s прави ненужно %s"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Варай"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Ð\92аÑ\88о"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, fuzzy, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "Ð\9eбновÑ\8fване Ð½Ð° %s ÐºÑ\8aм %s"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Уелски"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr ""
 
-# EH
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Западна Сахара"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Волоф"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Ð\9aÑ\81оÑ\81а"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Ð\98нÑ\81Ñ\82алиÑ\80ане"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Якут"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, fuzzy, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "Пренебрегване на това изискване само тук"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Яо"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "Ð\9fÑ\80енебÑ\80егване Ð½Ð° Ñ\82ова Ð¸Ð·Ð¸Ñ\81кване Ñ\81амо Ñ\82Ñ\83к"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Япесе"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Йемен"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "ЮдийÑ\81ки"
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Ð\92Ñ\8aзникнала Ðµ Ð³Ñ\80еÑ\88ка Ð¿Ñ\80и Ð¾Ñ\82ваÑ\80Ñ\8fнеÑ\82о Ð½Ð° %s: %m"
 
-# AW
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Йоруба"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
 #, fuzzy
-msgid "Yupik Languages"
-msgstr "Юпик ÐµÐ·Ð¸Ñ\86и"
+msgid "History:"
+msgstr "Ð\9fÑ\80еглед Ð½Ð° Ð¸Ñ\81Ñ\82оÑ\80иÑ\8fÑ\82а"
 
-# ZM
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Замбия"
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Неизвестен потребител: %s\n"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Занде"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Запотек"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
 
-# SN
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Зенага"
+#: zypp/base/StrMatcher.cc:158
+#, fuzzy, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "невалидно име на услуга '%1'."
 
-# BT
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Цуанг"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Зимбабве"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Ð\97Ñ\83лÑ\83"
+#: zypp/media/MediaException.cc:31
+#, fuzzy, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\88но Ð·Ð°Ñ\80еждане Ð½Ð° Ð¼Ð¾Ð´Ñ\83ла \"%s\"."
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Ð\97Ñ\83ни"
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\88но Ð·Ð°Ñ\80еждане Ð½Ð° Ð¼Ð¾Ð´Ñ\83ла \"%s\"."
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:67
 #, fuzzy, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "Ð\9fÑ\80енебÑ\80егване Ð½Ð° Ñ\82ова Ð¸Ð·Ð¸Ñ\81кване Ñ\81амо Ñ\82Ñ\83к"
+msgid "Cannot write file '%s'."
+msgstr "Ð\92Ñ\80еменниÑ\8fÑ\82 Ñ\84айл (%s) Ð½Ðµ Ð¼Ð¾Ð¶Ðµ Ð´Ð° Ð±Ñ\8aде Ñ\81Ñ\8aздаден: %m"
 
-#: zypp/solver/detail/SATResolver.cc:1017
-#, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "%s не може да бъде инсталиран"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "създадено резервно копие %s"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
-#, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Инсталиране"
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-#, fuzzy
-msgid "deleted providers: "
-msgstr "Никой не доставя %s"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "Без инсталиране или премахване на конфликтните пакети"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, fuzzy, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "Няма инсталируеми доставчици на %s"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, c-format, boost-format
-msgid "do not install %s"
-msgstr "без инсталиране на %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, fuzzy, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "Обновяване на %s към %s"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "Пренебрегване на това изискване само тук"
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, fuzzy, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "Инсталиране на %s, въпреки че ще промени архитектурата"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
+
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
+
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s Ð¿Ñ\80ави Ð½ÐµÐ½Ñ\83жно %s"
+msgid "Cannot eject media '%s'"
+msgstr "%s Ð½Ðµ Ð¼Ð¾Ð¶Ðµ Ð´Ð° Ð±Ñ\8aде Ð¸Ð½Ñ\81Ñ\82алиÑ\80ан"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:199
+#, c-format, boost-format
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "запазване на %s"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, fuzzy, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s доставя %s, но има друга архитектура."
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%s прави ненужно %s"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, fuzzy, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s е необходим на %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, fuzzy, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "Ð\9dикой Ð½Ðµ Ð´Ð¾Ñ\81Ñ\82авÑ\8f %s"
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "Ð\92Ñ\8aзникнала Ðµ Ð³Ñ\80еÑ\88ка Ð¿Ñ\80и Ñ\81Ñ\8aздаванеÑ\82о Ð½Ð° Ð²Ñ\80еменниÑ\8f Ñ\84айл %s: %m"
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "Пакетът не е подписан"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, c-format, boost-format
-msgid "problem with installed package %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "без инсталиране на %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, fuzzy, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm създаде %s като %s, но е невъзможно да се открие разликата"
-
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
-"rpm създаде %s като %s.\n"
-"Ето първите 25 реда от разликите:\n"
-
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, fuzzy, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm запази %s като %s, но е невъзможно да се открие разликата"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
-"rpm запази %s като %s.\n"
-"Ето първите 25 реда от разликите:\n"
-
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s е в конфликт с %s"
 
-#: zypp/solver/detail/SATResolver.cc:989
 #, fuzzy
-msgid "some dependency problem"
-msgstr "%s не може да бъде инсталиран поради пробем със зависимостите"
+#~ msgid "do not keep %s installed"
+#~ msgstr "без инсталиране на %s"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "uninstallable providers: "
-msgstr "Няма инсталируеми доставчици на %s"
-
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "неизвестно"
-
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr ""
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Неуспешно зареждане на модула \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Сърбия и Черна Гора"
 
 #, fuzzy
-#~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
-#~ msgstr ""
-#~ "\n"
-#~ "Няма наличен ресурс за поддръжката на това изискване."
-
-#~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
-#~ msgstr ""
-#~ "\n"
-#~ "Тези пакети ще бъдат изтрити от системата."
-
-#~ msgid " Error!"
-#~ msgstr " Грешка!"
-
-#~ msgid " Important!"
-#~ msgstr " Важно!"
-
-#~ msgid " fails checksum verification."
-#~ msgstr "неуспешно удостоверяване на контролната сума."
-
-#~ msgid " miss checksum."
-#~ msgstr "липсва контролната сума."
-
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "%s не може да бъде инсталиран поради липсващи зависимости"
-
-#~ msgid "%s cannot be uninstalled due missing dependencies"
-#~ msgstr "%s не може да бъде деинсталиран поради липсващи зависимости"
-
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "%s е в конфликт с други пакети"
+#~ msgid "Unknown Distribution"
+#~ msgstr "Непознат монитор:"
 
-#~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
+#, fuzzy
+#~ msgid "ignore some dependencies of %s"
 #~ msgstr ""
-#~ "%s е в конфликт с:\n"
-#~ "%s"
-
-#~ msgid "%s depended on %s"
-#~ msgstr "%s зависи от %s"
-
-#~ msgid "%s dependend on %s"
-#~ msgstr "от %s зависи %s"
-
-#~ msgid "%s depends on %s"
-#~ msgstr "%s зависи от %s"
-
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s зависи от други пакети"
-
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s зависи от: %s"
+#~ "%s не може да бъде инсталиран за задоволяване на зависимостите на %s"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "%s задоволява зависимостите на %s, но ще бъде деинсталиран"
+#~ msgid "%s remove failed"
+#~ msgstr "Премахването на %s бе неуспешно"
 
 #, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "%s задоволява зависимостите на %s, но ще бъде деинсталиран"
-
-#~ msgid "%s has missing dependencies"
-#~ msgstr "%s има липсващи зависимости"
+#~ msgid "Invalid user name or password."
+#~ msgstr "Невалидно име на устройство."
 
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "%s има незадоволени изискания"
+#~ msgid "rpm output:"
+#~ msgstr "Изход от rpm:"
 
 #~ msgid "%s install failed"
 #~ msgstr "Инсталирането на %s бе неуспешно"
@@ -5136,134 +5094,80 @@ msgstr ""
 #~ msgid "%s installed ok"
 #~ msgstr "Инсталирането на %s бе успешно"
 
-#, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s е заменен от %s"
-
-#, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s е необходим на %s"
+#~ msgid "%s remove ok"
+#~ msgstr "Премахването на %s бе успешно"
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s липсва изискания %s"
-
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "%s е необходим на друг пакет"
-
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
 #~ msgstr ""
-#~ "%s е необходим на:\n"
-#~ "%s"
-
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "%s не е инсталиран и не може да бъде маркиран за деинсталиране."
-
-#, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s е необходим на %s"
-
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s е заменен от %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
-#~ msgstr "%s се изисква от друг инсталиран пакет и няма да бъде премахнат."
+#~ "%s задоволява тази зависимост, но ще промени архитектурата на "
+#~ "инсталирания пакет"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
-#~ msgstr "%s се изисква от друг инсталиран пакет и няма да бъде премахнат."
-
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
 #~ msgstr ""
-#~ "%s се изисква от друг, маркиран за инсталиране пакет и няма да бъде "
-#~ "пÑ\80емаÑ\85наÑ\82."
+#~ "%s задоволява тази зависимост, но ще промени архитектурата на "
+#~ "инÑ\81Ñ\82алиÑ\80аниÑ\8f Ð¿Ð°ÐºÐµÑ\82"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr ""
-#~ "%s е подготвен за инсталиране, но това не е възможно заради проблеми със "
-#~ "зависимости."
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "Без инсталиране или премахване на конфликтните пакети"
 
-#, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s е необходим на %s"
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "Пренебрегване на това, че %s е зададен вече за инсталиране"
 
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s е необходим на %s"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "Пренебрегване на остарелите %s в %s"
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s е недеинсталируем поради конфликта с %s"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "Пренебрегване на конфликта на %s"
 
-#~ msgid "%s needed by %s"
-#~ msgstr "%s е необходим на %s"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "Пренебрегване на това изискване само тук"
 
 #, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr ""
-#~ "%s прави ненужен %s, но %s не може да бъде изтрит, защото е заключен."
-
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s прави ненужни други пакети"
-
-#~ msgid "%s part of %s"
-#~ msgstr "%s е част от %s"
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "Инсталиране на %s, въпреки че ще промени архитектурата"
 
-#, fuzzy
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s доставя %s, но е планирано за деинсталиране."
+#~ msgid "Install missing resolvables"
+#~ msgstr "Инсталиране на липсващите пакети"
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr "%s доставя %s, но друга версия на %s вече е инсталирана."
+#~ msgid "Keep resolvables"
+#~ msgstr "Запазване на пакетите"
 
-#, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s доставя %s, но има друга архитектура."
+#~ msgid "Unlock these resolvables"
+#~ msgstr "Отключване на тези пакети"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s доставя %s, но е планирано за деинсталиране."
+#~ msgid "delete %s"
+#~ msgstr "изтриване на %s"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s доставя %s, но е заключен."
+#~ msgid "install %s"
+#~ msgstr "инсталиране на %s"
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s доставя %s, но е деинсталируем. Опитайте да го инсталирате ръчно за "
-#~ "повече подробности."
+#~ msgid "unlock %s"
+#~ msgstr "отключване на %s"
+
+#~ msgid "unlock all resolvables"
+#~ msgstr "отключване на всички пакети"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr ""
-#~ "%s задоволява тази зависимост, но ще промени архитектурата на "
-#~ "инсталирания пакет"
+#~ msgid "Can't open solv-file: "
+#~ msgstr "Възникнала е грешка при отварянето на %s: %m"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr ""
-#~ "%s задоволява тази зависимост, но ще промени архитектурата на "
-#~ "инсталирания пакет"
+#~ msgid "Error reading solv-file: "
+#~ msgstr "Грешка при четенето на сектор %u."
 
-#~ msgid "%s remove failed"
-#~ msgstr "Премахването на %s бе неуспешно"
+#, fuzzy
+#~ msgid "Software management is already running."
+#~ msgstr "Услугите за PCMCIA карти вече работят."
 
-#~ msgid "%s remove ok"
-#~ msgstr "Премахването на %s бе успешно"
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s е заменен от %s"
 
 #~ msgid "%s replaced by %s"
 #~ msgstr "%s е заменен от %s"
@@ -5278,214 +5182,314 @@ msgstr ""
 #~ msgid "%s will be installed by the user.\n"
 #~ msgstr "%s няма да бъде деинсталиран, защото все още е необходим"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "%s няма да бъде деинсталиран, защото все още е необходим"
-
-#~ msgid ", Action: "
-#~ msgstr ", Действие:"
+#~ msgid "Invalid information"
+#~ msgstr "Невалидна информация"
 
-#~ msgid ", Trigger: "
-#~ msgstr ", задействане при:"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s е необходим на друг пакет"
 
-#, fuzzy
 #~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
+#~ "%s is needed by:\n"
+#~ "%s"
 #~ msgstr ""
-#~ "Конфликтът с %s (%s) изисква премахването на %s, което е било подготвено "
-#~ "за инсталиране"
+#~ "%s е необходим на:\n"
+#~ "%s"
+
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "%s е в конфликт с други пакети"
 
-#, fuzzy
 #~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ "%s conflicts with:\n"
+#~ "%s"
 #~ msgstr ""
-#~ "Не може да се инсталира %s след като вече е маркиран за деинсталиране"
+#~ "%s е в конфликт с:\n"
+#~ "%s"
+
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s прави ненужни други пакети"
 
-#, fuzzy
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
 #~ msgstr ""
-#~ "Не може да се инсталира %s след като %s вече е маркиран за инсталиране"
+#~ "\n"
+#~ "Тези пакети ще бъдат изтрити от системата."
+
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s зависи от други пакети"
+
+#~ msgid "%s depends on %s"
+#~ msgstr "%s зависи от %s"
+
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s зависи от: %s"
+
+#~ msgid "Child of"
+#~ msgstr "Дете на"
 
 #, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
 #~ msgstr ""
-#~ "%s не може да се инсталира след като вече не е приложим за тази система."
+#~ "\n"
+#~ "Няма наличен ресурс за поддръжката на това изискване."
 
+#, fuzzy
 #~ msgid ""
-#~ "Can't install %s, since a resolvable of the same name is already marked "
-#~ "as needing to be installed"
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
 #~ msgstr ""
-#~ "%s не може да се инсталира, след като пакет със същото име вече е "
-#~ "маркиран за инсталиране"
+#~ "Поради проблемите, които са показани по-долу/горе сега няма да могат да "
+#~ "сеудовлетворят всички зависимости."
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "Възникнала е грешка при отварянето на %s: %m"
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "%s не може да бъде инсталиран, защото е в конфликт с %s"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "Не могат да се удовлетворят изискванията на %s за %s"
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "%s не е инсталиран и не може да бъде маркиран за деинсталиране."
 
-#~ msgid "Can't write the patch script to a temporary file."
-#~ msgstr "Не може да се скрипта на кръпката във временен файл."
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "%s има незадоволени изискания"
 
-#~ msgid "Cannot acquire zypp lock."
-#~ msgstr "Не може да се придобие заключването на zypp."
+#~ msgid "%s has missing dependencies"
+#~ msgstr "%s има липсващи зависимости"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "%s не може да бъде инсталиран поради липсващи зависимости"
+
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "%s задоволява зависимостите на %s, но ще бъде деинсталиран"
+
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "%s задоволява зависимостите на %s, но ще бъде деинсталиран"
+
+#~ msgid "No need to install %s"
+#~ msgstr "Няма нужда от инсталиране на %s"
+
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr ""
+#~ "%s не може да бъде инсталиран за задоволяване на зависимостите на %s"
 
 #~ msgid "Cannot install %s to fulfil the dependencies of %s"
 #~ msgstr ""
 #~ "%s не може да бъде инсталиран за задоволяване на зависимостите на %s"
 
 #, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "%s няма да бъде деинсталиран, защото все още е необходим"
+
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
 #~ msgstr ""
-#~ "%s Ð½Ðµ Ð¼Ð¾Ð¶Ðµ Ð´Ð° Ð±Ñ\8aде Ð¸Ð½Ñ\81Ñ\82алиÑ\80ан Ð·Ð° Ð·Ð°Ð´Ð¾Ð²Ð¾Ð»Ñ\8fване Ð½Ð° Ð·Ð°Ð²Ð¸Ñ\81имоÑ\81Ñ\82иÑ\82е Ð½Ð° %s"
+#~ "%s Ð¿Ñ\80ави Ð½ÐµÐ½Ñ\83жен %s, Ð½Ð¾ %s Ð½Ðµ Ð¼Ð¾Ð¶Ðµ Ð´Ð° Ð±Ñ\8aде Ð¸Ð·Ñ\82Ñ\80иÑ\82, Ð·Ð°Ñ\89оÑ\82о Ðµ Ð·Ð°ÐºÐ»Ñ\8eÑ\87ен."
 
 #, fuzzy
 #~ msgid "Cannot install %s, because it is conflicting"
 #~ msgstr "%s не може да бъде инсталиран, защото е в конфликт"
 
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s е недеинсталируем поради конфликта с %s"
+
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "за изисканото %s за %s, когато се обновява %s"
+
 #, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "%s Ð½Ðµ Ð¼Ð¾Ð¶Ðµ Ð´Ð° Ð±Ñ\8aде Ð¸Ð½Ñ\81Ñ\82алиÑ\80ан, Ð·Ð°Ñ\89оÑ\82о Ðµ Ð² ÐºÐ¾Ð½Ñ\84ликÑ\82 Ñ\81 %s"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s Ð»Ð¸Ð¿Ñ\81ва Ð¸Ð·Ð¸Ñ\81каниÑ\8f %s"
 
-#~ msgid "Child of"
-#~ msgstr "Дете на"
+#~ msgid ", Action: "
+#~ msgstr ", Действие:"
 
-#~ msgid "Default"
-#~ msgstr "Стандартно"
+#~ msgid ", Trigger: "
+#~ msgstr ", задействане при:"
 
-#~ msgid "Deleting %s"
-#~ msgstr "Ð\98зÑ\82Ñ\80иване Ð½Ð° %s"
+#~ msgid "package"
+#~ msgstr "пакеÑ\82"
 
-#, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "Без инсталиране или премахване на конфликтните пакети"
+#~ msgid "selection"
+#~ msgstr "подбор"
+
+#~ msgid "pattern"
+#~ msgstr "шаблон"
+
+#~ msgid "product"
+#~ msgstr "продукт"
+
+#~ msgid "patch"
+#~ msgstr "кръпка"
+
+#~ msgid "script"
+#~ msgstr "скрипт"
+
+#~ msgid "message"
+#~ msgstr "съобщение"
+
+#~ msgid "atom"
+#~ msgstr "атом"
+
+#~ msgid "system"
+#~ msgstr "система"
+
+#~ msgid "Resolvable"
+#~ msgstr "Пакет"
+
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "Маркиране на този опит за разрешаване като невалиден."
+
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "Маркиране на пакета %s като деинсталируем"
 
 #, fuzzy
-#~ msgid "Downloading %s"
-#~ msgstr "Грешка при зареждането на %1"
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "%s е подготвен за инсталиране, но това не е възможно заради проблеми със "
+#~ "зависимости."
 
 #, fuzzy
 #~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
 #~ msgstr ""
-#~ "Поради проблемите, които са показани по-долу/горе сега няма да могат да "
-#~ "сеудовлетворят всички зависимости."
+#~ "Не може да се инсталира %s след като вече е маркиран за деинсталиране"
 
 #, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "Грешка при четенето на сектор %u."
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr ""
+#~ "%s не може да се инсталира след като вече не е приложим за тази система."
+
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr ""
+#~ "Не може да се инсталира %s след като %s вече е маркиран за инсталиране"
+
+#~ msgid "This would invalidate %s."
+#~ msgstr "Това ще направи невалиден %s."
 
 #~ msgid "Establishing %s"
 #~ msgstr "Откриване на %s"
 
-#~ msgid "Failed check for the script file check sum"
-#~ msgstr "Проверката на контролната сума за скрипта бе неуспешна"
+#~ msgid "Installing %s"
+#~ msgstr "Инсталиране на %s"
+
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "Пропускане на %s: вече е инсталиран"
 
 #, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Неуспешно зареждане на модула \"%s\"."
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "Няма инсталирани алтернативни доставчици на %s"
 
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "Ð\9fÑ\80енебÑ\80егване Ð½Ð° Ñ\82ова, Ñ\87е %s Ðµ Ð·Ð°Ð´Ð°Ð´ÐµÐ½ Ð²ÐµÑ\87е Ð·Ð° Ð¸Ð½Ñ\81Ñ\82алиÑ\80ане"
+#~ msgid "for %s"
+#~ msgstr "за %s"
 
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "Пренебрегване на остарелите %s в %s"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr ""
+#~ "Не е възможно обновяването към %s за да се избегне премахването на %s."
 
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "Пренебрегване на конфликта на %s"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s доставя %s, но е планирано за деинсталиране."
 
-#, fuzzy
-#~ msgid "Ignore this requirement for all other resolvables."
-#~ msgstr "%s е необходим на друг пакет"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s доставя %s, но друга версия на %s вече е инсталирана."
 
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "Пренебрегване на това изискване"
+#~ msgid ""
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
+#~ msgstr ""
+#~ "%s доставя %s, но е деинсталируем. Опитайте да го инсталирате ръчно за "
+#~ "повече подробности."
 
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "Пренебрегване на това изискване само тук"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s доставя %s, но е заключен."
 
 #, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "Инсталиране на %s, въпреки че ще промени архитектурата"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s доставя %s, но е планирано за деинсталиране."
 
-#~ msgid "Install missing resolvables"
-#~ msgstr "Инсталиране на липсващите пакети"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s доставя %s, но има друга архитектура."
 
-#~ msgid "Installing %s"
-#~ msgstr "Ð\98нÑ\81Ñ\82алиÑ\80ане Ð½а %s"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "Ð\9dе Ð¼Ð¾Ð³Ð°Ñ\82 Ð´Ð° Ñ\81е Ñ\83довлеÑ\82воÑ\80Ñ\8fÑ\82 Ð¸Ð·Ð¸Ñ\81кваниÑ\8fÑ\82а Ð½Ð° %s Ð·а %s"
 
-#~ msgid "Invalid information"
-#~ msgstr "Невалидна информация"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr "%s се изисква от друг инсталиран пакет и няма да бъде премахнат."
 
 #, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "Невалидно име на устройство."
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr "%s се изисква от друг инсталиран пакет и няма да бъде премахнат."
 
-#~ msgid "Keep resolvables"
-#~ msgstr "Запазване на пакетите"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr ""
+#~ "Конфликтът с %s (%s) изисква премахването на %s, което е било подготвено "
+#~ "за инсталиране"
 
 #~ msgid "Marking %s as uninstallable due to conflicts over %s"
 #~ msgstr "Маркиране на %s като деинсталируем поради конфликта с %s"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "Ð\9cаÑ\80киÑ\80ане Ð½Ð° Ð¿Ð°ÐºÐµÑ\82а %s ÐºÐ°Ñ\82о Ð´ÐµÐ¸Ð½Ñ\81Ñ\82алиÑ\80Ñ\83ем"
+#~ msgid "from %s"
+#~ msgstr "оÑ\82 %s"
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "Маркиране на този опит за разрешаване като невалиден."
+#~ msgid " Error!"
+#~ msgstr " Грешка!"
 
-#~ msgid "No need to install %s"
-#~ msgstr "Няма нужда от инсталиране на %s"
+#~ msgid " Important!"
+#~ msgstr " Важно!"
 
-#~ msgid "Ok"
-#~ msgstr "Добре"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s зависи от %s"
 
 #, fuzzy
-#~ msgid "Reading selection from %s"
-#~ msgstr "Грешка при четенето на сектор %u."
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s е необходим на %s"
 
-# progress indicator label
 #, fuzzy
-#~ msgid "Reading translation: %s"
-#~ msgstr "Зареждане на инсталационната система"
-
-#~ msgid "Resolvable"
-#~ msgstr "Пакет"
-
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Сърбия и Черна Гора"
-
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "Пропускане на %s: вече е инсталиран"
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s е необходим на %s"
 
 #, fuzzy
-#~ msgid "Software management is already running."
-#~ msgstr "Услугите за PCMCIA карти вече работят."
-
-#~ msgid "Target commit aborted by user."
-#~ msgstr "Целевото извършване бе прекъснато от потребителя."
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s е заменен от %s"
 
-#~ msgid "The package archive has incorrect MD5 sum"
-#~ msgstr "Архивът с пакетите има некоректна MD5 сума"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s е необходим на %s"
 
-#~ msgid "The package contains different version than expected"
-#~ msgstr "Пакетът съдържа различна от очакваната версия"
+#~ msgid "%s part of %s"
+#~ msgstr "%s е част от %s"
 
-#~ msgid "The package file has incorrect MD5 sum"
-#~ msgstr "Файлът на пакета има некоректна MD5 сума"
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s е необходим на %s"
 
-#~ msgid "The package has incorrect signature"
-#~ msgstr "Пакетът има невалидна сигнатура."
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "Пренебрегване на това изискване"
 
-#~ msgid "The package has no MD5 sum"
-#~ msgstr "Пакетът няма MD5 сума"
+#~ msgid ""
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
+#~ msgstr ""
+#~ "%s се изисква от друг, маркиран за инсталиране пакет и няма да бъде "
+#~ "премахнат."
 
-#~ msgid "The package is not OK for the following reasons:"
-#~ msgstr "Ð\9fакеÑ\82Ñ\8aÑ\82 Ð½Ðµ Ðµ Ð½Ð°Ñ\80ед Ð¿Ð¾Ñ\80ади Ñ\81ледниÑ\82е Ð¿Ñ\80иÑ\87ини:"
+#~ msgid "%s dependend on %s"
+#~ msgstr "оÑ\82 %s Ð·Ð°Ð²Ð¸Ñ\81и %s"
 
 #, fuzzy
 #~ msgid "The signed repomd.xml file failed the signature check."
@@ -5493,88 +5497,84 @@ msgstr ""
 #~ "Проверката на контролната сума за подписания repomd.xml файл бе неушпешна"
 
 #, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "Няма инсталирани алтернативни доставчици на %s"
-
-#~ msgid "This would invalidate %s."
-#~ msgstr "Това ще направи невалиден %s."
-
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "Непознат монитор:"
-
-#~ msgid "Unlock these resolvables"
-#~ msgstr "Отключване на тези пакети"
+#~ msgid "Reading selection from %s"
+#~ msgstr "Грешка при четенето на сектор %u."
 
+# progress indicator label
 #, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr ""
-#~ "Не е възможно обновяването към %s за да се избегне премахването на %s."
+#~ msgid "Reading translation: %s"
+#~ msgstr "Зареждане на инсталационната система"
 
-#~ msgid "atom"
-#~ msgstr "аÑ\82ом"
+#~ msgid " miss checksum."
+#~ msgstr "липÑ\81ва ÐºÐ¾Ð½Ñ\82Ñ\80олнаÑ\82а Ñ\81Ñ\83ма."
 
-#~ msgid "delete %s"
-#~ msgstr "изÑ\82Ñ\80иване Ð½Ð° %s"
+#~ msgid " fails checksum verification."
+#~ msgstr "неÑ\83Ñ\81пеÑ\88но Ñ\83доÑ\81Ñ\82овеÑ\80Ñ\8fване Ð½Ð° ÐºÐ¾Ð½Ñ\82Ñ\80олнаÑ\82а Ñ\81Ñ\83ма."
 
 #, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "без Ð¸Ð½Ñ\81Ñ\82алиÑ\80ане Ð½Ð° %s"
+#~ msgid "Downloading %s"
+#~ msgstr "Ð\93Ñ\80еÑ\88ка Ð¿Ñ\80и Ð·Ð°Ñ\80ежданеÑ\82о Ð½Ð° %1"
 
-#~ msgid "for %s"
-#~ msgstr "за %s"
+#~ msgid "%s needed by %s"
+#~ msgstr "%s е необходим на %s"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "за Ð¸Ð·Ð¸Ñ\81каноÑ\82о %s Ð·Ð° %s, ÐºÐ¾Ð³Ð°Ñ\82о Ñ\81е Ð¾Ð±Ð½Ð¾Ð²Ñ\8fва %s"
+#~ msgid "Cannot acquire zypp lock."
+#~ msgstr "Ð\9dе Ð¼Ð¾Ð¶Ðµ Ð´Ð° Ñ\81е Ð¿Ñ\80идобие Ð·Ð°ÐºÐ»Ñ\8eÑ\87ванеÑ\82о Ð½Ð° zypp."
 
-#~ msgid "from %s"
-#~ msgstr "оÑ\82 %s"
+#~ msgid "Can't write the patch script to a temporary file."
+#~ msgstr "Ð\9dе Ð¼Ð¾Ð¶Ðµ Ð´Ð° Ñ\81е Ñ\81кÑ\80ипÑ\82а Ð½Ð° ÐºÑ\80Ñ\8aпкаÑ\82а Ð²Ñ\8aв Ð²Ñ\80еменен Ñ\84айл."
 
-#, fuzzy
-#~ msgid "ignore architecture"
-#~ msgstr "Архитектура"
+#~ msgid "Target commit aborted by user."
+#~ msgstr "Целевото извършване бе прекъснато от потребителя."
 
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr ""
-#~ "%s не може да бъде инсталиран за задоволяване на зависимостите на %s"
+#~ msgid "Failed check for the script file check sum"
+#~ msgstr "Проверката на контролната сума за скрипта бе неуспешна"
 
-#~ msgid "install %s"
-#~ msgstr "инÑ\81Ñ\82алиÑ\80ане Ð½Ð° %s"
+#~ msgid "Ok"
+#~ msgstr "Ð\94обÑ\80е"
 
-#~ msgid "message"
-#~ msgstr "съобщение"
+#~ msgid "The package is not OK for the following reasons:"
+#~ msgstr "Пакетът не е наред поради следните причини:"
 
-#~ msgid "package"
-#~ msgstr "пакеÑ\82"
+#~ msgid "The package contains different version than expected"
+#~ msgstr "Ð\9fакеÑ\82Ñ\8aÑ\82 Ñ\81Ñ\8aдÑ\8aÑ\80жа Ñ\80азлиÑ\87на Ð¾Ñ\82 Ð¾Ñ\87акванаÑ\82а Ð²ÐµÑ\80Ñ\81иÑ\8f"
 
-#~ msgid "patch"
-#~ msgstr "кÑ\80Ñ\8aпка"
+#~ msgid "The package file has incorrect MD5 sum"
+#~ msgstr "ФайлÑ\8aÑ\82 Ð½Ð° Ð¿Ð°ÐºÐµÑ\82а Ð¸Ð¼Ð° Ð½ÐµÐºÐ¾Ñ\80екÑ\82на MD5 Ñ\81Ñ\83ма"
 
-#~ msgid "pattern"
-#~ msgstr "шаблон"
+#~ msgid "The package has no MD5 sum"
+#~ msgstr "Пакетът няма MD5 сума"
 
-#~ msgid "product"
-#~ msgstr "продукт"
+#~ msgid "The package has incorrect signature"
+#~ msgstr "Пакетът има невалидна сигнатура."
+
+#~ msgid "The package archive has incorrect MD5 sum"
+#~ msgstr "Архивът с пакетите има некоректна MD5 сума"
 
 #~ msgid "rpm failed for unkown reason, see log file"
 #~ msgstr ""
 #~ "rpm завърши с неуспех поради неизвестна причина, прегледайте файла-дневник"
 
-#~ msgid "rpm output:"
-#~ msgstr "Ð\98зÑ\85од Ð¾Ñ\82 rpm:"
+#~ msgid "Default"
+#~ msgstr "СÑ\82андаÑ\80Ñ\82но"
 
-#~ msgid "script"
-#~ msgstr "скрипт"
+#, fuzzy
+#~ msgid "ignore architecture"
+#~ msgstr "Архитектура"
 
-#~ msgid "selection"
-#~ msgstr "подбор"
+#, fuzzy
+#~ msgid "Ignore this requirement for all other resolvables."
+#~ msgstr "%s е необходим на друг пакет"
 
-#~ msgid "system"
-#~ msgstr "система"
+#~ msgid "Deleting %s"
+#~ msgstr "Изтриване на %s"
 
-#~ msgid "unlock %s"
-#~ msgstr "отключване на %s"
+#~ msgid ""
+#~ "Can't install %s, since a resolvable of the same name is already marked "
+#~ "as needing to be installed"
+#~ msgstr ""
+#~ "%s не може да се инсталира, след като пакет със същото име вече е "
+#~ "маркиран за инсталиране"
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "отключване на всички пакети"
+#~ msgid "%s cannot be uninstalled due missing dependencies"
+#~ msgstr "%s не може да бъде деинсталиран поради липсващи зависимости"
index 1a1e582..3e852cf 100644 (file)
--- a/po/bn.po
+++ b/po/bn.po
@@ -13,17 +13,93 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 "\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal ব্যতিক্রম"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "অবৈধ LDAP URL অনুসন্ধান স্ট্রিং"
+
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "অবৈধ LDAP URL অনুসন্ধান প্যারামিটার '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Url অনজেক্ট ক্লোন করতে অক্ষম"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "অবৈধ খালি Url অবজেক্ট রেফারেন্স"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Url কম্পোনেন্ট পার্স করতে অক্ষম"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "মিউটেক্স বৈশিষ্ট্য চালু করতে পারে না"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "রিকার্সিভ মিউটেক্স বৈশিষ্ট্য নির্দিষ্ট করতে পারে না"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "রিকার্সিভ মিউটেক্স চালু করতে পারে না"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "মিউটেক্স লক অর্জন করতে পারে না"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "মিউটেক্স লক মুক্ত করতে পারে না"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr ""
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "প্রয়োজন হয় "
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
 #, fuzzy
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr "%s এর কোনও বিকল্প স্থাপনযোগ্য প্রদানকারী নেই"
+msgid "Obsoletes"
+msgstr "%s প্রাচীন করে দিয়েছে: %sকে"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -36,10 +112,6 @@ msgstr "সম্পাদন করুন"
 msgid " execution failed"
 msgstr "DBI Execution failed: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -48,93 +120,121 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s-এর সঙ্গে %s-এর দ্বন্দ্ব"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+#, fuzzy
+msgid "Error sending update message notification."
+msgstr "কী এনক্রিপশনে ত্রুটি"
+
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s %s প্রদান করে, কিন্তু এটার অন্য একটা আর্কিটেকচার আছে।"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "নির্দেশমত স্থাপনা বাতিল করা হয়েছে।"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "ইনস্টল করা হয় নি"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s লক করা আছে এবং আনইন্সটল করা যাবে না ।"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext সংযুক্ত নয়"
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, fuzzy, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s %sকে প্রাচীন করে দিয়েছে"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive চালু নেই"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume চালু নেই"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "dbus সংযোগ তৈরি করতে অক্ষম"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: libhal কনটেক্সট তৈরি করতে পারে না"
+
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: dbus সংযোগ নির্দিষ্ট করতে পারে না"
+
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "HAL কনটেক্সট চালু করতে পারে না -- hald চলছে না?"
+
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "CDROM ড্রাইভ নয়"
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
 #, fuzzy
-msgid "(does not expire)"
-msgstr "'%1' নেই"
+msgid "RPM failed: "
+msgstr "ব্যর্থ"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "আলবেনিয়া"
-
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "ক্রিয়া (&c)"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, fuzzy, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "পাব্লিক কী পাওয়া যাচ্ছে না"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "আকোলি"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr " %s-এর জন্য পরিবর্তিত কনফিগারেশন ফাইলসমূহ :"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "পরিসীমা"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, fuzzy, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm %s কে %sরূপে সংরক্ষণ করেছিল ,কিন্তু পার্থক্য নিরূপণ করা অসম্ভব হয়েছিল "
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"rpm %s কে %sরূপে সংরক্ষণ করেছিল।\n"
+"এখানে পার্থক্যের প্রথম ২৫ টি লাইন দেওয়া আছে:\n"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, fuzzy, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm %s কে %sরূপে সংরক্ষণ করেছিল ,কিন্তু পার্থক্য নিরূপণ করা  অসম্ভব হয়েছিল "
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"rpm %s কে %sরূপে তৈরি করেছিল।\n"
+"এখানে পার্থক্যের প্রথম ২৫ টি লাইন দেওয়া আছে:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -143,679 +243,1973 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "অতিরিক্ত তথ্য"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "এডাইগ"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "%s ব্যাকআপ তৈরী করছে"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "এন্ট্রি পাওয়া যায়নি"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "এন্ট্রি পাওয়া যায়নি"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "এন্ট্রি পাওয়া যায়নি"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "লেখার জন্যে ফাইল খুলতে পারে না।"
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "'%s' ডেস্কটপ বস্তু খুলতে পারে না"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "ডায়রেক্টরি %1: %2 তৈরী করা যাচ্ছে না"
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "ফ্লপি ডিস্ক থেকে পড়ায় ত্রুটি।"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "রপ্তানি ফাইলনাম অবৈধ৷"
+
+#: zypp/RepoManager.cc:1740
+#, fuzzy, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "সংস্থান পুনঃস্থাপন করছে"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "'%s' ডেস্কটপ বস্তু খুলতে পারে না"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Url যোজনা %s এর অনুমতি দেয় না"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "অবৈধ %s কম্পোনেন্ট %s"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "অবৈধ %s কম্পোনেন্ট"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "এই URL এর জন্যে স্ট্রিং পার্সিং সমর্থিত নয়"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Url যোজনা একটি আবশ্যিক কম্পোনেন্ট"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "অবৈধ Url যোজনা %s"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Url যোজনা ব্যবহারকারীর নামের অনুমতি দেয় না"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Url যোজনা পাসওয়ার্ডের অনুমতি দেয় না"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Url যোজনার জন্য হোস্ট কম্পোনেন্ট"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Url যোজনা হোস্ট কম্পোনেন্ট-এর অনুমতি দেয় না"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "অবৈধ হোস্ট কম্পোনেন্ট '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Url যোজনা পোর্টের অনুমতি দেয় না"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "অবৈধ পোর্ট কম্পোনেন্ট '%s' "
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Url যোজনার জন্য পথের নাম দরকার"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "অথরিটি বিদ্যমান থাকলে রিলেটিভ পথের অনুমতি নেই"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "এনকোডেড স্ট্রিংয়ে NUL বাইট আছে"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "অবৈধ প্যারামিটার এরে স্প্লিট সেপারেটর ক্যারেক্টার"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "অবৈধ প্যারামিটার ম্যাপ স্প্লিট সেপারেটর ক্যারেক্টার"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "অবৈধ প্যারামিটার এরে জয়েন সেপারেটর ক্যারেক্টার"
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "ফাইল খোলা যাচ্ছে না %1."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "%s খুঁজে পায় না।"
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, fuzzy, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "%s খুঁজে পায় না।"
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "সংযোগ সাধনের সময়ে আদেশ সম্পন্ন হয়েছে"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+#, fuzzy
+msgid "(does not expire)"
+msgstr "'%1' নেই"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "অজানা"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "অজানা দেশ: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "কোড"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "বিক্রেতা"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "সংযুক্ত আরব আমিরাত"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "পাকিস্তান"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "এন্টিগা ও বারবুডা"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "এংগুইলা"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "আলবেনিয়া"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "আর্জেন্টিনা"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "নেদারল্যান্ড"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "এংগোলা"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "এন্টার্কটিকা"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "আর্জেন্টিনা"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "আমেরিকান সামোয়া"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "অস্ট্রিয়া"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "অস্ট্রেলিয়া"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "আরুবা"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "ফারো দ্বীপপূঞ্জ"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "আজারবাইজান"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "বসনিয়া এবং হারজেগোভিনা"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "বার্বাডোজ"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "বাংলাদেশ"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "বেলজিয়াম"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "বারকিনা ফাসো"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "বুলগেরিয়া"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "বাহরাইন"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "বুরুন্ডি"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "বাহরাইন"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "জার্মান"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "ব্রুনেই দারুসসালাম"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "বলিভিয়া"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "ব্রাজিল"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "পানামা"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "ভুটান"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "ফারো দ্বীপপূঞ্জ"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "বোটসোয়ানা"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "বেলারুস"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "বেলজিয়ান"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "কানাডা"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "কোকোস (কিলিং) দ্বীপপুঞ্জ"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "কনসোল"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "সিরিয়ান আরব প্রজাতন্ত্র"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "সুইজারল্যান্ড"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "কোট ডি'ইভোয়ার"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "ফারো দ্বীপপূঞ্জ"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "চিলি"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "ক্যামেরা"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "চিলি"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "কলম্বিয়া"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "কোস্টারিকা"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "কিউবা"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "কেপ ভার্দে"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "ক্রিসমাষ আইল্যান্ড"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "সাইপ্রাস"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "চেক প্রজাতন্ত্র"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "জার্মানি"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "জিবৌটি"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "ডেনমার্ক"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "রোমানিয়া"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "ডোমেনিকান প্রজাতন্ত্র"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "আলজেরিয়া"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "ইকুয়েডর"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "এস্টোনিয়া"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "মিশর"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "পশ্চিমী সাহারা"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "ইরিট্রিয়া"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "স্পেন"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "এস্টোনিয়া"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "ফিনল্যান্ড"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "ফিজি"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "ফকল্যান্ড আইল্যান্ডস (মালভিনাস)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "ফেডারেটেড স্টেটস অফ মাইক্রোনেশিয়া"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "ফারো দ্বীপপূঞ্জ"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "ফ্রান্স"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "মেট্রোপলিটান ফ্রান্স"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "নিষিদ্ধ"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "যুক্তরাজ্য"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "গ্রীনল্যান্ড"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "জর্জিয়া"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "ফ্রেঞ্চ (কানাডীয়)"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "জার্মানি"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "ঘানা"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "জিব্রাল্টার"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "গ্রীনল্যান্ড"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "&সাম্বা"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "গিনি"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "গুয়াদেলুপ"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "ইকোয়েটেরিয়াল গিনি"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "গ্রীস"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "সাউথ জর্জিয়া ও সাউথ স্যান্ডউইচ আইল্যান্ড"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "গুয়াতেমালা"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "গুয়াতেমালা"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "গিনি-বিসাউ"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "গায়ানা"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "হংকং"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "হার্ড আইল্যান্ড ও ম্যাকডোনাল্ড আইল্যান্ডস"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "হন্ডুরাস"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "ক্রোয়েশিয়া"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "হাইতি"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "হাঙ্গেরী"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "ইন্দোনেশিয়া"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "আয়্যারল্যান্ড"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "ইসরাইল"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "ভারত"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "ব্রিটিশ ইন্ডিয়ান ওসান টেরিটরি"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "ইরাক"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "ইরাক"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "আইসল্যান্ড"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "ইটালী"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "জামাইকা"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "জর্ডান"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "জাপান"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "কীবোর্ড"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "কিরগিজস্তান"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "কলম্বিয়া"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "কিরিবাটি"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "কমোরোস"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "সেন্ট কিটস ও নেভিস"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "উত্তর কোরিয়া"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "দক্ষিন আফ্রিকা"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "কুয়েত"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "ফারো দ্বীপপূঞ্জ"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "পাকিস্তান"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "লাও পিপলস ডেমোক্রেটিক রিপাব্লিক"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "লেবানন"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "সষেন্ট লুসিয়া"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "লাইসেন্স"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "শ্রীলঙ্কা"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "লাইবেরিয়া"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "লেসোথো"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "লিথুয়েনিয়া"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "লাক্সেমবার্গ"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "লাতভিয়া"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "লিবিয়া"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "মরোক্কো"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "মরোক্কো"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "স্লোভাক"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "মনিটর"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "সাম মারিনো"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "মাদাগাস্কার"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "ফারো দ্বীপপূঞ্জ"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "ম্যাসেডোনিয়া"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "মালয়শিয়া"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "পানামা"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "মঙ্গোলিয়া"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "প্রধান"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "নর্দার্ন মারিয়ানা আইল্যান্ডস"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "মার্টিনিক"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "লিথুয়েনিয়া"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "মন্টসেরাট"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "মালটা"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "মরিশাস"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "মালদ্বীপ"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "à¦\86ফার"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "মালà¦\9fা"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "মেক্সিকো"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "মালয়শিয়া"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "মোজাম্বিক"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "&সাম্বা"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "ম্যাসেডোনিয়া"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "ঘড়ি"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "ফারো দ্বীপপূঞ্জ"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "আলজেরিয়া"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "নিকারাগুয়া"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "নেদারল্যান্ড"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "নরওয়ে"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "নেপাল"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "নাউরু"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "নিউ"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "নিউজিল্যান্ড"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "ওমান"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "পানামা"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "পেরু"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "ফ্রেঞ্চ (কানাডীয়)"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "পাপুয়া নিউ গিনি"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "ফিলিপাইন"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
 msgstr "পাকিস্তান"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "à¦\86ফà§\8dরিহিলি"
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "পà§\8bলà§\8dযানà§\8dড"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "à¦\86ফà§\8dরিà¦\95ানà§\8dস"
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "সà§\87নà§\8dà¦\9f à¦ªà¦¿à§\9fà§\87র à¦\93 à¦®à¦¿à¦\95à§\87লন"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "à¦\86ফà§\8dরà§\8b-à¦\8fশিà§\9fাà¦\9fিà¦\95 (à¦\85নà§\8dযানà§\8dয)"
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "পাà¦\95িসà§\8dতান"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "à¦\86à¦\87নà§\81"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "পà§\8bরà§\8dà¦\9fà§\8bরিà¦\95à§\8b"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "à¦\86à¦\95ান"
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "পà§\8dযালà§\87সà§\8dà¦\9fিনিà§\9fান à¦\9fà§\87রিà¦\9fরি"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "à¦\86à¦\95à§\8dà¦\95াডিà§\9fান"
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "পরà§\8dতà§\81à¦\97াল"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "ফারà§\8b à¦¦à§\8dবà§\80পপà§\82à¦\9eà§\8dà¦\9c"
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "পà§\8dযারাà¦\97à§\81à§\9fà§\87"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "à¦\86লবà§\87নিà§\9fা"
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "পà§\8dযারাà¦\97à§\81à§\9fà§\87"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "à¦\86লবà§\87নিà§\9fা"
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "à¦\95াতার"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "à¦\86লিà¦\89à¦\9f"
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "à¦\8fলাà¦\95া (&R)"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "à¦\86লà¦\9cà§\87রিয়া"
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "রà§\8bমানিয়া"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "প্রাথমিক ভাষা (&L)"
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "খোঁজো"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "অল্টেইক (অন্যান্য)"
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "রাশিয়ান ফেডারেশন"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "à¦\86মà§\87রিà¦\95ান à¦¸à¦¾à¦®à§\8bà§\9fা"
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "à¦\95ানাডা"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "à¦\86মহারিà¦\95"
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "সà§\8cদà§\80 à¦\86রব"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "ফারো দ্বীপপূঞ্জ"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "সেশেলস"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "সুদান"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "বিক্রেতা"
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "সুইডেন"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "à¦\8fà¦\82à¦\97à§\8bলা"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "সিà¦\99à§\8dà¦\97াপà§\81র"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "à¦\8fà¦\82à¦\97à§\81à¦\87লা"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "সà§\87নà§\8dà¦\9f à¦¹à§\87লà§\87না"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "à¦\8fনà§\8dà¦\9fারà§\8dà¦\95à¦\9fিà¦\95া"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "সà§\8dলà§\8bভà§\87নিà§\9fা"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "à¦\8fনà§\8dà¦\9fিà¦\97া à¦\93 à¦¬à¦¾à¦°à¦¬à§\81ডা"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "সভালবারà§\8dড à¦\93 à¦\9cান à¦®à¦¾à§\9fà§\87ন"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "ভাষাসমà§\82হ"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "সà§\8dলà§\8bভাà¦\95িà§\9fা"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "à¦\86রবà§\80"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "সিà§\9fà§\87রা à¦²à¦¿à¦\93ন"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "à¦\86রাà¦\97à§\8bনিà¦\9c"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "সাম à¦®à¦¾à¦°à¦¿à¦¨à§\8b"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "à¦\86রামাà¦\87à¦\95"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "সà§\87নà§\87à¦\97াল"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "à¦\86রাপাহà§\8b"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "রà§\8bমানিà§\9fা"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "à¦\87à¦\89à¦\95à§\8dরà§\87নà§\80à§\9f"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "সারà§\8dভিসà§\87র à¦¨à¦¾à¦® (&n)"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "à¦\86রাà¦\93à§\9fাà¦\95"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "সাà¦\93 à¦\9fà§\8bম à¦\93 à¦ªà§\8dরিনà§\8dসিপ"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "à¦\86রà§\8dà¦\9cà§\87নà§\8dà¦\9fিনা"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "à¦\8fল à¦¸à¦¾à¦²à¦­à¦¾à¦¦à¦°"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "à¦\86রà§\8dà¦\9cà§\87নà§\8dà¦\9fিনা"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "সিরিà§\9fা"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "à¦\86রà§\8dà¦\9cà§\87নà§\8dà¦\9fিনা"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "থাà¦\87লà§\8dযানà§\8dড"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "নà¦\95ল (à¦\85নà§\8dযানà§\8dয)"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "à¦\9fারà§\8dà¦\95স à¦\93 à¦\95াà¦\87à¦\95à§\8bস à¦\86à¦\87লà§\8dযানà§\8dড"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "à¦\86রà§\81বা"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "পরিবরà§\8dতিত"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "à¦\8fà¦\95à¦\87"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "ফà§\8dরà§\87à¦\9eà§\8dà¦\9a à¦¸à¦¾à¦\89দারà§\8dন à¦\9fà§\87রিà¦\9fà§\8bরিà¦\9c"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "à¦\85সà§\8dà¦\9fà§\8dরিà§\9fা"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "নিষিদà§\8dধ"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "ভাষা à¦¸à¦\82রà¦\95à§\8dষন à¦\95রা à¦¹à¦\9aà§\8dà¦\9bà§\87..."
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "থাà¦\87লà§\8dযানà§\8dড"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "à¦\85সà§\8dà¦\9fà§\8dরà§\87লিà§\9fা"
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "তাà¦\9cিà¦\95িসà§\8dতান"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "ইনস্টলকৃত ভাষা"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "টকেলাউ"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "à¦\85সà§\8dà¦\9fà§\8dরিà§\9fা"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "তাà¦\9cিà¦\95িসà§\8dতান"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "à¦\85সà§\8dà¦\9fà§\8dরà§\8bনà§\87শিà§\9fান (à¦\85নà§\8dযানà§\8dয)"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "তিà¦\89নিশিà§\9fা"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, fuzzy, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "সত্যতা যাচাইয়ের ধরন"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "মোট"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "à¦\86ভারিà¦\95"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "à¦\87ষà§\8dà¦\9f à¦\9fিমর"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "à¦\86ভà§\87সà§\8dতান"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "তà§\81রà§\8dà¦\95à§\80"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "à¦\85বধà§\80"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "তà§\8dরিনিদাদ à¦\93 à¦\9fà§\8bবাà¦\97à§\8b"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "আয়মারা"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "টুভালু"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "à¦\86à¦\9cারবাà¦\87à¦\9cান"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "তাà¦\87à¦\93à§\9fান"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "আজারবাইজানি"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "তানজানিয়া"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "ইউক্রেন"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "কানাডা"
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "ইউনাইটেড স্টেটস মাইনর আউটলায়িং আইল্যান্ডস"
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "পানামা"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "সà¦\82যà§\81à¦\95à§\8dত à¦\86রব à¦\86মিরাত"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "বাহরাà¦\87ন"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "à¦\89রà§\81à¦\97à§\81à§\9fà§\87"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "à¦\9cাপানà§\80"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "à¦\89à¦\9cবà§\87à¦\95িসà§\8dথান"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "বালà¦\9fিà¦\95 (à¦\85নà§\8dযানà§\8dয)"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "হà§\8bলি à¦¸à¦¿ (ভà§\8dযাà¦\9fিà¦\95ান à¦¸à¦¿à¦\9fি à¦¸à§\8dà¦\9fà§\87à¦\9f)"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "বালà§\81à¦\9aি"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "সà§\87নà§\8dà¦\9f à¦­à¦¿à¦¨à¦¸à§\87নà§\8dà¦\9f à¦\93 à¦\97à§\8dরà§\87নাডাà¦\87নà§\8dস"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "à¦\95à§\8dযামà§\87রা"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "ভà§\87নিà¦\9cà§\81à§\9fà§\87লা"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "à¦\87নসà§\8dà¦\9fলà¦\95à§\83ত à¦­à¦¾à¦·à¦¾"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "বà§\8dরিà¦\9fিশ à¦­à¦¾à¦°à§\8dà¦\9cিন à¦\86à¦\87লà§\8dযানà§\8dডস"
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "à¦\95ানাডা"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "ভারà§\8dà¦\9cিন à¦\86à¦\87লà§\8dযানà§\8dডস, à¦\87à¦\89 à¦\8fস"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "বাà¦\82লাদà§\87শ"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "ফাà¦\87লà§\87র à¦¨à¦¾à¦®"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "বানà¦\9fà§\81 (à¦\85নà§\8dযানà§\8dয)"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "ভানà§\81à§\9fাতà§\81"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "বারà§\8dবাডà§\8bà¦\9c"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "à¦\93à§\9fালিস à¦\93 à¦«à§\81à¦\9fà§\81না"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "ব্রাজিল"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "&সাম্বা"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "বà§\8dরাà¦\9cিল"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "à¦\87à§\9fà§\87মà§\87ন"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "বাসà§\8dà¦\95"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "মà§\87à§\9fà¦\9f"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "à¦\87নà§\8dদà§\8bনà§\87শিà§\9fা"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "দà¦\95à§\8dষিন à¦\86ফà§\8dরিà¦\95া"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "বেজা"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "&সাম্বা"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "বà§\87লারà§\81স"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "à¦\9cিমà§\8dবাবà§\81à§\9fà§\87"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "বেলারুস"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "অজ্ঞাত ভাষা: "
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "বà§\87লà¦\9cিà§\9fাম"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "à¦\86ফার"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "বà§\87লà¦\9cিà§\9fান"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "à¦\86লবà§\87নিà§\9fা"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "বà§\87মà§\8dবা"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "à¦\95à§\8dরিà§\9fা (&c)"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "বাà¦\82লা"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "à¦\86à¦\95à§\8bলি"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "বাহরাà¦\87ন"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "পরিসà§\80মা"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "বারà§\8dবার (à¦\85নà§\8dযানà§\8dয)"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "à¦\8fডাà¦\87à¦\97"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "à¦\9cারà§\8dমান"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "à¦\86ফà§\8dরà§\8b-à¦\8fশিà§\9fাà¦\9fিà¦\95 (à¦\85নà§\8dযানà§\8dয)"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "ভà§\8bà¦\9cপà§\81রি"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "à¦\86ফà§\8dরিহিলি"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "ভà§\81à¦\9fান"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "à¦\86ফà§\8dরিà¦\95ানà§\8dস"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "বাহরাà¦\87ন"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "à¦\86à¦\87নà§\81"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "বিà¦\95à§\8bল"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "à¦\86à¦\95ান"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "বিনি"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "আক্কাডিয়ান"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "আলবেনিয়া"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "বিসলামা"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "à¦\86লিà¦\89à¦\9f"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "বà§\87লà¦\9cিà§\9fান"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "পà§\8dরাথমিà¦\95 à¦­à¦¾à¦·à¦¾ (&L)"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "বলিভিà§\9fা"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "দà¦\95à§\8dষিন à¦\86ফà§\8dরিà¦\95া"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "বসনিà§\9fা à¦\8fবà¦\82 à¦¹à¦¾à¦°à¦\9cà§\87à¦\97à§\8bভিনা"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "à¦\86মহারিà¦\95"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "বà§\8bà¦\9fসà§\8bà§\9fানা"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "à¦\87à¦\82রà§\87à¦\9cà§\80, à¦ªà§\81রাতন (ca.450-1100)"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "বà§\8bà¦\9fসà§\8bà§\9fানা"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "ভাষাসমà§\82হ"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "ফারà§\8b à¦¦à§\8dবà§\80পপà§\82à¦\9eà§\8dà¦\9c"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "à¦\86রবà§\80"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "বà§\8dরাà¦\9cিল"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "à¦\86রামাà¦\87à¦\95"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "বà§\8dরাà¦\9cিল"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "à¦\86রাà¦\97à§\8bনিà¦\9c"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "বাহরাà¦\87ন"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "à¦\86রà§\8dà¦\9cà§\87নà§\8dà¦\9fিনা"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "বà§\8dরিà¦\9fিশ à¦\87নà§\8dডিà§\9fান à¦\93সান à¦\9fà§\87রিà¦\9fরি"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "à¦\87à¦\89à¦\95à§\8dরà§\87নà§\80à§\9f"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "বà§\8dরিà¦\9fিশ à¦­à¦¾à¦°à§\8dà¦\9cিন à¦\86à¦\87লà§\8dযানà§\8dডস"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "à¦\86রাপাহà§\8b"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "বà§\8dরà§\81নà§\87à¦\87 à¦¦à¦¾à¦°à§\81সসালাম"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "নà¦\95ল (à¦\85নà§\8dযানà§\8dয)"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "বà§\81à¦\97িনিà¦\9c"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "à¦\86রাà¦\93à§\9fাà¦\95"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "একই"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "বà§\81লà¦\97à§\87রিয়া"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "à¦\85সà§\8dà¦\9fà§\8dরিয়া"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "বà§\81লà¦\97à§\87রিà§\9fা"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "ভাষা à¦¸à¦\82রà¦\95à§\8dষন à¦\95রা à¦¹à¦\9aà§\8dà¦\9bà§\87..."
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "বà§\81লà¦\97à§\87রিà§\9fা"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "à¦\87নসà§\8dà¦\9fলà¦\95à§\83ত à¦­à¦¾à¦·া"
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "বারà¦\95িনা à¦«à¦¾à¦¸à§\8b"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "à¦\86ভারিà¦\95"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "বাস à¦®à¦¾à¦\89স "
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "à¦\86ভà§\87সà§\8dতান"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "বà§\81রà§\81নà§\8dডি"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "à¦\85বধà§\80"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "à¦\95াডà§\8dডà§\8b"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "à¦\86à§\9fমারা"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "à¦\95লমà§\8dবিà§\9fা"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "à¦\86à¦\9cারবাà¦\87à¦\9cানি"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "à¦\95à§\8dযামà§\87রা"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "à¦\95ানাডা"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "ফাà¦\87ল à¦¤à§\88রà§\80 à¦\95রা à¦¯à¦¾à¦\9aà§\8dà¦\9bà§\87 à¦¨া"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "à¦\87নসà§\8dà¦\9fলà¦\95à§\83ত à¦­à¦¾à¦·া"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "মিউটেক্স লক অর্জন করতে পারে না"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "ব্রাজিল"
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "%s খুঁজে পায় না।"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "বালুচি"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "ক্যামেরা"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "জাপানী"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "'%s' ডেস্কটপ বস্তু খুলতে পারে না"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "বাস্ক"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "ব্রাজিল"
 
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "ডাà§\9fরà§\87à¦\95à§\8dà¦\9fরি %1: %2 à¦¤à§\88রà§\80 à¦\95রা à¦¯à¦¾à¦\9aà§\8dà¦\9bà§\87 à¦¨à¦¾"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "বালà¦\9fিà¦\95 (à¦\85নà§\8dযানà§\8dয)"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "'%s' ডেস্কটপ বস্তু খুলতে পারে না"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "বেজা"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "বেলারুস"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "বেম্বা"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "বাংলা"
 
-#: zypp/ExternalProgram.cc:381
-#, fuzzy, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "%s খুঁজে পায় না।"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "বার্বার (অন্যান্য)"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "মিউটেক্স বৈশিষ্ট্য চালু করতে পারে না"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "ভোজপুরি"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "রিকার্সিভ মিউটেক্স চালু করতে পারে না"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "বাহরাইন"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "লেখার জন্যে ফাইল খুলতে পারে না।"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "বিকোল"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "ফাà¦\87ল à¦\96à§\8bলা à¦¯à¦¾à¦\9aà§\8dà¦\9bà§\87 à¦¨à¦¾ %1."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "বিনি"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "ফাà¦\87ল à¦\96à§\8bলা à¦¯à¦¾à¦\9aà§\8dà¦\9bà§\87 à¦¨à¦¾ %1."
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "বিসলামা"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "সিকসিকা"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, fuzzy, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "%s থেকে %s প্রদান করতে পারে না"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "বানটু (অন্যান্য)"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "মিউটেক্স লক মুক্ত করতে পারে না"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "বোটসোয়ানা"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "রিকার্সিভ মিউটেক্স বৈশিষ্ট্য নির্দিষ্ট করতে পারে না"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "ব্রাজিল"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "à¦\95ানাডা"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "বাহরাà¦\87ন"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "ইন্দোনেশিয়া"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "'%s' ডেস্কটপ বস্তু খুলতে পারে না"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "বুলগেরিয়া"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "বুগিনিজ"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "বুলগেরিয়া"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "বাস মাউস "
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr " ফাইলে লেখা যাচ্ছে না %1."
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "বেলজিয়ান"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "কেপ ভার্দে"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "কাড্ডো"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "মধ্য আমেরিকান ইন্ডিয়ান (অন্যান্য)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -832,11 +2226,6 @@ msgstr "ক্যাটালোনিয়া"
 msgid "Caucasian (Other)"
 msgstr "ককেশীয় (অন্যান্য)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "ফারো দ্বীপপূঞ্জ"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -847,167 +2236,80 @@ msgstr "লেবানন"
 msgid "Celtic (Other)"
 msgstr "সেল্টিক (অন্যান্য)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "সিরিয়ান আরব প্রজাতন্ত্র"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "মধ্য আমেরিকান ইন্ডিয়ান (অন্যান্য)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "পরিবর্তিত"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "চাগাতাই"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "চামোরো"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr " %s-এর জন্য পরিবর্তিত কনফিগারেশন ফাইলসমূহ :"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "ক্যাশ"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "চেরোকি"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "চেয়েন"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "চিবচা"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "চিলি"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "চিলি"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "ক্যাশ"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "à¦\9aিলি"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "à¦\9aাà¦\97াতাà¦\87"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "চিলি"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "চুকেসে"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "প্রধান"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "চিনুক জার্গন"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "চিপেওয়ান"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "চোকটাও"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "ক্রিসমাষ আইল্যান্ড"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "চিপেওয়ান"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "চেরোকি"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "চার্চ স্লেভিক"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "চুকেসে"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "চুভাশ"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "ক্লাসিকাল নেওয়ারি"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "কোকোস (কিলিং) দ্বীপপুঞ্জ"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "কলম্বিয়া"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "সংযোগ সাধনের সময়ে আদেশ সম্পন্ন হয়েছে"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "কমোরোস"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "কনসোল"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "চেয়েন"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "ফারà§\8b à¦¦à§\8dবà§\80পপà§\82à¦\9eà§\8dà¦\9c"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "ভাষা à¦¸à¦\82রà¦\95à§\8dষন à¦\95রা à¦¹à¦\9aà§\8dà¦\9bà§\87..."
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1024,31 +2326,6 @@ msgstr "ধারন করে"
 msgid "Corsican"
 msgstr "কোস্টারিকা"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "কোস্টারিকা"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "কোট ডি'ইভোয়ার"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "খালি"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "গ্রীক"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "ক্রেওলস ও পিজিনস (অন্যান্য)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1064,46 +2341,36 @@ msgstr "ক্রেওলস ও পিজিনস ফরাসি-ভিত
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "ক্রেওলস ও পিজিনস পর্তুগিজ-ভিত্তিক (অন্যান্য)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "খালি"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "ক্রিমিয়ান তাতার"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "ক্রোয়েশিয়া"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "ক্রোয়েশীয়"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "ক্রেওলস ও পিজিনস (অন্যান্য)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "à¦\95িà¦\89বা"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "à¦\95াশà§\81বিà§\9fান"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "কাসিটিক (অন্যান্য)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "সাইপ্রাস"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "চেক"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "চেক প্রজাতন্ত্র"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1129,10 +2396,15 @@ msgstr "ডায়াক"
 msgid "Delaware"
 msgstr "হার্ডওয়্যার সনাক্ত করো"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "ডেনমার্ক"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "স্লেভ (আথাপাস্কান)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "ডোগরিব"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1144,71 +2416,36 @@ msgstr "ডিস্ক"
 msgid "Divehi"
 msgstr "ড্রাইভার"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "জিবৌটি"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "ডোগরি"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "ডোগরিব"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "রোমানিয়া"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "ডোমেনিকান প্রজাতন্ত্র"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "দ্রাবিঢ়ীয় (অন্যান্য)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "লোয়ার সরবিয়ান"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "মালটা"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "ডাচ, মধ্য (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "ডাচ্"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "ডাচ, মধ্য (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1219,62 +2456,25 @@ msgstr "ডিউলা"
 msgid "Dzongkha"
 msgstr "জোংখা"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "ইষ্ট টিমর"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "ইকুয়েডর"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "এফিক"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "মিশর"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
 msgstr "ইজিপশিয়ান (প্রাচীন)"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "একাজুক"
-
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "এল সালভাদর"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "এলামাইট"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-#, fuzzy
-msgid "Empty host name in URI"
-msgstr " CA নাম শূণ্য"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "এনকোডেড স্ট্রিংয়ে NUL বাইট আছে"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "একাজুক"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "এলামাইট"
 
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
@@ -1286,74 +2486,16 @@ msgstr "ইংরেজি (UK)"
 msgid "English, Middle (1100-1500)"
 msgstr "ইংরেজী, মধ্য (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "ইংরেজী, পুরাতন (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "ইকোয়েটেরিয়াল গিনি"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "ইরিট্রিয়া"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-#, fuzzy
-msgid "Error sending update message notification."
-msgstr "কী এনক্রিপশনে ত্রুটি"
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "ইরজিয়া"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "অভিজ্ঞ (&E)"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "এস্টোনিয়া"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "এস্টোনীয়"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "এস্টোনিয়া"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1364,211 +2506,31 @@ msgstr "ইউয়ি"
 msgid "Ewondo"
 msgstr "এওন্ডো"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "%s খুলতে পারে নি - %s\n"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, fuzzy, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"%s প্যাকেজের শুদ্ধতা যাচাই ব্যর্থ হয়েছে। আপনি কি এটাকে পুনরায় ডাউনলোড করার চেষ্টা "
-"করতে  চান?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, fuzzy, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "পাব্লিক কী পাওয়া যাচ্ছে না"
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "মডিউল\"%s\" লোড করতে অসফল হয়েছে।"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "ফকল্যান্ড আইল্যান্ডস (মালভিনাস)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "পরিসীমা"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "ফান্টি"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "ফারো দ্বীপপূঞ্জ"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "খালি"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "ফেডারেটেড স্টেটস অফ মাইক্রোনেশিয়া"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "ফিজি"
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "ফিনল্যান্ড"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "রিপোসিটারিতে ফাইল %1 পাওয়া যায়নি"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "ফান্টি"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "ফিনল্যান্ড"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "ফিলিপাইন"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "ফিনল্যান্ড"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1579,40 +2541,16 @@ msgstr "ফিনিশ"
 msgid "Finno-Ugrian (Other)"
 msgstr "ফিনো-উগ্রিয়ান (অন্যান্য)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "ফন"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "ফ্রান্স"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "ফ্রেঞ্চ"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "ফ্রেঞ্চ (কানাডীয়)"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "ফ্রেঞ্চ (কানাডীয়)"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "ফ্রেঞ্চ সাউদার্ন টেরিটোরিজ"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1628,46 +2566,21 @@ msgstr "ফরাসি, পুরাতন (842-ca.1400)"
 msgid "Frisian"
 msgstr "শেষ করা হচ্ছে"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "ফিনল্যান্ড"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "সঙ্কেত"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "ফিনল্যান্ড"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "গা"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "নিষিদ্ধ"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "গেলিক"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "ইতালীয়"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "&সাম্বা"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "কানাডা"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1678,15 +2591,10 @@ msgstr "গায়ো"
 msgid "Gbaya"
 msgstr "গবায়া"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "গ্রীক"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "জর্জিয়া"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "জার্মান (deadkeys সহ)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1698,6 +2606,36 @@ msgstr "জর্জিয়া"
 msgid "German"
 msgstr "জার্মান"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "গ্রীক"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "গিলবার্টিজ"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "গেলিক"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "তুর্কী"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "ইতালীয়"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "ম্যাংক্স"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1708,30 +2646,6 @@ msgstr "জার্মান, মধ্য উচ্চ (ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "জার্মান, পুরাতন উচ্চ (ca.750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "জার্মান (deadkeys সহ)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "জার্মানি"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "ঘানা"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "জিব্রাল্টার"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "গিলবার্টিজ"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1752,11 +2666,6 @@ msgstr "গথিক"
 msgid "Grebo"
 msgstr "গ্রুপ"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "গ্রীস"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1767,62 +2676,16 @@ msgstr "গ্রীক, প্রাচীন (1453 অবধি)"
 msgid "Greek, Modern (1453-)"
 msgstr "গ্রীক, আধুনিক (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "গ্রীনল্যান্ড"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "গ্রীনল্যান্ড"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "গুয়াদেলুপ"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "গুয়াতেমালা"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "হাঙ্গেরীয়"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "গুয়াতেমালা"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "জার্মানি"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "গিনি"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "গিনি-বিসাউ"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "গুজরাটি"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "গায়ানা"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1833,52 +2696,21 @@ msgstr "গুইচ'ইন"
 msgid "Haida"
 msgstr "হাইদা"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "হাইতি"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "পাকিস্তান"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal ব্যতিক্রম"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext সংযুক্ত নয়"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive চালু নেই"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume চালু নেই"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "হাউসা"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "হাওয়াইয়ান"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "হার্ড আইল্যান্ড ও ম্যাকডোনাল্ড আইল্যান্ডস"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1904,16 +2736,6 @@ msgstr "হিমাচলি"
 msgid "Hindi"
 msgstr "ধরন"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "হিরি মটু"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1924,31 +2746,21 @@ msgstr "হিটাইট"
 msgid "Hmong"
 msgstr "হমং"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "হোলি সি (ভ্যাটিকান সিটি স্টেট)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "হন্ডুরাস"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "হিরি মটু"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "হà¦\82à¦\95à¦\82"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "à¦\86পার à¦¸à¦¾à¦°à§\8dবিà§\9fান"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "হাঙ্গেরীয়"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "হাঙ্গেরী"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1959,10 +2771,10 @@ msgstr "হুপা"
 msgid "Iban"
 msgstr "ইবন"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "à¦\86à¦\87সলà§\8dযানà§\8dড"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "à¦\87à¦\97বà§\8b"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1974,250 +2786,105 @@ msgstr "আইসল্যান্ডীয়"
 msgid "Ido"
 msgstr "ইদো"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "à¦\87à¦\97বà§\8b"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "লিথà§\81à§\9fà§\87নিà§\9fা"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "ইজো"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "ইনাখটিটাট"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "আভ্যন্তরীণ এলাকা"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "ইলোকো"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "ইনারি সামি"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "ভারত"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "ইন্টারলিঙ্গুয়া (ইন্টারন্যাশনাল অকজিলিয়ারি ল্যাংগুয়েজ অ্যাসোশিয়েশন)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "ইন্ডিক (অন্যান্য)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "ইন্দো-ইউরোপিয়ান (অন্যান্য)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "ইন্দোনেশিয়া"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "ইন্দোনেশিয়া"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "ইন্দো-ইউরোপিয়ান (অন্যান্য)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "ইঙ্গুশ"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "নির্দেশমত স্থাপনা বাতিল করা হয়েছে।"
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "ইন্টারলিঙ্গুয়া (ইন্টারন্যাশনাল অকজিলিয়ারি ল্যাংগুয়েজ অ্যাসোশিয়েশন)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "আভ্যন্তরীণ এলাকা"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "ইনাখটিটাট"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "ভারত"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "অবৈধ %s কম্পোনেন্ট"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "অবৈধ %s কম্পোনেন্ট %s"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "অবৈধ LDAP URL অনুসন্ধান প্যারামিটার '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "অবৈধ LDAP URL অনুসন্ধান স্ট্রিং"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "অবৈধ Url যোজনা %s"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "অবৈধ খালি Url অবজেক্ট রেফারেন্স"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "অবৈধ হোস্ট কম্পোনেন্ট '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "অবৈধ প্যারামিটার এরে জয়েন সেপারেটর ক্যারেক্টার"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "অবৈধ প্যারামিটার এরে স্প্লিট সেপারেটর ক্যারেক্টার"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "অবৈধ প্যারামিটার ম্যাপ স্প্লিট সেপারেটর ক্যারেক্টার"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "অবৈধ পোর্ট কম্পোনেন্ট '%s' "
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "অবৈধ Url যোজনা %s"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "রপ্তানি ফাইলনাম অবৈধ৷"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "ইরাক"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "ইরানি (অন্যান্য)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "ইরাক"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "আয়্যারল্যান্ড"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "তুর্কী"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "আইরিশ, মধ্য (900-1200) "
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "আইরিশ, পুরাতন (900 অবধি)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "প্রাথমিক ভাষা (&L)"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "ইসরাইল"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "ইতালীয়"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "ইটালী"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "জামাইকা"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "জাপানী"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "à¦\9cাপান"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "লà§\87বানন"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "জাপানী"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "জাপানী"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "জর্ডান"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "জুডেও-পার্সিয়ান"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "জুডেও-আরবী"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "জুডেও-পার্সিয়ান"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "কাবারডিয়ান"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "কারা-কালপাক"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2234,11 +2901,6 @@ msgstr "খোঁজো"
 msgid "Kalaallisut"
 msgstr "কলাল্লিসুট"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "কালমাইক"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2249,21 +2911,6 @@ msgstr "&সাম্বা"
 msgid "Kannada"
 msgstr "কানাডা"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "কানুরি"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "কারা-কালপাক"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "কারাচে-বালকার"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2274,11 +2921,11 @@ msgstr "বাহরাইন"
 msgid "Kashmiri"
 msgstr "কাশ্মীরি"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "à¦\95াশà§\81বিà§\9fান"
-
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "à¦\95ানà§\81রি"
+
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
 msgid "Kawi"
@@ -2289,31 +2936,26 @@ msgstr "কুয়েত"
 msgid "Kazakh"
 msgstr "কাজাখ"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "পাকিস্তান"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "কীবোর্ড"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "কাবারডিয়ান"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "খাসি"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "ঘড়ি"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "খয়সান (অন্যান্য)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "ঘড়ি"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2324,11 +2966,6 @@ msgstr "খোটানিজ"
 msgid "Kikuyu"
 msgstr "কিকুয়ু"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "ধরন"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2339,15 +2976,15 @@ msgstr "কিনয়ারোয়ান্ডা"
 msgid "Kirghiz"
 msgstr "কিরগিজ"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "à¦\95িরিবাà¦\9fি"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "ধরন"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "à¦\95à§\8dলিà¦\82à¦\97ন"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "à¦\95à§\8bà¦\99à§\8dà¦\95নà§\80"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2359,11 +2996,6 @@ msgstr "কোমি"
 msgid "Kongo"
 msgstr "কঙ্গো"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "কোঙ্কনী"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2379,11 +3011,21 @@ msgstr "কোসরিয়ান"
 msgid "Kpelle"
 msgstr "একই রাখো"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "কারাচে-বালকার"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "ক্রু"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "তুর্কী"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2399,26 +3041,11 @@ msgstr "নকল"
 msgid "Kurdish"
 msgstr "তুর্কী"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "তুর্কী"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "কুয়েত"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "কুয়েত"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "কিরগিজস্তান"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2439,68 +3066,21 @@ msgstr "&সাম্বা"
 msgid "Lao"
 msgstr "লগ"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "লাও পিপলস ডেমোক্রেটিক রিপাব্লিক"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "লাতভিয়া"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "লাতভিয়া"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "লাতভিয়া"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "লেবানন"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "লেসোথো"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "বেলজিয়ান"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "লাইবেরিয়া"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "লিবিয়া"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "লাইসেন্স"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2511,61 +3091,46 @@ msgstr "লাক্সেমবার্গ"
 msgid "Lingala"
 msgstr "লিঙ্গালা"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "লিথুয়েনিয়া"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "লিথুয়েনিয়ান"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "লেবানন"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "জার্মান"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "লোয়ার সরবিয়ান"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "মনিটর"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "লোজি"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "লà§\81বা-à¦\95াà¦\9fাà¦\99à§\8dà¦\97া"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "লাà¦\95à§\8dসà§\87মবারà§\8dà¦\97"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "লুবা-লুলুয়া"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "লুবা-কাটাঙ্গা"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "কানাডা"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "লুইসেনো"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "লুলে সামি"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2581,227 +3146,90 @@ msgstr "লুও (কেনিয়া ও তানজানিয়া)"
 msgid "Lushai"
 msgstr "থাইল্যান্ড"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "লাক্সেমবার্গ"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "লাক্সেমবার্গ"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "প্রধান"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "ম্যাসেডোনিয়া"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "ম্যাসেডোনিয়া"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "মাদাগাস্কার"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
-msgstr "মডিউলসমূহ"
-
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
-msgstr "মাগাহি"
-
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
-msgstr "মৈথিলি"
-
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr "মালয়শিয়া"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "মালয়শিয়া"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "মালটা"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "মালটা"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "মালয়শিয়া"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "মালয়শিয়া"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "মালদ্বীপ"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "মালয়শিয়া"
+msgstr "মডিউলসমূহ"
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "মালà¦\9fা"
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
+msgstr "মাà¦\97াহি"
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "মালà¦\9fা"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "মারশালিà¦\9c"
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "à¦\9aালà§\81 à¦\95রà§\8b (&à¦\9a)"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
+msgstr "মà§\88থিলি"
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "কানাডা"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
+msgstr "মালয়শিয়া"
+
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "মালয়শিয়া"
 
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "সতর্কবাণী"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "মণিপুরী"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "ম্যাংক্স"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "প্রধান"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "অস্ট্রোনেশিয়ান (অন্যান্য)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "মারাঠি"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "প্রধান"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "ফারো দ্বীপপূঞ্জ"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "মারশালিজ"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "মার্টিনিক"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "হার্ডওয়্যার তথ্য"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "মালয়শিয়া"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "লিথুয়েনিয়া"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "মরিশাস"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "মেয়ট"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "মালটা"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "মোক্ষ"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "কানাডা"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "মোড"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "মেট্রোপলিটান ফ্রান্স"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "মেক্সিকো"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "আইরিশ, মধ্য (900-1200) "
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2813,87 +3241,61 @@ msgstr "মি'কমাক"
 msgid "Minangkabau"
 msgstr "মিনাংকাবাউ"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "মিরান্ডিজ"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "আপনার ভাষা নির্বাচন করুন:"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "মন-খমের (অন্যান্য)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "মালয়শিয়া"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "মালটা"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "চালু করো (&চ)"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "মণিপুরী"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "মোহক"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "মোক্ষ"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "যুগোস্লাভিয়া"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "স্লোভাক"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "মন-খমের (অন্যান্য)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "মরোক্কো"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "মনিটর"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "মঙ্গোলিয়া"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "মঙ্গোলিয়ান"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "মনিটর"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "মন্টসেরাট"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "মরোক্কো"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "মাউস"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "মোজাম্বিক"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2904,211 +3306,141 @@ msgstr "ইনস্টলকৃত ভাষা"
 msgid "Munda languages"
 msgstr "ভাষাসমূহ"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "পানামা"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "গ্রীক"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "মিরান্ডিজ"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "হার্ডওয়্যার তথ্য"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "ইরজিয়া"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "নাহুয়াটি"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "&সাম্বা"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "নর্থ আমেরিঅকন ইন্ডিয়ান"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "নাউরু"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "নিয়াপলিটান"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "নাভাজো"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "এনডেবেলে, উত্তর"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "এনডেবেলে, দক্ষিণ"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "এনডেবেলে, উত্তর"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "এনডোংগা"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "নিয়াপলিটান"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "নেপাল"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "নেপাল ভাষা"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "জার্মান"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "নেপালী"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "নেদারল্যান্ড"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "নেদারল্যান্ড"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "ম্যাসেডোনিয়া"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "নিউজিল্যান্ড"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "নেপাল ভাষা"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "নিয়াস"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "নিকারাগুয়া"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "ঘড়ি"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "নাইজার-কর্ডোফালিয়ান (অন্যান্য)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "আলজেরিয়া"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "নাইলো-সাহারান (অন্যান্য)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "নিউ"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "নিউয়ান"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "কোড"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "নরওয়েজিয়ান"
 
-#: zypp/repo/RepoProvideFile.cc:265
-#, fuzzy
-msgid "No url in repository."
-msgstr "রিপà§\8bসিà¦\9fারিতà§\87 à¦«à¦¾à¦\87ল %1 à¦ªà¦¾à¦\93à§\9fা à¦¯à¦¾à§\9fনি"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "নরà¦\93à§\9fà§\87à¦\9cিà§\9fান"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "নগাই"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "ফারো দ্বীপপূঞ্জ"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "নরসে, পুরাতন"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "নর্থ আমেরিঅকন ইন্ডিয়ান"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "উত্তর কোরিয়া"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "নর্দার্ন মারিয়ানা আইল্যান্ডস"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "উত্তরীয় সামি"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "নর্দার্ন সোথো"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "নরওয়ে"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "নরওয়েজিয়ান"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "নরওয়েজিয়ান"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "নরওয়েজিয়ান"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "CDROM ড্রাইভ নয়"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "নর্দার্ন সোথো"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "ক্লাসিকাল নেওয়ারি"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "চিলি"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3129,11 +3461,6 @@ msgstr "নিয়োরো"
 msgid "Nzima"
 msgstr "এনজিমা"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "%s প্রাচীন করে দিয়েছে: %sকে"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3144,20 +3471,6 @@ msgstr "অক্কিটান 1500 পরবর্তী)"
 msgid "Ojibwa"
 msgstr "অজিবোয়া"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "ওমান"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3178,65 +3491,35 @@ msgstr "একই"
 msgid "Ossetian"
 msgstr "রাশিয়ান"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "তুর্কী, অটোমান (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, fuzzy, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"%s প্যাকেজের শুদ্ধতা যাচাই ব্যর্থ হয়েছে। আপনি কি এটাকে পুনরায় ডাউনলোড করার চেষ্টা "
-"করতে  চান?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "পাপুয়ান (অন্যান্য)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "হাঙ্গেরীয়"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "পহলাভি"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "পাকিস্তান"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "প্যারাগুয়ে"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "প্যারাগুয়ে"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "প্যালেস্টিনিয়ান টেরিটরি"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "পোলিশ"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
-msgstr "প্যারাগুয়ে"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "পানামা"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "হাঙ্গেরীয়"
+msgstr "প্যারাগুয়ে"
 
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
@@ -3248,94 +3531,45 @@ msgstr "পানামা"
 msgid "Papiamento"
 msgstr "পাপিয়ামেন্টো"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "পাপুয়া নিউ গিনি"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "পাপুয়ান (অন্যান্য)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr "প্যারাগুয়ে"
 
-#: zypp/media/MediaException.cc:106
-#, fuzzy, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "%1 ডায়রেক্টরি না"
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
-
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "অনুমতি প্রত্যাখ্যাত"
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "ভার্সন    "
-
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "পার্সিয়ান, পুরাতন (ca.600-400 B.C.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "পà§\87রà§\81"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "ভারà§\8dসন    "
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "ফিলিপাইন"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "ফিলিপাইন"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "ফোনিসিয়ান"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "পাকিস্তান"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr " ফোন্পিয়ান "
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "পোল্যান্ড"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "পোলিশ"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "পোলিশ"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "পর্তুগাল"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr " ফোন্পিয়ান "
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3347,78 +3581,21 @@ msgstr "পর্তুগীজ"
 msgid "Prakrit Languages"
 msgstr "প্রাথমিক ভাষা (&L)"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "প্রভিন্সাল, পুরাতন (1500 অবধি)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "পোর্টোরিকো"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "পুশতো"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "কাতার"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "কোয়েচুয়া"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "এই URL এর জন্যে স্ট্রিং পার্সিং সমর্থিত নয়"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "ব্যর্থ"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "রেটো-রোমান্স"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3434,45 +3611,19 @@ msgstr "জাপান"
 msgid "Rarotongan"
 msgstr "রারোটোংগান"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "অথরিটি বিদ্যমান থাকলে রিলেটিভ পথের অনুমতি নেই"
-
-#: zypp/RepoManager.cc:1740
-#, fuzzy, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "সংস্থান পুনঃস্থাপন করছে"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "প্রয়োজন হয় "
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "এলাকা (&R)"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "রোমান্স (অন্যান্য)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "রেটো-রোমান্স"
+
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
 msgstr "রোমানিয়া"
 
 #. language code: rum ron ro
@@ -3480,89 +3631,15 @@ msgstr "রোমানিয়া"
 msgid "Romanian"
 msgstr "রোমানিয়া"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "রোমানিয়া"
-
 #. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "চলছে"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "রাশিয়ান"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "রাশিয়ান ফেডারেশন"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "কানাডা"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "সেন্ট হেলেনা"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "সেন্ট কিটস ও নেভিস"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "সষেন্ট লুসিয়া"
-
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "সাম মারিনো"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "সেন্ট পিয়ের ও মিকেলন"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "সেন্ট ভিনসেন্ট ও গ্রেনাডাইন্স"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "সামারিটান আরামাইক"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "&সাম্বা"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "&সাম্বা"
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "চলছে"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "সাম à¦®à¦¾à¦°à¦¿à¦¨à§\8b"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "রাশিà§\9fান"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3574,41 +3651,61 @@ msgstr "কানাডা"
 msgid "Sango"
 msgstr "পরিসীমা"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "ইয়াকুট"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "দক্ষিণ আমেরিকান ইন্ডিয়ান (অন্যান্য)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "সামারিটান আরামাইক"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "সংস্কৃত"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "সাসাক"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "ক্যাটালোনিয়া"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "সাও টোম ও প্রিন্সিপ"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "ইউক্রেনীয়"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "সাসাক"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "খোঁজো"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "সà§\8cদà§\80 à¦\86রব"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "সিসিলিà§\9fান"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "স্তর"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "ক্রোয়েশীয়"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3619,148 +3716,40 @@ msgstr "সাহায্য"
 msgid "Semitic (Other)"
 msgstr "সেমিটিক (অন্যান্য)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "সেনেগাল"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "খোঁজো"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "খোঁজো"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "সার্ভিস"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-#, fuzzy
-msgid "Service plugin does not support changing an attribute."
-msgstr "সংস্থানের প্রকার VAR1 পরিবর।তন দেখান বৈশিষ্ট্যকে সমর্থন করে না"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "আইরিশ, পুরাতন (900 অবধি)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "সà§\87শà§\87লস"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "ভাষাসমà§\82হ"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "সুদান"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "স্লোভেনিয়া"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "লিথুয়েনিয়া"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "সিসিলিয়ান"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "সিডামো"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "সিয়েরা লিওন"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "ভাষাসমূহ"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "এন্ট্রি পাওয়া যায়নি"
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "এন্ট্রি পাওয়া যায়নি"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "এন্ট্রি পাওয়া যায়নি"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "এন্ট্রি পাওয়া যায়নি"
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "সিকসিকা"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "ধরন"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "সিঙ্গাপুর"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "সিংহল"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "সাইনো-টিবেটান (অন্যান্য)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "স্কল্ট সামি"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "স্লেভ (আথাপাস্কান)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "সাইনো-টিবেটান (অন্যান্য)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3772,210 +3761,141 @@ msgstr "স্লেভিক (অন্যান্য)"
 msgid "Slovak"
 msgstr "স্লোভাক"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "স্লোভাকিয়া"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "স্লোভেনিয়া"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "স্লোভেনিয়া"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "দক্ষিণী সামি"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "উত্তরীয় সামি"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "লুলে সামি"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "ইনারি সামি"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "&সাম্বা"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "স্কল্ট সামি"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "স্লোভেনিয়া"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "ধরন"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "চালিয়ে যাও (&চ)"
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "সুদান"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "ফারো দ্বীপপূঞ্জ"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "রোমানিয়া"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "রোমানিয়া"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "সংহাই"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "চালিয়ে যাও (&চ)"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "সোথো, দক্ষিণী"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "দক্ষিন আফ্রিকা"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "দক্ষিণ আমেরিকান ইন্ডিয়ান (অন্যান্য)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "সাউথ জর্জিয়া ও সাউথ স্যান্ডউইচ আইল্যান্ড"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "দক্ষিন আফ্রিকা"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "দক্ষিন আফ্রিকা"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "দক্ষিণী সামি"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "স্পেন"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "স্প্যানিশ"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "শà§\8dরà§\80লà¦\99à§\8dà¦\95া"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "à¦\87à¦\89à¦\95à§\8dরà§\87নà§\80à§\9f"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "সà§\81দান"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "সারà§\8dভিস"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr ""
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "নাইলো-সাহারান (অন্যান্য)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "স্পেন"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "সারসংক্ষেপ"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "সুদান"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "সুদান"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "সার্ভিসের নাম (&n)"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "SMBus"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "সভালবারà§\8dড à¦\93 à¦\9cান à¦®à¦¾à§\9fà§\87ন"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "সà§\81দান"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "সোয়াহিলি"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "স্পেন"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "থাইল্যান্ড"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "সুইডেন"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "সুইডিশ"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "সুইজারল্যান্ড"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "সিরিয়া"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "সার্ভিস"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "টাগালগ"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3986,36 +3906,11 @@ msgstr "তাইওয়ান"
 msgid "Tai (Other)"
 msgstr "তাই (অন্যান্য)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "তাইওয়ান"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "তাজিকিস্তান"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "তাজিকিস্তান"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "টামাশেক"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "পরিবার"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "তানজানিয়া"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4026,6 +3921,11 @@ msgstr "কাতার"
 msgid "Telugu"
 msgstr "বেলজিয়াম"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "সময়"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4036,34 +3936,21 @@ msgstr "ট্রী"
 msgid "Tetum"
 msgstr "Pentium"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "তাজিকিস্তান"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "টাগালগ"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "থাইল্যান্ড"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "থাইল্যান্ড"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-#, fuzzy
-msgid "This request will break your system!"
-msgstr "ইতিমধ্যে এই অনুরোধ করা হয়ে গিয়েছে"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4079,46 +3966,25 @@ msgstr "ট্রী"
 msgid "Tigrinya"
 msgstr "টাইগ্রিনিয়া"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "সময়"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "টিভ"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "ক্লিংগন"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "ট্লিংগিট"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "নিষিদ্ধ"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "টোকেন রিং"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "টকেলাউ"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "মোট"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "টামাশেক"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4130,103 +3996,66 @@ msgstr "টোংগা (নায়াসা)"
 msgid "Tonga (Tonga Islands)"
 msgstr "টোংগা (টোংগা দ্বীপ)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "ত্রিনিদাদ ও টোবাগো"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "টোকেন রিং"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "রাশিয়ান"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "বোটসোয়ানা"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "এস্টোনিয়া"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "বà§\8bà¦\9fসà§\8bà§\9fানা"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "তà§\81রà§\8dà¦\95à§\80"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "টুমবুকা"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "তিউনিশিয়া"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "ভাষাসমূহ"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "তুর্কী"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "তুর্কী"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "তুর্কী, অটোমান (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "তুর্কী"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "তাজিকিস্তান"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "টার্কস ও কাইকোস আইল্যান্ড"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "অল্টেইক (অন্যান্য)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "টুভালু"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "টুই"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "তিউনিশিয়া"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "টুই"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "উডমুর্ট"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "কানাডা"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4237,11 +4066,6 @@ msgstr "উগারিটিক"
 msgid "Uighur"
 msgstr "উইগুর"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "ইউক্রেন"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4252,207 +4076,35 @@ msgstr "ইউক্রেনীয়"
 msgid "Umbundu"
 msgstr "উমবুন্ডু"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Url অনজেক্ট ক্লোন করতে অক্ষম"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "dbus সংযোগ তৈরি করতে অক্ষম"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "HAL কনটেক্সট চালু করতে পারে না -- hald চলছে না?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Url কম্পোনেন্ট পার্স করতে অক্ষম"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "অনির্ধারিত"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr ""
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "সংযুক্ত আরব আমিরাত"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "যুক্তরাজ্য"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "সংযুক্ত আরব আমিরাত"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "ইউনাইটেড স্টেটস মাইনর আউটলায়িং আইল্যান্ডস"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "অজানা দেশ: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "ফ্লপি ডিস্ক থেকে পড়ায় ত্রুটি।"
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "অজ্ঞাত ভাষা: "
-
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "অজানা"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr ""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr ""
-
-#: zypp/media/MediaException.cc:140
-#, fuzzy, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "অবৈধ URL প্রকল্প '%1'৷"
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "আপার সার্বিয়ান"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "উর্দু"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Url যোজনা %s এর অনুমতি দেয় না"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Url যোজনা হোস্ট কম্পোনেন্ট-এর অনুমতি দেয় না"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Url যোজনা পাসওয়ার্ডের অনুমতি দেয় না"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Url যোজনা পোর্টের অনুমতি দেয় না"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Url যোজনা ব্যবহারকারীর নামের অনুমতি দেয় না"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Url যোজনা একটি আবশ্যিক কম্পোনেন্ট"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Url যোজনার জন্য হোস্ট কম্পোনেন্ট"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Url যোজনার জন্য পথের নাম দরকার"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "উরুগুয়ে"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "উজবেকিস্থান"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "উজবেকিস্থান"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "ভাই"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "ভানুয়াতু"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
-msgstr "বিক্রেতা"
-
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "ভেনিজুয়েলা"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "ফাইলের নাম"
-
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "ফাইলের নাম"
-
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "ভার্জিন আইল্যান্ডস, ইউ এস"
+msgstr "বিক্রেতা"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "ফাইলের নাম"
 
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
@@ -4474,16 +4126,6 @@ msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
 msgid "Walamo"
 msgstr "ওয়ালামো"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "ওয়ালিস ও ফুটুনা"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "ওয়ালুন"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4499,26 +4141,31 @@ msgstr "ওয়াশো"
 msgid "Welsh"
 msgstr "ওয়েলশ"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "পশ্চিমী সাহারা"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "ভাষা সংরক্ষন করা হচ্ছে..."
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "ওয়ালুন"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "উওলফ"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "কালমাইক"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "জোসা"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "ইয়াকুট"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4529,359 +4176,729 @@ msgstr "ইয়াও"
 msgid "Yapese"
 msgstr "জাপানী"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "ইয়েমেন"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "ইদ্দিশ"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "ইওরুবা"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "ভাষাসমূহ"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "জ্যাপোটেক"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "জেনাগা"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "পরিবর্তিত"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "পরিসীমা"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "জুলু"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "জুনি"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
+
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "এন্ট্রি পাওয়া যায়নি"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, fuzzy, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "%s থেকে %s প্রদান করতে পারে না"
+
+#: zypp/repo/RepoProvideFile.cc:265
+#, fuzzy
+msgid "No url in repository."
+msgstr "রিপোসিটারিতে ফাইল %1 পাওয়া যায়নি"
+
+#: zypp/repo/RepoException.cc:129
+#, fuzzy
+msgid "Service plugin does not support changing an attribute."
+msgstr "সংস্থানের প্রকার VAR1 পরিবর।তন দেখান বৈশিষ্ট্যকে সমর্থন করে না"
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, fuzzy, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"%s প্যাকেজের শুদ্ধতা যাচাই ব্যর্থ হয়েছে। আপনি কি এটাকে পুনরায় ডাউনলোড করার চেষ্টা "
+"করতে  চান?"
+
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, fuzzy, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
+"%s প্যাকেজের শুদ্ধতা যাচাই ব্যর্থ হয়েছে। আপনি কি এটাকে পুনরায় ডাউনলোড করার চেষ্টা "
+"করতে  চান?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm যাচাই ব্যর্থ হয়েছে।"
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm ব্যর্থ হয়েছে।"
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s %s প্রদান করে, কিন্তু এটার অন্য একটা আর্কিটেকচার আছে।"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "প্যাকেজ আনইনস্টল করার আদেশ"
+
+#: zypp/solver/detail/SATResolver.cc:986
+#, fuzzy
+msgid "conflicting requests"
+msgstr "এর সাথে সংযোগের অনুরোধ: "
+
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "নির্ভরতা সমস্যাগুলির কারণে %s স্থাপন করতে পারে না"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, fuzzy, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "কোনওটাই %s প্রদান করে না"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "সার্টিফিকেট %1 অনুপস্থিত"
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s লক করা আছে এবং আনইন্সটল করা যাবে না ।"
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "ইনস্টল করা হয় নি"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, fuzzy, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s এর %s দরকার"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "in/ssTklইনস্টল করা যাবে না"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s-এর সঙ্গে %s-এর দ্বন্দ্ব"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, fuzzy, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s %sকে প্রাচীন করে দিয়েছে"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s %sকে প্রাচীন করে দিয়েছে"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s-এর সঙ্গে %s-এর দ্বন্দ্ব"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1070
+#, fuzzy
+msgid "deleted providers: "
+msgstr "কোনওটাই %s প্রদান করে না"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+#, fuzzy
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr "%s এর কোনও বিকল্প স্থাপনযোগ্য প্রদানকারী নেই"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "%s এর কোনও বিকল্প স্থাপনযোগ্য প্রদানকারী নেই"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "ইদ্দিশ"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "ইওরুবা"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "%s ইন্সটল করে না"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "ভাষাসমূহ"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "%s রাখুন"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "&সাম্বা"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "%s ইন্সটল করে না"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "পরিসীমা"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+#, fuzzy
+msgid "This request will break your system!"
+msgstr "ইতিমধ্যে এই অনুরোধ করা হয়ে গিয়েছে"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "জ্যাপোটেক"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "জেনাগা"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, fuzzy, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "%s এর কোনও বিকল্প স্থাপনযোগ্য প্রদানকারী নেই"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "পরিবর্তিত"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "%1 এর দ্বন্দ্ব %2 এর সাথে"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "জিম্বাবুয়ে"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "জুলু"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, fuzzy, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s %s প্রদান করে, কিন্তু এটার অন্য একটা আর্কিটেকচার আছে।"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "জুনি"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, fuzzy, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "%s স্থাপন করুন যদিও এটা আর্কিটেকচার পালটে দেবে"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm যাচাই ব্যর্থ হয়েছে।"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%s %sকে প্রাচীন করে দিয়েছে"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm ব্যর্থ হয়েছে।"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1318
+#, fuzzy, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "%s থেকে %s ডাউনলোড করেছে"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr ""
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "স্থাপন"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, fuzzy, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "কিছু অমীমাংসিত আবশ্যকতা আছে..."
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "কিছু অমীমাংসিত আবশ্যকতা আছে..."
+
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
+
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
+
+#: zypp/base/InterProcessMutex.cc:83
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "in/ssTklইনস্টল করা যাবে না"
+msgid "Can't open lock file: %s"
+msgstr "ফাইল খোলা যাচ্ছে না %1."
 
-#: zypp/solver/detail/SATResolver.cc:986
-#, fuzzy
-msgid "conflicting requests"
-msgstr "এর সাথে সংযোগের অনুরোধ: "
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr ""
+
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "অজানা"
+
+#: zypp/base/StrMatcher.cc:153
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "%s ব্যাকআপ তৈরী করছে"
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
+
+#: zypp/base/StrMatcher.cc:158
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "সà§\8dথাপন"
+msgid "Invalid regular expression '%s'"
+msgstr "à¦\85বà§\88ধ Url à¦¯à§\8bà¦\9cনা %s"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-#, fuzzy
-msgid "deleted providers: "
-msgstr "কোনওটাই %s প্রদান করে না"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "%1 এর দ্বন্দ্ব %2 এর সাথে"
+msgid "Authentication required for '%s'"
+msgstr "সত্যতা যাচাইয়ের ধরন"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "%s à¦\8fর à¦\95à§\8bনà¦\93 à¦¬à¦¿à¦\95লà§\8dপ à¦¸à§\8dথাপনযà§\8bà¦\97à§\8dয à¦ªà§\8dরদানà¦\95ারà§\80 à¦¨à§\87à¦\87"
+msgid "Failed to mount %s on %s"
+msgstr "%s à¦\96à§\81লতà§\87 à¦ªà¦¾à¦°à§\87 à¦¨à¦¿ - %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "মডিউল\"%s\" লোড করতে অসফল হয়েছে।"
+
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "%s ইন্সটল করে না"
+msgid "Bad file name: %s"
+msgstr ""
+
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
+
+#: zypp/media/MediaException.cc:60
+#, fuzzy, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "রিপোসিটারিতে ফাইল %1 পাওয়া যায়নি"
+
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr " ফাইলে লেখা যাচ্ছে না %1."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, fuzzy, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "%s থেকে %s ডাউনলোড করেছে"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "%1 ডায়রেক্টরি না"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:125
 #, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "কিছু অমীমাংসিত আবশ্যকতা আছে..."
+msgid "Empty host name in URI"
+msgstr " CA নাম শূণ্য"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:140
 #, fuzzy, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "%s স্থাপন করুন যদিও এটা আর্কিটেকচার পালটে দেবে"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "অবৈধ URL প্রকল্প '%1'৷"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr ""
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s %sকে প্রাচীন করে দিয়েছে"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "%s রাখুন"
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
+
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s %s প্রদান করে, কিন্তু এটার অন্য একটা আর্কিটেকচার আছে।"
+msgid "Cannot eject media '%s'"
+msgstr "'%s' ডেস্কটপ বস্তু খুলতে পারে না"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:199
 #, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%s %sকে প্রাচীন করে দিয়েছে"
+msgid "Permission to access '%s' denied."
+msgstr "অনুমতি প্রত্যাখ্যাত"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: libhal কনটেক্সট তৈরি করতে পারে না"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: dbus সংযোগ নির্দিষ্ট করতে পারে না"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, fuzzy, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s এর %s দরকার"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, fuzzy, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "কোনওটাই %s প্রদান করে না"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "সার্টিফিকেট %1 অনুপস্থিত"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "প্যাকেজ আনইনস্টল করার আদেশ"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "%s ইন্সটল করে না"
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "ফাইল তৈরী করা যাচ্ছে না"
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, fuzzy, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm %s কে %sরূপে সংরক্ষণ করেছিল ,কিন্তু পার্থক্য নিরূপণ করা  অসম্ভব হয়েছিল "
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"rpm %s কে %sরূপে তৈরি করেছিল।\n"
-"এখানে পার্থক্যের প্রথম ২৫ টি লাইন দেওয়া আছে:\n"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, fuzzy, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm %s কে %sরূপে সংরক্ষণ করেছিল ,কিন্তু পার্থক্য নিরূপণ করা অসম্ভব হয়েছিল "
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
-"rpm %s কে %sরূপে সংরক্ষণ করেছিল।\n"
-"এখানে পার্থক্যের প্রথম ২৫ টি লাইন দেওয়া আছে:\n"
-
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s-এর সঙ্গে %s-এর দ্বন্দ্ব"
 
-#: zypp/solver/detail/SATResolver.cc:989
 #, fuzzy
-msgid "some dependency problem"
-msgstr "নির্ভরতা সমস্যাগুলির কারণে %s স্থাপন করতে পারে না"
+#~ msgid "do not keep %s installed"
+#~ msgstr "ইনস্টল করা হয় নি"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "uninstallable providers: "
-msgstr "%s এর কোনও বিকল্প স্থাপনযোগ্য প্রদানকারী নেই"
-
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "অজানা"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "%s খুলতে পারে নি - %s\n"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr ""
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "সার্বিয়া ও মন্টেনেগ্রো"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "অজ্ঞাত তালিকাবিকল্প"
 
 #, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "নির্ভরতাগুলির সমাধান করতে পারে নি"
+
 #~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "à¦\8fমন à¦\95à§\8bনà¦\93 à¦¸à¦\82সà§\8dথান à¦\89পলবà§\8dধ à¦¨à§\87à¦\87 à¦¯à¦¾ à¦\8fà¦\87 à¦ªà§\8dরà§\9fà§\8bà¦\9cনà¦\9fিà¦\95à§\87 à¦¸à¦®à¦°à§\8dথন à¦\95রà§\87"
+#~ "%s ফাইলের কোনও চেকসাম নেই।\n"
+#~ "তবà§\81à¦\93 à¦«à¦¾à¦\87লà¦\9fি à¦¬à§\8dযবহার à¦\95রতà§\87 à¦\9aান?"
 
 #~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "এই রিজলভেবলগুলি সিস্টেম থেকে মুছে দেওয়া হবে।"
-
-#~ msgid " Error!"
-#~ msgstr "ত্রুটি"
-
-#~ msgid " Important!"
-#~ msgstr "জরুরি!"
-
-#~ msgid " fails checksum verification."
-#~ msgstr "চেকসাম এর শুদ্ধতা যাচাই ব্যর্থ হয়েছে"
-
-#~ msgid " miss checksum."
-#~ msgstr " অবুপস্থিত চেকসাম।"
-
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "হারিয়ে যাওয়া নির্ভরশীলগুলির জন্য %s ইন্সটল করা যাবে না"
-
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "অন্যান্য বিশ্লেষ্যগুলির সঙ্গে %s এর দ্বন্দ্ব"
+#~ "নিচের কি দ্বারা %s ফাইলের শুদ্ধতা যাচাই ব্যর্থ হয়েছে:\n"
+#~ "%s|%s|%s\n"
+#~ "তবুও ফাইলটি ব্যবহার করতে চান?"
 
 #~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s-এর সঙ্গে দ্বন্দ্ব :\n"
-#~ "%s"
-
-#~ msgid "%s depended on %s"
-#~ msgstr "%s নির্ভর করে %s এর উপরে"
+#~ "%s ফাইলের একটি অবৈধ চেকসাম আছে।\n"
+#~ "%s প্রত্যাশিত ছিল, পাওয়া গেছে %sতবুও ফাইলটি ব্যবহার করতে চান?"
 
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s নির্ভর করে %s এর উপরে"
+#, fuzzy
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "%s ফাইলের একটি অজ্ঞাত চেকসাম আছে ।\n"
+#~ "তবুও ফাইলটি ব্যবহার করতে চান?"
 
-#~ msgid "%s depends on %s"
-#~ msgstr "%s নির্ভর করে %s এর উপরে"
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "%s স্বাক্ষরিত নয়।\n"
+#~ "তবুও ব্যবহার করতে চান?"
 
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s অন্য রিজলভেবলগুলির উপরে নির্ভর করে"
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "ফাইল %s একটি অজ্ঞাত কি দ্বারা স্বাক্ষরিত:\n"
+#~ "%s|%s|%s\n"
+#~ "তবুও ফাইলটি ব্যবহার করতে চান?"
 
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s নির্ভর করে এর উপরে: %s"
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "অবিশ্বস্ত কি পাওয়া গেছে:\n"
+#~ "%s|%s|%s\n"
+#~ "কি-য়ের উপরে বিশ্বাস করবেন?"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "%s %s এর নির্ভরতাগুলি পূরণ করে কিন্তু একে আপনার সিস্টেমে রাখা হবে"
+#~ msgid "%s remove failed"
+#~ msgstr "%s অপসারণ ব্যর্থ হয়েছে"
 
 #, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "%s %s এর নির্ভরতাগুলি পূরণ করে কিন্তু বিস্থাপিত হবে"
-
-#~ msgid "%s has missing dependencies"
-#~ msgstr "%s এর হারিয়ে যাওয়া নির্ভরশীলগুলি আছে"
+#~ msgid "Invalid user name or password."
+#~ msgstr "পাসওয়ার্ড পরিবর্তন"
 
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "%s এর অপূর্ণ প্রয়োজন আছে"
+#~ msgid "rpm output:"
+#~ msgstr "rpm  আউটপুট"
 
 #~ msgid "%s install failed"
 #~ msgstr "%s ইন্সটল ব্যর্থ হয়েছে "
@@ -4889,124 +4906,81 @@ msgstr ""
 #~ msgid "%s installed ok"
 #~ msgstr "%s ইন্সটল ঠিক আছে"
 
-#, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s প্রতিস্থাপিত হয়েছে %s দ্বারা"
-
-#, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s এর %s দরকার"
+#~ msgid "%s remove ok"
+#~ msgstr "%s অপসারণ ঠিক আছে"
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s %s প্রয়োজন হারিয়ে ফেলছে"
-
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "অন্যান্য রিজলভেবলের %s প্রয়োজন"
-
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "এর %s দরকার:\n"
-#~ "%s"
-
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "%s ইন্সটল করা নেই এবং আনইন্সটল হিসাবে চিহ্নিত করা হয়েছে"
-
-#, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s এর %s দরকার"
-
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s প্রতিস্থাপিত হয়েছে %s দ্বারা"
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "%s এই নির্ভরতা প্রদান করে কিন্তু স্থাপিত আইটেমের আর্কিটেকচার  পালটে দেবে "
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
-#~ msgstr "অন্যান্য স্থাপিত রিজলভেবলের জন্য %s দরকার, তাই এটা আনলিঙ্কড  হবে না। "
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "%s এই নির্ভরতা প্রদান করে কিন্তু স্থাপিত আইটেমের আর্কিটেকচার  পালটে দেবে "
 
 #, fuzzy
-#~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
-#~ msgstr "অন্যান্য স্থাপিত রিজলভেবলের জন্য %s দরকার, তাই এটা আনলিঙ্কড  হবে না। "
-
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
-#~ msgstr ""
-#~ "অন্যান্য স্থাপিত হতে চলা রিজলভেবলের জন্য %s দরকার, তাই এটা আনলিঙ্কড হবে না। "
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "%1 এর দ্বন্দ্ব %2 এর সাথে"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr ""
-#~ "%s স্থাপিত হওয়ার পরিকল্পনা আছে, কিন্তু নির্ভরতা সমস্যার কারণে এটা সম্ভব হচ্ছে না।"
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "%s ইতোমধ্যেই স্থাপিত হওয়া নির্দিষ্ট রয়েছে, এই বিষয়টি উপেক্ষা করুন"
 
-#, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s এর %s দরকার"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "%s-এ অপ্রচলিত %s অগ্রাহ্য করুন"
 
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s এর %s দরকার"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "%s এর দ্বন্দ্ব অগ্রাহ্য করুন"
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s এর সঙ্গে দ্বন্দ্বের জন্য %s ইন্সটল করার অযোগ্য"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "কিছু অমীমাংসিত আবশ্যকতা আছে..."
 
 #, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr ""
-#~ "%s %s কে প্রাচীন করে দিয়েছে। কিন্তু %s মুছে দেওয়া যায় না কারণ এটা লক হয়ে আছে।"
-
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s অন্যান্য রিজলভেবলগুলিকে প্রাচীন করে দিয়েছে"
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "%s স্থাপন করুন যদিও এটা আর্কিটেকচার পালটে দেবে"
 
-#~ msgid "%s part of %s"
-#~ msgstr "%s, %s এর অঙ্গ"
+#~ msgid "Install missing resolvables"
+#~ msgstr "ড্রাইভার ইনস্টল করা হচ্ছে..."
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s %s প্রদান করে, কিন্তু এটা রক্ষিত হওয়ার সূচী আছে।"
+#~ msgid "Keep resolvables"
+#~ msgstr "ড্রাইভার ইনস্টল করা হচ্ছে..."
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr "%s %s প্রদান করে, কিন্তু এই %s এর অপর একটি ভার্সন ইতোমধ্যেই স্থাপিত আছে।"
+#~ msgid "Unlock these resolvables"
+#~ msgstr "%1 এর দ্বন্দ্ব %2 এর সাথে"
 
-#, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s %s প্রদান করে, কিন্তু এটার অন্য একটা আর্কিটেকচার আছে।"
+#~ msgid "delete %s"
+#~ msgstr "%s মুছে ফেলুন"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s %s প্রদান করে, কিন্তু এটা বিস্থাপিত হওয়ার সূচী আছে।"
+#~ msgid "install %s"
+#~ msgstr "%s ইনস্টল করুন"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s %s প্রদান করে, কিন্তু এটা লক হয়ে আছে।"
+#~ msgid "unlock %s"
+#~ msgstr "%s আনলক করে"
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s %s প্রদান করে, কিন্তু এটা বিস্থাপনযোগ্য নয়। আরও বিবরণের জন্যে এটাকে নিজে "
-#~ "থেকে স্থাপনের চেষ্টা করুন। "
+#~ msgid "unlock all resolvables"
+#~ msgstr "%1 এর দ্বন্দ্ব %2 এর সাথে"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr "%s এই নির্ভরতা প্রদান করে কিন্তু স্থাপিত আইটেমের আর্কিটেকচার  পালটে দেবে "
+#~ msgid "Can't open solv-file: "
+#~ msgstr "ফাইল খোলা যাচ্ছে না %1."
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr "%s এই নির্ভরতা প্রদান করে কিন্তু স্থাপিত আইটেমের আর্কিটেকচার  পালটে দেবে "
+#~ msgid "Error reading solv-file: "
+#~ msgstr "সেক্টর %u পড়ায় ত্রুটি।"
 
-#~ msgid "%s remove failed"
-#~ msgstr "%s অপসারণ ব্যর্থ হয়েছে"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "এই URL এর জন্যে পথ প্যারামিটার পার্সিং সমর্থিত নয়"
 
-#~ msgid "%s remove ok"
-#~ msgstr "%s অপসারণ ঠিক আছে"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "এই URL এর জন্যে পথ প্যারামিটার পার্সিং সমর্থিত নয়"
+
+#~ msgid "Software management is already running."
+#~ msgstr "সফ্টওয়্যার ম্যানেজমেন্ট ইতোমধ্যেই চলছে।"
+
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s প্রতিস্থাপিত হয়েছে %s দ্বারা"
 
 #~ msgid "%s replaced by %s"
 #~ msgstr "%s প্রতিস্থাপিত হয়েছে %s দ্বারা"
@@ -5021,350 +4995,376 @@ msgstr ""
 #~ msgid "%s will be installed by the user.\n"
 #~ msgstr "%s বিস্থাপিত হবে না কারণ এটার এখনও প্রয়োজন আছে"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "%s বিস্থাপিত হবে না কারণ এটার এখনও প্রয়োজন আছে"
+#~ msgid "Invalid information"
+#~ msgstr "অবৈধ তথ্য"
 
-#~ msgid ", Action: "
-#~ msgstr "à¦\95à§\8dরিà§\9fা (&A)"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "à¦\85নà§\8dযানà§\8dয à¦°à¦¿à¦\9cলভà§\87বলà§\87র %s à¦ªà§\8dরà§\9fà§\8bà¦\9cন"
 
-#~ msgid ", Trigger: "
-#~ msgstr ", ট্রিগার:"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "এর %s দরকার:\n"
+#~ "%s"
+
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "অন্যান্য বিশ্লেষ্যগুলির সঙ্গে %s এর দ্বন্দ্ব"
 
-#, fuzzy
 #~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
-#~ msgstr "%s (%s) নিয়ে বিবাদের জন্যে অন্যান্য স্থাপিত হতে চলা %s অপসারণের প্রয়োজন"
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s-এর সঙ্গে দ্বন্দ্ব :\n"
+#~ "%s"
+
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s অন্যান্য রিজলভেবলগুলিকে প্রাচীন করে দিয়েছে"
 
 #~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
 #~ msgstr ""
-#~ "কমপক্ষে একটি উত্‍স ইতোমধ্যেই নথিবদ্ধ আছে, সঞ্চিত উত্‍সটি পুনরুদ্ধার করা যায় না।"
+#~ "\n"
+#~ "এই রিজলভেবলগুলি সিস্টেম থেকে মুছে দেওয়া হবে।"
+
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s অন্য রিজলভেবলগুলির উপরে নির্ভর করে"
+
+#~ msgid "%s depends on %s"
+#~ msgstr "%s নির্ভর করে %s এর উপরে"
+
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s নির্ভর করে এর উপরে: %s"
+
+#~ msgid "Child of"
+#~ msgstr "এর সন্তান"
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
 #~ msgstr ""
-#~ "%s স্থাপন করতে পারে না যেহেতু এটা ইতোমধ্যেই বিস্থাপিত হওয়া প্রয়োজন বলে চিহ্নিত "
-#~ "হà§\9fà§\87à¦\9bে"
+#~ "\n"
+#~ "à¦\8fমন à¦\95à§\8bনà¦\93 à¦¸à¦\82সà§\8dথান à¦\89পলবà§\8dধ à¦¨à§\87à¦\87 à¦¯à¦¾ à¦\8fà¦\87 à¦ªà§\8dরà§\9fà§\8bà¦\9cনà¦\9fিà¦\95à§\87 à¦¸à¦®à¦°à§\8dথন à¦\95রে"
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
 #~ msgstr ""
-#~ "%s স্থাপন করতে পারে না যেহেতু %s ইতোমধ্যেই স্থাপিত হওয়া প্রয়োজন বলে  চিহ্নিত "
-#~ "হয়েছে "
+#~ "এই রেজলিউশনের উপরে/নিচে বর্ণিত সমস্যাগুলি সমস্ত নির্ভরতাগুলির সমাধান করবে না"
 
 #, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "%s স্থাপন করতে পারে না যেহেতু এটা এই ব্যবস্থার প্রতি প্রযোজ্য নয়।"
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "%s স্থাপন করতে পারে না কারণ এটা %s এর সাথে বিবাদ তৈরি করছে"
+
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "%s ইন্সটল করা নেই এবং আনইন্সটল হিসাবে চিহ্নিত করা হয়েছে"
+
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "%s এর অপূর্ণ প্রয়োজন আছে"
+
+#~ msgid "%s has missing dependencies"
+#~ msgstr "%s এর হারিয়ে যাওয়া নির্ভরশীলগুলি আছে"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "হারিয়ে যাওয়া নির্ভরশীলগুলির জন্য %s ইন্সটল করা যাবে না"
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "ফাইল খোলা যাচ্ছে না %1."
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "%s %s এর নির্ভরতাগুলি পূরণ করে কিন্তু বিস্থাপিত হবে"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "%s এর জন্য %s এর প্রয়োজন পূরণ করতে পারে না"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "%s %s এর নির্ভরতাগুলি পূরণ করে কিন্তু একে আপনার সিস্টেমে রাখা হবে"
 
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
-#~ msgstr "%s à¦\8fর à¦¨à¦¿à¦°à§\8dভরতাà¦\97à§\81লি à¦ªà§\82রণ à¦\95রার à¦\9cনà§\8dযà§\87 %s à¦¸à§\8dথাপন à¦\95রা à¦¯à¦¾à§\9f à¦¨à¦¾"
+#~ msgid "No need to install %s"
+#~ msgstr "%s à¦\87নà§\8dসà¦\9fল à¦\95রার à¦ªà§\8dরà§\9fà§\8bà¦\9cন à¦¨à§\87à¦\87"
 
-#~ msgid "Cannot create a file needed to perform update installation."
-#~ msgstr "আপডেট স্থাপনা সম্পাদনের জন্যে প্রয়োজনীয় ফাইল তৈরি করতে পারে না।"
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "%s এর নির্ভরতাগুলি পূরণ করার জন্যে %s স্থাপন করতে পারে না"
 
 #~ msgid "Cannot install %s to fulfil the dependencies of %s"
 #~ msgstr "%s এর নির্ভরতাগুলি পূরণ করার জন্যে %s স্থাপন করতে পারে না"
 
 #, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "%s এর নির্ভরতাগুলি পূরণ করার জন্যে %s স্থাপন করতে পারে না"
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "%s বিস্থাপিত হবে না কারণ এটার এখনও প্রয়োজন আছে"
+
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr ""
+#~ "%s %s কে প্রাচীন করে দিয়েছে। কিন্তু %s মুছে দেওয়া যায় না কারণ এটা লক হয়ে আছে।"
 
 #, fuzzy
 #~ msgid "Cannot install %s, because it is conflicting"
 #~ msgstr "%s স্থাপন করতে পারে না কারণ এটা বিবাদ তৈরি করছে"
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "%s স্থাপন করতে পারে না কারণ এটা %s এর সাথে বিবাদ তৈরি করছে"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s এর সঙ্গে দ্বন্দ্বের জন্য %s ইন্সটল করার অযোগ্য"
 
-#~ msgid "Child of"
-#~ msgstr "এর সন্তান"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "%s উন্নীত করার সময়ে %s এর জন্যে %s এর প্রয়োজনের জন্যে"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "%1 এর দ্বন্দ্ব %2 এর সাথে"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s %s প্রয়োজন হারিয়ে ফেলছে"
 
-#~ msgid "Downloading %s"
-#~ msgstr "%s ডাউনলোড করছে"
+#~ msgid ", Action: "
+#~ msgstr "ক্রিয়া (&A)"
 
-#, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "এই রেজলিউশনের উপরে/নিচে বর্ণিত সমস্যাগুলি সমস্ত নির্ভরতাগুলির সমাধান করবে না"
+#~ msgid ", Trigger: "
+#~ msgstr ", ট্রিগার:"
 
-#, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "সেক্টর %u পড়ায় ত্রুটি।"
+#~ msgid "package"
+#~ msgstr "প্যাকেজ"
 
-#~ msgid "Establishing %s"
-#~ msgstr "%s স্থাপন করছে"
+#~ msgid "selection"
+#~ msgstr "নির্বাচন"
 
-#, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "%s খুলতে পারে নি - %s\n"
+#~ msgid "pattern"
+#~ msgstr "ধাঁচ"
 
-#~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "%s ফাইলের কোনও চেকসাম নেই।\n"
-#~ "তবুও ফাইলটি ব্যবহার করতে চান?"
+#~ msgid "product"
+#~ msgstr "পণ্য"
 
-#~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "নিচের কি দ্বারা %s ফাইলের শুদ্ধতা যাচাই ব্যর্থ হয়েছে:\n"
-#~ "%s|%s|%s\n"
-#~ "তবুও ফাইলটি ব্যবহার করতে চান?"
+#~ msgid "patch"
+#~ msgstr "প্যাচ"
 
-#~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "%s ফাইলের একটি অবৈধ চেকসাম আছে।\n"
-#~ "%s প্রত্যাশিত ছিল, পাওয়া গেছে %sতবুও ফাইলটি ব্যবহার করতে চান?"
+#~ msgid "script"
+#~ msgstr "স্ক্রিপ্ট"
+
+#~ msgid "message"
+#~ msgstr "বার্তা"
+
+#~ msgid "atom"
+#~ msgstr "অণু"
+
+#~ msgid "system"
+#~ msgstr "ব্যবস্থা"
+
+#~ msgid "Resolvable"
+#~ msgstr "রিজলভেবল"
+
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "এই রেজলিউশন প্রচেষ্টাকে অবৈধ রূপে চিহ্নিত করা হচ্ছে।"
+
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "%s রিজলভেবলকে বিস্থাপনের অযোগ্য রূপে চিহ্নিত করা হচ্ছে"
 
 #, fuzzy
 #~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
 #~ msgstr ""
-#~ "%s ফাইলের একটি অজ্ঞাত চেকসাম আছে ।\n"
-#~ "তবুও ফাইলটি ব্যবহার করতে চান?"
+#~ "%s স্থাপিত হওয়ার পরিকল্পনা আছে, কিন্তু নির্ভরতা সমস্যার কারণে এটা সম্ভব হচ্ছে না।"
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
 #~ msgstr ""
-#~ "%s স্বাক্ষরিত নয়।\n"
-#~ "তবুও ব্যবহার করতে চান?"
+#~ "%s স্থাপন করতে পারে না যেহেতু এটা ইতোমধ্যেই বিস্থাপিত হওয়া প্রয়োজন বলে চিহ্নিত "
+#~ "হয়েছে"
+
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "%s স্থাপন করতে পারে না যেহেতু এটা এই ব্যবস্থার প্রতি প্রযোজ্য নয়।"
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
 #~ msgstr ""
-#~ "ফাইল %s একটি অজ্ঞাত কি দ্বারা স্বাক্ষরিত:\n"
-#~ "%s|%s|%s\n"
-#~ "তবুও ফাইলটি ব্যবহার করতে চান?"
-
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "%s ইতোমধ্যেই স্থাপিত হওয়া নির্দিষ্ট রয়েছে, এই বিষয়টি উপেক্ষা করুন"
-
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "%s-এ অপ্রচলিত %s অগ্রাহ্য করুন"
-
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "%s এর দ্বন্দ্ব অগ্রাহ্য করুন"
-
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "কিছু অমীমাংসিত আবশ্যকতা আছে..."
-
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "কিছু অমীমাংসিত আবশ্যকতা আছে..."
+#~ "%s স্থাপন করতে পারে না যেহেতু %s ইতোমধ্যেই স্থাপিত হওয়া প্রয়োজন বলে  চিহ্নিত "
+#~ "হয়েছে "
 
-#, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "%s স্থাপন করুন যদিও এটা আর্কিটেকচার পালটে দেবে"
+#~ msgid "This would invalidate %s."
+#~ msgstr "এটা %s কে অবৈধ করে দেবে।"
 
-#~ msgid "Install missing resolvables"
-#~ msgstr "ড্রাইভার ইনস্টল করা হচ্ছে..."
+#~ msgid "Establishing %s"
+#~ msgstr "%s স্থাপন করছে"
 
 #~ msgid "Installing %s"
 #~ msgstr "ইনস্টল করা হচ্ছে %s"
 
-#~ msgid "Invalid information"
-#~ msgstr "অবৈধ তথ্য"
+#~ msgid "Updating %s to %s"
+#~ msgstr "%sকে %s এ উন্নীত করছে"
 
-#, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "পাসওয়ার্ড পরিবর্তন"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "%s ডিঙিয়ে যাচ্ছে :আগে থেকেই ইনস্টল করা আছে"
 
-#~ msgid "Keep resolvables"
-#~ msgstr "ড্রাইভার ইনস্টল করা হচ্ছে..."
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "%s এর কোনও বিকল্প স্থাপিত প্রদানকারী নেই"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "%s à¦¨à¦¿à§\9fà§\87 à¦¬à¦¿à¦¬à¦¾à¦¦à§\87র à¦\95ারণà§\87 %s à¦\95à§\87 à¦¬à¦¿à¦¸à§\8dথাপনà§\87র à¦\85যà§\8bà¦\97à§\8dয à¦°à§\82পà§\87 à¦\9aিহà§\8dনিত à¦\95রা à¦¹à¦\9aà§\8dà¦\9bà§\87"
+#~ msgid "for %s"
+#~ msgstr "%s à¦\8fর à¦\9cনà§\8dয"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "%s রিজলভেবলকে বিস্থাপনের অযোগ্য রূপে চিহ্নিত করা হচ্ছে"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "%s অপসারণ এড়ানোর জন্যে %s এ উন্নীত হওয়া সম্ভব নয়।"
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "এই রেজলিউশন প্রচেষ্টাকে অবৈধ রূপে চিহ্নিত করা হচ্ছে।"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s %s প্রদান করে, কিন্তু এটা বিস্থাপিত হওয়ার সূচী আছে।"
 
-#~ msgid "No need to install %s"
-#~ msgstr "%s ইন্সটল করার প্রয়োজন নেই"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s %s প্রদান করে, কিন্তু এই %s এর অপর একটি ভার্সন ইতোমধ্যেই স্থাপিত আছে।"
 
-#, fuzzy
 #~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "%s প্যাকেজের শুদ্ধতা যাচাই ব্যর্থ হয়েছে। আপনি কি এটাকে পুনরায় ডাউনলোড করার "
-#~ "চেষ্টা করতে চান,  নাকি স্থাপনা বাতিল করবেন?"
-
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "এই URL এর জন্যে পথ প্যারামিটার পার্সিং সমর্থিত নয়"
+#~ "%s %s প্রদান করে, কিন্তু এটা বিস্থাপনযোগ্য নয়। আরও বিবরণের জন্যে এটাকে নিজে "
+#~ "থেকে স্থাপনের চেষ্টা করুন। "
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "এই URL এর জন্যে পথ প্যারামিটার পার্সিং সমর্থিত নয়"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s %s প্রদান করে, কিন্তু এটা লক হয়ে আছে।"
 
-#~ msgid "Reading filelist from %s"
-#~ msgstr "%s থেকে ফাইলতালিকা পড়ছে"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s %s প্রদান করে, কিন্তু এটা রক্ষিত হওয়ার সূচী আছে।"
 
-#~ msgid "Reading index files"
-#~ msgstr "সূচীপত্র ফাইল পড়ছে"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s %s প্রদান করে, কিন্তু এটার অন্য একটা আর্কিটেকচার আছে।"
 
-#~ msgid "Reading packages file"
-#~ msgstr "প্যাকেজ ফাইল পড়ছে"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "%s এর জন্য %s এর প্রয়োজন পূরণ করতে পারে না"
 
-#~ msgid "Reading packages from %s"
-#~ msgstr "%s থেকে প্যাকেজ পড়ছে"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr "অন্যান্য স্থাপিত রিজলভেবলের জন্য %s দরকার, তাই এটা আনলিঙ্কড  হবে না। "
 
-#~ msgid "Reading patch %s"
-#~ msgstr "%s প্যাচ পড়ছে"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr "অন্যান্য স্থাপিত রিজলভেবলের জন্য %s দরকার, তাই এটা আনলিঙ্কড  হবে না। "
 
-#~ msgid "Reading patches index %s"
-#~ msgstr "%s প্যাচ ইনডেক্স পড়ছে"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "%s (%s) নিয়ে বিবাদের জন্যে অন্যান্য স্থাপিত হতে চলা %s অপসারণের প্রয়োজন"
 
-#~ msgid "Reading pattern from %s"
-#~ msgstr "%s à¦¥à§\87à¦\95à§\87 à¦ªà§\8dযাà¦\9fারà§\8dন à¦ªà§\9cছে"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "%s à¦¨à¦¿à§\9fà§\87 à¦¬à¦¿à¦¬à¦¾à¦¦à§\87র à¦\95ারণà§\87 %s à¦\95à§\87 à¦¬à¦¿à¦¸à§\8dথাপনà§\87র à¦\85যà§\8bà¦\97à§\8dয à¦°à§\82পà§\87 à¦\9aিহà§\8dনিত à¦\95রা à¦¹à¦\9aà§\8dছে"
 
-#~ msgid "Reading product from %s"
-#~ msgstr "%s থেকে পণ্য পড়ছে"
+#~ msgid "from %s"
+#~ msgstr "%s থেকে"
 
-#~ msgid "Reading selection from %s"
-#~ msgstr "%s থেকে নির্বাচন পড়ছে"
+#~ msgid " Error!"
+#~ msgstr "ত্রুটি"
 
-#~ msgid "Reading translation: %s"
-#~ msgstr "à¦\85নà§\81বাদ à¦ªà§\9cà¦\9bà§\87: %s"
+#~ msgid " Important!"
+#~ msgstr "à¦\9cরà§\81রি!"
 
-#~ msgid "Resolvable"
-#~ msgstr "রিজলভেবল"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s নির্ভর করে %s এর উপরে"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "সার্বিয়া ও মন্টেনেগ্রো"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s এর %s দরকার"
 
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "%s ডিঙিয়ে যাচ্ছে :আগে থেকেই ইনস্টল করা আছে"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s এর %s দরকার"
 
-#~ msgid "Software management is already running."
-#~ msgstr "সফ্টওয়্যার ম্যানেজমেন্ট ইতোমধ্যেই চলছে।"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s প্রতিস্থাপিত হয়েছে %s দ্বারা"
 
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "স্ক্রিপ্ট ফাইল চেকসাম পরীক্ষায় ব্যর্থ হয়েছে"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s এর %s দরকার"
 
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr "স্বাক্ষরিত repomd.xml ফাইল স্বাক্ষর যাচাইয়ে ব্যর্থ হয়েছে।"
+#~ msgid "%s part of %s"
+#~ msgstr "%s, %s এর অঙ্গ"
 
 #, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "%s এর কোনও বিকল্প স্থাপিত প্রদানকারী নেই"
-
-#~ msgid "This would invalidate %s."
-#~ msgstr "এটা %s কে অবৈধ করে দেবে।"
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s এর %s দরকার"
 
 #~ msgid "Unable to parse Url authority"
 #~ msgstr "Url অথরিটি পার্স করতে অক্ষম"
 
-#~ msgid "Unable to restore all sources."
-#~ msgstr "সকল উত্‍সগুলি পুনরুদ্ধার করতে অক্ষম।"
-
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "অজ্ঞাত তালিকাবিকল্প"
-
-#~ msgid "Unlock these resolvables"
-#~ msgstr "%1 এর দ্বন্দ্ব %2 এর সাথে"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "কিছু অমীমাংসিত আবশ্যকতা আছে..."
 
 #~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
 #~ msgstr ""
-#~ "অবিশ্বস্ত কি পাওয়া গেছে:\n"
-#~ "%s|%s|%s\n"
-#~ "কি-য়ের উপরে বিশ্বাস করবেন?"
+#~ "অন্যান্য স্থাপিত হতে চলা রিজলভেবলের জন্য %s দরকার, তাই এটা আনলিঙ্কড হবে না। "
 
-#~ msgid "Updating %s to %s"
-#~ msgstr "%sকে %s এ উন্নীত করছে"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "আপডেট স্থাপনা সম্পাদনের জন্যে প্রয়োজনীয় ফাইল তৈরি করতে পারে না।"
 
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "%s অপসারণ এড়ানোর জন্যে %s এ উন্নীত হওয়া সম্ভব নয়।"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "সকল উত্‍সগুলি পুনরুদ্ধার করতে অক্ষম।"
 
-#~ msgid "atom"
-#~ msgstr "অণু"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr ""
+#~ "কমপক্ষে একটি উত্‍স ইতোমধ্যেই নথিবদ্ধ আছে, সঞ্চিত উত্‍সটি পুনরুদ্ধার করা যায় না।"
 
-#~ msgid "delete %s"
-#~ msgstr "%s à¦®à§\81à¦\9bà§\87 à¦«à§\87লà§\81ন"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "%s à¦\8fর à¦¨à¦¿à¦°à§\8dভরতাà¦\97à§\81লি à¦ªà§\82রণ à¦\95রার à¦\9cনà§\8dযà§\87 %s à¦¸à§\8dথাপন à¦\95রা à¦¯à¦¾à§\9f à¦¨à¦¾"
 
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "ইনস্টল করা হয় নি"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s নির্ভর করে %s এর উপরে"
 
-#~ msgid "for %s"
-#~ msgstr "%s এর জন্য"
+#~ msgid "Reading index files"
+#~ msgstr "সূচীপত্র ফাইল পড়ছে"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "%s উন্নীত করার সময়ে %s এর জন্যে %s এর প্রয়োজনের জন্যে"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "স্বাক্ষরিত repomd.xml ফাইল স্বাক্ষর যাচাইয়ে ব্যর্থ হয়েছে।"
 
-#~ msgid "from %s"
-#~ msgstr "%s থেকে"
+#~ msgid "Reading product from %s"
+#~ msgstr "%s থেকে পণ্য পড়ছে"
 
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "নির্ভরতাগুলির সমাধান করতে পারে নি"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "%s থেকে ফাইলতালিকা পড়ছে"
 
-#~ msgid "install %s"
-#~ msgstr "%s à¦\87নসà§\8dà¦\9fল à¦\95রà§\81ন"
+#~ msgid "Reading packages from %s"
+#~ msgstr "%s à¦¥à§\87à¦\95à§\87 à¦ªà§\8dযাà¦\95à§\87à¦\9c à¦ªà§\9cà¦\9bà§\87"
 
-#~ msgid "message"
-#~ msgstr "বার্তা"
+#~ msgid "Reading selection from %s"
+#~ msgstr "%s থেকে নির্বাচন পড়ছে"
 
-#~ msgid "package"
-#~ msgstr "প্যাকেজ"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "%s থেকে প্যাটার্ন পড়ছে"
 
-#~ msgid "patch"
-#~ msgstr "প্যাচ"
+#~ msgid "Reading patches index %s"
+#~ msgstr "%s প্যাচ ইনডেক্স পড়ছে"
 
-#~ msgid "pattern"
-#~ msgstr "ধাঁচ"
+#~ msgid "Reading patch %s"
+#~ msgstr "%s প্যাচ পড়ছে"
 
-#~ msgid "product"
-#~ msgstr "পণà§\8dয"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "সà§\8dà¦\95à§\8dরিপà§\8dà¦\9f à¦«à¦¾à¦\87ল à¦\9aà§\87à¦\95সাম à¦ªà¦°à§\80à¦\95à§\8dষাà§\9f à¦¬à§\8dযরà§\8dথ à¦¹à§\9fà§\87à¦\9bà§\87"
 
-#~ msgid "rpm output:"
-#~ msgstr "rpm  আউটপুট"
+#~ msgid "Reading packages file"
+#~ msgstr "প্যাকেজ ফাইল পড়ছে"
 
-#~ msgid "script"
-#~ msgstr "সà§\8dà¦\95à§\8dরিপà§\8dà¦\9f"
+#~ msgid "Reading translation: %s"
+#~ msgstr "à¦\85নà§\81বাদ à¦ªà§\9cà¦\9bà§\87: %s"
 
-#~ msgid "selection"
-#~ msgstr "নির্বাচন"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "%s প্যাকেজের শুদ্ধতা যাচাই ব্যর্থ হয়েছে। আপনি কি এটাকে পুনরায় ডাউনলোড করার "
+#~ "চেষ্টা করতে চান,  নাকি স্থাপনা বাতিল করবেন?"
 
-#~ msgid "system"
-#~ msgstr "ব্যবস্থা"
+#~ msgid " miss checksum."
+#~ msgstr " অবুপস্থিত চেকসাম।"
 
-#~ msgid "unlock %s"
-#~ msgstr "%s আনলক করে"
+#~ msgid " fails checksum verification."
+#~ msgstr "চেকসাম এর শুদ্ধতা যাচাই ব্যর্থ হয়েছে"
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "%1 এর দ্বন্দ্ব %2 এর সাথে"
+#~ msgid "Downloading %s"
+#~ msgstr "%s ডাউনলোড করছে"
index 83e997a..2f49370 100644 (file)
--- a/po/bs.po
+++ b/po/bs.po
@@ -20,270 +20,2125 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-# %s is either BOOTP or DHCP
-#: zypp/target/TargetImpl.cc:332
-#, fuzzy
-msgid " execution failed"
-msgstr "%s podešavanje nije uspjelo."
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "Nova instalacija"
-
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Azerbejdđanski"
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
+#: zypp/Dep.cc:100
 #, fuzzy
-msgid "Achinese"
-msgstr "Kineski"
+msgid "Obsoletes"
+msgstr "Izbrii"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
-#, c-format, boost-format
-msgid "Adding repository '%s'"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-#, fuzzy
-msgid "Additional rpm output"
-msgstr "&Dodatne informacije za korisnika"
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
+# %s is either BOOTP or DHCP
+#: zypp/target/TargetImpl.cc:332
 #, fuzzy
-msgid "Afar"
-msgstr "Afrika"
+msgid " execution failed"
+msgstr "%s podešavanje nije uspjelo."
 
-# AF
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistan"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
+msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikaans"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-#, fuzzy
-msgid "Akan"
-msgstr "Azerbejdđanski"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
+#: zypp/target/hal/HalContext.cc:117
 #, fuzzy
-msgid "Akkadian"
-msgstr "Azerbejdđanski"
+msgid "HalContext not connected"
+msgstr "niste spojeni"
 
-# KY
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-#, fuzzy
-msgid "Aland Islands"
-msgstr "Kajmanska ostrva"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albanija"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+#: zypp/target/hal/HalContext.cc:229
 #, fuzzy
-msgid "Albanian"
-msgstr "Albanija"
+msgid "Unable to create dbus connection"
+msgstr "channel to channel konekcija"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-#, fuzzy
-msgid "Aleut"
-msgstr "Aleuta"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algerija"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-#, fuzzy
-msgid "Algonquian Languages"
-msgstr "Odaberite vaš jezik:"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr ""
+
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr ""
+
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr ""
+
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, fuzzy, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Editor konfiguracijskih datoteka"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+#, fuzzy
+msgid "Additional rpm output"
+msgstr "&Dodatne informacije za korisnika"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Couldn't open file: %s."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Ne mogu pokrenuti naredbu \"%s\""
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr ""
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Ne mogu pokrenuti naredbu \"%s\""
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Couldn't open file: %s."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "Naredba koja se izvršava pri spajanju"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "nepoznat"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+#, fuzzy
+msgid "invalid"
+msgstr "&Instaliraj"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr ""
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+#, fuzzy
+msgid "No Code"
+msgstr "nobody"
+
+# AD
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andora"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Ujedinjeni Arapski Emirati"
+
+# AF
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistan"
+
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua i Barbuda"
+
+# AI
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albanija"
+
+# AM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenija"
+
+# AN
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Nizozemski Antili"
+
+# AO
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+# AQ
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktik"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
 # AS
 #. :ARG:032:
 #: zypp/CountryCode.cc:169
 msgid "American Samoa"
 msgstr "Američka Samoa"
 
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austrija"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australija"
+
+# AW
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+# KY
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+#, fuzzy
+msgid "Aland Islands"
+msgstr "Kajmanska ostrva"
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbejdžan"
+
+# BA
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosna i Hercegovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+# BD
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladeš"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgija"
+
+# BF
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bugarska"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrein"
+
+# BI
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+# BJ
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+# BN
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Bruneji"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivija"
+
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brazil"
+
+# BS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahami"
+
+# BT
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Butan"
+
+# BV
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Ostrvo Bouvet"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Bocvana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Bjelorusija"
+
+# BZ
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
+
+# CC
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Kokosova ostrva"
+
+# CG
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
+
+# CF
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+#, fuzzy
+msgid "Central African Republic"
+msgstr "Centralnoafrička Republika"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Švicarska"
+
+# CI
+# fuzzy
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+#, fuzzy
+msgid "Cote D'Ivoire"
+msgstr "Obala Slonovače"
+
+# CK
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cook ostrva"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Čile"
+
+# CM
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Kina"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolumbija"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Kosta Rika"
+
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuba"
+
+# CV
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Zelenortsko otočje"
+
+# CX
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Uskršnje ostrvo"
+
+# CY
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Kipar"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Češka Republika"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Njemačka"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Džibuti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danska"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominikanska Republika"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikanska Republika"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algerija"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ekvador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonija"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egipat"
+
+# EH
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Zapadna Sahara"
+
+# ER
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritreja"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Španija"
+
+# ET
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopija"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finska"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidži"
+
+# FK
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falklandsko otočje"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr ""
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Faroe Otoci"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Francuska"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr ""
+
+# GA
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Ujedinjeno Kraljevstvo (Velika Britanija)"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Džordžija"
+
+# GF
+# fuzzy
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Francuska Gvineja"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Njemačka"
+
+# GH
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Gana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Greenland"
+
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambija"
+
+# GN
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Gvineja"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadelupa"
+
+# GQ
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Ekvatorijalna Gvineja"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grčka"
+
+# GS
+# fuzzy
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "South Georgia i South Sandwich ostrvo"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+# GW
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Gvineja Bisau"
+
+# GY
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Gvajana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+# HM
+# fuzzy
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+#, fuzzy
+msgid "Heard Island and McDonald Islands"
+msgstr "Heard ostrvo i McDonaldova ostrva"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Hondoras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Hrvatska"
+
+# HT
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Mađarska"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesija"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irska"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Izrael"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Indija"
+
+# IO
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Britansko-Indijska morska teritorija"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+# IR
+# fuzzy
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Irak"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Iceland"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italija"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamajka"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordan"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japan"
+
+# KE
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenija"
+
+# KG
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgistan"
+
+# KH
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambođa"
+
+# KI
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+# KM
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Komori"
+
+# KN
+# fuzzy
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+#, fuzzy
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts and Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+#, fuzzy
+msgid "North Korea"
+msgstr "Sjeverna Irska"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+#, fuzzy
+msgid "South Korea"
+msgstr "Južni pol"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuvajt"
+
+# KY
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Kajmanska ostrva"
+
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazahstan"
+
+# CD
+# fuzzy
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+#, fuzzy
+msgid "Lao People's Democratic Republic"
+msgstr "Lao Narodna Demokratska Republika"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
+
+# LC
+# fuzzy
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+#, fuzzy
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Linhenštajn"
+
+# LK
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Šri Lanka"
+
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberija"
+
+# LS
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesoto"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litvanija"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luksemburg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latvija"
+
+# LY
+# fuzzy
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Liberija"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Moroko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monako"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
+
+# CG
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "Kongo"
+
+# SM
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "San Marino"
+
+# MG
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+# MH
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Maršalova ostrva"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonija"
+
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+# MM
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
+
+# MN
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolija"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Makao"
+
+# MP
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Sjeverna Marijanska ostrva"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinik"
+
+# MR
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritanija"
+
+# MS
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauricijus"
+
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Mali"
+
+# MW
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malavi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Meksiko"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malezija"
+
+# MZ
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambik"
+
+# NA
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibija"
+
+# NC
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nova Kaledonija"
+
+# NE
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+# NF
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolk ostrvo"
+
+# NG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigerija"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nikaragva"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Nizozemska"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norveška"
+
+# NP
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+# NU
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Novi Zeland"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+# PF
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Francuska Polinezija"
+
+# PG
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Nova Gvineja"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipini"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Poljska"
+
+# PM
+# fuzzy
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+#, fuzzy
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint Pierre and Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitkairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Riko"
+
+# IO
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+#, fuzzy
+msgid "Palestinian Territory"
+msgstr "Britansko-Indijska morska teritorija"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paragvaj"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Katar"
+
+# RE
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Rumunija"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "Srpski"
+
+# RU
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Ruska Federacija"
+
+# RW
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudijska Arabija"
+
+# SB
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Solomoska ostrva"
+
+# SC
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Sejšelsko otočje"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Švedska"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
+
+# SH
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Saint Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenija"
+
+# SJ
+# fuzzy
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard and Jan Mayen ostrva"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovačka"
+
+# SL
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+# SM
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+# SN
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+# SO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalija"
+
+# SR
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+# ST
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome i Principe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+# SY
+# fuzzy
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Surinam"
+
+# SZ
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Svazilend"
+
+# TC
+# fuzzy
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+#, fuzzy
+msgid "Turks and Caicos Islands"
+msgstr "Turks i Caicos ostrva"
+
+# TD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Čad"
+
+# TF
+# fuzzy
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+#, fuzzy
+msgid "French Southern Territories"
+msgstr "Francuske Južne Teritorije"
+
+# TG
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tajland"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadžikistan"
+
+# TK
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+# TM
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisia"
+
+# TO
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr ""
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turska"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad i Tobago"
+
+# TV
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+# TW
+# fuzzy
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Tajland"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+#, fuzzy
+msgid "Tanzania"
+msgstr "Tasmanija"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukrajina"
+
+# UG
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+# UM
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "United States Minor Outlying Islands"
+
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "SAD"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Urugvaj"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+# VA
+# fuzzy
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Vatikan (Sveta Zemlja)"
+
+# VC
+# fuzzy
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+#, fuzzy
+msgid "Saint Vincent and the Grenadines"
+msgstr "Saint Vincent and the Grenadines"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venecuela"
+
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+#, fuzzy
+msgid "British Virgin Islands"
+msgstr "Djevičansko otočje (U.S.)"
+
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Djevičansko otočje (U.S.)"
+
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vijetnam"
+
+# VU
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+# WF
+# fuzzy
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis i Futuna ostrva"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
+
+# YT
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Južna Afrika"
+
+# ZM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambija"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabve"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr ""
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+#, fuzzy
+msgid "Afar"
+msgstr "Afrika"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Azerbejdđanski"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+#, fuzzy
+msgid "Achinese"
+msgstr "Kineski"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr ""
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr ""
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr ""
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr ""
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr ""
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikaans"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr ""
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+#, fuzzy
+msgid "Akan"
+msgstr "Azerbejdđanski"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+#, fuzzy
+msgid "Akkadian"
+msgstr "Azerbejdđanski"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+#, fuzzy
+msgid "Albanian"
+msgstr "Albanija"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+#, fuzzy
+msgid "Aleut"
+msgstr "Aleuta"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+#, fuzzy
+msgid "Algonquian Languages"
+msgstr "Odaberite vaš jezik:"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+#, fuzzy
+msgid "Southern Altai"
+msgstr "Južna Afrika"
+
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 #, fuzzy
 msgid "Amharic"
 msgstr "Afrika"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-# AD
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andora"
-
-# AO
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-# AI
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
-
-# AQ
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktik"
-
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua i Barbuda"
-
 #. language code: apa
 #: zypp/LanguageCode.cc:199
 #, fuzzy
@@ -295,22 +2150,24 @@ msgstr "Jezik"
 msgid "Arabic"
 msgstr "Arapski"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr ""
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 #, fuzzy
 msgid "Aramaic"
 msgstr "Arapski"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
+# AM
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+#, fuzzy
+msgid "Armenian"
+msgstr "Armenija"
+
 # MR
 #. language code: arn
 #: zypp/LanguageCode.cc:211
@@ -318,39 +2175,20 @@ msgstr ""
 msgid "Araucanian"
 msgstr "Mauritanija"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
-
-# AM
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenija"
-
-# AM
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-#, fuzzy
-msgid "Armenian"
-msgstr "Armenija"
-
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr ""
 
-# AW
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr ""
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -370,33 +2208,12 @@ msgstr "Austrija"
 msgid "Athapascan Languages"
 msgstr "Australija"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australija"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 #, fuzzy
 msgid "Australian Languages"
 msgstr "Australija"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austrija"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr ""
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 #, fuzzy
@@ -421,47 +2238,28 @@ msgstr ""
 msgid "Aymara"
 msgstr "Myanmar"
 
-# AZ
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbejdžan"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Azerbejđanski"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
-
-# BS
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahami"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrein"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+#, fuzzy
+msgid "Banda"
+msgstr "Kanada"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
+#. language code: bai
+#: zypp/LanguageCode.cc:239
 #, fuzzy
-msgid "Balinese"
-msgstr "Kineski"
+msgid "Bamileke Languages"
+msgstr "Jezik"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr ""
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+#, fuzzy
+msgid "Bashkir"
+msgstr "Brazil"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -474,33 +2272,16 @@ msgstr ""
 msgid "Bambara"
 msgstr "Smarkand"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-#, fuzzy
-msgid "Bamileke Languages"
-msgstr "Jezik"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
+#. language code: ban
+#: zypp/LanguageCode.cc:247
 #, fuzzy
-msgid "Banda"
-msgstr "Kanada"
-
-# BD
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladeš"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr ""
+msgid "Balinese"
+msgstr "Kineski"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Baskijski"
 
 #. language code: bas
 #: zypp/LanguageCode.cc:253
@@ -508,49 +2289,21 @@ msgstr "Barbados"
 msgid "Basa"
 msgstr "Baskijski"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-#, fuzzy
-msgid "Bashkir"
-msgstr "Brazil"
-
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baskijski"
-
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-#, fuzzy
-msgid "Batak (Indonesia)"
-msgstr "Indonesija"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr ""
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Bjelorusija"
-
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Bjeloruski"
-
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgija"
-
-# BZ
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
-
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Bjeloruski"
+
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 #, fuzzy
@@ -564,33 +2317,16 @@ msgstr "Bermuda"
 msgid "Bengali"
 msgstr "Senegal"
 
-# BJ
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr ""
 
-# BT
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Butan"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 #, fuzzy
@@ -607,293 +2343,87 @@ msgstr ""
 #: zypp/LanguageCode.cc:273
 #, fuzzy
 msgid "Bini"
-msgstr "Benin"
-
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr ""
-
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-#, fuzzy
-msgid "Blin"
-msgstr "Belgijski"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivija"
-
-# BA
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosna i Hercegovina"
-
-# BJ
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-#, fuzzy
-msgid "Bosnian"
-msgstr "Benin"
-
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Bocvana"
-
-# BV
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Ostrvo Bouvet"
-
-# BR
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-#, fuzzy
-msgid "Braj"
-msgstr "Brazil"
-
-# BR
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brazil"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretonski"
-
-# IO
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Britansko-Indijska morska teritorija"
-
-# VI
-# fuzzy
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-#, fuzzy
-msgid "British Virgin Islands"
-msgstr "Djevičansko otočje (U.S.)"
-
-# BN
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Bruneji"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-#, fuzzy
-msgid "Buginese"
-msgstr "Kineski"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bugarska"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bugarski"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-#, fuzzy
-msgid "Buriat"
-msgstr "Bugarska"
-
-# BF
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr ""
-
-# BI
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
-
-# TD
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-#, fuzzy
-msgid "Caddo"
-msgstr "Čad"
-
-# KH
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambođa"
-
-# CM
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr ""
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr ""
-
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Ne mogu pokrenuti naredbu \"%s\""
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr ""
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Ne mogu pokrenuti naredbu \"%s\""
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr ""
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr ""
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Couldn't open file: %s."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+msgstr "Benin"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+# BJ
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+#, fuzzy
+msgid "Bosnian"
+msgstr "Benin"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+#, fuzzy
+msgid "Braj"
+msgstr "Brazil"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Ne mogu pokrenuti naredbu \"%s\""
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretonski"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+#, fuzzy
+msgid "Batak (Indonesia)"
+msgstr "Indonesija"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+#, fuzzy
+msgid "Buriat"
+msgstr "Bugarska"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+#, fuzzy
+msgid "Buginese"
+msgstr "Kineski"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bugarski"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Instaliram driver..."
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+#, fuzzy
+msgid "Blin"
+msgstr "Belgijski"
 
-# CV
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Zelenortsko otočje"
+# TD
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+#, fuzzy
+msgid "Caddo"
+msgstr "Čad"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr ""
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -911,12 +2441,6 @@ msgstr "Katalanski"
 msgid "Caucasian (Other)"
 msgstr ""
 
-# KY
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Kajmanska ostrva"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 #, fuzzy
@@ -928,36 +2452,6 @@ msgstr "Libanon"
 msgid "Celtic (Other)"
 msgstr ""
 
-# CF
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-#, fuzzy
-msgid "Central African Republic"
-msgstr "Centralnoafrička Republika"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr ""
-
-# TD
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Čad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-#, fuzzy
-msgid "Chagatai"
-msgstr "Šangaj"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-#, fuzzy
-msgid "Chamic Languages"
-msgstr "Jezik"
-
 # KM
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
@@ -965,147 +2459,81 @@ msgstr "Jezik"
 msgid "Chamorro"
 msgstr "Komori"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, fuzzy, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Editor konfiguracijskih datoteka"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-#, fuzzy
-msgid "Chechen"
-msgstr "Češki"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr ""
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr ""
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 #, fuzzy
 msgid "Chibcha"
 msgstr "Kina"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
 #, fuzzy
-msgid "Chichewa"
-msgstr "Čile"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Čile"
+msgid "Chechen"
+msgstr "Češki"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Kina"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+#, fuzzy
+msgid "Chagatai"
+msgstr "Šangaj"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Kineski"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr ""
-
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr ""
-
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr ""
-
-# CX
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Uskršnje ostrvo"
-
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr ""
-
 #. language code: chk
 #: zypp/LanguageCode.cc:327
 #, fuzzy
 msgid "Chuukese"
 msgstr "Kineski"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr ""
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
+#. language code: chm
+#: zypp/LanguageCode.cc:329
 #, fuzzy
-msgid "Classical Newari"
-msgstr "Ime klase"
-
-# CC
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokosova ostrva"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolumbija"
+msgid "Mari"
+msgstr "Maorski"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "Naredba koja se izvršava pri spajanju"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr ""
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-# KM
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Komori"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
 msgstr ""
 
-# CG
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr ""
 
-# CK
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cook ostrva"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+#, fuzzy
+msgid "Chamic Languages"
+msgstr "Jezik"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1125,36 +2553,6 @@ msgstr "Irski"
 msgid "Corsican"
 msgstr "Kosta Rika"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Kosta Rika"
-
-# CI
-# fuzzy
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-#, fuzzy
-msgid "Cote D'Ivoire"
-msgstr "Obala Slonovače"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-#, fuzzy
-msgid "Cree"
-msgstr "&Napravi"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-#, fuzzy
-msgid "Creek"
-msgstr "Grčki"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr ""
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1170,48 +2568,37 @@ msgstr ""
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+#, fuzzy
+msgid "Cree"
+msgstr "&Napravi"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Hrvatska"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Hrvatski"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
 
-# CU
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr ""
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr ""
 
-# CY
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Kipar"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Češki"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Češka Republika"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 #, fuzzy
@@ -1241,10 +2628,15 @@ msgstr "Dakar"
 msgid "Delaware"
 msgstr "Hardware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danska"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr ""
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr ""
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1257,61 +2649,32 @@ msgstr "Dominikanska Republika"
 msgid "Divehi"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Džibuti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 #, fuzzy
 msgid "Dogri"
 msgstr "Maorski"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr ""
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominikanska Republika"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikanska Republika"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr ""
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+#, fuzzy
+msgid "Lower Sorbian"
+msgstr "Srpski"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 #, fuzzy
 msgid "Duala"
 msgstr "Palau"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
 #. language code: dut nld nl
@@ -1319,11 +2682,6 @@ msgstr ""
 msgid "Dutch"
 msgstr "Holandski"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr ""
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 #, fuzzy
@@ -1337,26 +2695,11 @@ msgstr "Dubai"
 msgid "Dzongkha"
 msgstr "Tonga"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr ""
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ekvador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egipat"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1367,89 +2710,19 @@ msgstr ""
 msgid "Ekajuk"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr ""
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr ""
-
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Engleski"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr ""
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr ""
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-# GQ
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Ekvatorijalna Gvineja"
-
-# ER
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritreja"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Engleski"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
 #. language code: epo eo
@@ -1457,22 +2730,11 @@ msgstr ""
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonija"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estonski"
 
-# ET
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopija"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1483,89 +2745,23 @@ msgstr ""
 msgid "Ewondo"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Failed to parse: %s."
-
-# FK
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandsko otočje"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 #, fuzzy
 msgid "Fang"
 msgstr "Zastave"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-#, fuzzy
-msgid "Fanti"
-msgstr "Atlantik"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Faroe Otoci"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 #, fuzzy
 msgid "Faroese"
 msgstr "Faroe Otoci"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr ""
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidži"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+#, fuzzy
+msgid "Fanti"
+msgstr "Atlantik"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
@@ -1573,125 +2769,12 @@ msgstr "Fidži"
 msgid "Fijian"
 msgstr "Fidži"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 #, fuzzy
 msgid "Filipino"
 msgstr "Filipini"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finska"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1700,47 +2783,17 @@ msgstr "Finski"
 #. language code: fiu
 #: zypp/LanguageCode.cc:441
 msgid "Finno-Ugrian (Other)"
-msgstr ""
-
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
-#. language code: fon
-#: zypp/LanguageCode.cc:443
-msgid "Fon"
-msgstr ""
-
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Francuska"
-
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
-msgstr "Francuski"
-
-# GF
-# fuzzy
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Francuska Gvineja"
-
-# PF
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Francuska Polinezija"
+msgstr ""
 
-# TF
-# fuzzy
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-#, fuzzy
-msgid "French Southern Territories"
-msgstr "Francuske Južne Teritorije"
+#. language code: fon
+#: zypp/LanguageCode.cc:443
+msgid "Fon"
+msgstr ""
+
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
+msgstr "Francuski"
 
 #. language code: frm
 #: zypp/LanguageCode.cc:449
@@ -1758,18 +2811,18 @@ msgstr ""
 msgid "Frisian"
 msgstr "Francuska"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-#, fuzzy
-msgid "Friulian"
-msgstr "Finska"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 #, fuzzy
 msgid "Fulah"
 msgstr "Zastave"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+#, fuzzy
+msgid "Friulian"
+msgstr "Finska"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 #, fuzzy
@@ -1777,38 +2830,6 @@ msgid "Ga"
 msgstr "Guam"
 
 # GA
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-# ML
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-#, fuzzy
-msgid "Gaelic"
-msgstr "Mali"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-#, fuzzy
-msgid "Galician"
-msgstr "Vatikan"
-
-# GM
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambija"
-
-# GH
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-#, fuzzy
-msgid "Ganda"
-msgstr "Gana"
-
-# GA
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 #, fuzzy
@@ -1821,16 +2842,11 @@ msgstr "Gabon"
 msgid "Gbaya"
 msgstr "Gaza"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
+#. language code: gem
+#: zypp/LanguageCode.cc:465
 #, fuzzy
-msgid "Geez"
-msgstr "Grčki"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Džordžija"
+msgid "Germanic (Other)"
+msgstr "Njemački (Swiss)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1843,6 +2859,42 @@ msgstr "Džordžija"
 msgid "German"
 msgstr "Njemački"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+#, fuzzy
+msgid "Geez"
+msgstr "Grčki"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+#, fuzzy
+msgid "Gilbertese"
+msgstr "Vijetnamski"
+
+# ML
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+#, fuzzy
+msgid "Gaelic"
+msgstr "Mali"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irski"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+#, fuzzy
+msgid "Galician"
+msgstr "Vatikan"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+#, fuzzy
+msgid "Manx"
+msgstr "Manila"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1853,33 +2905,6 @@ msgstr ""
 msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-#, fuzzy
-msgid "Germanic (Other)"
-msgstr "Njemački (Swiss)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Njemačka"
-
-# GH
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Gana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-#, fuzzy
-msgid "Gilbertese"
-msgstr "Vijetnamski"
-
 # GA
 #. language code: gon
 #: zypp/LanguageCode.cc:491
@@ -1904,11 +2929,6 @@ msgstr ""
 msgid "Grebo"
 msgstr "Gabon"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grčka"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1919,66 +2939,17 @@ msgstr ""
 msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Greenland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadelupa"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 #, fuzzy
 msgid "Guarani"
 msgstr "Mađarski"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Njemačka"
-
-# GN
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Gvineja"
-
-# GW
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Gvineja Bisau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr ""
 
-# GY
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Gvajana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 #, fuzzy
@@ -1992,59 +2963,23 @@ msgid "Haida"
 msgstr "Hardware"
 
 # HT
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
-# HT
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 #, fuzzy
 msgid "Haitian"
 msgstr "Haiti"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "niste spojeni"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 #, fuzzy
 msgid "Hawaiian"
 msgstr "Havaji"
 
-# HM
-# fuzzy
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-#, fuzzy
-msgid "Heard Island and McDonald Islands"
-msgstr "Heard ostrvo i McDonaldova ostrva"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -2073,16 +3008,6 @@ msgstr ""
 msgid "Hindi"
 msgstr "Haiti"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr ""
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 # HT
 #. language code: hit
 #: zypp/LanguageCode.cc:529
@@ -2096,33 +3021,22 @@ msgstr "Haiti"
 msgid "Hmong"
 msgstr "Hong Kong"
 
-# VA
-# fuzzy
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Vatikan (Sveta Zemlja)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Hondoras"
-
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr ""
+
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+#, fuzzy
+msgid "Upper Sorbian"
+msgstr "Srpski"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Mađarski"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Mađarska"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2136,10 +3050,10 @@ msgstr ""
 msgid "Iban"
 msgstr "Irak"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Iceland"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr ""
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2151,243 +3065,104 @@ msgstr "Islandski"
 msgid "Ido"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr ""
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+#, fuzzy
+msgid "Sichuan Yi"
+msgstr "Litvanija"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr ""
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr ""
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+#, fuzzy
+msgid "Interlingue"
+msgstr "Nastavi"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 #, fuzzy
 msgid "Iloko"
 msgstr "Tokio"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Indija"
-
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr ""
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesija"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Infoneziski"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr ""
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 #, fuzzy
 msgid "Ingush"
 msgstr "Engleski"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-#, fuzzy
-msgid "Interlingue"
-msgstr "Nastavi"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr ""
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 #, fuzzy
 msgid "Inupiaq"
 msgstr "Indija"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr ""
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr ""
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr ""
-
-# IR
-# fuzzy
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Irak"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irska"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irski"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr ""
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr ""
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 #, fuzzy
 msgid "Iroquoian Languages"
 msgstr "Odaberite vaš jezik:"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Izrael"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italijanski"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italija"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamajka"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+#, fuzzy
+msgid "Javanese"
+msgstr "Japanski"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japan"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+#, fuzzy
+msgid "Lojban"
+msgstr "Libanon"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japanski"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
 #, fuzzy
-msgid "Javanese"
-msgstr "Japanski"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordan"
+msgid "Judeo-Persian"
+msgstr "Infoneziski"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
@@ -2395,15 +3170,9 @@ msgstr "Jordan"
 msgid "Judeo-Arabic"
 msgstr "Arapski"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-#, fuzzy
-msgid "Judeo-Persian"
-msgstr "Infoneziski"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
 #. language code: kab
@@ -2417,15 +3186,10 @@ msgstr "Uključeno"
 #, fuzzy
 msgid "Kachin"
 msgstr "Bahrein"
-
-#. language code: kal kl
-#: zypp/LanguageCode.cc:595
-msgid "Kalaallisut"
-msgstr ""
-
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
+
+#. language code: kal kl
+#: zypp/LanguageCode.cc:595
+msgid "Kalaallisut"
 msgstr ""
 
 # GM
@@ -2441,22 +3205,6 @@ msgstr "Gambija"
 msgid "Kannada"
 msgstr "Kanada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-#, fuzzy
-msgid "Kanuri"
-msgstr "Kurdski"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr ""
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr ""
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 #, fuzzy
@@ -2468,10 +3216,11 @@ msgstr "Korejski"
 msgid "Kashmiri"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr ""
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+#, fuzzy
+msgid "Kanuri"
+msgstr "Kurdski"
 
 # MW
 #. language code: kaw
@@ -2488,18 +3237,10 @@ msgstr "Malavi"
 msgid "Kazakh"
 msgstr "Kazahstan"
 
-# KZ
-# fuzzy
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazahstan"
-
-# KE
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenija"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr ""
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
@@ -2507,16 +3248,16 @@ msgstr "Kenija"
 msgid "Khasi"
 msgstr "Tajlandski"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr ""
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr ""
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr ""
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 #, fuzzy
@@ -2528,12 +3269,6 @@ msgstr "Kineski"
 msgid "Kikuyu"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-#, fuzzy
-msgid "Kimbundu"
-msgstr "Katmandu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2545,17 +3280,17 @@ msgstr ""
 msgid "Kirghiz"
 msgstr "Djevičanska ostrva"
 
-# KI
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+#, fuzzy
+msgid "Kimbundu"
+msgstr "Katmandu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
+#. language code: kok
+#: zypp/LanguageCode.cc:629
 #, fuzzy
-msgid "Klingon"
-msgstr "Sajgon"
+msgid "Konkani"
+msgstr "Korejski"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2569,12 +3304,6 @@ msgstr ""
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-#, fuzzy
-msgid "Konkani"
-msgstr "Korejski"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2591,11 +3320,22 @@ msgstr "Korejski"
 msgid "Kpelle"
 msgstr ""
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr ""
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr ""
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+#, fuzzy
+msgid "Kurukh"
+msgstr "Turski"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 #, fuzzy
@@ -2612,12 +3352,6 @@ msgstr ""
 msgid "Kurdish"
 msgstr "Kurdski"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-#, fuzzy
-msgid "Kurukh"
-msgstr "Turski"
-
 # KE
 #. language code: kut
 #: zypp/LanguageCode.cc:653
@@ -2625,18 +3359,6 @@ msgstr "Turski"
 msgid "Kutenai"
 msgstr "Kenija"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuvajt"
-
-# KG
-# fuzzy
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgistan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 #, fuzzy
@@ -2663,77 +3385,23 @@ msgstr "Gambija"
 msgid "Lao"
 msgstr "Libanon"
 
-# CD
-# fuzzy
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-#, fuzzy
-msgid "Lao People's Democratic Republic"
-msgstr "Lao Narodna Demokratska Republika"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 #, fuzzy
 msgid "Latin"
 msgstr "Latviski"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latvija"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Latviski"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-# LS
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesoto"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 #, fuzzy
 msgid "Lezghian"
 msgstr "Belgijski"
 
-# LR
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberija"
-
-# LY
-# fuzzy
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Liberija"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Linhenštajn"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 #, fuzzy
@@ -2747,38 +3415,17 @@ msgstr "Luksemburg"
 msgid "Lingala"
 msgstr "Angola"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litvanija"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Litvanski"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-#, fuzzy
-msgid "Lojban"
-msgstr "Libanon"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-#, fuzzy
-msgid "Low German"
-msgstr "Njemački"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
+# CG
+#. language code: lol
+#: zypp/LanguageCode.cc:675
 #, fuzzy
-msgid "Lower Sorbian"
-msgstr "Srpski"
+msgid "Mongo"
+msgstr "Kongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
@@ -2786,26 +3433,34 @@ msgstr "Srpski"
 msgid "Lozi"
 msgstr "Prijava"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr ""
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+#, fuzzy
+msgid "Luxembourgish"
+msgstr "Luksemburg"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr ""
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr ""
+
+# GH
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+#, fuzzy
+msgid "Ganda"
+msgstr "Gana"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr ""
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 #, fuzzy
@@ -2823,37 +3478,11 @@ msgstr ""
 msgid "Lushai"
 msgstr "Tajlandski"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luksemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-#, fuzzy
-msgid "Luxembourgish"
-msgstr "Luksemburg"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Makao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonija"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Makedonski"
 
-# MG
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 #, fuzzy
@@ -2864,8 +3493,15 @@ msgstr "Maltski"
 #. language code: mag
 #: zypp/LanguageCode.cc:701
 #, fuzzy
-msgid "Magahi"
-msgstr "Malavi"
+msgid "Magahi"
+msgstr "Malavi"
+
+# MH
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+#, fuzzy
+msgid "Marshallese"
+msgstr "Maršalova ostrva"
 
 # ML
 #. language code: mai
@@ -2881,141 +3517,34 @@ msgstr "Mali"
 msgid "Makasar"
 msgstr "Madagaskar"
 
-# MG
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-#, fuzzy
-msgid "Malagasy"
-msgstr "Madagaskar"
-
-# MW
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malavi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-#, fuzzy
-msgid "Malay"
-msgstr "Malta"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 #, fuzzy
 msgid "Malayalam"
 msgstr "Malezija"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malezija"
-
-# MV
-# fuzzy
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Mali"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-# ML
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltski"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-#, fuzzy
-msgid "Manchu"
-msgstr "&Pokreni"
-
-# MM
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-#, fuzzy
-msgid "Mandar"
-msgstr "Myanmar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 #, fuzzy
 msgid "Mandingo"
 msgstr "Upozorenje"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-#, fuzzy
-msgid "Manipuri"
-msgstr "Maorski"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-#, fuzzy
-msgid "Manobo Languages"
-msgstr "Managva"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-#, fuzzy
-msgid "Manx"
-msgstr "Manila"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maorski"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 #, fuzzy
 msgid "Marathi"
 msgstr "Maorski"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-#, fuzzy
-msgid "Mari"
-msgstr "Maorski"
-
-# MH
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Maršalova ostrva"
-
-# MH
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-#, fuzzy
-msgid "Marshallese"
-msgstr "Maršalova ostrva"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinik"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-#, fuzzy
-msgid "Marwari"
-msgstr "Maorski"
-
 # MW
 #. language code: mas
 #: zypp/LanguageCode.cc:721
@@ -3023,49 +3552,23 @@ msgstr "Maorski"
 msgid "Masai"
 msgstr "Malavi"
 
-# MR
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritanija"
-
-# MU
-# fuzzy
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauricijus"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
 #, fuzzy
-msgid "Mayan Languages"
-msgstr "Managva"
-
-# YT
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+msgid "Malay"
+msgstr "Malta"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+# MM
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+#, fuzzy
+msgid "Mandar"
+msgstr "Myanmar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
@@ -3073,16 +3576,11 @@ msgstr ""
 msgid "Mende"
 msgstr "Mod"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Meksiko"
-
 #. language code: mic
 #: zypp/LanguageCode.cc:735
 msgid "Mi'kmaq"
@@ -3093,63 +3591,57 @@ msgstr ""
 msgid "Minangkabau"
 msgstr ""
 
-# FM
-# fuzzy
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-#, fuzzy
-msgid "Mirandese"
-msgstr "Maine"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 #, fuzzy
 msgid "Miscellaneous Languages"
 msgstr "Odaberite vaš jezik:"
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
-msgstr ""
-
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
+# MG
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
 #, fuzzy
-msgid "Moldavian"
-msgstr "Moldova"
+msgid "Malagasy"
+msgstr "Madagaskar"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltski"
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr ""
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+#, fuzzy
+msgid "Manchu"
+msgstr "&Pokreni"
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monako"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+#, fuzzy
+msgid "Manipuri"
+msgstr "Maorski"
 
-# CG
-#. language code: lol
-#: zypp/LanguageCode.cc:675
+#. language code: mno
+#: zypp/LanguageCode.cc:751
 #, fuzzy
-msgid "Mongo"
-msgstr "Kongo"
+msgid "Manobo Languages"
+msgstr "Managva"
 
-# MN
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolija"
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
+msgstr ""
+
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+#, fuzzy
+msgid "Moldavian"
+msgstr "Moldova"
 
 # MN
 #. language code: mon mn
@@ -3158,36 +3650,12 @@ msgstr "Mongolija"
 msgid "Mongolian"
 msgstr "Mongolija"
 
-# CG
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "Kongo"
-
-# MS
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Moroko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 #, fuzzy
 msgid "Mossi"
 msgstr "Maorski"
 
-# MZ
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambik"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 #, fuzzy
@@ -3200,44 +3668,68 @@ msgstr "Jezik"
 msgid "Munda languages"
 msgstr "Jezik"
 
-# MM
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+#, fuzzy
+msgid "Creek"
+msgstr "Grčki"
+
+# FM
+# fuzzy
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+#, fuzzy
+msgid "Mirandese"
+msgstr "Maine"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+#, fuzzy
+msgid "Marwari"
+msgstr "Maorski"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+#, fuzzy
+msgid "Mayan Languages"
+msgstr "Managva"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr ""
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr ""
 
-# NA
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibija"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+#, fuzzy
+msgid "North American Indian"
+msgstr "Sjeverna Irska"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr ""
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navaho"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr ""
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr ""
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr ""
+
 # TO
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
@@ -3245,15 +3737,17 @@ msgstr ""
 msgid "Ndonga"
 msgstr "Tonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr ""
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+#, fuzzy
+msgid "Low German"
+msgstr "Njemački"
 
 # NP
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+#, fuzzy
+msgid "Nepali"
 msgstr "Nepal"
 
 # NP
@@ -3263,77 +3757,16 @@ msgstr "Nepal"
 msgid "Nepal Bhasa"
 msgstr "Nepal"
 
-# NP
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-#, fuzzy
-msgid "Nepali"
-msgstr "Nepal"
-
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Nizozemska"
-
-# AN
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Nizozemski Antili"
-
-# NC
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nova Kaledonija"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Novi Zeland"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
-
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nikaragva"
-
-# NE
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-# NG
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigerija"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-# NU
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 # NU
 #. language code: niu
 #: zypp/LanguageCode.cc:801
@@ -3341,16 +3774,17 @@ msgstr "Niue"
 msgid "Niuean"
 msgstr "Niue"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
 #, fuzzy
-msgid "No Code"
-msgstr "nobody"
+msgid "Norwegian Nynorsk"
+msgstr "Norveški"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr ""
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+#, fuzzy
+msgid "Norwegian Bokmal"
+msgstr "Norveški"
 
 # TO
 #. language code: nog
@@ -3359,40 +3793,15 @@ msgstr ""
 msgid "Nogai"
 msgstr "Tonga"
 
-# NF
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolk ostrvo"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-#, fuzzy
-msgid "North American Indian"
-msgstr "Sjeverna Irska"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-#, fuzzy
-msgid "North Korea"
-msgstr "Sjeverna Irska"
-
-# MP
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Sjeverna Marijanska ostrva"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-#, fuzzy
-msgid "Northern Sami"
-msgstr "Sjeverna Irska"
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
+msgstr "Norveški"
 
 #. language code: nso
 #: zypp/LanguageCode.cc:813
@@ -3400,37 +3809,23 @@ msgstr "Sjeverna Irska"
 msgid "Northern Sotho"
 msgstr "Sjeverna Irska"
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norveška"
-
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
-msgstr "Norveški"
-
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
+#. language code: nub
+#: zypp/LanguageCode.cc:815
 #, fuzzy
-msgid "Norwegian Bokmal"
-msgstr "Norveški"
+msgid "Nubian Languages"
+msgstr "Jezik"
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
 #, fuzzy
-msgid "Norwegian Nynorsk"
-msgstr "Norveški"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr ""
+msgid "Classical Newari"
+msgstr "Ime klase"
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
 #, fuzzy
-msgid "Nubian Languages"
-msgstr "Jezik"
+msgid "Chichewa"
+msgstr "Čile"
 
 #. language code: nym
 #: zypp/LanguageCode.cc:821
@@ -3455,11 +3850,6 @@ msgstr "Sjever"
 msgid "Nzima"
 msgstr "Lima"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "Izbrii"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3470,20 +3860,6 @@ msgstr ""
 msgid "Ojibwa"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 # SY
 # fuzzy
 #. language code: ori or
@@ -3510,73 +3886,40 @@ msgstr "Poruke"
 msgid "Ossetian"
 msgstr "Ruski"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr ""
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 #, fuzzy
 msgid "Otomian Languages"
 msgstr "Jezik"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+#, fuzzy
+msgid "Pangasinan"
+msgstr "Mađarski"
+
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 #, fuzzy
 msgid "Pahlavi"
 msgstr "Palau"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-#, fuzzy
-msgid "Palauan"
-msgstr "Palau"
-
-# IO
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-#, fuzzy
-msgid "Palestinian Territory"
-msgstr "Britansko-Indijska morska teritorija"
-
-# ML
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-#, fuzzy
-msgid "Pali"
-msgstr "Mali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 #, fuzzy
 msgid "Pampanga"
 msgstr "Paragvaj"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-#, fuzzy
-msgid "Pangasinan"
-msgstr "Mađarski"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 #, fuzzy
@@ -3588,35 +3931,15 @@ msgstr "Panama"
 msgid "Papiamento"
 msgstr ""
 
-# PG
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua Nova Gvineja"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr ""
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paragvaj"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+#, fuzzy
+msgid "Palauan"
+msgstr "Palau"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
 #. language code: per fas fa
@@ -3625,62 +3948,35 @@ msgstr ""
 msgid "Persian"
 msgstr "Srpski"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr ""
-
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
-
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 #, fuzzy
 msgid "Philippine (Other)"
 msgstr "Filipini"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipini"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 #, fuzzy
 msgid "Phoenician"
 msgstr "Slovenski"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitkairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
+# ML
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
 #, fuzzy
-msgid "Pohnpeian"
-msgstr "Infoneziski"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Poljska"
+msgid "Pali"
+msgstr "Mali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Poljski"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+#, fuzzy
+msgid "Pohnpeian"
+msgstr "Infoneziski"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3693,78 +3989,22 @@ msgstr "Portugalski"
 msgid "Prakrit Languages"
 msgstr "Jezik"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Riko"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 #, fuzzy
 msgid "Pushto"
 msgstr "&Prilagođeno"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Katar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr ""
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr ""
-
 # KZ
 # fuzzy
 #. language code: raj
@@ -3777,59 +4017,22 @@ msgstr "Kazahstan"
 #: zypp/LanguageCode.cc:887
 #, fuzzy
 msgid "Rapanui"
-msgstr "Japan"
-
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr ""
-
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr ""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
+msgstr "Japan"
 
-# RE
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
+msgstr ""
 
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Rumunija"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumunjki"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr ""
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
@@ -3837,6 +4040,11 @@ msgstr "Rumunjki"
 msgid "Romany"
 msgstr "Rumunija"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumunjki"
+
 # RE
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
@@ -3849,60 +4057,27 @@ msgstr "Reunion"
 msgid "Russian"
 msgstr "Ruski"
 
-# RU
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Ruska Federacija"
-
-# RW
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
-
-# SH
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Saint Helena"
-
-# KN
-# fuzzy
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-#, fuzzy
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts and Nevis"
-
-# LC
-# fuzzy
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
+#. language code: sad
+#: zypp/LanguageCode.cc:905
 #, fuzzy
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+msgid "Sandawe"
+msgstr "Kanada"
 
-# SM
-#: zypp/CountryCode.cc:297
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
 #, fuzzy
-msgid "Saint Martin"
-msgstr "San Marino"
+msgid "Sango"
+msgstr "Sajgon"
 
-# PM
-# fuzzy
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-#, fuzzy
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre and Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr ""
 
-# VC
-# fuzzy
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-#, fuzzy
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent and the Grenadines"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr ""
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3915,243 +4090,94 @@ msgstr "Jezik"
 msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-#, fuzzy
-msgid "Sami Languages (Other)"
-msgstr "Jezik"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-#, fuzzy
-msgid "Samoan"
-msgstr "Samoa"
-
-# SM
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-#, fuzzy
-msgid "Sandawe"
-msgstr "Kanada"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-#, fuzzy
-msgid "Sango"
-msgstr "Sajgon"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr ""
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-#, fuzzy
-msgid "Santali"
-msgstr "Šangaj"
-
-# ST
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome i Principe"
-
-# MR
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-#, fuzzy
-msgid "Sardinian"
-msgstr "Mauritanija"
-
 #. language code: sas
 #: zypp/LanguageCode.cc:919
 #, fuzzy
 msgid "Sasak"
 msgstr "Samoa"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudijska Arabija"
-
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-#, fuzzy
-msgid "Scots"
-msgstr "Jug"
-
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-#, fuzzy
-msgid "Selkup"
-msgstr "Pomoć"
-
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr ""
-
-# SN
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
+#. language code: sat
+#: zypp/LanguageCode.cc:921
 #, fuzzy
-msgid "Serbia"
-msgstr "Srpski"
+msgid "Santali"
+msgstr "Šangaj"
 
 #. language code: scc srp sr
 #: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
 msgid "Serbian"
 msgstr "Srpski"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-#, fuzzy
-msgid "Serer"
-msgstr "Servis"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
-
-# SC
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Sejšelsko otočje"
-
-# GH
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-#, fuzzy
-msgid "Shan"
-msgstr "Gana"
-
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-#, fuzzy
-msgid "Shona"
-msgstr "Slovenija"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-#, fuzzy
-msgid "Sichuan Yi"
-msgstr "Litvanija"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-#, fuzzy
-msgid "Sicilian"
-msgstr "Mičigen"
-
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-#, fuzzy
-msgid "Sidamo"
-msgstr "Samoa"
-
-# SL
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-#, fuzzy
-msgid "Sign Languages"
-msgstr "Jezik"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr ""
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+#, fuzzy
+msgid "Sicilian"
+msgstr "Mičigen"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+#, fuzzy
+msgid "Scots"
+msgstr "Jug"
 
-# %s is either BOOTP or DHCP
-#: zypp/repo/PackageProvider.cc:216
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Hrvatski"
+
+#. language code: sel
+#: zypp/LanguageCode.cc:935
 #, fuzzy
-msgid "Signature verification failed"
-msgstr "%s podešavanje nije uspjelo."
+msgid "Selkup"
+msgstr "Pomoć"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
 msgstr ""
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr ""
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+#, fuzzy
+msgid "Sign Languages"
+msgstr "Jezik"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
+# GH
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+#, fuzzy
+msgid "Shan"
+msgstr "Gana"
+
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+#, fuzzy
+msgid "Sidamo"
+msgstr "Samoa"
 
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 #, fuzzy
 msgid "Siouan Languages"
 msgstr "Odaberite vaš jezik:"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -4164,33 +4190,72 @@ msgstr ""
 msgid "Slovak"
 msgstr "Slovački"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovačka"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenija"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Slovenski"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr ""
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+#, fuzzy
+msgid "Northern Sami"
+msgstr "Sjeverna Irska"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+#, fuzzy
+msgid "Sami Languages (Other)"
+msgstr "Jezik"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr ""
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr ""
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+#, fuzzy
+msgid "Samoan"
+msgstr "Samoa"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr ""
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+#, fuzzy
+msgid "Shona"
+msgstr "Slovenija"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr ""
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+#, fuzzy
+msgid "Soninke"
+msgstr "Nastavi"
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 #, fuzzy
 msgid "Sogdian"
 msgstr "Prijava"
 
-# SB
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Solomoska ostrva"
-
 # SO
 #. language code: som so
 #: zypp/LanguageCode.cc:983
@@ -4198,108 +4263,51 @@ msgstr "Solomoska ostrva"
 msgid "Somali"
 msgstr "Somalija"
 
-# SO
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalija"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 #, fuzzy
 msgid "Songhai"
 msgstr "Šangaj"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-#, fuzzy
-msgid "Soninke"
-msgstr "Nastavi"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-#, fuzzy
-msgid "Sorbian Languages"
-msgstr "Odaberite vaš jezik:"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Južna Afrika"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr ""
-
-# GS
-# fuzzy
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "South Georgia i South Sandwich ostrvo"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-#, fuzzy
-msgid "South Korea"
-msgstr "Južni pol"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-#, fuzzy
-msgid "Southern Altai"
-msgstr "Južna Afrika"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr ""
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Španija"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Španski"
 
-# LK
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Šri Lanka"
-
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+# MR
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+#, fuzzy
+msgid "Sardinian"
+msgstr "Mauritanija"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr ""
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+#, fuzzy
+msgid "Serer"
+msgstr "Servis"
 
-#. language code: suk
-#: zypp/LanguageCode.cc:999
-msgid "Sukuma"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
+# HT
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
 #, fuzzy
-msgid "Sumerian"
-msgstr "Srpski"
+msgid "Swati"
+msgstr "Haiti"
+
+#. language code: suk
+#: zypp/LanguageCode.cc:999
+msgid "Sukuma"
+msgstr ""
 
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
@@ -4307,28 +4315,17 @@ msgstr "Srpski"
 msgid "Sundanese"
 msgstr "Sudan"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-# SR
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 #, fuzzy
 msgid "Susu"
 msgstr "Status"
 
-# SJ
-# fuzzy
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard and Jan Mayen ostrva"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+#, fuzzy
+msgid "Sumerian"
+msgstr "Srpski"
 
 # SZ
 #. language code: swa sw
@@ -4337,41 +4334,11 @@ msgstr "Svalbard and Jan Mayen ostrva"
 msgid "Swahili"
 msgstr "Svazilend"
 
-# HT
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-#, fuzzy
-msgid "Swati"
-msgstr "Haiti"
-
-# SZ
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Svazilend"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Švedska"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Švedski"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Švicarska"
-
-# SY
-# fuzzy
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Surinam"
-
 # SY
 # fuzzy
 #. language code: syr
@@ -4380,23 +4347,6 @@ msgstr "Surinam"
 msgid "Syriac"
 msgstr "Surinam"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 #, fuzzy
@@ -4408,41 +4358,11 @@ msgstr "Tahiti"
 msgid "Tai (Other)"
 msgstr ""
 
-# TW
-# fuzzy
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Tajland"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-#, fuzzy
-msgid "Tajik"
-msgstr "Tajlandski"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadžikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-#, fuzzy
-msgid "Tamashek"
-msgstr "Taškent"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamilski"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-#, fuzzy
-msgid "Tanzania"
-msgstr "Tasmanija"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 #, fuzzy
@@ -4455,6 +4375,12 @@ msgstr "Katar"
 msgid "Telugu"
 msgstr "Belgija"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+#, fuzzy
+msgid "Timne"
+msgstr "Vremenska zona"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4466,32 +4392,21 @@ msgstr ""
 msgid "Tetum"
 msgstr "&Testiraj"
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+#, fuzzy
+msgid "Tajik"
 msgstr "Tajlandski"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tajland"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr ""
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "Tajlandski"
 
 # TW
 # fuzzy
@@ -4515,50 +4430,27 @@ msgstr "Niger"
 msgid "Tigrinya"
 msgstr "Nigerija"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-#, fuzzy
-msgid "Timne"
-msgstr "Vremenska zona"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+#, fuzzy
+msgid "Klingon"
+msgstr "Sajgon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-# TG
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-# TK
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-# TO
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+#, fuzzy
+msgid "Tamashek"
+msgstr "Taškent"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4572,24 +4464,23 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr "Solomoska ostrva"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
-# TT
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad i Tobago"
-
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 #, fuzzy
 msgid "Tsimshian"
 msgstr "Ruski"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+#, fuzzy
+msgid "Tswana"
+msgstr "Bocvana"
+
 # TO
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
@@ -4597,11 +4488,11 @@ msgstr "Ruski"
 msgid "Tsonga"
 msgstr "Tonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
 #, fuzzy
-msgid "Tswana"
-msgstr "Bocvana"
+msgid "Turkmen"
+msgstr "Turska"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
@@ -4609,81 +4500,38 @@ msgstr "Bocvana"
 msgid "Tumbuka"
 msgstr "Timbuktu"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisia"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 #, fuzzy
 msgid "Tupi Languages"
 msgstr "Jezik"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turska"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turski"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr ""
+
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
 msgstr ""
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-#, fuzzy
-msgid "Turkmen"
-msgstr "Turska"
-
-# TM
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-# TC
-# fuzzy
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-#, fuzzy
-msgid "Turks and Caicos Islands"
-msgstr "Turks i Caicos ostrva"
-
-# TV
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 #, fuzzy
 msgid "Tuvinian"
 msgstr "Tunisia"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr ""
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-# UG
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 # HT
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
@@ -4696,11 +4544,6 @@ msgstr "Haiti"
 msgid "Uighur"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukrajina"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 #, fuzzy
@@ -4712,596 +4555,763 @@ msgstr "Ukrajina"
 msgid "Umbundu"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
 #, fuzzy
-msgid "Unable to create dbus connection"
-msgstr "channel to channel konekcija"
+msgid "Uzbek"
+msgstr "Uzbekistan"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+#, fuzzy
+msgid "Vai"
+msgstr "Vatikan"
+
+# VN
+# fuzzy
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+#, fuzzy
+msgid "Venda"
+msgstr "Vijetnam"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vijetnamski"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+#, fuzzy
+msgid "Votic"
+msgstr "Vatikan"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+#, fuzzy
+msgid "Wakashan Languages"
+msgstr "Managva"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+#, fuzzy
+msgid "Walamo"
+msgstr "Valonski"
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+#, fuzzy
+msgid "Waray"
+msgstr "Paragvaj"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+#, fuzzy
+msgid "Washo"
+msgstr "Welsh"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Welsh"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+#, fuzzy
+msgid "Sorbian Languages"
+msgstr "Odaberite vaš jezik:"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Valonski"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhosa"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Ujedinjeni Arapski Emirati"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+#, fuzzy
+msgid "Yapese"
+msgstr "Japanski"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Ujedinjeno Kraljevstvo (Velika Britanija)"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr ""
 
-# US
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "SAD"
+# AW
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+#, fuzzy
+msgid "Yoruba"
+msgstr "Aruba"
 
-# UM
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "United States Minor Outlying Islands"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+#, fuzzy
+msgid "Yupik Languages"
+msgstr "Jezik"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+#, fuzzy
+msgid "Zenaga"
+msgstr "Grenada"
+
+# BT
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+#, fuzzy
+msgid "Zhuang"
+msgstr "Butan"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr ""
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+#, fuzzy
+msgid "Zuni"
+msgstr "Tunis"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Ne mogu pokrenuti naredbu \"%s\""
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr ""
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr ""
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+# %s is either BOOTP or DHCP
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "%s podešavanje nije uspjelo."
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:975
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-#, fuzzy
-msgid "Upper Sorbian"
-msgstr "Srpski"
-
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Urugvaj"
-
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-#, fuzzy
-msgid "Uzbek"
-msgstr "Uzbekistan"
-
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-#, fuzzy
-msgid "Vai"
-msgstr "Vatikan"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "Nova instalacija"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr ""
 
-# VU
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Instaliram driver..."
 
-# VN
-# fuzzy
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-#, fuzzy
-msgid "Venda"
-msgstr "Vijetnam"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venecuela"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
 
-# VN
-# fuzzy
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vijetnam"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vijetnamski"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr ""
 
-# VI
-# fuzzy
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Djevičansko otočje (U.S.)"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "Votic"
-msgstr "Vatikan"
+msgid "uninstallable providers: "
+msgstr "&Nemoj instalirati"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-#, fuzzy
-msgid "Wakashan Languages"
-msgstr "Managva"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-#, fuzzy
-msgid "Walamo"
-msgstr "Valonski"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, fuzzy, c-format, boost-format
+msgid "do not install %s"
+msgstr "Instaliram driver..."
 
-# WF
-# fuzzy
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis i Futuna ostrva"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Valonski"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "Instaliram driver..."
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-#, fuzzy
-msgid "Waray"
-msgstr "Paragvaj"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-#, fuzzy
-msgid "Washo"
-msgstr "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr ""
 
-# EH
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Zapadna Sahara"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "Instaliram driver..."
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "Izbrii"
+
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-#, fuzzy
-msgid "Yapese"
-msgstr "Japanski"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-# AW
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-#, fuzzy
-msgid "Yoruba"
-msgstr "Aruba"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-#, fuzzy
-msgid "Yupik Languages"
-msgstr "Jezik"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Instaliram driver..."
 
-# ZM
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambija"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-#, fuzzy
-msgid "Zenaga"
-msgstr "Grenada"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-# BT
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-#, fuzzy
-msgid "Zhuang"
-msgstr "Butan"
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Couldn't open file: %s."
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabve"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-#, fuzzy
-msgid "Zuni"
-msgstr "Tunis"
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Ne mogu pokrenuti naredbu \"%s\""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Instaliram driver..."
+msgid "Failed to mount %s on %s"
+msgstr "Failed to parse: %s."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:67
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
+msgid "Cannot write file '%s'."
 msgstr "Instaliram driver..."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "Instaliram driver..."
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, fuzzy, c-format, boost-format
-msgid "do not install %s"
-msgstr "Instaliram driver..."
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr ""
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-#, fuzzy
-msgid "invalid"
-msgstr "&Instaliraj"
-
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep %s"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "Izbrii"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr ""
+msgid "Cannot eject media '%s'"
+msgstr "Ne mogu pokrenuti naredbu \"%s\""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:199
+#, c-format, boost-format
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "Instaliram driver..."
-
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-#, fuzzy
-msgid "uninstallable providers: "
-msgstr "&Nemoj instalirati"
-
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "nepoznat"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
 #, fuzzy
-#~ msgid " Error!"
-#~ msgstr "Greška"
+#~ msgid "do not keep %s installed"
+#~ msgstr "Instaliram driver..."
+
+#, fuzzy
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Failed to parse: %s."
+
+#, fuzzy
+#~ msgid "rpm output:"
+#~ msgstr ""
+#~ "\n"
+#~ "Izvještaj:"
 
 #, fuzzy
 #~ msgid "%s install failed"
@@ -5312,61 +5322,55 @@ msgstr ""
 #~ msgstr "&Da, instaliraj"
 
 #, fuzzy
-#~ msgid ", Action: "
-#~ msgstr "3D ubrzanje:"
-
-#, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "Couldn't open file: %s."
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "Instaliram driver..."
 
 #, fuzzy
-#~ msgid "Default"
-#~ msgstr "&Podrazumjevani"
+#~ msgid "Install missing resolvables"
+#~ msgstr "Instaliram driver..."
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgid "Keep resolvables"
 #~ msgstr "Instaliram driver..."
 
 #, fuzzy
-#~ msgid "Establishing %s"
+#~ msgid "Unlock these resolvables"
 #~ msgstr "Instaliram driver..."
 
 #, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Failed to parse: %s."
+#~ msgid "install %s"
+#~ msgstr "Instaliram driver..."
 
 #, fuzzy
-#~ msgid "Install missing resolvables"
+#~ msgid "unlock all resolvables"
 #~ msgstr "Instaliram driver..."
 
 #, fuzzy
-#~ msgid "Keep resolvables"
-#~ msgstr "Instaliram driver..."
+#~ msgid "Can't open solv-file: "
+#~ msgstr "Couldn't open file: %s."
 
 #, fuzzy
 #~ msgid "No need to install %s"
 #~ msgstr "&Da, instaliraj"
 
-#~ msgid "Ok"
-#~ msgstr "U redu"
-
 #, fuzzy
-#~ msgid "Unlock these resolvables"
-#~ msgstr "Instaliram driver..."
+#~ msgid ", Action: "
+#~ msgstr "3D ubrzanje:"
 
 #, fuzzy
-#~ msgid "do not keep %s installed"
+#~ msgid "Establishing %s"
 #~ msgstr "Instaliram driver..."
 
 #, fuzzy
-#~ msgid "install %s"
-#~ msgstr "Instaliram driver..."
+#~ msgid " Error!"
+#~ msgstr "Greška"
+
+#~ msgid "Ok"
+#~ msgstr "U redu"
 
 #, fuzzy
-#~ msgid "rpm output:"
-#~ msgstr ""
-#~ "\n"
-#~ "Izvještaj:"
+#~ msgid "Default"
+#~ msgstr "&Podrazumjevani"
 
 #, fuzzy
 #~ msgid "to be installed (soft)"
@@ -5375,7 +5379,3 @@ msgstr ""
 #, fuzzy
 #~ msgid "to be uninstalled"
 #~ msgstr "&Da, instaliraj"
-
-#, fuzzy
-#~ msgid "unlock all resolvables"
-#~ msgstr "Instaliram driver..."
index 91be452..cd708ab 100644 (file)
--- a/po/ca.po
+++ b/po/ca.po
@@ -9,43 +9,112 @@ msgstr ""
 "Project-Id-Version: YaST (@memory@)\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2016-03-07 18:45+0100\n"
-"Last-Translator: David Medina <opensusecatala@gmail.com>\n"
-"Language-Team: Catalan\n"
+"PO-Revision-Date: 2016-05-17 15:26+0000\n"
+"Last-Translator: David Medina <medipas@gmail.com>\n"
+"Language-Team: Catalan <http://l10n.opensuse.org/projects/libzypp/master/ca/>"
+"\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 1.6.11\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 2.5\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"proveïdors no desistal·lables: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Excepció de Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "La cadena de consulta de l'URL de l'LDAP no és vàlida"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-"Problema de certificat SSL, verifiqueu que el certificat CA és correcte per "
-"a '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "El paràmetre de consulta de l'URL de l'LDAP \"%s\" no és vàlid"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "No es pot clonar l'objecte de l'URL"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "La referència d'objecte de l'URL buit no és vàlida"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "No es poden analitzar els components de l'URL"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "No es poden iniciar els atributs de mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "No es pot definir l'atribut de mutex recursiu"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "No es pot iniciar el mutex recursiu"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "No es pot obtenir el bloqueig de mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "No es pot alliberar el bloqueig de mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Proporciona"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Necessita prèviament"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Requereix"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Té conflicte"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Obsolets"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Recomana"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Suggereix"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Millora"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Suplements"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Tipus dubtós \"%s\" per a %u byte checksum \"%s\""
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
-msgstr "Executat"
+msgstr " executat"
 
 #: zypp/target/TargetImpl.cc:332
 msgid " execution failed"
-msgstr "Ha fallat l'execució"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr "execució omesa mentre s'avortava"
+msgstr " ha fallat l'execució"
 
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
@@ -55,114 +124,2058 @@ msgstr "execució omesa mentre s'avortava"
 msgid "%s already executed as %s)"
 msgstr "%s ja s'ha executat com a %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s entra en conflicte amb %s, proveït per %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " execució omesa mentre s'avortava"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s no pertany a un repositori d'actualització de la distribució"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr ""
+"S'ha produït un error durant l'enviament de la notificació d'actualització."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s té una arquitectura inferior"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Nou missatge d'actualització"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s no és instal·lable"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "La instal·lació s'ha avortat tal com heu indicat."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s està proveït pel sistema i no es pot esborrar"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
+"Perdoneu, però aquesta versió de libzypp va ser construïda sense suport HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s fa(n) obsolet(s) %s proveït(s) per %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "El HalContext no està connectat"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s necessita %s, però aquest requeriment no es pot satisfer"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "El HalDrive no està iniciat"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(CADUCADA)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "El HalVolume no està iniciat"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(no caduca)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "No es pot crear la connexió dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(caduca d'aquí a %d dia)"
-msgstr[1] "(caduca d'aquí a %d dies)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: No es pot crear el context libhal"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(caduca d'aquí a 24 h)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: No es pot definir la connexió de dbus"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhàzia"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "No es pot iniciar el context HAL. No s'executa hald?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Atjeh"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "No és una unitat de CD-ROM"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "Ha fallat l'RPM: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Error a l'hora d'importar la clau pública del fitxer %s: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Afegint el repositori %s"
+msgid "Failed to remove public key %s: %s"
+msgstr "Error en eliminar la clau pública %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Contracte addicional de client necessari"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Fitxers de configuració modificats per a %s:"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "Sortida addicional de l'rpm"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"L'rpm ha desat %s com a %s però no ha estat possible determinar-ne la "
+"diferència"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adigué"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"L'rpm ha desat %s com a %s.\n"
+"Aquestes són les primeres 25 línies de diferència:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"L'rpm ha creat %s com a %s però no ha estat possible determinar-ne la "
+"diferència"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"L'rpm ha creat %s com a %s.\n"
+"Aquestes són les primeres 25 línies de diferència:\n"
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "Sortida addicional de l'rpm"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "còpia de seguretat creada %s"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "La signatura és correcta"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Tipus de signatura desconeguda"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "La signatura no es verifica"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "La signatura és correcta, però no és de confiança"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "La clau pública de signatures no està disponible"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "El fitxer no existeix o la signatura no es pot comprovar"
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Es duran a terme aquestes accions:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "No es pot llegir el directori del repositori %1%: permís denegat"
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Error a l'hora de llegir el directori %s"
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "No es pot llegir el fitxer de repositori %1%: permís denegat"
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "L'àlies del repositori no pot començar amb un punt."
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "L'àlies del servei no pot començar amb un punt."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "No es pot obrir el fitxer %s per a l'escriptura."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+"Servei desconegut \"%1%\": Eliminant el repositori de serveis orfes %2%"
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "No s'han trobat metadades vàlides a l'URL especificat"
+msgstr[1] "No s'han trobat metadades vàlides als URL especificats"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "No es pot crear %s"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "No es pot crear el directori cau de metadades."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Construint la memòria cau del repositori %s"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+"No es pot crear la memòria cau a %s - no se'n té permisos d'escriptura."
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Error a l'hora de carregar el repositori (%d) a la memòria cau."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Tipus de repositori no manejat"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Error en intentar llegir de '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Error desconegut a l'hora de llegir '%s'"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Afegint el repositori %s"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Nom de repositori no vàlid a \"%s\""
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Eliminant el repositori %s"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "No es pot esbrinar on es desa el repositori."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "No es pot esborrar %s"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "No s'ha sabut trobar on es guarda el servei."
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "L'esquema de l'URL no permet un %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "El component %s no és vàlid %s"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Component de %s no vàlid"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "No s'admet l'anàlisi de cadenes de consulta per a aquesta URL"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "L'esquema de l'URL és un component necessari"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "L'esquema de l'URL \"%s\" no és vàlid"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "L'esquema de l'URL no permet un nom d'usuari"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "L'esquema de l'URL no permet una contrasenya"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "L'esquema de l'URL requereix un component d'ordinador central"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "L'esquema de l'URL no permet un component d'ordinador central"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "El component de l'ordinador central \"%s\" no és vàlid"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "L'esquema de l'URL no permet un port"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "El component de port \"%s\" no és vàlid"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "L'esquema de l'URL requereix un nom de camí"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "No es permet un camí relatiu si existeix una autoritat"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "La cadena codificada conté un byte NUL"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "El caràcter separador de divisió de matriu de paràmetres no és vàlid"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+"El caràcter separador de divisió d'assignació de paràmetres no és vàlid"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "El caràcter separador d'unió de matriu de paràmetres no és vàlid"
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "No es pot obrir pty (%s)."
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "No es pot obrir pipe (%s)."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "No es pot fer chroot a \"%s\" (%s)."
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "No es pot fer chdir a \"%s\" dins chroot \"%s\" (%s)."
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "No es pot fer chdir a \"%s\" (%s)."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "No es pot executar \"%s\" (%s)."
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "No es pot bifurcar (%s)."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "L'ordre ha acabat amb l'estatus %d."
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "L'ordre s'ha aturat a causa del senyal %d (%s)."
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "L'ordre s'ha executat sense que hi hagués cap error conegut."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(no caduca)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(CADUCADA)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(caduca d'aquí a 24 h)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(caduca d'aquí a %d dia)"
+msgstr[1] "(caduca d'aquí a %d dies)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "desconegut"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "no suportat"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Nivell 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Nivell 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Nivell 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Contracte addicional de client necessari"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "invàlid"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "El nivell de suport no està especificat."
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "El proveïdor ja no n'ofereix suport."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Determinació de problema, la qual cosa significa suport tècnic dissenyat per "
+"oferir compatibilitat d'informació, assistència d'instal·lació, suport d'ús, "
+"manteniment continu i resolució bàsica de problemes. El suport de nivell 1 "
+"no està pensat per corregir errors de defecte del producte."
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"L'aïllament de problemes, que significa el suport tècnic dissenyat per "
+"duplicar els problemes del client, aïlla l'àrea del problema i proporciona "
+"la solució dels problemes no resolts pel nivell 1 de suport."
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Resolució de problema, la qual cosa significa suport tècnic dissenyat per "
+"resoldre problemes complexos a través d'enginyeria de resolució de defectes "
+"de producte que s'han identificat amb el suport de nivell 2."
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "Un contracte addicional de client és necessari per obtenir-ne suport."
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Opció de suport desconeguda. No n'hi ha descripció disponible."
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "País desconegut: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Sense codi"
+
+# AD
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+# AE
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Unió dels Emirats Àrabs"
+
+# AF
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistan"
+
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua i Barbuda"
+
+# AI
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+# AL
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albània"
+
+# AM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armènia"
+
+# AN
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Antilles Holandeses"
+
+# AO
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+# AQ
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antàrtida"
+
+# AR
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+# AS
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Samoa Americana"
+
+# AT
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Àustria"
+
+# AU
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Austràlia"
+
+# AW
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+# KY
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Illes Aland"
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaidjan"
+
+# BA
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bòsnia i Hercegovina"
+
+# BB
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+# BD
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangla Desh"
+
+# BE
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Bèlgica"
+
+# BF
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+# BG
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgària"
+
+# BH
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
+
+# BI
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+# BJ
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benín"
+
+# BM
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermudes"
+
+# BN
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei"
+
+# BO
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolívia"
+
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasil"
+
+# BS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahames"
+
+# BT
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
+
+# BV
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Illa Bouvet"
+
+# BW
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+# BY
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Bielorússia"
+
+# BZ
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+# CA
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canadà"
+
+# CC
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Illes Cocos (Keeling)"
+
+# CG
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo"
+
+# CF
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "República Centreafricana"
+
+# CH
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Suïssa"
+
+# CI
+# fuzzy
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Costa d'Ivori"
+
+# CK
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Illes Cook"
+
+# CL
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Xile"
+
+# CM
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Camerun"
+
+# CN
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Xina"
+
+# CO
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colòmbia"
+
+# CR
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
+
+# CV
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Cap Verd"
+
+# CX
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Illa Christmas"
+
+# CY
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Xipre"
+
+# CZ
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "República Txeca"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Alemanya"
+
+# DJ
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
+
+# DK
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Dinamarca"
+
+# DM
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+# DO
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "República Dominicana"
+
+# DZ
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algèria"
+
+# EC
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Equador"
+
+# EE
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estònia"
+
+# EG
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egipte"
+
+# EH
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Sàhara Occidental"
+
+# ER
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+# ES
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Espanya"
+
+# ET
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiòpia"
+
+# FI
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finlàndia"
+
+# FJ
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+# FK
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Illes Malvines (Falkland)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Estats federats de Micronèsia"
+
+# FO
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Illes Fèroe"
+
+# FR
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "França"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "França metropolitana"
+
+# GA
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Regne Unit"
+
+# GD
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+# GE
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Geòrgia"
+
+# GF
+# fuzzy
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Guaiana Francesa"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+# GH
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+# GI
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+# GL
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Groenlàndia"
+
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gàmbia"
+
+# GN
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+# GP
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadalupe"
+
+# GQ
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Guinea Equatorial"
+
+# GR
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grècia"
+
+# GS
+# fuzzy
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Illes Geòrgia del Sud i Sandwich del Sud"
+
+# GT
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+# GU
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+# GW
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea Bissau"
+
+# GY
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+# HK
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+# HM
+# fuzzy
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Illa Heard i illes McDonald"
+
+# HN
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Hondures"
+
+# HR
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Croàcia"
+
+# HT
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haití"
+
+# HU
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hongria"
+
+# ID
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonèsia"
+
+# IE
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irlanda"
+
+# IL
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Illa de l'home"
+
+# IN
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Índia"
+
+# IO
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Territori Britànic de l'Oceà Índic"
+
+# IQ
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Iraq"
+
+# IR
+# fuzzy
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+# IS
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islàndia"
+
+# IT
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Itàlia"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+# JM
+# fuzzy
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+# JO
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordània"
+
+# JP
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japó"
+
+# KE
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
+
+# KG
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirguizistan"
+
+# KH
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Cambodja"
+
+# KI
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+# KM
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comores"
+
+# KN
+# fuzzy
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Christopher i Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Corea del Nord"
+
+# ZA
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Corea del Sud"
+
+# KW
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+# KY
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Illes Caiman"
+
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazakhstan"
+
+# CD
+# fuzzy
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "República democràtica popular de Laos"
+
+# LB
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Líban"
+
+# LC
+# fuzzy
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
+
+# LI
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+# LK
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Libèria"
+
+# LS
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+# LT
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lituània"
+
+# LU
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxemburg"
+
+# LV
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Letònia"
+
+# LY
+# fuzzy
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libèria"
+
+# MA
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marroc"
+
+# MC
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Mònaco"
+
+# MD
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldàvia"
+
+# CG
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
+
+# SM
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Sant Martí"
+
+# MG
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagascar"
+
+# MH
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Illes Marshall"
+
+# MK
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedònia"
+
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+# MM
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
+
+# MN
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongòlia"
+
+# MO
+# fuzzy
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macau"
+
+# MP
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Illes Mariannes del Nord"
+
+# MQ
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinica"
+
+# MR
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritània"
+
+# MS
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+# MT
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Maurici"
+
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Mali"
+
+# MW
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+# MX
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mèxic"
+
+# MY
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malàisia"
+
+# MZ
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Moçambic"
+
+# NA
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namíbia"
+
+# NC
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nova Caledònia"
+
+# NE
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Níger"
+
+# NF
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Illa Norfolk"
+
+# NG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigèria"
+
+# NI
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+# NL
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Països Baixos"
+
+# NO
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Noruega"
+
+# NP
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+# NR
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauruà"
+
+# NU
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+# NZ
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nova Zelanda"
+
+# OM
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+# PA
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panamà"
+
+# PE
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Perú"
+
+# PF
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Polinèsia francesa"
+
+# PG
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Nova Guinea"
+
+# PH
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipines"
+
+# PK
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+# PL
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polònia"
+
+# PM
+# fuzzy
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint-Pierre-et-Miquelon"
+
+# PN
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+# PR
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+# IO
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Territori palestí"
+
+# PT
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+# PW
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+# PY
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguai"
+
+# QA
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+# RE
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Illa de la Reunió"
+
+# RO
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romania"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Sèrbia"
+
+# RU
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Rússia"
+
+# RW
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+# SA
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Aràbia Saudita"
+
+# SB
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Illes Salomó"
+
+# SC
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychelles"
+
+# SD
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+# SE
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Suècia"
+
+# SG
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
+
+# SH
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Saint Helena"
+
+# SI
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Eslovènia"
+
+# SJ
+# fuzzy
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Illes Svalbard i Jan Mayen"
+
+# SK
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Eslovàquia"
+
+# SL
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+# SM
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+# SN
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+# SO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somàlia"
+
+# SR
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+# ST
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome i Príncipe"
+
+# SV
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+# SY
+# fuzzy
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Síria"
+
+# SZ
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swazilàndia"
+
+# TC
+# fuzzy
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Illes Turks i Caicos"
+
+# TD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Txad"
+
+# TF
+# fuzzy
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Territoris Francesos del Sud"
+
+# TG
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+# TH
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tailàndia"
+
+# TJ
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadjikistan"
+
+# TK
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelauès"
+
+# TM
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+# TN
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunísia"
+
+# TO
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Timor Oriental"
+
+# TR
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turquia"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinitat i Tobago"
+
+# TV
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvaluà"
+
+# TW
+# fuzzy
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Tailàndia"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzània"
+
+# UA
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ucraïna"
+
+# UG
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+# UM
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Illes Perifèriques Menors dels EUA"
+
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Estats Units"
+
+# UY
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguai"
+
+# UZ
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+# VA
+# fuzzy
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Ciutat del Vaticà (Santa Seu)"
+
+# VC
+# fuzzy
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Saint Vincent i les Grenadines"
+
+# VE
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Veneçuela"
+
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Illes Verges Britàniques"
+
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Illes Verges Americanes"
+
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+# VU
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+# WF
+# fuzzy
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Illes Wallis i Futuna"
+
+# WS
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+# YE
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Iemen"
+
+# YT
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+# ZA
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Sud-àfrica"
+
+# ZM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zàmbia"
+
+# ZW
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "L'idioma és desconegut: "
 
 #. language code: aar aa
 #: zypp/LanguageCode.cc:161
 msgid "Afar"
 msgstr "Àfar"
 
-# AF
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistan"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abkhàzia"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Atjeh"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adigué"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Llengües afroasiàtiques (altres)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -174,11 +2187,6 @@ msgstr "Afrihili"
 msgid "Afrikaans"
 msgstr "Afrikaans"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Llengües afroasiàtiques (altres)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -186,25 +2194,13 @@ msgstr "Ainu"
 
 #. language code: aka ak
 #: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Àkan"
-
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Accadi"
-
-# KY
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Illes Aland"
+msgid "Akan"
+msgstr "Àkan"
 
-# AL
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albània"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Accadi"
 
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
@@ -216,65 +2212,26 @@ msgstr "Albanès"
 msgid "Aleut"
 msgstr "Aleutià"
 
-# DZ
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algèria"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "Llengües algonquines"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Llengües altaïques (altres)"
-
-# AS
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Samoa Americana"
+# ZA
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Altaic meridional"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "Amhàric"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Un contracte addicional de client és necessari per obtenir-ne suport."
-
-# AD
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
-
-# AO
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-# AI
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
-
-# AQ
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antàrtida"
-
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua i Barbuda"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Anglès antic (ca.450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -286,42 +2243,15 @@ msgstr "Llengües Apatxe"
 msgid "Arabic"
 msgstr "Àrab"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonès"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "Arameu"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
-
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Araucà"
-
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arauac"
-
-# AR
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
-
-# AM
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armènia"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonès"
 
 # AM
 #. language code: arm hye hy
@@ -329,16 +2259,25 @@ msgstr "Armènia"
 msgid "Armenian"
 msgstr "Armeni"
 
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Araucà"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
+
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "Llengües artificials (altres)"
 
-# AW
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arauac"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -357,34 +2296,11 @@ msgid "Athapascan Languages"
 msgstr "Llengües atapascanes"
 
 # AU
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Austràlia"
-
-# AU
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "Llengües australianes"
 
-# AT
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Àustria"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Llengües autronèsies (altres)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Cal autenticació per a '%s'"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -406,47 +2322,26 @@ msgstr "Awadhi"
 msgid "Aymara"
 msgstr "Aymara"
 
-# AZ
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaidjan"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Àzeri"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Mal nom de fitxer: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Mal punt de contacte del mitjà"
-
-# BS
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahames"
-
-# BH
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+# CA
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinès"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Llengües bamileké"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Llengües bàltiques (altres)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Baixkir"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -459,83 +2354,36 @@ msgstr "Balutxi"
 msgid "Bambara"
 msgstr "Bambara"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Llengües bamileké"
-
-# CA
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
-
-# BD
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangla Desh"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Llengües bantus (altres)"
-
-# BB
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
-
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
-
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Baixkir"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinès"
 
 #. language code: baq eus eu
 #: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 msgid "Basque"
 msgstr "Basc"
 
-# ID
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonèsia)"
-
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Beja"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
 
-# BY
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Bielorússia"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Llengües bàltiques (altres)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Beja"
 
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "Bielorús"
 
-# BE
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Bèlgica"
-
-# BZ
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
-
 # BM
 #. language code: bem
 #: zypp/LanguageCode.cc:261
@@ -548,34 +2396,16 @@ msgstr "Bemba"
 msgid "Bengali"
 msgstr "Bengalí"
 
-# BJ
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benín"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "Llengües berbers (altres)"
 
-# BM
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermudes"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "Bhojpuri"
 
-# BT
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
-
 # BH
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
@@ -598,287 +2428,75 @@ msgstr "Bini"
 msgid "Bislama"
 msgstr "Bislama"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Bilin"
-
-# BO
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolívia"
-
-# BA
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bòsnia i Hercegovina"
-
-# BW
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosni"
-
-# BW
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-# BV
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Illa Bouvet"
-
-# BR
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Braj"
-
-# BR
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasil"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Francès"
-
-# IO
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Territori Britànic de l'Oceà Índic"
-
-# VI
-# fuzzy
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Illes Verges Britàniques"
-
-# BN
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Bugui"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Construint la memòria cau del repositori %s"
-
-# BG
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgària"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Búlgar"
-
-# BG
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriat"
-
-# BF
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Birmà"
-
-# BI
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
-
-# TD
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Caddo"
-
-# KH
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Cambodja"
-
-# CM
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Camerun"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "No es pot crear sat-pool."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "No es pot obtenir el bloqueig de mutex"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "No es pot fer chdir a \"%s\" (%s)."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "No es pot fer chdir a \"%s\" dins chroot \"%s\" (%s)."
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "No es pot fer chroot a \"%s\" (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "No es pot crear %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-"No es pot crear la memòria cau a %s - no se'n té permisos d'escriptura."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "No es pot crear el directori cau de metadades."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "No es pot esborrar %s"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "No es pot executar \"%s\" (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "No es pot esbrinar on es desa el repositori."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "No s'ha sabut trobar on es guarda el servei."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "No es pot bifurcar (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "No es poden iniciar els atributs de mutex"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "No es pot iniciar el mutex recursiu"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "No es pot obrir el fitxer %s per a l'escriptura."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "No es pot obrir el fitxer de blocatge: %s."
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "No es pot obrir pipe (%s)."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Blackfoot"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "No es pot obrir pty (%s)."
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Llengües bantus (altres)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "No es pot proporcionar el fitxer %s des del repositori %s"
+# BW
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosni"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "No es pot alliberar el bloqueig de mutex"
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Braj"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "No es pot definir l'atribut de mutex recursiu"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Francès"
 
-# CA
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canadà"
+# ID
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonèsia)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "No es pot expulsar el mitjà."
+# BG
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriat"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "No es pot expulsar el suport %s"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Bugui"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"No es pot trobar un dispositiu loop disponible per muntar el fitxer d'imatge "
-"de '%s'"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Búlgar"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "No es pot llegir el directori del repositori %1%: permís denegat"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Birmà"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "No es pot llegir el fitxer de repositori %1%: permís denegat"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Bilin"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "No es pot escriure al fitxer %s."
+# TD
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Caddo"
 
-# CV
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Cap Verd"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Llengües ameríndies d'Amèrica Central (altres)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -895,12 +2513,6 @@ msgstr "Català"
 msgid "Caucasian (Other)"
 msgstr "Llengües caucàsiques (altres)"
 
-# KY
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Illes Caiman"
-
 # LB
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
@@ -912,178 +2524,83 @@ msgstr "Cebuano"
 msgid "Celtic (Other)"
 msgstr "Llengües cèltiques (altres)"
 
-# CF
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "República Centreafricana"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Llengües ameríndies d'Amèrica Central (altres)"
-
-# TD
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Txad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Txagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Llengües txàmiques"
-
 # KM
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Fitxers de configuració modificats per a %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Txetxè"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Xeienne"
-
 # CN
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Txibtxa"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Nyanja"
-
-# CL
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Xile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Txetxè"
 
-# CN
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Xina"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Txagatai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Xinès"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukese"
+
+# ML
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Pidgin Chinook"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyan"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Choctaw"
 
-# CX
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Illa Christmas"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "Eslavònic"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukese"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
-msgstr "Txuvaix"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Newari clàssic"
-
-# CC
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Illes Cocos (Keeling)"
-
-# CO
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colòmbia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "L'ordre ha acabat amb l'estatus %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "L'ordre s'ha executat sense que hi hagués cap error conegut."
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "L'ordre s'ha aturat a causa del senyal %d (%s)."
-
-# KM
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comores"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Té conflicte"
+msgstr "Txuvaix"
 
-# CG
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Xeienne"
 
-# CK
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Illes Cook"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Llengües txàmiques"
 
 # CR
 #. language code: cop
@@ -1102,34 +2619,6 @@ msgstr "Còrnic"
 msgid "Corsican"
 msgstr "Cors"
 
-# CR
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-# CI
-# fuzzy
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Costa d'Ivori"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Llengües criolles i pidgins (altres)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1145,50 +2634,36 @@ msgstr "Criolls i pidgins (basats en el francès) (altres)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Criolls i pidgins (basats en el portuguès) (altres)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Tàrtar de Crimea"
 
-# HR
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Croàcia"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Croat"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Llengües criolles i pidgins (altres)"
 
-# CU
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Caixubi"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Llengües cuixítiques (altres)"
 
-# CY
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Xipre"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Txec"
 
-# CZ
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "República Txeca"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1214,11 +2689,15 @@ msgstr "Daiak"
 msgid "Delaware"
 msgstr "Delaware"
 
-# DK
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Dinamarca"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slave (atapascà)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1230,78 +2709,37 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Divehi"
 
-# DJ
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
-
-# DM
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-# DO
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "República Dominicana"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Error de baixada (curl) per a %s:\n"
-"Codi d'error: %s\n"
-"Missatge d'error: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "L'inici de la baixada (curl) ha fallat per a \"%s\""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Llengües dravidianes (altres)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Baix sòrab"
+
 # PW
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Tipus dubtós \"%s\" per a %u byte checksum \"%s\""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Neerlandès mitjà (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Holandès"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Neerlandès mitjà (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1313,28 +2751,11 @@ msgstr "Dyula"
 msgid "Dzongkha"
 msgstr "Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Timor Oriental"
-
-# EC
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Equador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-# EG
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egipte"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1345,116 +2766,31 @@ msgstr "Egipci antic"
 msgid "Ekajuk"
 msgstr "Ekajuk"
 
-# SV
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "Elamita"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Destinació buida a l'URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Sistema de fitxers buit a l'URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Nom d'hoste buit a l'URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "La cadena codificada conté un byte NUL"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
 msgstr "Anglès"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Anglès mitjà (1100-1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Anglès antic (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Millora"
-
-# GQ
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Guinea Equatorial"
-
-# ER
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"Hi ha hagut un error en establir les opcions de baixada (curl) per a '%s':"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
-"S'ha produït un error durant l'enviament de la notificació d'actualització."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Error en intentar llegir de '%s'"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Mordovià erzya"
-
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Anglès mitjà (1100-1500)"
+
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-# EE
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estònia"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estonià"
 
-# ET
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiòpia"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1465,88 +2801,21 @@ msgstr "Ewe"
 msgid "Ewondo"
 msgstr "Ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Error a l'hora de carregar el repositori (%d) a la memòria cau."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Error a l'hora d'esborrar la clau."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Error a l'hora d'importar la clau pública del fitxer %s: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Error a l'hora de muntar %s a %s"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "El paquet %s no s'ha pogut obtenir. Voleu intentar baixar-lo de nou?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Error a l'hora de llegir el directori %s"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Error en eliminar la clau pública %s: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Error a l'hora de desmuntar %s"
-
-# FK
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Illes Malvines (Falkland)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Fang"
 
-# HT
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-# FO
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Illes Fèroe"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "Feroès"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Estats federats de Micronèsia"
-
-# FJ
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
+# HT
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
 # FJ
 #. language code: fij fj
@@ -1554,174 +2823,12 @@ msgstr "Fiji"
 msgid "Fijian"
 msgstr "Fijià"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"El fitxer %1%\n"
-"  de la instal·lació de\n"
-"     %2%\n"
-"  té conflicte amb el fitxer\n"
-"     %3%\n"
-"  de la instal·lació de\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"El fitxer %1%\n"
-"  de la instal·lació de\n"
-"     %2%\n"
-"  té conflicte amb el fitxer\n"
-"     %3%\n"
-"  del paquet\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"El fitxer %1%\n"
-"  de la instal·lació de\n"
-"     %2%\n"
-"  té conflicte amb el fitxer de la instal·lació de\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"El fitxer %1%\n"
-"  de la instal·lació de\n"
-"     %2%\n"
-"  té conflicte amb el fitxer del paquet\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"El fitxer %1%\n"
-"  del paquet\n"
-"     %2%\n"
-"  té conflicte amb el fitxer\n"
-"     %3%\n"
-"  de la instal·lació de\n"
-"     %4%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"El fitxer %1%\n"
-"  del paquet\n"
-"     %2%\n"
-"  té conflicte amb el fitxer\n"
-"     %3%\n"
-"  del paquet\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"El fitxer %1%\n"
-"  del paquet\n"
-"     %2%\n"
-"  té conflicte amb el fitxer de la instal·lació de\n"
-"     %3%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"El fitxer %1%\n"
-"  del paquet\n"
-"     %2%\n"
-"  té conflicte amb el fitxer del paquet\n"
-"     %3%"
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "El fitxer %s no s'ha trobat al mitjà %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "El fitxer no existeix o la signatura no es pot comprovar"
-
 # PH
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Pilipí"
 
-# FI
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finlàndia"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1732,46 +2839,16 @@ msgstr "Finès"
 msgid "Finno-Ugrian (Other)"
 msgstr "Llengües finoúgriques (altres)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Es duran a terme aquestes accions:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-# FR
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "França"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Francès"
 
-# GF
-# fuzzy
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Guaiana Francesa"
-
-# PF
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Polinèsia francesa"
-
-# TF
-# fuzzy
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Territoris Francesos del Sud"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1787,17 +2864,17 @@ msgstr "Francès antic (842-ca.1400)"
 msgid "Frisian"
 msgstr "Frisó"
 
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
+msgstr "Ful"
+
 # FI
 #. language code: fur
 #: zypp/LanguageCode.cc:457
 msgid "Friulian"
 msgstr "Friülès"
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
-msgstr "Ful"
-
 # GU
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
@@ -1805,35 +2882,6 @@ msgid "Ga"
 msgstr "Ga"
 
 # GA
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-# ML
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaèlic"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Gallec"
-
-# GM
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gàmbia"
-
-# GH
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
-# GA
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1846,16 +2894,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Gueez"
-
-# GE
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Geòrgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Llengües germàniques (altres)"
 
 # GE
 #. language code: geo kat ka
@@ -1868,6 +2910,37 @@ msgstr "Georgià"
 msgid "German"
 msgstr "Alemany"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Gueez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertès"
+
+# ML
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaèlic"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irlandès"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Gallec"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1878,32 +2951,6 @@ msgstr "Alt alemany mitjà (ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Alt alemany antic (ca.750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Llengües germàniques (altres)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Alemanya"
-
-# GH
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-# GI
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertès"
-
 # IN
 #. language code: gon
 #: zypp/LanguageCode.cc:491
@@ -1926,12 +2973,6 @@ msgstr "Gòtic"
 msgid "Grebo"
 msgstr "Grebo"
 
-# GR
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grècia"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1942,69 +2983,16 @@ msgstr "Grec antic (fins el 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Grec modern (1453-)"
 
-# GL
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Groenlàndia"
-
-# GD
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-# GP
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadalupe"
-
-# GU
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guaraní"
 
-# GT
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-# GN
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-# GW
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-# GY
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -2016,56 +3004,22 @@ msgid "Haida"
 msgstr "Haida"
 
 # HT
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haití"
-
-# HT
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Crioll haitià"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Excepció de Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "El HalContext no està connectat"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "El HalDrive no està iniciat"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "El HalVolume no està iniciat"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Haussa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Heu habilitat tots els repositoris demanats?"
-
 # HT
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaià"
 
-# HM
-# fuzzy
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Illa Heard i illes McDonald"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -2092,16 +3046,6 @@ msgstr "Himachali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Historial:"
-
 # HT
 #. language code: hit
 #: zypp/LanguageCode.cc:529
@@ -2114,36 +3058,21 @@ msgstr "Hitita"
 msgid "Hmong"
 msgstr "Hmong"
 
-# VA
-# fuzzy
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Ciutat del Vaticà (Santa Seu)"
-
-# HN
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Hondures"
-
-# HK
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
+
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Alt Sorab"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Hongarès"
 
-# HU
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hongria"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2156,11 +3085,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-# IS
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islàndia"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2172,264 +3100,108 @@ msgstr "Islandès"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+# LT
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Ilocà"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Sami d'Inari"
-
-# IN
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Índia"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (Associació de la Llengua Auxiliar Internacional)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Llengües indoàries (altres)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Llengües indoeuropees (altres)"
-
-# ID
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonèsia"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonesi"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Llengües indoeuropees (altres)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Ingúix"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "La instal·lació s'ha avortat tal com heu indicat."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (International Auxiliary Language Association)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
 # IN
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Inupiaq"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Component de %s no vàlid"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "El component %s no és vàlid %s"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "El paràmetre de consulta de l'URL de l'LDAP \"%s\" no és vàlid"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "La cadena de consulta de l'URL de l'LDAP no és vàlida"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "L'esquema de l'URL \"%s\" no és vàlid"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "La referència d'objecte de l'URL buit no és vàlida"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "El component de l'ordinador central \"%s\" no és vàlid"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "El caràcter separador d'unió de matriu de paràmetres no és vàlid"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "El caràcter separador de divisió de matriu de paràmetres no és vàlid"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-"El caràcter separador de divisió d'assignació de paràmetres no és vàlid"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "El component de port \"%s\" no és vàlid"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Expressió regular no vàlida: \"%s\""
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Expressió regular no vàlida \"%s\": regcomp ha respost %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Nom de repositori no vàlid a \"%s\""
-
-# IR
-# fuzzy
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Llengües iràniques (altres)"
 
-# IQ
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Iraq"
-
-# IE
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irlanda"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irlandès"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Gaèlic irlandès mitjà (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Gaèlic irlandès antic (fins 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Iroquès"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Isle of Man"
-
-# IL
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italià"
 
-# IT
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Itàlia"
-
-# JM
-# fuzzy
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
-
-# JP
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japó"
-
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
-msgstr "Japonès"
-
 #. language code: jav jv
 #: zypp/LanguageCode.cc:579
 msgid "Javanese"
 msgstr "Javanès"
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-# JO
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordània"
+# LB
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
-msgstr "Judeoàrab"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
+msgstr "Japonès"
 
 #. language code: jpr
 #: zypp/LanguageCode.cc:585
 msgid "Judeo-Persian"
 msgstr "Judeopersa"
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardí"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
+msgstr "Judeoàrab"
+
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Karakalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2447,11 +3219,6 @@ msgstr "Kachin"
 msgid "Kalaallisut"
 msgstr "Grenlandès"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Calmuc"
-
 # GM
 #. language code: kam
 #: zypp/LanguageCode.cc:597
@@ -2464,21 +3231,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Karakalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Balkar, karatxai"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2489,10 +3241,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Caixmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Caixubi"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 # MW
 #. language code: kaw
@@ -2507,34 +3259,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Kazakh"
 
-# KZ
-# fuzzy
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
-
-# KE
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardí"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Llengües khoisanes (altres)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2545,11 +3289,6 @@ msgstr "Khotanès"
 msgid "Kikuyu"
 msgstr "Kikuiu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2560,16 +3299,15 @@ msgstr "Kinyarwanda"
 msgid "Kirghiz"
 msgstr "Kirguís"
 
-# KI
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2582,11 +3320,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Congo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2602,11 +3335,21 @@ msgstr "Kosraean"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Balkar, karatxai"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 # PA
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
@@ -2623,30 +3366,12 @@ msgstr "Kúmik"
 msgid "Kurdish"
 msgstr "Kurd"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 # KE
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-# KW
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-# KG
-# fuzzy
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirguizistan"
-
 # LB
 #. language code: lad
 #: zypp/LanguageCode.cc:655
@@ -2671,13 +3396,6 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Laosià"
 
-# CD
-# fuzzy
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "República democràtica popular de Laos"
-
 # LV
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
@@ -2685,65 +3403,16 @@ msgid "Latin"
 msgstr "Llatí"
 
 # LV
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Letònia"
-
-# LV
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Letó"
 
-# LB
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Líban"
-
-# LS
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Nivell 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Nivell 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Nivell 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lesguià"
 
-# LR
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Libèria"
-
-# LY
-# fuzzy
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libèria"
-
-# LI
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 # LU
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
@@ -2757,63 +3426,49 @@ msgid "Lingala"
 msgstr "Lingala"
 
 # LT
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lituània"
-
-# LT
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Lituà"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "El lloc \"%s\" és temporalment inaccessible."
-
-# LB
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Baix alemany"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Baix sòrab"
+# CG
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+# LU
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburguès"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+# GH
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseño"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Sami de Lule"
-
 # SD
 #. language code: lun
 #: zypp/LanguageCode.cc:689
@@ -2823,48 +3478,18 @@ msgstr "Lunda"
 #. language code: luo
 #: zypp/LanguageCode.cc:691
 msgid "Luo (Kenya and Tanzania)"
-msgstr "Luo (de Kenya i Tanzània)"
-
-#. language code: lus
-#: zypp/LanguageCode.cc:693
-msgid "Lushai"
-msgstr "Lushai"
-
-# LU
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxemburg"
-
-# LU
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburguès"
-
-# MO
-# fuzzy
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macau"
+msgstr "Luo (de Kenya i Tanzània)"
 
-# MK
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedònia"
+#. language code: lus
+#: zypp/LanguageCode.cc:693
+msgid "Lushai"
+msgstr "Lushai"
 
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Macedònic"
 
-# MG
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagascar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2876,6 +3501,12 @@ msgstr "Madurès"
 msgid "Magahi"
 msgstr "Magahi"
 
+# MH
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshallès"
+
 # ML
 #. language code: mai
 #: zypp/LanguageCode.cc:705
@@ -2888,201 +3519,65 @@ msgstr "Maithili"
 msgid "Makasar"
 msgstr "Makasar"
 
-# MG
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malgaix"
-
-# MW
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-# MT
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malai"
-
 # MY
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malaialam"
 
-# MY
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malàisia"
-
-# MV
-# fuzzy
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Mali"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Malformat URI"
-
-# ML
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-# MT
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-# MV
-# fuzzy
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltès"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manxú"
-
-# MM
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Manding"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Llengües manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 # ML
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Llengües autronèsies (altres)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-# ML
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-# MH
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Illes Marshall"
-
-# MH
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshallès"
-
-# MQ
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinica"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 # MW
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Massai"
 
-# MR
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritània"
-
-# MU
-# fuzzy
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Maurici"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Llengües maies"
-
-# YT
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "El suport font %s no conté el mitjà desitjat."
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "El mitjà %s l'està fent servir una altra instància."
+# MT
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malai"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "No hi ha mitjà connectat"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Mordovià moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Mitjà no obert quan s'intentava portar a terme l'acció \"%s\"."
+# MM
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "França metropolitana"
-
-# MX
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mèxic"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Gaèlic irlandès mitjà (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -3094,62 +3589,54 @@ msgstr "Micmac"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-# FM
-# fuzzy
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandès"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Llengües mixtes"
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
-msgstr "Mohawk"
-
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Mordovià moksha"
-
-# MD
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
-msgstr "Moldau"
-
-# MD
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldàvia"
-
 #. language code: mkh
 #: zypp/LanguageCode.cc:741
 msgid "Mon-Khmer (Other)"
 msgstr "Llengües monkhmers (altres)"
 
-# MC
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Mònaco"
+# MG
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malgaix"
+
+# MV
+# fuzzy
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltès"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manxú"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
 
-# CG
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Llengües manobo"
 
-# MN
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongòlia"
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
+msgstr "Mohawk"
+
+# MD
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
+msgstr "Moldau"
 
 # MN
 #. language code: mon mn
@@ -3157,35 +3644,11 @@ msgstr "Mongòlia"
 msgid "Mongolian"
 msgstr "Mongol"
 
-# CG
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-# MS
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-# MA
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marroc"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-# MZ
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Moçambic"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -3196,61 +3659,80 @@ msgstr "Llengües múltiples"
 msgid "Munda languages"
 msgstr "Llengües mundes"
 
-# MM
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+# FM
+# fuzzy
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandès"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Llengües maies"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Mordovià erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nàhuatl"
 
-# NA
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namíbia"
+# MP
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Llengües ameríndies septentrionals (altres)"
 
-# NR
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauruà"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Napolità"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navaho"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele septentrional"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele meridional"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele septentrional"
+
 # TO
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Napolità"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Baix alemany"
 
 # NP
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
+msgstr "Nepalès"
 
 # NP
 #. language code: new
@@ -3258,169 +3740,68 @@ msgstr "Nepal"
 msgid "Nepal Bhasa"
 msgstr "Newari"
 
-# NP
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
-msgstr "Nepalès"
-
-# NL
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Països Baixos"
-
-# AN
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Antilles Holandeses"
-
-# NC
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nova Caledònia"
-
-# NZ
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nova Zelanda"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Nou missatge d'actualització"
-
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-# NI
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-# NE
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Níger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Llengües nigerokurdufanianes (altres)"
 
-# NG
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigèria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Llengües niloticosaharianes (altres)"
-
-# NU
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 # NU
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niuean"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Sense codi"
-
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "No URL al repositori."
-
-# TO
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
-msgstr "Nogai"
-
-# NF
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Illa Norfolk"
-
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
-msgstr "Noruec antic"
-
-# MP
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Llengües ameríndies septentrionals (altres)"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Corea del Nord"
-
-# MP
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Illes Mariannes del Nord"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Sami septentrional"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Sotho del nord"
-
-# NO
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Noruega"
-
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
-msgstr "Noruec"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "(Noruec) nynorsk"
 
 #. language code: nob nb
 #: zypp/LanguageCode.cc:805
 msgid "Norwegian Bokmal"
 msgstr "(Noruec) bokmal"
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "(Noruec) nynorsk"
+# TO
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
+msgstr "Nogai"
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "No es una unitat de CD-ROM"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
+msgstr "Noruec antic"
+
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
+msgstr "Noruec"
+
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Sotho del nord"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Llengües nubianes"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Newari clàssic"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Nyanja"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3441,10 +3822,6 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Obsolets"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3455,21 +3832,6 @@ msgstr "Occità (després de 1500)"
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-# OM
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Són necessaris l'atribut \"%s\" o \"%s\", o bé tots dos."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Operació no suportada pel mitjà."
-
 # SY
 # fuzzy
 #. language code: ori or
@@ -3492,20 +3854,25 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Osset"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turc otomà (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Llengües otomíes"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"El paquet %s sembla que s'ha corromput durant la transferència. Voleu "
-"intentar baixar-lo de nou?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Llengües papús (altres)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinà"
 
 # PW
 #. language code: pal
@@ -3513,36 +3880,6 @@ msgstr ""
 msgid "Pahlavi"
 msgstr "Pahlavi"
 
-# PK
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-# PW
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-# PW
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauà"
-
-# IO
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Territori palestí"
-
-# ML
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
 # PY
 #. language code: pam
 #: zypp/LanguageCode.cc:851
@@ -3550,17 +3887,6 @@ msgid "Pampanga"
 msgstr "Pampanga"
 
 # PA
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panamà"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinà"
-
-# PA
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3571,53 +3897,21 @@ msgstr "Panjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-# PG
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua Nova Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Llengües papús (altres)"
-
-# PY
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguai"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "La ruta \"%s\" del suport %s no és un directori."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "El camí \"%s\" del mitjà \"%s\" no és un fitxer."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Permís per accedir a %s denegat."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persa"
+# PW
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauà"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Persa antic (ca.600-400 aC)"
 
-# PE
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Perú"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persa"
 
 # PH
 #. language code: phi
@@ -3625,48 +3919,26 @@ msgstr "Perú"
 msgid "Philippine (Other)"
 msgstr "Llengües filipines (altres)"
 
-# PH
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipines"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Fenici"
 
-# PN
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Si us plau, instal·leu primer el paquet lsof."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Ponapeà"
-
-# PL
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polònia"
+# ML
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Polonès"
 
-# PT
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Ponapeà"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3676,91 +3948,23 @@ msgstr "Portuguès"
 #. language code: pra
 #: zypp/LanguageCode.cc:877
 msgid "Prakrit Languages"
-msgstr "Pràcrit"
-
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Necessita prèviament"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Determinació de problema, la qual cosa significa suport tècnic dissenyat per "
-"oferir compatibilitat d'informació, assistència d'instal·lació, suport d'ús, "
-"manteniment continu i resolució bàsica de problemes. El suport de nivell 1 "
-"no està pensat per corregir errors de defecte del producte."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Isolació de problema, la qual cosa significa suport dissenyat per duplicar "
-"problemes de clients, isolar l'àrea del problema i oferir solucions de "
-"problemes no resolts pel suport de nivell 1. "
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Resolució de problema, la qual cosa significa suport tècnic dissenyat per "
-"resoldre problemes complexos a través d'enginyeria de resolució de defectes "
-"de producte que s'han identificat amb el suport de nivell 2."
-
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
-msgstr "Provençal antic (fins al 1500)"
-
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Proporciona"
-
-# PR
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+msgstr "Pràcrit"
+
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
+msgstr "Provençal antic (fins al 1500)"
 
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Paixtú"
 
-# QA
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quítxua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "No s'admet l'anàlisi de cadenes de consulta per a aquesta URL"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "Error RPM:"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Retoromànic"
-
 # TJ
 #. language code: raj
 #: zypp/LanguageCode.cc:885
@@ -3778,53 +3982,15 @@ msgstr "Rapanui"
 msgid "Rarotongan"
 msgstr "Rarotongan"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Recomana"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "No es permet un camí relatiu si existeix una autoritat"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Eliminant el repositori %s"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "L'àlies del repositori no pot començar amb un punt."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Falta l'atribut requerit \"%s\"."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Requereix"
-
-# RE
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Illa de la Reunió"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Llengües romàniques (altres)"
 
-# RO
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romania"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Romanès"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Retoromànic"
 
 # RO
 #. language code: rom
@@ -3832,6 +3998,11 @@ msgstr "Romanès"
 msgid "Romany"
 msgstr "Romaní"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Romanès"
+
 # RE
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
@@ -3843,55 +4014,26 @@ msgstr "Kirundi"
 msgid "Russian"
 msgstr "Rus"
 
-# RU
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Rússia"
-
-# RW
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-# SH
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Saint Helena"
-
-# KN
-# fuzzy
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Christopher i Nevis"
-
-# LC
-# fuzzy
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandawe"
 
-# SM
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Sant Martí"
+# WS
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango"
 
-# PM
-# fuzzy
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint-Pierre-et-Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Iacut"
 
-# VC
-# fuzzy
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent i les Grenadines"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Llengües ameríndies meridionals (altres)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3903,233 +4045,88 @@ msgstr "Llengües salish"
 msgid "Samaritan Aramaic"
 msgstr "Arameu samarità"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Llengües samis (altres)"
-
-# WS
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-# WS
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoà"
-
-# SM
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandawe"
-
-# WS
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sango"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sànscrit"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "Santali"
-
-# ST
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome i Príncipe"
-
-# MR
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sard"
-
 # WS
 #. language code: sas
 #: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
-
-# SA
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Aràbia Saudita"
-
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "Scots"
-
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "Selkup"
-
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "Llengües semítiques (altres)"
-
-# SN
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Sèrbia"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbi"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "L'àlies del servei no pot començar amb un punt."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "El servei de complements (plugin) no permet canviar-ne un atribut."
-
-# SC
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelles"
-
-# SD
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "Shan"
+msgid "Sasak"
+msgstr "Sasak"
 
-# SI
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "Santali"
 
-# LT
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbi"
 
 #. language code: scn
 #: zypp/LanguageCode.cc:927
 msgid "Sicilian"
 msgstr "Sicilià"
 
-# WS
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "Sidamo"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "Scots"
 
-# SL
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Croat"
+
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "Selkup"
+
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "Llengües semítiques (altres)"
+
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Gaèlic irlandès antic (fins 900)"
 
 #. language code: sgn
 #: zypp/LanguageCode.cc:941
 msgid "Sign Languages"
 msgstr "Llengües de signes"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "La signatura no es verifica"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "El fitxer de la firma diginal %s no s'ha trobat"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "La signatura és correcta"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "La signatura és correcta, però no és de confiança"
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "Ha fallat la verificació de la signatura"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "La clau pública de signatures no està disponible"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Blackfoot"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
+# SD
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "Shan"
 
-# SG
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
+# WS
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "Sidamo"
 
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Singalès"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Llengües sinotibetanes (altres)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Llengües sioux (altres)"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Sami skolt"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slave (atapascà)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Llengües sinotibetanes (altres)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -4141,172 +4138,133 @@ msgstr "Llengües eslaves (altres)"
 msgid "Slovak"
 msgstr "Eslovac"
 
-# SK
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Eslovàquia"
-
-# SI
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Eslovènia"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Eslovè"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Sami meridional"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Sami septentrional"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Llengües samis (altres)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Sami de Lule"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Sami d'Inari"
+
+# WS
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoà"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Sami skolt"
+
+# SI
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
+
 # SD
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "Sogdià"
 
-# SB
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Illes Salomó"
-
 # SO
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Somali"
 
-# SO
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somàlia"
-
 # TO
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
-msgstr "Songhai"
-
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Sòrab"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-"Perdoneu, però aquesta versió de libzypp va ser construïda sense suport HAL."
-
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "Sotho, sud"
-
-# ZA
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Sud-àfrica"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Llengües ameríndies meridionals (altres)"
-
-# GS
-# fuzzy
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Illes Geòrgia del Sud i Sandwich del Sud"
-
-# ZA
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Corea del Sud"
-
-# ZA
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Altaic meridional"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Sami meridional"
+msgstr "Songhai"
 
-# ES
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Espanya"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "Sotho, sud"
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Espanyol"
 
-# LK
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+# MR
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sard"
 
-# SD
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Suggereix"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Llengües niloticosaharianes (altres)"
+
+# HT
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swazi"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumeri"
-
 # SD
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sondanès"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Suplements"
-
-# SR
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-# SJ
-# fuzzy
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Illes Svalbard i Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumeri"
 
 # SZ
 #. language code: swa sw
@@ -4314,42 +4272,11 @@ msgstr "Illes Svalbard i Jan Mayen"
 msgid "Swahili"
 msgstr "Suahili"
 
-# HT
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swazi"
-
-# SZ
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swazilàndia"
-
-# SE
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Suècia"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Suec"
 
-# CH
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Suïssa"
-
-# SY
-# fuzzy
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Síria"
-
 # SY
 # fuzzy
 #. language code: syr
@@ -4357,25 +4284,6 @@ msgstr "Síria"
 msgid "Syriac"
 msgstr "Siríac"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Excepció de sistema \"%s\" al mitjà \"%s\"."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"La gestió del sistema està bloquejada per l'aplicació amb el pid %d (%s).\n"
-"Tanqueu aquesta aplicació abans de tornar-ho a provar."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagàlog"
-
 # TW
 # fuzzy
 #. language code: tah ty
@@ -4388,40 +4296,11 @@ msgstr "Tahitià"
 msgid "Tai (Other)"
 msgstr "Llengües tai (altres)"
 
-# TW
-# fuzzy
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Tailàndia"
-
-# TJ
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tadjik"
-
-# TJ
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadjikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamashek (tamazight)"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tàmil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzània"
-
 # QA
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
@@ -4434,6 +4313,11 @@ msgstr "Tàtar"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4444,34 +4328,22 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+# TJ
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tadjik"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagàlog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Tai"
 
-# TH
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tailàndia"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "El nivell de suport no està especificat."
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "El proveïdor ja no n'ofereix suport."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Aquesta acció ja l'està executant un altre programa."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Aquesta petició trencarà l'estabilitat del sistema!"
-
 # TW
 # fuzzy
 #. language code: tib bod bo
@@ -4491,49 +4363,25 @@ msgstr "Tigré"
 msgid "Tigrinya"
 msgstr "Tigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "S'ha acabat el temps d'espera accedint a %s."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-# TG
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok pisin"
-
-# TK
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelauès"
-
-# TO
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamashek (tamazight)"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4546,92 +4394,58 @@ msgstr "Tonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tongà (Illes Tonga)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "S'ha provat d'importar la clau no existent %s a l'anell de claus %s"
-
-# TT
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinitat i Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimshian"
 
+# BW
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 # TO
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-# BW
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+# TR
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turcman"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-# TN
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunísia"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Llengües tupís"
 
-# TR
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turquia"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turc"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turc otomà (1500-1928)"
-
-# TR
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turcman"
-
-# TM
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-# TC
-# fuzzy
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Illes Turks i Caicos"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Llengües altaïques (altres)"
 
-# TV
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvaluà"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
 # TN
 #. language code: tyv
@@ -4639,22 +4453,11 @@ msgstr "Tuvaluà"
 msgid "Tuvinian"
 msgstr "Tuvinià"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Votiac"
 
-# UG
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 # HT
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
@@ -4667,12 +4470,6 @@ msgid "Uighur"
 msgstr "Uigur"
 
 # UA
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ucraïna"
-
-# UA
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4683,786 +4480,931 @@ msgstr "Ucraïnès"
 msgid "Umbundu"
 msgstr "Umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "No es pot clonar l'objecte de l'URL"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "No es pot crear la connexió dbus"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-"No es pot iniciar el context HAL. Comproveu que s'estigui executant hald."
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "No es poden analitzar els components de l'URL"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Sense determinar"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Tipus de repositori no manejat"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Urdú"
 
-# AE
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Unió dels Emirats Àrabs"
+# UZ
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Uzbek"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Regne Unit"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vai"
 
-# US
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Estats Units"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Venda"
 
-# UM
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Illes Perifèriques Menors dels EUA"
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnamita"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "País desconegut:"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Volapük"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Votic"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "Llengües wakashan"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Walamo"
+
+# PY
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Waray"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Washo"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Gal·lès"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Sòrab"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Való"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wòlof"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Calmuc"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xosa"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yao"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yapeà"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Jiddisch"
+
+# AW
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Ioruba"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Yupik"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapoteca"
+
+# GD
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "(Tamazight) zenaga"
+
+# BT
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
+
+# TV
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Error desconegut a l'hora de llegir '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "S'ha provat d'importar la clau no existent %s a l'anell de claus %s"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "L'idioma és desconegut: "
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Error a l'hora d'esborrar la clau."
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Mode de coincidència desconegut: \"%s\""
+msgid "Signature file %s not found"
+msgstr "El fitxer de la firma diginal %s no s'ha trobat"
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Mode de coincidència desconegut \"%s\" per al patró %s"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-"Servei desconegut \"%1%\": Eliminant el repositori de serveis orfes %2%"
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "No es pot proporcionar el fitxer %s des del repositori %s"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Opció de suport desconeguda. No n'hi ha descripció disponible."
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "No URL al repositori."
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Tipus de signatura desconeguda"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "El servei de complements (plugin) no permet canviar-ne un atribut."
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Mètode d'autenticació HTTP no suportat \"%s\""
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"El paquet %s sembla que s'ha corromput durant la transferència. Voleu "
+"intentar baixar-lo de nou?"
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "Ha fallat la verificació de la signatura"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "L'esquema d'URL a %s no és vàlid."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "El paquet %s no s'ha pogut obtenir. Voleu intentar baixar-lo de nou?"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Alt Sorab"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "La comprovació de l'applydeltarpm ha fallat."
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Urdú"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "Ha fallat l'aplicació del Delta rpm."
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "L'esquema de l'URL no permet un %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"La gestió del sistema està bloquejada per l'aplicació amb el pid %d (%s).\n"
+"Tanqueu aquesta aplicació abans de tornar-ho a provar."
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "L'esquema de l'URL no permet un component d'ordinador central"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s no pertany a un repositori d'actualització de la distribució"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "L'esquema de l'URL no permet una contrasenya"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s té una arquitectura inferior"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "L'esquema de l'URL no permet un port"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problema amb el paquet instal·lat %s"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "L'esquema de l'URL no permet un nom d'usuari"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "demandes conflictives"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "L'esquema de l'URL és un component necessari"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "problemes de dependències"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "L'esquema de l'URL requereix un component d'ordinador central"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "Res proporciona %s"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "L'esquema de l'URL requereix un nom de camí"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Heu habilitat tots els repositoris demanats?"
 
-# UY
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguai"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "el paquet %s no existeix"
 
-# UZ
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "petició no suportada"
 
-# UZ
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s està proveït pel sistema i no es pot esborrar"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vai"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s no és instal·lable"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "No s'han trobat metadades vàlides a l'URL especificat"
-msgstr[1] "No s'han trobat metadades vàlides als URL especificats"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "Res proporciona %s, necessari per a %s"
 
-# VU
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "No es poden instal·lar %s i %s"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Venda"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s entra en conflicte amb %s, proveït per %s"
 
-# VE
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Veneçuela"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s fa(n) obsolet(s) %s proveït(s) per %s"
 
-# VN
-# fuzzy
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr ""
+"el(s) paquets(s) instal·lat(s) %s fa(n) obsolet(s) %s proporcionat(s) per %s"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnamita"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "la resolució %s entra en conflicte amb %s, proporcionat per si mateix"
 
-# VI
-# fuzzy
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Illes Verge Americanes"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s necessita %s, però aquest requeriment no es pot satisfer"
 
-#: zypp/media/MediaCurl.cc:1008
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "proveïdors esborrats: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"\n"
+"uninstallable providers: "
 msgstr ""
-"Visiteu el Novell Customer Center per comprovar si el vostre registre encara "
-"és vàlid i no ha caducat."
+"\n"
+"proveïdors no desistal·lables: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "proveïdors no desinstal·lables: "
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "suprimeix el bloqueig per permetre l'eliminació de %s"
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "no instal·lis %s"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Volapük"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "conserva %s"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Votic"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "suprimeix el bloqueig per permetre la instal·lació de %s"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "Llengües wakashan"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Aquesta petició trencarà l'estabilitat del sistema!"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ignora l'avís de sistema trencat"
 
-# WF
-# fuzzy
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Illes Wallis i Futuna"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "no demanis instal·lar un resoluble que proporcioni %s"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Való"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "no demanis eliminar tots els resolubles que proporcionin %s"
 
-# PY
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Waray"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "no instal·lis la versió més recent de %s"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Washo"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "mantén %s malgrat l'arquitectura inferior"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Gal·lès"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "instal·la %s, encara que tingui una arquitectura inferior"
 
-# EH
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Sàhara Occidental"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "deixa obsolet %s"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wòlof"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "instal·la %s del repositori exclòs"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xosa"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "desactualizació de %s a %s"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Iacut"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "canvi d'arquitectura de %s a %s"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yao"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"instal·la %s (amb canvi de proveïdor)\n"
+"  %s  -->  %s"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Yapeà"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "substitució de %s per %s"
 
-# YE
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Iemen"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "desinstal·lació de %s"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Jiddisch"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "trenca %s ignorant-ne algunes de les dependències"
 
-# AW
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Ioruba"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "ignora generalment algunes dependències"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Yupik"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "Falta l'atribut requerit \"%s\"."
 
-# ZM
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zàmbia"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Són necessaris l'atribut \"%s\" o \"%s\", o bé tots dos."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "No es pot obrir el fitxer de blocatge: %s"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapoteca"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Aquesta acció ja l'està executant un altre programa."
 
-# GD
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "(Tamazight) zenaga"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Historial:"
 
-# BT
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Mode de coincidència desconegut: \"%s\""
 
-# ZW
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Mode de coincidència desconegut \"%s\" per al patró %s"
 
-# TV
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Expressió regular no vàlida \"%s\": regcomp ha respost %d"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Expressió regular no vàlida: \"%s\""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "La comprovació de l'applydeltarpm ha fallat."
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Si us plau, instal·leu primer el paquet lsof."
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "Ha fallat l'aplicació del Delta rpm."
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Cal autenticació per a '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "canvi d'arquitectura de %s a %s"
+msgid "Failed to mount %s on %s"
+msgstr "Error a l'hora de muntar %s a %s"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "trenca %s ignorant-ne algunes de les dependències"
+msgid "Failed to unmount %s"
+msgstr "Error a l'hora de desmuntar %s"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "No es poden instal·lar %s i %s"
+msgid "Bad file name: %s"
+msgstr "Mal nom de fitxer: %s"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "demandes conflictives"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Mitjà no obert quan s'intentava portar a terme l'acció \"%s\"."
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "còpia de seguretat creada %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "El fitxer %s no s'ha trobat al mitjà %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "desinstal·lació de %s"
+msgid "Cannot write file '%s'."
+msgstr "No es pot escriure al fitxer %s."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "proveïdors esborrats: "
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "No hi ha un mitjà connectat"
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "no demanis eliminar tots els resolubles que proporcionin %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Mal punt de contacte del mitjà"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "no demanis instal·lar un resoluble que proporcioni %s"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "L'inici de la baixada (curl) ha fallat per a \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "no instal·lis %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "Excepció de sistema \"%s\" al mitjà \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "no instal·lis la versió més recent de %s"
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "El camí \"%s\" del mitjà \"%s\" no és un fitxer."
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "desactualizació de %s a %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "La ruta \"%s\" del suport %s no és un directori."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "ignora generalment d'algunes dependències"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Malformat URI"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ignora l'avís de sistema trencat"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Nom d'hoste buit a l'URI"
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"instal·la %s (amb canvi de proveïdor)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Sistema de fitxers buit a l'URI"
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "instal·la %s, encara que tingui una arquitectura inferior"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Destinació buida a l'URI"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "instal·la %s del repositori exclòs"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "L'esquema d'URL a %s no és vàlid."
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operació no admesa pel mitjà"
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
-"el(s) paquets(s) instal·lat(s) %s fa(n) obsolet(s) %s proporcionat(s) per %s"
-
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "invàlid"
+"Error de baixada (curl) per a %s:\n"
+"Codi d'error: %s\n"
+"Missatge d'error: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "conserva %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"Hi ha hagut un error en establir les opcions de baixada (curl) per a '%s':"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "manté %s, malgrat tenir una arquitectura inferior."
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "El suport font \"%s\" no conté el mitjà desitjat."
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "deixa obsolet %s"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: No es pot crear el context libhal"
+msgid "Medium '%s' is in use by another instance"
+msgstr "El mitjà \"%s\" l'està fent servir una altra instància."
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: No es pot definir la connexió de dbus"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "No es pot expulsar el mitjà"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "Res proporciona %s, necessari per a %s"
+msgid "Cannot eject media '%s'"
+msgstr "No es pot expulsar el suport %s"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "Res proporciona %s"
+msgid "Permission to access '%s' denied."
+msgstr "Permís per accedir a %s denegat."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "el paquet %s no existeix"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "S'ha acabat el temps d'espera accedint a %s."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problema amb el paquet instal·lat %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "El lloc \"%s\" és temporalment inaccessible."
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "suprimeix el bloqueig per permetre la instal·lació de %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" Problema de certificat SSL, verifiqueu que el certificat CA és correcte per "
+"a \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "suprimeix el bloqueig per permetre l'eliminació de %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"No es pot trobar un dispositiu de bucle disponible per muntar el fitxer "
+"d'imatge de \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "substitució de %s per %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Mètode d'autenticació HTTP no suportat \"%s\""
+
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Visiteu el Novell Customer Center per comprovar si el vostre registre encara "
+"és vàlid i no ha caducat."
+
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "No es pot crear sat-pool."
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"El fitxer %1%\n"
+"  del paquet\n"
+"     %2%\n"
+"  té conflicte amb el fitxer del paquet\n"
+"     %3%"
+
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"El fitxer %1%\n"
+"  del paquet\n"
+"     %2%\n"
+"  té conflicte amb el fitxer de la instal·lació de\n"
+"     %3%"
+
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"El fitxer %1%\n"
+"  de la instal·lació de\n"
+"     %2%\n"
+"  té conflicte amb el fitxer del paquet\n"
+"     %3%"
+
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"El fitxer %1%\n"
+"  de la instal·lació de\n"
+"     %2%\n"
+"  té conflicte amb el fitxer de la instal·lació de\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
-"L'rpm ha creat %s com a %s però no ha estat possible determinar-ne la "
-"diferència"
+"El fitxer %1%\n"
+"  del paquet\n"
+"     %2%\n"
+"  té conflicte amb el fitxer\n"
+"     %3%\n"
+"  del paquet\n"
+"     %4%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
-"L'rpm ha creat %s com a %s.\n"
-"Aquestes són les primeres 25 línies de diferència:\n"
+"El fitxer %1%\n"
+"  del paquet\n"
+"     %2%\n"
+"  té conflicte amb el fitxer\n"
+"     %3%\n"
+"  de la instal·lació de\n"
+"     %4%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
-"L'rpm ha desat %s com a %s però no ha estat possible determinar-ne la "
-"diferència"
+"El fitxer %1%\n"
+"  de la instal·lació de\n"
+"     %2%\n"
+"  té conflicte amb el fitxer\n"
+"     %3%\n"
+"  del paquet\n"
+"     %4%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
-"L'rpm ha desat %s com a %s.\n"
-"Aquestes són les primeres 25 línies de diferència:\n"
+"El fitxer %1%\n"
+"  de la instal·lació de\n"
+"     %2%\n"
+"  té conflicte amb el fitxer\n"
+"     %3%\n"
+"  de la instal·lació de\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "la resolució %s entra en conflicte amb %s, proporcionat per si mateix"
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "generalment ignora algunes dependències"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "problemes de dependències"
+#~ msgid "do not forbid installation of %s"
+#~ msgstr "no prohibeixis la instal·lació de %s"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "proveïdors no desinstal·lables: "
+#~ msgid "do not keep %s installed"
+#~ msgstr "no mantinguis %s instal·lat"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "desconegut"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr "لا يمكن إنشاء المفتاح العام %s من %s إلى ملف حلقة المفاتيح %s"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "no suportat"
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr "حاول استيراد مفتاح غير موجود %s إلى حلقة مفاتيح %s"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "petició no suportada"
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "لا يمكن تغيير مجلد العمل '/' داخل استجذار (%s)."
 
-#, fuzzy
-#~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
-#~ msgstr ""
-#~ "\n"
-#~ "No hi ha cap recurs disponible que admeti aquest requisit."
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "فشل تهيئة تحميل (Metalink curl) '%s'"
 
 #~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
 #~ msgstr ""
-#~ "\n"
-#~ "Aquests ítems amb dependències es suprimiran del sistema."
-
-#~ msgid " Error!"
-#~ msgstr " Error"
-
-#~ msgid " Important!"
-#~ msgstr " Important"
-
-#~ msgid " fails checksum verification."
-#~ msgstr " no supera la verificació de la suma de verificació."
-
-#~ msgid " miss checksum."
-#~ msgstr "falta la suma de verificació."
+#~ "تحميل (metalink curl) خطأ '%s':\n"
+#~ "رمز الخطأ: %s\n"
+#~ "رسالة الخطأ: %s\n"
 
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "%s no es pot instal·lar atès que falten dependències"
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "توقف التحميل في %d%%"
 
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "%s entra en conflicte amb altres ítems amb dependències"
+#~ msgid "Download interrupted by user"
+#~ msgstr "توقف التحميل بواسطة المستخدم"
 
 #~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "%s entra en conflicte amb:\n"
-#~ "%s"
-
-#~ msgid "%s depended on %s"
-#~ msgstr "%s depenia de %s"
-
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s depend de %s"
-
-#~ msgid "%s depends on %s"
-#~ msgstr "%s depèn de %s"
-
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s depèn d'altres ítems amb dependències"
-
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s depèn de:%s"
-
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "%s compleixen les dependències de %s però es conservaran al sistema"
-
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "%s compleixen les dependències de %s però es desinstal·laran"
-
-#~ msgid "%s has missing dependencies"
-#~ msgstr "Falten dependències per a %s"
-
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "%s té requisits no complerts"
-
-#~ msgid "%s install failed"
-#~ msgstr "S'ha produït un error en instal·lar %s"
-
-#~ msgid "%s installed ok"
-#~ msgstr "%s s'ha instal·lat correctament"
-
-#, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s s'ha reemplaçat per %s"
-
-#, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s requereix %s"
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr "حدث خطأ أثناء إعداد خيارات التحميل (metalink curl) ل '%s':"
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "A %s li falta el requisit %s"
-
-#~ msgid "%s is locked and cannot be uninstalled."
-#~ msgstr "%s està bloquejat i no es pot desinstal·lar."
-
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "Altres ítems amb dependències necessiten %s"
-
-#~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "%s requereix:\n"
-#~ "%s"
-
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "%s no s'ha instal·lat i s'ha marcat com a no instal·lable"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "No es pot obrir %s - %s\n"
 
-#, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s requereix %s"
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Sèrbia i Montenegro"
 
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s s'ha reemplaçat per %s"
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "L'opció list és desconeguda"
 
 #, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "no s'han pogut resoldre dependències"
+
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "Un altre ítem amb dependències instal·lat necessita %s, de manera que no "
-#~ "es desenllaçarà."
+#~ "El fitxer %s no conté cap suma de verificació.\n"
+#~ "Voleu utilitzar aquest fitxer de tota manera?"
 
-#, fuzzy
 #~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "Un altre ítem amb dependències instal·lat necessita %s, de manera que no "
-#~ "es desenllaçarà."
+#~ "El fitxer %s no ha superat la comprovació d'integritat amb la següent "
+#~ "clau:\n"
+#~ "%s|%s|%s\n"
+#~ "Voleu utilitzar el fitxer de tota manera?"
 
 #~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "Una altra solució que s'ha d'instal·lar necessita %s, de manera que no es "
-#~ "desenllaçarà."
+#~ "El fitxer %s conté una suma de verificació no vàlida.\n"
+#~ "S'esperava %s, i s'ha trobat %s\n"
+#~ "Voleu utilitzar aquest fitxer de tota manera?"
 
-#, fuzzy
 #~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s s'ha programat per a instal·lar-se, però això no és possible per "
-#~ "problemes de dependència."
-
-#, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s requereix %s"
-
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s requereix %s"
-
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s no es pot instal·lar atesos els conflictes amb %s"
+#~ "El fitxer %s conté la suma de verificació desconeguda %s.\n"
+#~ "Voleu utilitzar aquest fitxer de tota manera?"
 
-#, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
 #~ msgstr ""
-#~ "%s desactualitza %s. No obstant, %s no es pot suprimir perquè està "
-#~ "bloquejat."
-
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s desactualitza altres ítems amb dependències"
-
-#~ msgid "%s obsoletes:%s"
-#~ msgstr "%s desactualitza:%s"
-
-#~ msgid "%s part of %s"
-#~ msgstr "%s és part de %s"
+#~ "El fitxer %s no està signat.\n"
+#~ "Voleu utilitzar-lo de tota manera?"
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s proporciona %s, però s'ha programat per a conservar-se."
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "El fitxer %s s'ha signat amb una clau desconeguda:\n"
+#~ "%s|%s|%s\n"
+#~ "Voleu utilitzar aquest fitxer de tota manera?"
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
 #~ msgstr ""
-#~ "%s proporciona %s, però ja hi ha instal·lada una altra versió d'aquest %s."
+#~ "S'ha trobat una clau no fiable:\n"
+#~ "%s|%s|%s\n"
+#~ "Voleu que la clau sigui de confiança?"
+
+#~ msgid "%s remove failed"
+#~ msgstr "S'ha produït un error en suprimir %s"
 
 #, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s proporciona %s, però té una altra arquitectura."
+#~ msgid "Invalid user name or password."
+#~ msgstr "La contrasenya de la CA no és vàlida."
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s proporciona %s, però s'ha programat per a desinstal·lar-se."
+#~ msgid "rpm output:"
+#~ msgstr "Sortida de l'rpm:"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s proporciona %s, però està bloquejat."
+#~ msgid "%s install failed"
+#~ msgstr "S'ha produït un error en instal·lar %s"
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s proporciona %s, però no és instal·lable. Proveu d'instal·lar-lo per sí "
-#~ "mateix per a més detalls."
+#~ msgid "%s installed ok"
+#~ msgstr "%s s'ha instal·lat correctament"
+
+#~ msgid "%s remove ok"
+#~ msgstr "%s s'ha suprimit correctament"
 
 #, fuzzy
 #~ msgid ""
@@ -5480,11 +5422,66 @@ msgstr "petició no suportada"
 #~ "%s proporciona aquesta dependència però canviaria l'arquitectura de "
 #~ "l'element instal·lat"
 
-#~ msgid "%s remove failed"
-#~ msgstr "S'ha produït un error en suprimir %s"
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "No instal·lis ni suprimeixis els ítems amb dependències relacionats"
 
-#~ msgid "%s remove ok"
-#~ msgstr "%s s'ha suprimit correctament"
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "Ignora que %s ja s'ha definit per a instal·lar-se"
+
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "Ignora l'obsolet %s a %s"
+
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "Ignora aquest conflicte de %s"
+
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "Ignora aquest requisit només en aquest cas"
+
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "Instal·la %s, encara que canviï l'arquitectura"
+
+#~ msgid "Install missing resolvables"
+#~ msgstr "Instal·la els ítems amb dependències que falten"
+
+#~ msgid "Keep resolvables"
+#~ msgstr "Conserva els ítems amb dependències"
+
+#~ msgid "Unlock these resolvables"
+#~ msgstr "Desbloqueja aquests ítems amb dependències"
+
+#~ msgid "delete %s"
+#~ msgstr "suprimeix %s"
+
+#~ msgid "install %s"
+#~ msgstr "instal·la %s"
+
+#~ msgid "unlock %s"
+#~ msgstr "desbloqueja %s"
+
+#~ msgid "unlock all resolvables"
+#~ msgstr "desbloqueja tots els ítems amb dependències"
+
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "No es pot obrir el fitxer %1."
+
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "Error en llegir el sector %u."
+
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "No s'admet l'anàlisi de paràmetres de camí per a aquesta URL"
+
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "No s'admet l'anàlisi de paràmetres de camí per a aquesta URL"
+
+#~ msgid "Software management is already running."
+#~ msgstr "Ja s'està executant la gestió del programari."
+
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s s'ha reemplaçat per %s"
 
 #~ msgid "%s replaced by %s"
 #~ msgstr "%s ha estat reemplaçat per %s"
@@ -5499,116 +5496,61 @@ msgstr "petició no suportada"
 #~ msgid "%s will be installed by the user.\n"
 #~ msgstr "%s no es desinstal·larà perquè encara es necessita"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "%s no es desinstal·larà perquè encara es necessita"
-
-#~ msgid ", Action: "
-#~ msgstr ", Acció: "
-
-#~ msgid ", Trigger: "
-#~ msgstr ", Activador: "
+#~ msgid "Invalid information"
+#~ msgstr "La informació no és vàlida"
 
-#, fuzzy
-#~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
-#~ msgstr ""
-#~ "Per causa d'un conflicte relacionat amb %s (%s), cal suprimir el %s que "
-#~ "s'ha d'instal·lar"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "Altres ítems amb dependències necessiten %s"
 
 #~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
+#~ "%s is needed by:\n"
+#~ "%s"
 #~ msgstr ""
-#~ "Ja s'ha registrat al menys una font; no es poden restaurar les fonts "
-#~ "emmagatzemades."
-
-#~ msgid "Can't chdir to '/' inside chroot (%s)."
-#~ msgstr "لا يمكن تغيير مجلد العمل '/' داخل استجذار (%s)."
+#~ "%s requereix:\n"
+#~ "%s"
 
-#, fuzzy
-#~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
-#~ msgstr ""
-#~ "No es pot instal·lar %s perquè ja s'ha marcat com a que necessita "
-#~ "desinstal·lar-se"
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "%s entra en conflicte amb altres ítems amb dependències"
 
-#, fuzzy
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
+#~ "%s conflicts with:\n"
+#~ "%s"
 #~ msgstr ""
-#~ "No es pot instal·lar %s perquè %s ja s'ha marcat com a que necessita "
-#~ "instal·lar-se"
-
-#, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "No es pot instal·lar %s perquè no s'aplica a aquest sistema."
-
-#, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "No es pot obrir el fitxer %1."
+#~ "%s entra en conflicte amb:\n"
+#~ "%s"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "No es pot satisfer el requisit %s per a %s"
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s desactualitza altres ítems amb dependències"
 
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
-#~ msgstr "No es pot instal·lar %s per a complir les dependències de %s"
+#~ msgid "%s obsoletes:%s"
+#~ msgstr "%s desactualitza:%s"
 
-#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
 #~ msgstr ""
-#~ "No es pot crear un fitxer necessari per a executar la instal·lació de "
-#~ "l'actualització."
-
-#~ msgid "Cannot create public key %s from %s keyring to file %s"
-#~ msgstr "لا يمكن إنشاء المفتاح العام %s من %s إلى ملف حلقة المفاتيح %s"
-
-#~ msgid "Cannot install %s to fulfil the dependencies of %s"
-#~ msgstr "No es pot instal·lar %s per a complir les dependències de %s"
+#~ "\n"
+#~ "Aquests ítems amb dependències es suprimiran del sistema."
 
-#, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "No es pot instal·lar %s per a complir les dependències de %s"
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s depèn d'altres ítems amb dependències"
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting"
-#~ msgstr "No es pot instal·lar %s perquè entra en conflicte"
+#~ msgid "%s depends on %s"
+#~ msgstr "%s depèn de %s"
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "No es pot instal·lar %s perquè entra en conflicte amb %s"
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s depèn de:%s"
 
 #~ msgid "Child of"
 #~ msgstr "Fill de"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "No instal·lis ni suprimeixis els ítems amb dependències relacionats"
-
-#, fuzzy
-#~ msgid "Double timeout"
-#~ msgstr "<b>Temps d'espera de doble clic </b>"
-
-#~ msgid "Download (Metalink curl) initialization failed for '%s'"
-#~ msgstr "فشل تهيئة تحميل (Metalink curl) '%s'"
-
 #~ msgid ""
-#~ "Download (metalink curl) error for '%s':\n"
-#~ "Error code: %s\n"
-#~ "Error message: %s\n"
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
 #~ msgstr ""
-#~ "تحميل (metalink curl) خطأ '%s':\n"
-#~ "رمز الخطأ: %s\n"
-#~ "رسالة الخطأ: %s\n"
-
-#~ msgid "Download interrupted at %d%%"
-#~ msgstr "توقف التحميل في %d%%"
-
-#~ msgid "Download interrupted by user"
-#~ msgstr "توقف التحميل بواسطة المستخدم"
-
-#~ msgid "Downloading %s"
-#~ msgstr "S'està baixant %s"
+#~ "\n"
+#~ "No hi ha cap recurs disponible que admeti aquest requisit."
 
 #, fuzzy
 #~ msgid ""
@@ -5618,301 +5560,359 @@ msgstr "petició no suportada"
 #~ "Atesos els problemes descrits anteriorment o a continuació, aquesta "
 #~ "resolució no resoldrà totes les dependències"
 
-#~ msgid ""
-#~ "Error occurred while setting download (metalink curl) options for '%s':"
-#~ msgstr "حدث خطأ أثناء إعداد خيارات التحميل (metalink curl) ل '%s':"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "No es pot instal·lar %s perquè entra en conflicte amb %s"
+
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "%s no s'ha instal·lat i s'ha marcat com a no instal·lable"
+
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "%s té requisits no complerts"
+
+#~ msgid "%s has missing dependencies"
+#~ msgstr "Falten dependències per a %s"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "%s no es pot instal·lar atès que falten dependències"
 
 #, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "Error en llegir el sector %u."
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "%s compleixen les dependències de %s però es desinstal·laran"
 
-#~ msgid "Establishing %s"
-#~ msgstr "S'està establint %s"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "%s compleixen les dependències de %s però es conservaran al sistema"
+
+#~ msgid "No need to install %s"
+#~ msgstr "No cal instal·lar %s"
 
 #, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "No es pot obrir %s - %s\n"
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "No es pot instal·lar %s per a complir les dependències de %s"
 
-#~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "El fitxer %s no conté cap suma de verificació.\n"
-#~ "Voleu utilitzar aquest fitxer de tota manera?"
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "No es pot instal·lar %s per a complir les dependències de %s"
 
-#~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "El fitxer %s no ha superat la comprovació d'integritat amb la següent "
-#~ "clau:\n"
-#~ "%s|%s|%s\n"
-#~ "Voleu utilitzar el fitxer de tota manera?"
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "%s no es desinstal·larà perquè encara es necessita"
 
-#~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
 #~ msgstr ""
-#~ "El fitxer %s conté una suma de verificació no vàlida.\n"
-#~ "S'esperava %s, i s'ha trobat %s\n"
-#~ "Voleu utilitzar aquest fitxer de tota manera?"
+#~ "%s desactualitza %s. No obstant, %s no es pot suprimir perquè està "
+#~ "bloquejat."
 
-#~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "El fitxer %s conté la suma de verificació desconeguda %s.\n"
-#~ "Voleu utilitzar aquest fitxer de tota manera?"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "No es pot instal·lar %s perquè entra en conflicte"
 
-#~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
-#~ msgstr ""
-#~ "El fitxer %s no està signat.\n"
-#~ "Voleu utilitzar-lo de tota manera?"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s no es pot instal·lar atesos els conflictes amb %s"
 
-#~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "El fitxer %s s'ha signat amb una clau desconeguda:\n"
-#~ "%s|%s|%s\n"
-#~ "Voleu utilitzar aquest fitxer de tota manera?"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "per a requerir %s per a %s en actualitzar %s"
 
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "Ignora que %s ja s'ha definit per a instal·lar-se"
+#, fuzzy
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "A %s li falta el requisit %s"
 
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "Ignora l'obsolet %s a %s"
+#~ msgid ", Action: "
+#~ msgstr ", Acció: "
 
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "Ignora aquest conflicte de %s"
+#~ msgid ", Trigger: "
+#~ msgstr ", Activador: "
 
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "Ignora aquest requisit de manera general"
+#~ msgid "package"
+#~ msgstr "paquet"
 
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "Ignora aquest requisit només en aquest cas"
+#~ msgid "selection"
+#~ msgstr "selecció"
 
-#, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "Instal·la %s, encara que canviï l'arquitectura"
+#~ msgid "pattern"
+#~ msgstr "patró"
 
-#~ msgid "Install missing resolvables"
-#~ msgstr "Instal·la els ítems amb dependències que falten"
+#~ msgid "product"
+#~ msgstr "producte"
 
-#~ msgid "Installing %s"
-#~ msgstr "S'està instal·lant %s"
+#~ msgid "patch"
+#~ msgstr "pedaç"
 
-#~ msgid "Invalid information"
-#~ msgstr "La informació no és vàlida"
+#~ msgid "script"
+#~ msgstr "script"
 
-#, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "La contrasenya de la CA no és vàlida."
+#~ msgid "message"
+#~ msgstr "missatge"
 
-#~ msgid "Keep resolvables"
-#~ msgstr "Conserva els ítems amb dependències"
+#~ msgid "atom"
+#~ msgstr "àtom"
 
-#, fuzzy
-#~ msgid "Make a solver run with best architecture only."
-#~ msgstr ""
-#~ "S'estan capturant els ítems amb dependències que coincideixen amb el "
-#~ "criteri de cerca definit..."
+#~ msgid "system"
+#~ msgstr "sistema"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr ""
-#~ "A causa de conflictes relacionats amb %s, es marcarà %s com a no "
-#~ "instal·lable"
+#~ msgid "Resolvable"
+#~ msgstr "Resolvable"
+
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "Es marcarà aquest intent de resolució com a no vàlid."
 
 #~ msgid "Marking resolvable %s as uninstallable"
 #~ msgstr "Es marcarà l'ítem amb dependències %s com a no instal·lable"
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "Es marcarà aquest intent de resolució com a no vàlid."
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "%s s'ha programat per a instal·lar-se, però això no és possible per "
+#~ "problemes de dependència."
 
-#~ msgid "No need to install %s"
-#~ msgstr "No cal instal·lar %s"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr ""
+#~ "No es pot instal·lar %s perquè ja s'ha marcat com a que necessita "
+#~ "desinstal·lar-se"
+
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "No es pot instal·lar %s perquè no s'aplica a aquest sistema."
 
 #, fuzzy
 #~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
 #~ msgstr ""
-#~ "El paquet %s no ha superat la comprovació d'integritat. Voleu intentar "
-#~ "baixar-lo de nou o avortar la instal·lació?"
+#~ "No es pot instal·lar %s perquè %s ja s'ha marcat com a que necessita "
+#~ "instal·lar-se"
 
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "No s'admet l'anàlisi de paràmetres de camí per a aquesta URL"
+#~ msgid "This would invalidate %s."
+#~ msgstr "%s quedaria invalidat."
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "No s'admet l'anàlisi de paràmetres de camí per a aquesta URL"
+#~ msgid "Establishing %s"
+#~ msgstr "S'està establint %s"
 
-#~ msgid "Reading filelist from %s"
-#~ msgstr "S'està llegint la llista de fitxers de %s"
+#~ msgid "Installing %s"
+#~ msgstr "S'està instal·lant %s"
 
-#~ msgid "Reading index files"
-#~ msgstr "S'estan llegint els fitxers d'índex"
+#~ msgid "Updating %s to %s"
+#~ msgstr "S'està actualitzant %s a %s"
+
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "S'està ignorant %s: ja s'ha instal·lat"
+
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "No hi ha cap altre proveïdor alternatiu instal·lat de %s"
+
+#~ msgid "for %s"
+#~ msgstr "per a %s"
 
-#~ msgid "Reading packages file"
-#~ msgstr "S'està llegint el fitxer de paquets"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr ""
+#~ "No és possible actualitzar a %s per tal d'evitar que es suprimeixi %s."
 
-#~ msgid "Reading packages from %s"
-#~ msgstr "S'estan llegint els paquets de %s"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s proporciona %s, però s'ha programat per a desinstal·lar-se."
 
-#~ msgid "Reading patch %s"
-#~ msgstr "S'està llegint el pedaç %s"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr ""
+#~ "%s proporciona %s, però ja hi ha instal·lada una altra versió d'aquest %s."
 
-#~ msgid "Reading patches index %s"
-#~ msgstr "S'està llegint l'índex de pedaços %s"
+#~ msgid ""
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
+#~ msgstr ""
+#~ "%s proporciona %s, però no és instal·lable. Proveu d'instal·lar-lo per sí "
+#~ "mateix per a més detalls."
 
-#~ msgid "Reading pattern from %s"
-#~ msgstr "S'està llegint el patró de %s"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s proporciona %s, però està bloquejat."
 
-#~ msgid "Reading product from %s"
-#~ msgstr "S'està llegint el producte de %s"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s proporciona %s, però s'ha programat per a conservar-se."
 
-#~ msgid "Reading selection from %s"
-#~ msgstr "S'està llegint la selecció de %s"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s proporciona %s, però té una altra arquitectura."
 
-#~ msgid "Reading translation: %s"
-#~ msgstr "S'està llegint la traducció: %s"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "No es pot satisfer el requisit %s per a %s"
 
 #, fuzzy
-#~ msgid "Regarding all resolvables with a compatible architecture."
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
 #~ msgstr ""
-#~ "S'estan capturant els ítems amb dependències que coincideixen amb el "
-#~ "criteri de cerca definit..."
+#~ "Un altre ítem amb dependències instal·lat necessita %s, de manera que no "
+#~ "es desenllaçarà."
 
 #, fuzzy
-#~ msgid "Regarding resolvables with best architecture only."
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
 #~ msgstr ""
-#~ "S'estan capturant els ítems amb dependències que coincideixen amb el "
-#~ "criteri de cerca definit..."
+#~ "Un altre ítem amb dependències instal·lat necessita %s, de manera que no "
+#~ "es desenllaçarà."
 
-#~ msgid "Resolvable"
-#~ msgstr "Resolvable"
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s està bloquejat i no es pot desinstal·lar."
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Sèrbia i Montenegro"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr ""
+#~ "Per causa d'un conflicte relacionat amb %s (%s), cal suprimir el %s que "
+#~ "s'ha d'instal·lar"
 
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "S'està ignorant %s: ja s'ha instal·lat"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr ""
+#~ "A causa de conflictes relacionats amb %s, es marcarà %s com a no "
+#~ "instal·lable"
 
-#~ msgid "Software management is already running."
-#~ msgstr "Ja s'està executant la gestió del programari."
+#~ msgid "from %s"
+#~ msgstr "de %s"
 
-#~ msgid "The script file failed the checksum test."
-#~ msgstr ""
-#~ "El fitxer de l'script no ha superat la prova de suma de verificació."
+#~ msgid " Error!"
+#~ msgstr " Error"
 
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr ""
-#~ "El fitxer signat repomd.xml no ha superat la comprovació de signatura."
+#~ msgid " Important!"
+#~ msgstr " Important"
+
+#~ msgid "%s depended on %s"
+#~ msgstr "%s depenia de %s"
 
 #, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "No hi ha cap altre proveïdor alternatiu instal·lat de %s"
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s requereix %s"
 
-#~ msgid "This would invalidate %s."
-#~ msgstr "%s quedaria invalidat."
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s requereix %s"
 
-#~ msgid "Tried to import not existant key %s into keyring %s"
-#~ msgstr "حاول استيراد مفتاح غير موجود %s إلى حلقة مفاتيح %s"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s s'ha reemplaçat per %s"
 
-#~ msgid "Unable to parse Url authority"
-#~ msgstr "No es pot analitzar l'autoritat de l'URL"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s requereix %s"
 
-#~ msgid "Unable to restore all sources."
-#~ msgstr "No es poden restaurar tots els recursos."
+#~ msgid "%s part of %s"
+#~ msgstr "%s és part de %s"
 
 #, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "L'opció list és desconeguda"
+#~ msgid "Double timeout"
+#~ msgstr "<b>Temps d'espera de doble clic </b>"
 
-#~ msgid "Unlock these resolvables"
-#~ msgstr "Desbloqueja aquests ítems amb dependències"
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s requereix %s"
+
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "No es pot analitzar l'autoritat de l'URL"
+
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "Ignora aquest requisit de manera general"
 
 #~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
 #~ msgstr ""
-#~ "S'ha trobat una clau no fiable:\n"
-#~ "%s|%s|%s\n"
-#~ "Voleu que la clau sigui de confiança?"
+#~ "Una altra solució que s'ha d'instal·lar necessita %s, de manera que no es "
+#~ "desenllaçarà."
 
-#~ msgid "Updating %s to %s"
-#~ msgstr "S'està actualitzant %s a %s"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr ""
+#~ "No es pot crear un fitxer necessari per a executar la instal·lació de "
+#~ "l'actualització."
 
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgid "Unable to restore all sources."
+#~ msgstr "No es poden restaurar tots els recursos."
+
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
 #~ msgstr ""
-#~ "No és possible actualitzar a %s per tal d'evitar que es suprimeixi %s."
+#~ "Ja s'ha registrat al menys una font; no es poden restaurar les fonts "
+#~ "emmagatzemades."
 
-#~ msgid "atom"
-#~ msgstr "àtom"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "No es pot instal·lar %s per a complir les dependències de %s"
 
-#~ msgid "delete %s"
-#~ msgstr "suprimeix %s"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s depend de %s"
 
-#~ msgid "do not forbid installation of %s"
-#~ msgstr "no prohibeixis la instal·lació de %s"
+#~ msgid "Reading index files"
+#~ msgstr "S'estan llegint els fitxers d'índex"
 
-#~ msgid "do not keep %s installed"
-#~ msgstr "no mantinguis %s instal·lat"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr ""
+#~ "El fitxer signat repomd.xml no ha superat la comprovació de signatura."
 
-#~ msgid "for %s"
-#~ msgstr "per a %s"
+#~ msgid "Reading product from %s"
+#~ msgstr "S'està llegint el producte de %s"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "per a requerir %s per a %s en actualitzar %s"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "S'està llegint la llista de fitxers de %s"
 
-#~ msgid "from %s"
-#~ msgstr "de %s"
+#~ msgid "Reading packages from %s"
+#~ msgstr "S'estan llegint els paquets de %s"
 
-#~ msgid "generally ignore of some dependecies"
-#~ msgstr "generalment ignora algunes dependències"
+#~ msgid "Reading selection from %s"
+#~ msgstr "S'està llegint la selecció de %s"
 
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "no s'han pogut resoldre dependències"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "S'està llegint el patró de %s"
 
-#~ msgid "install %s"
-#~ msgstr "instal·la %s"
+#~ msgid "Reading patches index %s"
+#~ msgstr "S'està llegint l'índex de pedaços %s"
 
-#~ msgid "message"
-#~ msgstr "missatge"
+#~ msgid "Reading patch %s"
+#~ msgstr "S'està llegint el pedaç %s"
 
-#~ msgid "package"
-#~ msgstr "paquet"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr ""
+#~ "El fitxer de l'script no ha superat la prova de suma de verificació."
 
-#~ msgid "patch"
-#~ msgstr "pedaç"
+#~ msgid "Reading packages file"
+#~ msgstr "S'està llegint el fitxer de paquets"
 
-#~ msgid "pattern"
-#~ msgstr "patró"
+#~ msgid "Reading translation: %s"
+#~ msgstr "S'està llegint la traducció: %s"
 
-#~ msgid "product"
-#~ msgstr "producte"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "El paquet %s no ha superat la comprovació d'integritat. Voleu intentar "
+#~ "baixar-lo de nou o avortar la instal·lació?"
 
-#~ msgid "rpm output:"
-#~ msgstr "Sortida de l'rpm:"
+#~ msgid " miss checksum."
+#~ msgstr "falta la suma de verificació."
 
-#~ msgid "script"
-#~ msgstr "script"
+#~ msgid " fails checksum verification."
+#~ msgstr " no supera la verificació de la suma de verificació."
 
-#~ msgid "selection"
-#~ msgstr "selecció"
+#~ msgid "Downloading %s"
+#~ msgstr "S'està baixant %s"
 
-#~ msgid "system"
-#~ msgstr "sistema"
+#, fuzzy
+#~ msgid "Regarding all resolvables with a compatible architecture."
+#~ msgstr ""
+#~ "S'estan capturant els ítems amb dependències que coincideixen amb el "
+#~ "criteri de cerca definit..."
 
-#~ msgid "unlock %s"
-#~ msgstr "desbloqueja %s"
+#, fuzzy
+#~ msgid "Make a solver run with best architecture only."
+#~ msgstr ""
+#~ "S'estan capturant els ítems amb dependències que coincideixen amb el "
+#~ "criteri de cerca definit..."
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "desbloqueja tots els ítems amb dependències"
+#, fuzzy
+#~ msgid "Regarding resolvables with best architecture only."
+#~ msgstr ""
+#~ "S'estan capturant els ítems amb dependències que coincideixen amb el "
+#~ "criteri de cerca definit..."
index 3b7684d..61ee685 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# translation of zypp.po to
+# Czech message file for YaST2 (@memory@).
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002 SuSE Linux AG.
+# Copyright (C) 1999-2001 SuSE GmbH.
 #
+# Petr Pavlik <pp@suse.cz>, 1999, 2000, 2001.
+# Klara Cihlarova <koty@seznam.cz>, 2006.
+# Jakub Hegenbart <jhegenbart@suse.cz>, 2007.
+# Marek Stopka <marekstopka@gmail.com>, 2008.
+# Klára Cihlářová <koty@seznam.cz>, 2008.
+# Vojtěch Zeisek <vojta.sc@seznam.cz>, 2008.
+# Marek Stopka <mstopka@opensuse.org>, 2008.
+# Radomír Černoch <radomir.cernoch@gmail.com>, 2009.
+# Vojtěch Zeisek <Vojtech.Zeisek@opensuse.org>, 2010, 2015.
+# Vít Pelčák <vit@pelcak.org>, 2011.
+# Jan Papež <honyczek@centrum.cz>, 2011, 2013, 2014, 2015.
 msgid ""
 msgstr ""
 "Project-Id-Version: zypp\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 17:02\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2016-05-28 19:15+0000\n"
+"Last-Translator: Martin Pluskal <mpluskal@suse.com>\n"
+"Language-Team: Czech <http://l10n.opensuse.org/projects/libzypp/master/cs/>\n"
+"Language: cs\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"X-Generator: Weblate 2.6\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"poskytovatelé, které nelze odinstalovat: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Výjimka HAL"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Neplatný řetězec dotazu LDAP URL"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" Problém s certifikátem SSL. Ověřte, zda je certifikát certifikační autority "
-"platný pro '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Neplatný parametr dotazu LDAP URL %s"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Nelze zkopírovat objekt URL."
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Neplatný odkaz na objekt prázdného URL"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Nelze analyzovat součásti URL."
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Nelze inicializovat atributy mutex."
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Nelze nastavit rekurzivní atribut mutex"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Nelze inicializovat rekurzivní mutex."
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Nelze získat zámek mutex."
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Nelze uvolnit zámek mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Poskytuje"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Předpokládá"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Vyžaduje"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Konflikty"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Zastarávající"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Doporučuje"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Navrhuje"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Vylepšuje"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Doplňky"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Pochybný typ '%s' pro %u kontrolní součet bytů'%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -36,11 +124,7 @@ msgstr " provedeno"
 
 #: zypp/target/TargetImpl.cc:332
 msgid " execution failed"
-msgstr " provádění se nepodařilo"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " provádění přeskočeno při přerušení"
+msgstr " provádění selhalo"
 
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
@@ -48,94 +132,121 @@ msgstr " provádění přeskočeno při přerušení"
 #: zypp/target/TargetImpl.cc:449
 #, c-format, boost-format
 msgid "%s already executed as %s)"
-msgstr "%s již je spuštěno jako %s)"
+msgstr "%s je již prováděn jako %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s koliduje s %s, poskytovatel: %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " provádění přeskočeno během ukončování"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s není součástí úložiště pro inovaci distribuce"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Chyba při odesílání oznámení o aktualizaci."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s má podřadnou architekturu"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Nový aktualizační vzkaz"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s nelze nainstalovat"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Instalace byla zrušena podle příkazu."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s je poskytováno systémem a nelze odinstalovat"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "Bohužel, tato verze libzypp byla sestavena bez podpory HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s nahrazuje %s, poskytovatel: %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "Kontext HAL není připojen"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s vyžaduje %s, ale tento požadavek nelze poskytnout"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "Jednotka HAL není inicializována"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(VYPRŠELO)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "Svazek HAL není inicializován"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(nevyprší nikdy)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Nelze vytvořit připojení dbus."
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(vyprší během 24 hodin)"
-msgstr[1] "(vyprší během 24 hodin)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Nelze vytvořit kontext libhal."
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(vyprší během 24 hodin)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: Nelze nastavit připojení dbus."
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abcházština"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Nelze inicializovat kontext HAL - je spuštěna služba hald?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Ačinézština"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Není jednotka CDROM"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM selhalo: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Nepodařilo se importovat klíč ze souboru %s: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Přidává se repozitář '%s'"
+msgid "Failed to remove public key %s: %s"
+msgstr "Nepodařilo se smazat veřejný klíč %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Je nutné uzavřít se zákazníkem další smlouvu."
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Změněné konfigurační soubory pro %s:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "Program rpm uložil %s jako %s, ale nebylo možné zjistit rozdíl"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"Program rpm uložil %s jako %s.\n"
+"Prvních 25 řádek rozdílů:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "Program rpm vytvořil %s jako %s, ale nebylo možné zjistit rozdíl"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"Program rpm vytvořil %s jako %s.\n"
+"Prvních odlišných 25 řádek:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -143,1219 +254,2418 @@ msgstr "Je nutné uzavřít se zákazníkem další smlouvu."
 msgid "Additional rpm output"
 msgstr "Další výstup programu rpm"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adyghe"
-
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afarština"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "vytvořena záloha %s"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "Podpis je v pořádku"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Afrihili"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Neznámý typ podpisu"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikánština"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "Podpis neověřuje"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afroasijské (jiné)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "Podpis je v pořádku, ale klíč není důvěryhodný"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Ainu"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "Veřejný klíč podpisu není k dispozici"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Akan"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "Soubor neexistuje nebo podpis nemůže být zkontrolován"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Akkadština"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Budou provedeny následující akce:"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Alandské ostrovy"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "Nelze přečíst adresář repozitáře '%1%': Přístup odepřen"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albánie"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Chyba čtení adresáře '%s'"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albánština"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "Nelze přečíst soubor repozitáře '%1%': Přístup odepřen"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aleutština"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Název repozitáře nemůže začínat tečkou."
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Alžírsko"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Alias služby nemůže začínat tečkou."
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Algonquianské jazyky"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Nelze otevřít soubor '%s' pro zápis."
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altajské (jiné)"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr "Neznámá služba '%1%': Odstraňuje se osiřelý repozitář služby '%2%'"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "American Samoa"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Na zadané adrese nebo adresách URL nebyla nalezena platná metadata"
+msgstr[1] "Na zadané adrese nebo adresách URL nebyla nalezena platná metadata"
+msgstr[2] "Na zadané adrese nebo adresách URL nebyla nalezena platná metadata"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amharština"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Nelze vytvořit %s"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Získání podpory vyžaduje další smlouvu se zákazníkem."
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Nelze vytvořit adresář s mezipamětí metadat."
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Vytváří se vyrovnávací paměť repozitáře '%s'"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Nelze vytvořit cache v %s - chybí oprávnění k zápisu."
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Chyba při načtení repozitáře do cache (%d)."
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarctica"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Nepodporovaný typ repozitáře"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua and Barbuda"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Chyba při čtení z '%s'"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Apačské jazyky"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Neznámá chyba při čtení z '%s'"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Arabské země"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Přidává se repozitář '%s'"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonština"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Neplatné jméno repozitáře na '%s'."
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Aramejština"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Odebírá se repozitář '%s'"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Nelze zjistit umístění repozitáře."
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Arakuánština"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "'%s' nelze smazat"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Nelze zjistit umístění služby."
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Schéma URL nepovoluje %s"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenia"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Neplatná %s součást %s"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Arménština"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Neplatná %s součást"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Umělý (jiný)"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Pro toto URL není podporována analýza řetězce dotazu."
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "URL schéma je vyžadovanou součástí"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Ásámština"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Neplatné schéma URL %s"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Asturian"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Schéma URL nepovoluje uživatelské jméno."
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Athapascanské jazyky"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Schéma URL nepovoluje heslo."
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Austrálie"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Schéma URL vyžaduje součást hostitele."
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Australské jazyky"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Schéma URL nepovoluje součást hostitele."
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Rakousko"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Neplatná součást hostitele %s"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronéské (jiné)"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Schéma URL nepovoluje port."
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "'%s' vyžaduje ověření"
+msgid "Invalid port component '%s'"
+msgstr "Neplatná součást portu %s"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Avarština"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Schéma URL vyžaduje název cesty."
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Jazyk Avesty"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Relativní cesta není povolena, pokud existuje autorita"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Avadhí"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Zakódovaný řetězec obsahuje bajt NUL."
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Ajmarština"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Neplatný oddělovací znak pole parametrů"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaijan"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Neplatný oddělovací znak mapy parametrů"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Azerbajdžánština"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Neplatný oddělovací znak spojení pole parametrů"
 
-#: zypp/media/MediaException.cc:47
+#: zypp/ExternalProgram.cc:258
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Chybné jméno souboru: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Chybný přípojný bod média"
+msgid "Can't open pty (%s)."
+msgstr "Nelze otevřít pty (%s)."
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Nelze otevřít rouru (%s)."
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrajn"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Nelze změnit kořenový adresář na '%s' (%s)."
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Bali"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+"Nelze změnit adresář na '%s' uvnitř chrootem změněného kořenového adresáře "
+"'%s' (%s)."
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltské (jiné)"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Nelze změnit adresář na '%s' (%s)."
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Baluchi"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Nelze spustit '%s' (%s)."
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Bambara"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Nelze forknout (%s)."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Jazyky Bamileke"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Příkaz byl ukončen s kódem %d."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Příkaz byl zabit signálem %d (%s)."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladéš"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Příkaz byl ukončen s neznámou chybou."
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantuské (jiné)"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(nevypršelo)"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(VYPRŠELO)"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(vyprší během 24 hodin)"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Baškirština"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(vyprší během 24 hodin)"
+msgstr[1] "(vyprší během 24 hodin)"
+msgstr[2] "(vyprší během 24 hodin)"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baskičtina"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "neznámý"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonésie)"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "nepodporováno"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Beja"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Úroveň 1"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Bělorusko"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Úroveň 2"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Běloruština"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Úroveň 3"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgie"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Je nezbytný další zákaznický kontakt"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "neplatné"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Bemba"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Tato úroveň podpory není specifikována."
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengálsko"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Poskytovatel neposkytuje podporu."
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Detekce problému, tedy technická podpora zajišťuje informaci o slučitelnosti "
+"produktů, asistenci při instalaci a používání, následnou údržbu a základní "
+"řešení problémů. První úroveň podpory neslouží k opravám chyb v produktu."
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Berberské (jiné)"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Izolace problému, tedy podporu při zreplikování zákazníkova problému, "
+"specifikace problematického místa a poskytuje řešení problémů, které neřeší "
+"první úroveň."
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermudy"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Vyřešení problému, tedy technická podpora pro vyřešení složitého problému "
+"zajištěním prostředků pro vyřešení problému zjištěného v podpoře druhé "
+"úrovně."
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Bhodžpuri"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "Další zákaznický kontakt je nezbytný pro získání podpory-"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Neznámá volba podpory. Popis není dostupný"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihárština"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Neznámá země: "
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikolština"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Žádný kód"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Binijština"
+# AD
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Spojené arabské emiráty"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
+# AF
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afghánistán"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolívie"
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua a Barbuda"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia and Herzegovina"
+# AI
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosenština"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albánie"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
+# AM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Arménie"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvet Island"
+# AN
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Nizozemské Antily"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Braj"
+# AO
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brazil"
+# AQ
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktida"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretonština"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "British Indian Ocean Territory"
+# AS
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Americká Samoa"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Britské Panenské ostr. "
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Rakousko"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Austrálie"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Bugiština"
+# AW
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Vytváří se vyrovnávací paměť repozitáře '%s'"
+# KY
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Alandské ostrovy"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulharsko"
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Ázerbájdžán"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulharština"
+# BA
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosna a Hercegovina"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Burjatština"
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladéš"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgie"
 
+# BF
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
 msgstr "Burkina Faso"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Barmština"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulharsko"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrajn"
 
+# BI
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "Burundi"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Kaddo"
+# BJ
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Cambodia"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermudy"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Cameroon"
+# BN
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunej Darussalam"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Nelze vytvořit sat-pool."
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolívie"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Nelze získat zámek mutex."
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brazílie"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Nelze změnit adresář na '%s' (%s)."
+# BS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamy"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-"Nelze změnit adresář na '%s' uvnitř chrootem změněného kořenového adresáře "
-"'%s' (%s)."
+# BT
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhútán"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Nelze použít příkaz chroot na '%s' (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Nelze vytvořit %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "V %s nelze vytvořit mezipaměť – nejsou povolení k zápisu."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Nelze vytvořit adresář mezipaměti metadat."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Položku „%s“ nelze odstranit."
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Nelze provést příkaz '%s' (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Nepodařilo se zjistit umístění úložiště."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Nepodařilo se zjistit umístění služby."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Nelze provést příkaz fork (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Nelze inicializovat atributy mutex."
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Nelze inicializovat rekurzivní mutex."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Soubor „%s“ nelze otevřít pro zápis."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Nelze otevřít soubor zámku: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Nelze otevřít rouru (%s)."
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Nelze otevřít pseudoterminál (pty) (%s)."
+# BV
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvet Island"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Nelze poskytnout soubor '%s' z repozitáře '%s'"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Nelze uvolnit zámek mutex."
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Bělorusko"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Nelze nastavit rekurzivní atribut mutex."
+# BZ
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
 
 #. :BLZ:084:
 #: zypp/CountryCode.cc:194
 msgid "Canada"
 msgstr "Kanada"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Nelze vysunout žádné médium"
-
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Nelze vysunout médium '%s'"
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Soubor bitové kopie z umístění „%s“ nelze připojit, nelze najít dostupné "
-"zařízení loop."
-
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "Nelze přečíst adresář repozitáře %1%, protože přístup byl odmítnut"
-
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "Nelze přečíst soubor repozitáře %1%, protože přístup byl odmítnut"
-
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Nelze zapsat soubor '%s'."
-
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Cape Verde"
-
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "Karibské jazyky"
-
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Katalánština"
-
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "Kavkazské (jiné)"
-
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Cayman Islands"
-
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "Cebuánština"
+# CC
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Kokosový ostrov"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Keltské (jiné)"
+# CG
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
 
+# CF
 #. :COD:180:
 #: zypp/CountryCode.cc:197
 msgid "Central African Republic"
 msgstr "Středoafrická republika"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Středoamerické indiánské (jiné)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Chad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Čagatajské jazyky"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Chamicské jazyky"
-
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "Čamorština"
-
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Změněné konfigurační soubory pro %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Čečenština"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Čerokézština"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Čejenština"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Švýcarsko"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "Čibština"
+# CI
+# fuzzy
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Pobřeží slonoviny"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Čičeva"
+# CK
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cookovy ostrovy"
 
 #. :COK:184:
 #: zypp/CountryCode.cc:202
 msgid "Chile"
-msgstr "Chile"
+msgstr "Čile"
+
+# CM
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
 
 #. :CMR:120:
 #: zypp/CountryCode.cc:204
 msgid "China"
 msgstr "Čína"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Čínština"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolumbie"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "Slang Chinook"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Kostarika"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Čipeva"
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuba"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "Choctawština"
+# CV
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Zelený mys"
 
+# CX
 #. :CPV:132:
 #: zypp/CountryCode.cc:209
 msgid "Christmas Island"
-msgstr "Christmas Island"
+msgstr "Vánoční ostrov"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "Církevní slovanština"
+# CY
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Kypr"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Čukština"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Česká republika"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Chuvash"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Německo"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Newarština"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Džibuti"
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Cocos (Keeling) Islands"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Dánsko"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolumbie"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominika"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Příkaz skončil se stavem %d."
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikánská republika"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Příkaz skončil neznámou chybou."
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Alžírsko"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Příkaz byl ukončen signálem %d (%s)."
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ekvádor"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comoros"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonsko"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Konflikty"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egypt"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo"
+# EH
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Západní Sahara"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cook Islands"
+# ER
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "Koptština"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Španělsko"
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "Kornština"
+# ET
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopie"
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "Korsičtina"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finsko"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Kostarika"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidži"
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Pobřeží slonoviny"
+# FK
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falklandské ostrovy (Malvíny)"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Krí"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Federativní státy Mikronésie"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Krík"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Faerské ostrovy"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Creole a Pidgin (jiné)"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Francie"
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "Creole a Pidgin, založené na angličtině (jiné)"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Kontinentální Francie"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "Creole a Pidgin, založené na francouzštině (jiné)"
+# GA
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "Creole a Pidgin, založené na portugalštině (jiné)"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Velká Británie"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "Crimean Tatar"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Chorvatsko"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Gruzie"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Chorvatské"
+# GF
+# fuzzy
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Francouzská Guajána"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr "Kušitské jazyky (jiné)"
+# GH
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Cyprus"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "České"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grónsko"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Česká republika"
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambie"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "Dakota"
+# GN
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "Dánské"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr "Dargwa"
+# GQ
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Rovníková Guinea"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr "Dayak"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Řecko"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "Delaware"
+# GS
+# fuzzy
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Jazyky Jižní Georgie a Jižních Sandwichových ostrovů"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Dánsko"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "Dinka"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "Divehi"
+# GW
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Džibuti"
+# GY
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "Dogri"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hongkong"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
+# HM
+# fuzzy
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Ostrov Heard a McDonaldovi ostrovy"
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominika"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikánská republika"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Chorvatsko"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Chyba stahování (curl) pro '%s':\n"
-"Kód chyby: %s\n"
-"Chybová zpráva: %s\n"
+# HT
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Při inicializaci stahování (curl) došlo k chybě pro '%s'."
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Maďarsko"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "Drávidské jazyky (jiné)"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonésie"
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "Duala"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irsko"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Podezřelý typ '%1$s' pro kontrolní součet '%3$s', počet bytů: %2$u"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Izrael"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Nizozemština"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Ostrov Man"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Nizozemština, střední (cca 1050-1350)"
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Indie"
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr "Dyula"
+# IO
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Britské indické oceánské teritorium"
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "Dzongkha"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irák"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Východní Timor"
+# IR
+# fuzzy
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Írán"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ekvádor"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Island"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "Efik"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Itálie"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egypt"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "Staroegypština"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamajka"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "Ekajuk"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordánsko"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "Salvador"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japonsko"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Elamite"
+# KE
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Keňa"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Prázdné cílové URI"
+# KG
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kyrgyzstán"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Prázdný souborový systém v URI"
+# KH
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodže"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Prázdný název počítače v URI"
+# KI
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Zakódovaný řetězec obsahuje bajt NUL."
+# KM
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Komory"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Angličtina"
+# KN
+# fuzzy
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts a Nevis"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Angličtina, střední (1100-1500)"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Severní Korea"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Angličtina, stará (cca 450-1100)"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Jižní Korea"
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Rozšiřuje"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuvajt"
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Equatorial Guinea"
+# KY
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Kajmanské ostrovy"
+
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazachstán"
+
+# CD
+# fuzzy
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Laoská lidově demokratická republika"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
+
+# LC
+# fuzzy
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Svatá Lucie"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Lichtenštejnsko"
+
+# LK
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Srí Lanka"
+
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Libérie"
+
+# LS
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litva"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Lucembursko"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Lotyšsko"
+
+# LY
+# fuzzy
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libye"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Maroko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monako"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldávie"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Černá Hora"
+
+# SM
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Svatý Martin"
+
+# MG
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+# MH
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshallovy ostrovy"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonie"
+
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+# MM
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar (Barma)"
+
+# MN
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolsko"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+# MP
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Severní Mariany"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinik"
+
+# MR
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritánie"
+
+# MS
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauricius"
+
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Mali"
+
+# MW
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexiko"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malajsie"
+
+# MZ
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambik"
+
+# NA
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibie"
+
+# NC
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nové Kaledonie"
+
+# NE
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+# NF
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Ostrov Norfolk"
+
+# NG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigérie"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nikaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Nizozemí"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norsko"
+
+# NP
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepál"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+# NU
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nový Zéland"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Omán"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+# PF
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Francouzská Polynésie"
+
+# PG
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Nová Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipíny"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pákistán"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polsko"
+
+# PM
+# fuzzy
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint Pierre a Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Portoriko"
+
+# IO
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestinské teritorium"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugalsko"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Katar"
+
+# RE
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Réunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Rumunsko"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Srbsko"
+
+# RU
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Ruská Federace"
+
+# RW
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudská Arábie"
+
+# SB
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Šalamounovy ostrovy"
+
+# SC
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Sejšely"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Súdán"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Švédsko"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
+
+# SH
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Svatá Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovinsko"
+
+# SJ
+# fuzzy
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Ostrovy Svalbard a Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovensko"
+
+# SL
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+# SM
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+# SN
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+# SO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somálsko"
+
+# SR
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+# ST
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Svatý Tomáš a Princův ostrov"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "Salvador"
+
+# SY
+# fuzzy
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Sýrie"
+
+# SZ
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Svazijsko"
+
+# TC
+# fuzzy
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks a Caicos"
+
+# TD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Čad"
+
+# TF
+# fuzzy
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Francouzská jižní teritoria"
+
+# TG
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thajsko"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadžikistán"
+
+# TK
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+# TM
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistán"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunis"
+
+# TO
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Východní Timor"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turecko"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad a Tobago"
+
+# TV
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzanie"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukrajina"
+
+# UG
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+# UM
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Menší odlehlé ostrovy Spojených států"
+
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Spojené státy"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistán"
+
+# VA
+# fuzzy
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Vatikán"
+
+# VC
+# fuzzy
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Svatý Vincenc a Grenadiny"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Britské Panenské ostrovy"
+
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Panenské ostrovy (U.S.)"
+
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+# VU
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+# WF
+# fuzzy
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Ostrovy Wallis a Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
+
+# YT
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Jižní Afrika"
+
+# ZM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambie"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Neznámý jazyk: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afarština"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abcházština"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Ačinézština"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adyghe"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afroasijské (jiné)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Afrihili"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikánština"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Ainu"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Akan"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Akkadština"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albánština"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aleutština"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Algonkinské jazyky"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Jižní Altaj"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amharština"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Angličtina, stará (cca. 450-1100)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Apačské jazyky"
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Arabština"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Aramejština"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonština"
+
+# AM
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Arménština"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Arakuánština"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Umělý (jiný)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Ásámština"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Asturian"
+
+# modules/inst_language.ycp:93
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Athapascanské jazyky"
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Australské jazyky"
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Avarština"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Jazyk Avesty"
+
+# SZ
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Avadhí"
+
+# MM
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Aymarština"
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Ázerbájdžánština"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Jazyky Bamileke"
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Baškirština"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Baluchi"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Bambara"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Bali"
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Baskičtina"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltské (jiné)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Beja"
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Běloruština"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Bemba"
+
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengálština"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Berberské (jiné)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Bhodžpuri"
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Bihárština"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikolština"
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Binijština"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantuské (jiné)"
+
+# BJ
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosenština"
+
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Braj"
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretonština"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonésie)"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Burjatština"
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Bugiština"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulharština"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Barmština"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Kado"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Středoamerické indiánské (jiné)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "Karibské jazyky"
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "Katalánština"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "Kavkazské (jiné)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "Cebuánština"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Keltské (jiné)"
+
+# KM
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "Čamorština"
+
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "Čibština"
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Čečenština"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Čagatajské jazyky"
+
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Čínština"
+
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Čukština"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Marijština"
+
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "Slang Chinook"
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "Choctawština"
+
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Čipeva"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Čerokézština"
+
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Církevní slovanština"
+
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Chuvash"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Čejenština"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "Při nastavení možností stahování (curl) pro '%s' došlo k chybě:"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Čamicské jazyky"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Chyba při odesílání zprávy s oznámením aktualizace."
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "Koptština"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Při pokusu o čtení z adresy URL „%s“ došlo k chybě."
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "Kornština"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "Korsičtina"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr "Kreole a pidgin, založené na angličtině (jiné)"
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr "Kreole a pidgin, založené na francouzštině (jiné)"
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr "Kreole a pidgin, založené na portugalštině (jiné)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Krí"
+
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "Krymská tatarština"
+
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Kreole a pidgin (jiné)"
+
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kašubština"
+
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr "Kušitské jazyky (jiné)"
+
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "České"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "Dakota"
+
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Dánské"
+
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr "Dargwa"
+
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr "Daják"
+
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "Delaware"
+
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Athabaské jazyky"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
+
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "Dinka"
+
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "Divehi"
+
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "Dogri"
+
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "Drávidské jazyky (jiné)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Dolní lužičtina"
+
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "Duala"
+
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Nizozemština, střední (cca 1050-1350)"
+
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Nizozemské"
+
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
+msgstr "Dyula"
+
+# TO
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "Dzongkha"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "Efik"
+
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "Staroegypština"
+
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "Ekajuk"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Elamština"
+
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Angličtina"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Angličtina, střední (1100-1500)"
 
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonsko"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estonské"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopie"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1366,256 +2676,31 @@ msgstr "Ewe"
 msgid "Ewondo"
 msgstr "Ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Uložení úložiště (%d) do mezipaměti se nezdařilo."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Nepodařilo se odstranit klíč."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Nepodařilo se importovat veřejný klíč ze souboru %s: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Nepodařilo se připojit %s k %s."
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Nepodařilo se poskytnout balíček %s. Chcete jej stáhnout znovu?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Nelze číst z adresáře „%s“."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Nepodařilo se odebrat veřejný klíč %s: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Selhalo odpojení %s"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falkland Islands (Malvinas)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Fang"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Faerské ostrovy"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "Faerština"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Federativní státy Mikronésie"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidži"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
-msgstr "Fidžijština"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Soubor %1%\n"
-"  z instalace\n"
-"     %2%\n"
-"  je v konfliktu se souborem\n"
-"     %3%\n"
-"  z instalace\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Soubor %1%\n"
-"  z instalace\n"
-"     %2%\n"
-"  je v konfliktu se souborem\n"
-"     %3%\n"
-"  z balíčku\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Soubor %1%\n"
-"  z instalace\n"
-"     %2%\n"
-"  je v konfliktu se souborem z instalace\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Soubor %1%\n"
-"  z instalace\n"
-"     %2%\n"
-"  je v konfliktu se souborem z balíčku\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Soubor %1%\n"
-"  z balíčku\n"
-"     %2%\n"
-"  je v konfliktu se souborem\n"
-"     %3%\n"
-"  z instalace\n"
-"     %4%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Soubor %1%\n"
-"  z balíčku\n"
-"     %2%\n"
-"  je v konfliktu se souborem\n"
-"     %3%\n"
-"  z balíčku\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Soubor %1%\n"
-"  z balíčku\n"
-"     %2%\n"
-"  je v konfliktu se souborem z instalace\n"
-"     %3%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Soubor %1%\n"
-"  z balíčku\n"
-"     %2%\n"
-"  je v konfliktu se souborem z balíčku\n"
-"     %3%"
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Soubor '%s' na médiu '%s' nebyl nalezen."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "Soubor neexistuje nebo nelze zkontrolovat jeho podpis"
+msgstr "Fidžijčina"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipínština"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finsko"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1626,40 +2711,16 @@ msgstr "Finské"
 msgid "Finno-Ugrian (Other)"
 msgstr "Ugrofinské (jiné)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Budou provedeny následující akce:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Francie"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Francouzské"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "French Guiana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "French Polynesia"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Francouzská jižní teritoria"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1668,53 +2729,29 @@ msgstr "Francouzština, střední (cca 1400-1600)"
 #. language code: fro
 #: zypp/LanguageCode.cc:451
 msgid "French, Old (842-ca.1400)"
-msgstr "Francouzština, stará (842- cca1400)"
+msgstr "Francouzština, stará (842- cca 1400)"
 
 #. language code: fry fy
 #: zypp/LanguageCode.cc:453
 msgid "Frisian"
 msgstr "Fríština"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Furlánština"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fula"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Furlánština"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaelština"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galicijština"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
+# GA
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1725,25 +2762,50 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbejština"
 
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germánské (jiné)"
+
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
+msgstr "Gruzínština"
+
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+msgid "German"
+msgstr "Německé"
+
 #. language code: gez
 #: zypp/LanguageCode.cc:475
 msgid "Geez"
 msgstr "Giiz"
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Gruzie"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertština"
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
-msgstr "Gruzínština"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaelština"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irština"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galicijština"
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-msgid "German"
-msgstr "Němčina"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manština"
 
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
@@ -1755,30 +2817,6 @@ msgstr "Středohornoněmčina (cca 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Starohornoněmčina (cca 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germánské (jiné)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Německo"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertština"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1799,11 +2837,6 @@ msgstr "Gótština"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Řecko"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1814,60 +2847,15 @@ msgstr "Starořečtina (do 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Novořečtina (od 1453)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grónsko"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guaraní"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
-msgstr "Gudžarádština"
-
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
+msgstr "Gudžarátština"
 
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
@@ -1879,51 +2867,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
+# HT
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitština"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Výjimka HAL"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "Kontext HAL není připojen."
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "Jednotka HAL není inicializována."
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "Svazek HAL není inicializován."
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Povolili jste všechny požadované repozitáře?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
-msgstr "Havajština"
-
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Ostrov Heard a McDonaldovi ostrovy"
+msgstr "Havajská tahitština"
 
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
@@ -1943,327 +2901,166 @@ msgstr "Hiligaynonština"
 #. language code: him
 #: zypp/LanguageCode.cc:525
 msgid "Himachali"
-msgstr "Himachali"
+msgstr "Himáčalí"
 
 #. language code: hin hi
 #: zypp/LanguageCode.cc:527
 msgid "Hindi"
 msgstr "Hindština"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hirimotu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Historie:"
-
+# HT
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
-msgstr "Hittite"
+msgstr "Chetitština"
 
 #. language code: hmn
 #: zypp/LanguageCode.cc:531
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Vatican City State (Holy See)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+# HT
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hirimotu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hongkong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Horní lužičtina"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
-msgstr "Maďarština"
-
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Maďarsko"
+msgstr "Maďarské"
 
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
 msgstr "Hupa"
 
+# IR
+# fuzzy
 #. language code: iba
 #: zypp/LanguageCode.cc:541
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Island"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
 msgid "Icelandic"
-msgstr "Islandské"
+msgstr "Islandština"
 
 #. language code: ido io
 #: zypp/LanguageCode.cc:549
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
-
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
-msgstr "Ijo"
-
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr "Ilokánsština"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Inari Sami"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Indie"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr "Indické (jiné)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indoevropské (jiné)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonésie"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "Indonézština"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "Ingush"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Instalace byla zrušena podle příkazu."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (IALA)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "Inupiaq"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Neplatná %s součást"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Neplatná %s součást %s"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Neplatný parametr dotazu LDAP URL %s"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Neplatný řetězec dotazu LDAP URL"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Neplatné schéma URL %s"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Neplatný odkaz na objekt prázdného URL"
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
+msgstr "Ijo"
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Neplatná součást hostitele %s"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Neplatný oddělovací znak spojení pole parametrů"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Neplatný oddělovací znak pole parametrů"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr "Ilokánsština"
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Neplatný oddělovací znak mapy parametrů"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (IALA)"
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Neplatná součást portu %s"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr "Indické (jiné)"
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Neplatný regulární výraz: „%s“"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "Indonéština"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Chybný regulární výraz '%s': regcomp vrátil %d"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indoevropské (jiné)"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Název souboru úložiště na adrese URL „%s“ je neplatný."
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "Ingush"
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iraq"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "Inupiaq"
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Íránské (jiné)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irák"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irsko"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irština"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Irština, střední (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Irština, stará (do 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Irokézské jazyky"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Ostrov Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Izrael"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
-msgstr "Italské"
-
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Itálie"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamajka"
-
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japonsko"
-
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
-msgstr "Japonské"
+msgstr "Italština"
 
 #. language code: jav jv
 #: zypp/LanguageCode.cc:579
 msgid "Javanese"
 msgstr "Jávština"
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordánsko"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
-msgstr "Židovské arabské jazyky"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
+msgstr "Japonština"
 
 #. language code: jpr
 #: zypp/LanguageCode.cc:585
 msgid "Judeo-Persian"
 msgstr "Židovské perské jazyky"
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardian"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
+msgstr "Židovské arabské jazyky"
+
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Karakalpakština"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2280,11 +3077,6 @@ msgstr "Kačin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmyčtina"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2295,21 +3087,6 @@ msgstr "Kambština"
 msgid "Kannada"
 msgstr "Kannadština"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanurijština"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Karakalpakština"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karachay-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2320,45 +3097,42 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kašmírština"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kašubština"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanurijština"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
 msgid "Kawi"
 msgstr "Kawi"
 
+# KZ
+# fuzzy
 #. language code: kaz kk
 #: zypp/LanguageCode.cc:609
 msgid "Kazakh"
 msgstr "Kazaština"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardian"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Kmérština"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
-msgstr "Khosianské (jiné)"
+msgstr "Khoisanské (jiné)"
+
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmérština"
 
 #. language code: kho
 #: zypp/LanguageCode.cc:619
@@ -2370,11 +3144,6 @@ msgstr "Khotanština"
 msgid "Kikuyu"
 msgstr "Kikuju"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2383,33 +3152,29 @@ msgstr "Kinyarwanda"
 #. language code: kir ky
 #: zypp/LanguageCode.cc:625
 msgid "Kirghiz"
-msgstr "Kirgizština"
+msgstr "Kyrgyzština"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingonština"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkanština"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
 msgid "Komi"
 msgstr "Komi"
 
+# CG
 #. language code: kon kg
 #: zypp/LanguageCode.cc:633
 msgid "Kongo"
 msgstr "Konžština"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkanština"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2425,11 +3190,21 @@ msgstr "Kosraean"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karachay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kruština"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2443,28 +3218,14 @@ msgstr "Kumykština"
 #. language code: kur ku
 #: zypp/LanguageCode.cc:651
 msgid "Kurdish"
-msgstr "Kurdština"
-
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
+msgstr "Kudština"
 
+# KE
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuvajt"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kyrgyzstan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2485,133 +3246,74 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Laoština"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Laoská lidově demokratická republika"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latina"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Lotyšsko"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
-msgstr "Lotyšština"
-
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Úroveň 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Úroveň 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Úroveň 3"
+msgstr "Lotyština"
 
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezghian"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Liberia"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Lichtenštejnsko"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
 msgstr "Limburština"
 
+# AO
 #. language code: lin ln
 #: zypp/LanguageCode.cc:671
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litva"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
-msgstr "Litva"
-
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Umístění „%s“ je dočasně nedostupné."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Dolnoněmčina"
+msgstr "Litevština"
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Dolní lužičtina"
+# CG
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Lucemburština"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
-msgstr "Luba lulua"
+msgstr "Luba-lulua"
+
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+# GH
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
 
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseňo"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lule Sami"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2620,42 +3322,18 @@ msgstr "Lunda"
 #. language code: luo
 #: zypp/LanguageCode.cc:691
 msgid "Luo (Kenya and Tanzania)"
-msgstr "Luoština"
+msgstr "Luoština (Keňa a Tanzanie)"
 
 #. language code: lus
 #: zypp/LanguageCode.cc:693
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Lucembursko"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Lucemburština"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonie"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Makedonština"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagascar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2666,188 +3344,79 @@ msgstr "Madurština"
 msgid "Magahi"
 msgstr "Magahi"
 
+# MH
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Maršalština"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
 msgstr "Maithili"
 
+# MG
 #. language code: mak
 #: zypp/LanguageCode.cc:707
 msgid "Makasar"
 msgstr "Makasarština"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malgašština"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malajština"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malajámština"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malajsie"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Mali"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Chybné URI"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltština"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchu"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandarština"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Malinština"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipurština"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Jazyky Manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manština"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maorština"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronéské (jiné)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Maráthština"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Marijština"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshall Islands"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Maršalština"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinik"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
+# MW
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
-msgstr "Masajština"
-
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritania"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Mayské jazyky"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "Zdroj médií '%s' neobsahuje požadované médium."
+msgstr "Malajština"
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Médium '%s' používá jiná instance."
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malajština"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Médium nebylo připojeno"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Při pokusu o provedení akce '%s' nebylo otevřeno médium."
+# MM
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandarština"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mendeština"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Kontinentální Francie"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexiko"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Irština, střední (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2859,86 +3428,65 @@ msgstr "Mikmak"
 msgid "Minangkabau"
 msgstr "Minangkabauština"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandese"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Různé jazyky"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-khmérské (jiné)"
+
+# MG
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malgaština"
+
+# MV
+# fuzzy
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltština"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manču"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipurština"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Jazyky manobo"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldavština"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldávie"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-khmerské (Other)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monako"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolia"
-
+# MN
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongolština"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Černá Hora"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Maroko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambique"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2949,210 +3497,155 @@ msgstr "Více jazyků"
 msgid "Munda languages"
 msgstr "Mundské jazyky"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Krík"
+
+# FM
+# fuzzy
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandese"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Mayské jazyky"
+
+# SY
+# fuzzy
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Severoamerické indiánské"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+# NP
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Neapolština"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
-msgstr "Navajo"
-
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Severní ndebele"
+msgstr "Navaho"
 
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
-msgstr "Jižní ndebele"
+msgstr "Jižní Ndebele"
+
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Severní Ndebele"
 
+# TO
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Neapolština"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepal Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Dolnoněmčina"
 
+# NP
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepálština"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Nizozemí"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Netherlands Antilles"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "New Caledonia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nový Zéland"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Nová zpráva o aktualizaci"
+# NP
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepál Bhasa"
 
+# printers.ycp.noloc:1270
+# printers.ycp.noloc:1270
+# printers.ycp.noloc:1270
+# printers.ycp.noloc:1270
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Niačtina"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nikaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Nigero-kordofánské (jiné)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilosaharské (jiné)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
+# NU
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niuečtina"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Žádný kód"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Norština (Nynorsk)"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Adresa URL nebyla v repozitáři nalezena."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Norština (Bokmal)"
 
+# TO
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolk Island"
-
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
-msgstr "Norština, stará"
-
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Severoamerické indiánské"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Severní Korea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Northern Mariana Islands"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Severní sámština"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Severní sotho"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norsko"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
+msgstr "Norština, stará"
 
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
-msgstr "Norština"
-
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Bokmĺl"
+msgstr "Norské"
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Není jednotka CDROM"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Severní Sotho"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Núbijské jazyky"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Newarština"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Čičeva"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3168,1693 +3661,2019 @@ msgstr "Nyankolština"
 msgid "Nyoro"
 msgstr "Nyoro"
 
+# printers.ycp.noloc:1400
+# printers.ycp.noloc:1400
+# printers.ycp.noloc:1400
+# printers.ycp.noloc:1400
 #. language code: nzi
 #: zypp/LanguageCode.cc:827
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Nahrazuje"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
-msgstr "Okcitánština"
+msgstr "Okcitánština (po 1500)"
 
 #. language code: oji oj
 #: zypp/LanguageCode.cc:831
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Omán"
+# SY
+# fuzzy
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
+msgstr "Orijština"
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Je požadován alespoň jeden z atributů „%s“ a „%s“."
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
+msgstr "Oromo"
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Operace není médiem podporována"
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+msgid "Osage"
+msgstr "Osage"
+
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
+msgstr "Osetština"
+
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Osmanská turečtina (1500-1928)"
+
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
+msgstr "Osmanské jazyky"
+
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papuánština (jiné)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinština"
+
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr "Pahlaví"
+
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "Pampanga"
+
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "Pandžábština"
+
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "Papiamento"
+
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palajština"
+
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
+msgstr "Staroperština (cca 600-400 př. n. l.)"
+
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Perština"
+
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
+msgstr "Filipínské (jiné)"
+
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
+msgstr "Féničtina"
+
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Páli"
+
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
+msgstr "Polština"
+
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeian"
+
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
+msgstr "Portugalština"
+
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
+msgstr "Prakritské jazyky"
+
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
+msgstr "Staroprovensálština (do 1500)"
+
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
+msgstr "Paštunština"
+
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
+msgstr "Kačuánština (Inkové)"
+
+# KZ
+# fuzzy
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
+msgstr "Rádžáshánština"
+
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
+msgstr "Rapanuiština (tahitština Velikonočního ostrova - Rapa-Nui)"
+
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
+msgstr "Rarotongánština (tahitština Velikonočního ostrova - Rapa-Nui)"
+
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
+msgstr "Románské (jiné)"
+
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Rétorománština"
+
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "Romština"
+
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumunština"
+
+# RE
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundština"
+
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Ruština"
+
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandaweština"
+
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sangoština"
+
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Jakutština"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Jihoamerické indiánské (jiné)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Salishanské jazyky"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Samaritská Aramejština"
+
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
+msgstr "Sanskrt"
+
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasačtina"
+
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "Santálština"
+
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Srbština"
+
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Sicilština"
+
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "Skotština"
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
-msgstr "Orijština"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Chorvatské"
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
-msgstr "Oromo"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "Selkupština"
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
-msgid "Osage"
-msgstr "Osage"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "Semitské (jiné)"
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
-msgstr "Osetština"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Irština, stará (do 900)"
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
-msgstr "Otomianské jazyky"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Znakové řeči"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Balíček %s byl v průběhu přenosu zřejmě poškozen. Chcete jej stáhnout znovu?"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "Šanština"
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr "Pahlaví"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "Sidamské jazyky"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pákistán"
+# AO
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr "Sinhalština"
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+msgid "Siouan Languages"
+msgstr "Siouanské jazyky"
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palajština"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sinotibetské (jiné)"
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestinské teritorium"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
+msgstr "Slovanské (jiné)"
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Páli"
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "Slovenština"
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "Pampanga"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Slovinština"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Jižní Sami"
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinština"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Severní Sami"
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "Pandžábština"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Jazyky Sami (jiné)"
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "Papiamento"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lule Sami"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua New Guinea"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Inari Sami"
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papuánština"
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoánština"
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Skolt Sami"
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Cesta '%s' na médiu '%s' není adresář."
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Šonština"
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Cesta '%s' na médiu '%s' není soubor."
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhština"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Oprávnění k přístupu k '%s' je odepřeno."
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Perština"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "Soghdština"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr "Staroperština (cca 600-400 př. n. l.)"
+# SO
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Somálština"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "Songhajština"
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
-msgstr "Filipínské (jiné)"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "Jihosotština"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipíny"
+#. language code: spa es
+#: zypp/LanguageCode.cc:989
+msgid "Spanish"
+msgstr "Španělština"
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
-msgstr "Féničtina"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardinština"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Sererština"
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Nejprve nainstalujte balíček 'lsof'."
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilosaharské (jiné)"
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeian"
+# HT
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swati"
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polsko"
+#. language code: suk
+#: zypp/LanguageCode.cc:999
+msgid "Sukuma"
+msgstr "Sukuma"
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
-msgstr "Polské"
+#. language code: sun su
+#: zypp/LanguageCode.cc:1001
+msgid "Sundanese"
+msgstr "Sundánština"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugalsko"
+#. language code: sus
+#: zypp/LanguageCode.cc:1003
+msgid "Susu"
+msgstr "Susu"
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
-msgstr "Portugalské"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumerština"
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
-msgstr "Prakritské jazyky"
+# SZ
+#. language code: swa sw
+#: zypp/LanguageCode.cc:1007
+msgid "Swahili"
+msgstr "Svahilština"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Předem požadované součásti"
+#. language code: swe sv
+#: zypp/LanguageCode.cc:1009
+msgid "Swedish"
+msgstr "Švédština"
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Zjišťování problémů, tj. technická podpora, která poskytuje informace o "
-"kompatibilitě, pomoc s instalací, podporu použití, průběžnou údržbu a "
-"základní návod pro odstraňování potíží. Účelem podpory úrovně 1 není "
-"napravovat chyby vzniklé vadou produktu."
+# SY
+# fuzzy
+#. language code: syr
+#: zypp/LanguageCode.cc:1011
+msgid "Syriac"
+msgstr "Syrština"
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Lokalizace problémů, tj. technická podpora, která umí přesně opakovat "
-"problémy zákazníků, lokalizovat oblast problémů a poskytovat řešení těch "
-"problémů, které nebyly vyřešeny podporou úrovně 1."
+#. language code: tah ty
+#: zypp/LanguageCode.cc:1013
+msgid "Tahitian"
+msgstr "Tahitština"
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Řešení problémů, tj. technická podpora, která řeší složité problémy "
-"zajištěním technických pracovníků, kteří vyřeší vady produktů zjištěné na "
-"úrovni 2."
+#. language code: tai
+#: zypp/LanguageCode.cc:1015
+msgid "Tai (Other)"
+msgstr "Thajské (jiné)"
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
-msgstr "Staroprovensálština (do 1500)"
+#. language code: tam ta
+#: zypp/LanguageCode.cc:1017
+msgid "Tamil"
+msgstr "Tamilština"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Poskytuje"
+#. language code: tat tt
+#: zypp/LanguageCode.cc:1019
+msgid "Tatar"
+msgstr "Tatarština"
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Portoriko"
+#. language code: tel te
+#: zypp/LanguageCode.cc:1021
+msgid "Telugu"
+msgstr "Telugština"
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
-msgstr "Paštunština"
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Katar"
+#. language code: ter
+#: zypp/LanguageCode.cc:1025
+msgid "Tereno"
+msgstr "Tereno"
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
-msgstr "Jazyk kmene Quechua"
+#. language code: tet
+#: zypp/LanguageCode.cc:1027
+msgid "Tetum"
+msgstr "Tetum"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Pro toto URL není podporována analýza řetězce dotazu."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tádžičtina"
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "Systém RPM selhal: "
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalština"
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Retorománština"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "Thajština"
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
-msgstr "Rádžasthánština"
+#. language code: tib bod bo
+#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
+msgid "Tibetan"
+msgstr "Tibetština"
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
-msgstr "Rapanuiština"
+#. language code: tig
+#: zypp/LanguageCode.cc:1039
+msgid "Tigre"
+msgstr "Tigre"
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr "Rarotongánština"
+# NG
+#. language code: tir ti
+#: zypp/LanguageCode.cc:1041
+msgid "Tigrinya"
+msgstr "Tigriňňa"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Doporučení"
+#. language code: tiv
+#: zypp/LanguageCode.cc:1043
+msgid "Tiv"
+msgstr "Tiv"
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Relativní cesta není povolena, pokud existuje autorita"
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingonština"
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Odebírá se repozitář '%s'"
+#. language code: tli
+#: zypp/LanguageCode.cc:1049
+msgid "Tlingit"
+msgstr "Tlingit"
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Alias úložiště nemůže začínat tečkou."
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamašek"
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Požadovaný atribut „%s“ chybí."
+#. language code: tog
+#: zypp/LanguageCode.cc:1053
+msgid "Tonga (Nyasa)"
+msgstr "Tongánština (Nyasa)"
 
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Vyžaduje"
+# SB
+#. language code: ton to
+#: zypp/LanguageCode.cc:1055
+msgid "Tonga (Tonga Islands)"
+msgstr "Tongánština (Tonga)"
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "Románské (jiné)"
+#. language code: tsi
+#: zypp/LanguageCode.cc:1059
+msgid "Tsimshian"
+msgstr "Tsimshijské jazyky"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Rumunsko"
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Čwana"
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumunština"
+# TO
+#. language code: tso ts
+#: zypp/LanguageCode.cc:1063
+msgid "Tsonga"
+msgstr "Tsonga"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "Romština"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmenština"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundština"
+#. language code: tum
+#: zypp/LanguageCode.cc:1067
+msgid "Tumbuka"
+msgstr "Tumbuka"
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Ruské"
+#. language code: tup
+#: zypp/LanguageCode.cc:1069
+msgid "Tupi Languages"
+msgstr "Jazyky tupi"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Russian Federation"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "Turečtina"
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altajské (jiné)"
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Saint Helena"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Ťwiština"
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts a Nevis"
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "Tuvština"
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Svatá Lucie"
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "Udmurt"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint Martin"
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "Ugaritština"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre a Miquelon"
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "Ujgurština"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Svatý Vincenc a Grenadiny"
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "Ukrajinština"
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Salishanské jazyky"
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "Umbundu"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Aramejština"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Neurčený"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Jazyky Sami (jiné)"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Urdština"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Uzbečtina"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoánština"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vai"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Venda"
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandaweština"
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnamština"
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sangoština"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Volapük"
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
-msgstr "Sanskrt"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Voština"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "Santálština"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "Wakashanské jazyky"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome and Principe"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Walamo"
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardinština"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Waray"
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasačtina"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Washo"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudská Arábie"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Welština"
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "Skotština"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Sorbské jazyky"
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "Selkupština"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Valonština"
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "Semitské (jiné)"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolof"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmyčtina"
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Srbsko"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhoština"
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Srbština"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yao"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Sererština"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Japština"
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Alias služby nemůže začínat tečkou."
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Jidiš"
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "Modul plug-in nepodporuje změnu atributu."
+# AW
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Jarubština"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelles"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Jazyky yupik"
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "Šanština"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapotécké jazyky"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Šonština"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
+# BT
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Sicilština"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zandština"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "Sidamské jazyky"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Znakové řeči"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Pokus o import neexistujícího klíče %s do klíčenky %s"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "Podpis nebyl ověřen"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Nepodařilo se smazat klíč."
 
 #: zypp/KeyRing.cc:575
 #, c-format, boost-format
 msgid "Signature file %s not found"
-msgstr "Soubor %s s podpisy nebyl nalezen"
+msgstr "Soubor s podpisem %s nebyl nalezen"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "Podpis je v pořádku"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Nelze poskytnout soubor '%s' z repozitáře '%s'"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "Podpis je v pořádku, ale klíč není důvěryhodný"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Adresa URL nebyla nalezena v repozitáři."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "Zásuvný modul Service nepodporuje změnu atributů."
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr "Balíček %s se zřejmě poškodil během přenosu. Chcete pokus opakovat?"
 
 #: zypp/repo/PackageProvider.cc:216
 msgid "Signature verification failed"
-msgstr "Ověření podpisu se nezdařilo"
+msgstr "Ověření podpisu selhalo"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "Veřejný klíč pro podepisování není k dispozici"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Není možné získat balíček %s. Chcete pokus opakovat?"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "Kontrola aplikování delta RPM se nezdařila."
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhština"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "Aplikování delta RPM se nezdařilo."
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"Systémová správa je zamknut aplikací, která má pid %d (%s).\n"
+"Prosím uzavřete tuto aplikaci, než se budete znovu pokoušet o práci se "
+"systémovou správou."
 
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
-msgstr "Sinhalština"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s nenáleží do repozitáře pro aktualizaci distribuce"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sinotibetské (jiné)"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s má podřadnou architekturu"
 
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-msgid "Siouan Languages"
-msgstr "Siouanské jazyky"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problém s nainstalovaným balíčkem %s"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Skolt Sami"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "protichůdné požadavky"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Athabaské jazyky"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "nějaký problém se závislostmi"
 
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr "Slovanské (jiné)"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "nic neposkytuje vyžádaný %s"
 
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "Slovenské"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Máte povoleny všechny vyžadované repozitáře?"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovensko"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "balíček %s neexistuje"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovinsko"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "nepodporovaný požadavek"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Slovinština"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s je poskytováno systémem a nelze odinstalovat"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "Soghdština"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s nelze nainstalovat"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Solomon Islands"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "nic neposkytuje %s, který je požadován %s"
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Somálština"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Nelze nainstalovat %s a zároveň %s"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s koliduje s %s z balíčku %s"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "Songhajština"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s nahrazuje zastaralý %s z balíčku %s"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "nainstalovaný zastaralý %s je poskytovaný %s z balíčku %s"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Srbské jazyky"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "vyřešitelné %s je v konfliktu s %s, které sám poskytuje"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s vyžaduje %s, ale tento požadavek nemůže být splněn"
+
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "odstranění poskytovatelé: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
 msgstr ""
-"Je nám líto, ale tato verze libzypp byla vytvořena bez podpory vrstvy HAL."
+"\n"
+"neinstalovatelní poskytovatelé: "
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "Jihosotština"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "neinstalovatelní poskytovatelé: "
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "odebrat zámek pro umožnění odebrání %s"
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "neinstalovat %s"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "ponechat %s"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "odebrat zámek pro umožnění instalace z %s"
+
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Tento požadavek poškodí váš systém!"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Jižní Afrika"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ignorovat varování poškozeného systému"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Jihoamerické indiánské (jiné)"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "nenabízet řešení, která zahrnují %s"
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "South Georgia and the South Sandwich Island"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "neptat se na smazání všech balíčků poskytujících %s"
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Jižní Korea"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "neinstalovat nejnovější verzi %s"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Jižní Altaj"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "ponechat %s i přes podřadnou architekturu."
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Jižní Sami"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "Instalovat %s i přes podřadnou architekturu"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Španělsko"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "ponechat zastaralý %s"
 
-#. language code: spa es
-#: zypp/LanguageCode.cc:989
-msgid "Spanish"
-msgstr "Španělské"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "instalovat %s z vyloučeného repozitáře"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "downgrade %s na %s"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Súdán"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "změna architektury z %s na %s"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Návrhy"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"instalovat %s (i se změnou poskytovatele)\n"
+"  %s  -->  %s"
 
-#. language code: suk
-#: zypp/LanguageCode.cc:999
-msgid "Sukuma"
-msgstr "Sukuma"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "nahrazení %s %s"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumerština"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "odstraňování %s"
 
-#. language code: sun su
-#: zypp/LanguageCode.cc:1001
-msgid "Sundanese"
-msgstr "Sundánština"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "porušit %s ignorováním některých z jeho závislostí"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Doplňky"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "obecně ignorovat některé závislosti"
 
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "Chybí vyžadovaný atribut '%s'."
 
-#. language code: sus
-#: zypp/LanguageCode.cc:1003
-msgid "Susu"
-msgstr "Susu"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Jeden nebo oba atributy '%s' nebo '%s' jsou vyžadovány."
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard and Jan Mayen Islands"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Nelze otevřít soubor zámku: %s"
 
-#. language code: swa sw
-#: zypp/LanguageCode.cc:1007
-msgid "Swahili"
-msgstr "Svahilština"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Tato akce je právě spuštěna jiným programem."
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Historie:"
 
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Neznámý mód shody '%s'"
 
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Švédsko"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Neznámý mód shody '%s' pro rys '%s'"
 
-#. language code: swe sv
-#: zypp/LanguageCode.cc:1009
-msgid "Swedish"
-msgstr "Švédské"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Chybný regulární výraz '%s': regcomp vrátil %d"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Švýcarsko"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Chybný regulární výraz '%s'"
 
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Suriname"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Nejprve nainstalujte balíček 'lsof'."
 
-#. language code: syr
-#: zypp/LanguageCode.cc:1011
-msgid "Syriac"
-msgstr "Syrština"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Pro '%s' je vyžadováno ověřování"
 
-#: zypp/media/MediaException.cc:91
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Systémová výjimka '%s' na médiu '%s'."
+msgid "Failed to mount %s on %s"
+msgstr "Nepodařilo se připojit %s do %s"
 
-#: zypp/ZYppFactory.cc:394
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Správa systému je uzamčena aplikací s identifikátorem PID %d (%s). \n"
-"Ukončete tuto aplikaci a opakujte akci."
+msgid "Failed to unmount %s"
+msgstr "Nepodařilo se odpojit %s"
 
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalština"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Špatný název souboru: %s"
 
-#. language code: tah ty
-#: zypp/LanguageCode.cc:1013
-msgid "Tahitian"
-msgstr "Tahitština"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Medium nebylo otevřeno během pokusu o spuštění akcí '%s'."
 
-#. language code: tai
-#: zypp/LanguageCode.cc:1015
-msgid "Tai (Other)"
-msgstr "Thajské (jiné)"
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "Soubor '%s' nebyl nalezen na médiu '%s'"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Tchaj-wan"
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Nemůžu zapsat do souboru '%s'."
 
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tádžičtina"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Médium není připojeno"
 
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadžikistán"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Špatný bod připojení média"
 
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamašek"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Inicializace stažení (curl) '%s' selhala"
 
-#. language code: tam ta
-#: zypp/LanguageCode.cc:1017
-msgid "Tamil"
-msgstr "Tamilština"
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr "Systémová výjimka '%s' na médiu '%s'."
+
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Cesta '%s' na médiu '%s' není souborem."
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzánie"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Cesta '%s' na médiu '%s' není adresářem."
 
-#. language code: tat tt
-#: zypp/LanguageCode.cc:1019
-msgid "Tatar"
-msgstr "Tatarština"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Zdeformované URI"
 
-#. language code: tel te
-#: zypp/LanguageCode.cc:1021
-msgid "Telugu"
-msgstr "Telugština"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Není vyplněno hostname v URI"
 
-#. language code: ter
-#: zypp/LanguageCode.cc:1025
-msgid "Tereno"
-msgstr "Tereno"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Prázdný souborový systém v URI"
 
-#. language code: tet
-#: zypp/LanguageCode.cc:1027
-msgid "Tetum"
-msgstr "Tetum"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Chybí cíl v URI"
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr "Thajština"
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Nepodporované URI ve schématu '%s'."
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thajsko"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operace není médiem podporována"
 
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Není určena úroveň podpory"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Stažení (curl) '%s' selhalo:\n"
+"Chybový kód: %s\n"
+"Chybová zpráva: %s\n"
 
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Dodavatel neposkytuje podporu."
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "Během stahování nastavení pro  '%s' došlo chybě:"
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Tato akce je již spuštěna jiným programem."
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Zdroj média \"%s\" neobsahuje požadované médium"
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Tento požadavek poškodí váš systém!"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "Médium '%s' je používáno jinou instancí"
 
-#. language code: tib bod bo
-#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
-msgid "Tibetan"
-msgstr "Tibetština"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Nemůžu vysunout žádné médium"
 
-#. language code: tig
-#: zypp/LanguageCode.cc:1039
-msgid "Tigre"
-msgstr "Tigre"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
+msgstr "Nemůžu vysunout médium '%s'"
 
-#. language code: tir ti
-#: zypp/LanguageCode.cc:1041
-msgid "Tigrinya"
-msgstr "Tigriňňa"
+#: zypp/media/MediaException.cc:199
+#, c-format, boost-format
+msgid "Permission to access '%s' denied."
+msgstr "Přístup k '%s' byl zamítnut."
 
 #: zypp/media/MediaException.cc:207
 #, c-format, boost-format
 msgid "Timeout exceeded when accessing '%s'."
-msgstr "Při přístupu k „%s“ byl překročen časový limit."
+msgstr "Během přístupu k '%s' byl dosažen časový limit."
 
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Umístění '%s' je dočasně nedostupné."
 
-#. language code: tiv
-#: zypp/LanguageCode.cc:1043
-msgid "Tiv"
-msgstr "Tiv"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" Problém s SSL certifikátem, ověřte, že je certifikát certifikační autority "
+"pro '%s' v pořádku."
 
-#. language code: tli
-#: zypp/LanguageCode.cc:1049
-msgid "Tlingit"
-msgstr "Tlingit"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr "Nelze najít dostupné zařízení loop pro připojení souboru obrazu z '%s'"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Nepodporovaná HTTP ověřovací metoda '%s'"
 
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Navštivte zákaznické centrum Novell abyste se ujistili, že je vaše "
+"registrace platná a nevypršela."
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Nemohu vytvořit sat-pool."
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Soubor %1%\n"
+"  z balíčku\n"
+"     %2%\n"
+"  je v konfliktu se souborem z balíčku\n"
+"     %3%"
 
-#. language code: tog
-#: zypp/LanguageCode.cc:1053
-msgid "Tonga (Nyasa)"
-msgstr "Tongánština (Nyasa)"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Soubor %1%\n"
+"  z balíčku\n"
+"     %2%\n"
+"  je v konfliktu se souborem instalovaným z\n"
+"     %3%"
 
-#. language code: ton to
-#: zypp/LanguageCode.cc:1055
-msgid "Tonga (Tonga Islands)"
-msgstr "Tongánština (Tonga)"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Soubor %1%\n"
+"  instalovaný z\n"
+"     %2%\n"
+"  je v konfliktu se souborem z balíčku\n"
+"     %3%"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Pokus o import neexistujícího klíče %s do klíčenky %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Soubor %1%\n"
+"  instalovaný z\n"
+"     %2%\n"
+"  je v konfliktu se souborem instalovaným z\n"
+"     %3%"
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad and Tobago"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Soubor %1%\n"
+"  z balíčku\n"
+"     %2%\n"
+"  je v konfliktu se souborem\n"
+"     %3%\n"
+"  z balíčku\n"
+"     %4%"
 
-#. language code: tsi
-#: zypp/LanguageCode.cc:1059
-msgid "Tsimshian"
-msgstr "Tsimshijské jazyky"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Soubor %1%\n"
+"  z balíčku\n"
+"     %2%\n"
+"  je v konfliktu se souborem\n"
+"     %3%\n"
+"  instalovaným z\n"
+"     %4%"
 
-#. language code: tso ts
-#: zypp/LanguageCode.cc:1063
-msgid "Tsonga"
-msgstr "Tsonga"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Soubor %1%\n"
+"  instalovaný z\n"
+"     %2%\n"
+"  je v konfliktu se souborem\n"
+"     %3%\n"
+"  z balíčku\n"
+"     %4%"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Čwana"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Soubor %1%\n"
+"  instalovaný z\n"
+"     %2%\n"
+"  je v konfliktu se souborem\n"
+"     %3%\n"
+"  instalovaným z\n"
+"     %4%"
 
-#. language code: tum
-#: zypp/LanguageCode.cc:1067
-msgid "Tumbuka"
-msgstr "Tumbuka"
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "obecně ignorovat některé závislosti"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunis"
+#~ msgid "do not keep %s installed"
+#~ msgstr "neudržovat %s nainstalován"
 
-#. language code: tup
-#: zypp/LanguageCode.cc:1069
-msgid "Tupi Languages"
-msgstr "Jazyky Tupi"
+#~ msgid "%s remove failed"
+#~ msgstr "فشلت إزالة %s"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turecko"
+#, fuzzy
+#~ msgid "Invalid user name or password."
+#~ msgstr "كلمة السر CA غير صالحة."
 
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "Turecké"
+#~ msgid "rpm output:"
+#~ msgstr "مخرجات rpm:"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Osmanská turečtina (1500-1928)"
+#~ msgid "%s install failed"
+#~ msgstr "فشل تثبيت %s"
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkménština"
+#~ msgid "%s installed ok"
+#~ msgstr "تم تثبيت %s بنجاح"
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#~ msgid "%s remove ok"
+#~ msgstr "تمت إزالة %s بنجاح"
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks a Caicos"
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "Tuvština"
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Ťwiština"
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "Udmurt"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "تجاهل %s القديم في %s"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "تجاهل تعارض %s هذا"
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "Ugaritština"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "تجاهل هذا المتطلب هنا فقط"
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "Ujgurština"
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukrajina"
+#~ msgid "Install missing resolvables"
+#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "Ukrajinské"
+#~ msgid "Keep resolvables"
+#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "Umbundu"
+#~ msgid "Unlock these resolvables"
+#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Nelze klonovat objekt URL."
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Nelze vytvořit připojení dbus."
+#~ msgid "install %s"
+#~ msgstr "تثبيت %s"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Nelze inicializovat kontext HAL - je spuštěna služba hald?"
+#~ msgid "unlock %s"
+#~ msgstr "إلغاء قفل %s"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Nelze analyzovat součásti URL."
+#~ msgid "unlock all resolvables"
+#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Neurčený"
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "تعذر فتح الملف %1."
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Neošetřený typ úložiště"
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "تعذرت قراءة القطاع %u."
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Spojené arabské emiráty"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Velká Británie"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "United States"
+#~ msgid "Software management is already running."
+#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "United States Minor Outlying Islands"
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Neznámá země: "
+#~ msgid "%s replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Při čtení z adresy URL „%s“ došlo k neznámé chybě."
+#, fuzzy
+#~ msgid "%s will be deleted by the user.\n"
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Neznámý jazyk: "
+#, fuzzy
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Neznámý režim shody „%s“"
+#~ msgid "Invalid information"
+#~ msgstr "المعلومات غير صالحة"
 
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Neznámý režim shody „%s“ pro vzor „%s“"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr "Neznámá služba %1%: Probíhá odebrání osamoceného úložiště služby %2%"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s مطلوب بواسطة\n"
+#~ "%s"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Neznámá možnost podpory. Popis není k dispozici."
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Neznámý typ podpisu"
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s يتعارض مع:\n"
+#~ "%s"
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Nepodporovaná metoda ověřování protokolem HTTP: '%s' "
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
 
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Nepodporované schéma URI v '%s'."
+#~ msgid "%s obsoletes:%s"
+#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Horní lužičtina"
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Urdština"
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Schéma URL nepovoluje %s"
+#~ msgid "%s depends on %s"
+#~ msgstr "%s يعتمد على %s"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Schéma URL nepovoluje součást hostitele."
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s يعتمد على:%s"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Schéma URL nepovoluje heslo."
+#~ msgid "Child of"
+#~ msgstr "عنصر فرعي لـ"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Schéma URL nepovoluje port."
+#, fuzzy
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Schéma URL nepovoluje uživatelské jméno."
+#, fuzzy
+#~ msgid ""
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "URL schéma je vyžadovanou součástí"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Schéma URL vyžaduje součást hostitele."
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Schéma URL vyžaduje název cesty."
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "لم يتم استيفاء متطلبات %s"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
+#~ msgid "%s has missing dependencies"
+#~ msgstr "تم فقد تبعيات %s"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Uzbečtina"
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistán"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vai"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#~ msgid "No need to install %s"
+#~ msgstr "لا داعي لتثبيت %s"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "venda"
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Viet Nam"
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnamština"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "تعذر تثبيت %s لأنه متعارض"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Virgin Islands (U.S.)"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
+
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Obraťte se na zákaznické centrum společnosti Novell a zkontrolujte, zda je "
-"vaše registrace platná a zda nevypršela."
+#, fuzzy
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s يفتقد المتطلب %s"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Volapük"
+#~ msgid ", Action: "
+#~ msgstr "، الإجراء:"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Votština"
+#~ msgid ", Trigger: "
+#~ msgstr "، تشغيل:"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "Wakashanské jazyky"
+#~ msgid "package"
+#~ msgstr "الحزمة"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Walamo"
+#~ msgid "selection"
+#~ msgstr "التحديد"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis and Futuna Islands"
+#~ msgid "pattern"
+#~ msgstr "النمط"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Walloon"
+#~ msgid "product"
+#~ msgstr "المنتج"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Waray"
+#~ msgid "patch"
+#~ msgstr "التصحيح"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Washo"
+#~ msgid "script"
+#~ msgstr "البرنامج النصي"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Velština"
+#~ msgid "message"
+#~ msgstr "الرسالة"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Western Sahara"
+#~ msgid "atom"
+#~ msgstr "الذرة"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolof"
+#~ msgid "system"
+#~ msgstr "النظام"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhoština"
+#~ msgid "Resolvable"
+#~ msgstr "التبعية القابلة للتحليل"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Jakutština"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yao"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Japština"
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Jidiš"
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Jarubština"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Jazyky Yupik"
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
+#~ msgid "Establishing %s"
+#~ msgstr "تأسيس %s"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zandština"
+#~ msgid "Installing %s"
+#~ msgstr "تثبيت %s"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapotécké jazyky"
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "تخطي %s: تم التثبيت بالفعل"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#~ msgid "for %s"
+#~ msgstr "لـ %s"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zuluština"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "Kontrola aplikování delta RPM se nezdařila."
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "Aplikování delta RPM se nezdařilo."
+#~ msgid ""
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
+#~ msgstr ""
+#~ "%s يوفر %s، لكنه قابل لإلغاء التثبيت.  حاول تثبيته للحصول على مزيد من "
+#~ "التفاصيل."
 
-#: zypp/solver/detail/SATResolver.cc:1325
-#, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "změna architektury z %s na %s"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s يوفر %s، لكنه مقفل."
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "Porušit %s ignorováním některých závislostí"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
 
-#: zypp/solver/detail/SATResolver.cc:1017
-#, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Nelze nainstalovat současně %s a %s"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "konfliktní požadavky"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
 
-#: zypp/target/rpm/RpmDb.cc:2344
-#, c-format, boost-format
-msgid "created backup %s"
-msgstr "vytvořena záloha %s"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#: zypp/solver/detail/SATResolver.cc:1354
-#, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "odinstalace %s"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "odstranění poskytovatelé:"
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "neptat se na odstranění všech závislostí poskytujících %s"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "neptat se na instalaci všech závislostí poskytujících %s"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, c-format, boost-format
-msgid "do not install %s"
-msgstr "neinstalovat %s"
+#~ msgid "from %s"
+#~ msgstr "من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "neinstalovat nejnovější verzi %s"
+#~ msgid " Error!"
+#~ msgstr "خطأ!"
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "downgradovat %s na %s"
+#~ msgid " Important!"
+#~ msgstr "هام!"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "obecně ignorovat některé závislosti"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ignorovat varování poškozeného systému"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"Instalovat %s (se změnou dodavatele)\n"
-"  %s -->  %s"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "Instalovat %s i přes podřadnou architekturu"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "Instalovat %s z vyloučeného úložiště"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "nainstalováno: %s, zastaralé: %s, poskytovatel: %s"
+#~ msgid "%s part of %s"
+#~ msgstr "%s جزء من %s"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "Neplatné"
+#, fuzzy
+#~ msgid "Double timeout"
+#~ msgstr "موعد الاستحقاق: %1"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "ponechat %s"
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "Ponechat %s i přes podřadnou architekturu"
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "تعذر تحليل سلطة Url"
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "Ponechat zastaralý %s"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Nelze vytvořit kontext libhal."
+#~ msgid ""
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
+#~ "الارتباط."
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: Nelze nastavit připojení dbus."
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "nic neposkytuje %s, který potřebuje %s"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "تعذرت استعادة كافة المصادر."
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "nic neposkytuje požadovaný %s"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "balíček %s neexistuje"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problém s nainstalovaným balíčkem %s"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "odebrat zámek a povolit instalaci položky %s"
+#~ msgid "Reading index files"
+#~ msgstr "قراءة ملفات الفهرس"
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "odebrat zámek a povolit odebrání položky %s"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "%s je nahrazen %s"
+#~ msgid "Reading product from %s"
+#~ msgstr "قراءة المنتج من %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "Systém RPM vytvořil %s jako %s, ale nebylo možné zjistit rozdíl"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "قراءة قائمة الملفات من %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"rpm vytvořil %s jako %s.\n"
-"Prvních odlišných 25 řádek:\n"
+#~ msgid "Reading packages from %s"
+#~ msgstr "قراءة الحزم من %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "Systém RPM uložil %s jako %s, ale nebylo možné zjistit rozdíl"
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
-msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"rpm uložil %s jako %s.\n"
-"Prvních 25 řádek rozdílů:\n"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "Řešitelné konflikty %s s %s poskytované samy sebou"
+#~ msgid "Reading patches index %s"
+#~ msgstr "قراءة فهرس التصحيحات %s"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "nějaký problém se závislostmi"
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "poskytovatelé, které nelze odinstalovat:"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "Neznámé"
+#~ msgid "Reading packages file"
+#~ msgstr "قراءة ملف الحزم"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "Není podporováno"
+#~ msgid "Reading translation: %s"
+#~ msgstr "قراءة الترجمة: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "nepodporovaný požadavek"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
+#~ "التثبيت؟"
+
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
+
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
+
+#~ msgid "Downloading %s"
+#~ msgstr "إنزال %s"
+
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr "Nemůžu vytvořit veřejný klíč %s z klíčenky %s do souboru %s"
+
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr "Pokus o import neexistujícího klíče %s mezi klíče %s"
+
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "Nemůžu změnit adresář na '/' uvnitř chrootu (%s)."
+
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "Inicializace stažení (Metalink curl) selhala na '%s'"
+
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "Stažení (Metalink curl) selhalo pro '%s':\n"
+#~ "Chybový kód: %s\n"
+#~ "Chybová zpráva: %s\n"
+
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "Stahování přerušeno na %d%%"
+
+#~ msgid "Download interrupted by user"
+#~ msgstr "Stahování přerušeno uživatelem"
+
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr ""
+#~ "Během zakládání stahování (metalink curl) došlo k chybě v nastavení pro "
+#~ "'%s':"
+
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Nepodařilo se stáhnout %s z %s"
+
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Srbsko a Černá Hora"
+
+#~ msgid "Unknown Distribution"
+#~ msgstr "Neznámá distribuce"
+
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "ignorovat některé závislosti %s"
+
+#~ msgid ""
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Soubor %s nemá kontrolní součet.\n"
+#~ "Chcete soubor přesto použít?"
+
+#~ msgid ""
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Nezdařila se kontrola integrity souboru %s s následujícím klíčem:\n"
+#~ "%s|%s|%s\n"
+#~ " Chcete soubor přesto použít?"
+
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Soubor %s má neplatný kontrolní součet.\n"
+#~ "Očekáváno %s, nalezeno %s\n"
+#~ "Chcete soubor přesto použít?"
+
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Soubor %s má neznámý kontrolní součet %s.\n"
+#~ "Chcete soubor přesto použít?"
+
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "Soubor %s není podepsán.\n"
+#~ "Chcete jej přesto použít?"
+
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Soubor %s je podepsán neznámým klíčem:\n"
+#~ "%s|%s|%s\n"
+#~ " Chcete soubor přesto použít?"
+
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "Byl nalezen nedůvěryhodný klíč:\n"
+#~ "%s|%s|%s\n"
+#~ " Chcete mu důvěřovat?"
index 605035a..f23905b 100644 (file)
--- a/po/cy.po
+++ b/po/cy.po
@@ -18,16 +18,93 @@ msgstr ""
 "Plural-Forms: nplurals=5; plural=(n == 0 ? 0 : n == 1 ? 1 : n < 6 ? 2 : n == "
 "6 ? 3 : 4);\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr ""
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr ""
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr ""
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr ""
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr ""
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr ""
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr ""
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
+#, fuzzy
+msgid "Obsoletes"
+msgstr "&Dileu"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -39,10 +116,6 @@ msgstr ""
 msgid " execution failed"
 msgstr "DBI Execution failed: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -51,118 +124,1867 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "Saerniaeth:"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "Methodd yr arsefydliad."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "Rhaid arsefydlu'r pecynnau yma:"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/target/hal/HalContext.cc:117
+#, fuzzy
+msgid "HalContext not connected"
+msgstr "heb gysylltu"
+
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr ""
+
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
+
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr ""
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr ""
+
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
+msgid "Failed to import public key from file %s: %s"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-#, fuzzy
-msgid "Abkhazian"
-msgstr "Albania"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, fuzzy, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Copïo ffeiliau ffurfweddu i'r cysawd a osodwyd"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-#, fuzzy
-msgid "Adangme"
-msgstr "&Uwch"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr ""
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Couldn't open file: %s."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Arsefydlu %s: \"%s\""
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr ""
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Arsefydlu %s: \"%s\""
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Couldn't open file: %s."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "Y gorchymyn a weithredir wrth gysylltu"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "anhysbys"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+#, fuzzy
+msgid "invalid"
+msgstr "Arsefydlu"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr ""
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+#, fuzzy
+msgid "No Code"
+msgstr "Modd"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr ""
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr ""
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr ""
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr ""
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr ""
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albania"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+#, fuzzy
+msgid "Armenia"
+msgstr "Affrica"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+#, fuzzy
+msgid "Netherlands Antilles"
+msgstr "Yr Iseldiroedd"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr ""
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+#, fuzzy
+msgid "Antarctica"
+msgstr "Iwerydd"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+#, fuzzy
+msgid "Argentina"
+msgstr "Arizona"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr ""
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Awstria"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Awstralia"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+#, fuzzy
+msgid "Aruba"
+msgstr "Dubai"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr ""
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr ""
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+#, fuzzy
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnia & Herzegovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr ""
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Gwlad Belg"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr ""
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bwlgaria"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+#, fuzzy
+msgid "Burundi"
+msgstr "Brunei"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr ""
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr ""
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr ""
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+#, fuzzy
+msgid "Brazil"
+msgstr "Dwyrain Brasil"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+#, fuzzy
+msgid "Bahamas"
+msgstr "Panama"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+#, fuzzy
+msgid "Bhutan"
+msgstr "Bahrain"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+#, fuzzy
+msgid "Bouvet Island"
+msgstr "Queensland"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr ""
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+#, fuzzy
+msgid "Belarus"
+msgstr "Beirut"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+#, fuzzy
+msgid "Belize"
+msgstr "Gwlad Belg"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr ""
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+#, fuzzy
+msgid "Congo"
+msgstr "Hongkong"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+#, fuzzy
+msgid "Central African Republic"
+msgstr "Gweriniaeth Czech"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Y Swistir"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr ""
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr ""
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+#, fuzzy
+msgid "Chile"
+msgstr "Tseina"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+#, fuzzy
+msgid "Cameroon"
+msgstr "Cairo"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Tseina"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+#, fuzzy
+msgid "Colombia"
+msgstr "Colombo"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+#, fuzzy
+msgid "Cuba"
+msgstr "Ceuta"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr ""
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+#, fuzzy
+msgid "Christmas Island"
+msgstr "Chile Easter Island"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr ""
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Gweriniaeth Czech"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Yr Almaen"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Denmarc"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+#, fuzzy
+msgid "Dominican Republic"
+msgstr "Gweriniaeth Czech"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+#, fuzzy
+msgid "Algeria"
+msgstr "Algiers"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr ""
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonia"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Yr Aifft"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr ""
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr ""
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Sbaen"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+#, fuzzy
+msgid "Ethiopia"
+msgstr "Estonia"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Ffindir"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr ""
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr ""
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+#, fuzzy
+msgid "Faroe Islands"
+msgstr "Iwerddon"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Ffrainc"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr ""
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr ""
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Y Deyrnas Unedig"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr ""
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr ""
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Yr Almaen"
+
+#: zypp/CountryCode.cc:238
+#, fuzzy
+msgid "Ghana"
+msgstr "Gaza"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+#, fuzzy
+msgid "Greenland"
+msgstr "Iwerddon"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+#, fuzzy
+msgid "Gambia"
+msgstr "Jamaica"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+#, fuzzy
+msgid "Guinea"
+msgstr "Guam"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr ""
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Groeg"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr ""
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr ""
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+#, fuzzy
+msgid "Guyana"
+msgstr "Guam"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+#, fuzzy
+msgid "Hong Kong"
+msgstr "Hongkong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr ""
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+#, fuzzy
+msgid "Honduras"
+msgstr "Awr"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Croatia"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+#, fuzzy
+msgid "Haiti"
+msgstr "Hawaii"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hwngari"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr ""
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Iwerddon"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+#, fuzzy
+msgid "India"
+msgstr "Inetd"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr ""
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+#, fuzzy
+msgid "Iraq"
+msgstr "Israel"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+#, fuzzy
+msgid "Iran"
+msgstr "Iwerddon"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Gwlad yr Iâ"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Yr Eidal"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr ""
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Siapan"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+#, fuzzy
+msgid "Kenya"
+msgstr "Corea"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr ""
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+#, fuzzy
+msgid "Cambodia"
+msgstr "Samoa"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr ""
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr ""
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr ""
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+#, fuzzy
+msgid "North Korea"
+msgstr "Gogledd Iwerddon"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+#, fuzzy
+msgid "South Korea"
+msgstr "Pegwn y De"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr ""
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr ""
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr ""
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr ""
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr ""
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr ""
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr ""
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr ""
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lithuania"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxembourg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latfia"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+#, fuzzy
+msgid "Libya"
+msgstr "Lima"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+#, fuzzy
+msgid "Morocco"
+msgstr "Monaco"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldofa"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "Monaco"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "Shanghai"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr ""
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr ""
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedonia"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+#, fuzzy
+msgid "Mali"
+msgstr "Malta"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+#, fuzzy
+msgid "Myanmar"
+msgstr "Panama"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+#, fuzzy
+msgid "Mongolia"
+msgstr "Monrovia"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+#, fuzzy
+msgid "Northern Mariana Islands"
+msgstr "Gogledd Iwerddon"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+#, fuzzy
+msgid "Mauritania"
+msgstr "Lithuania"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr ""
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+#, fuzzy
+msgid "Mauritius"
+msgstr "Martinique"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr ""
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+#, fuzzy
+msgid "Malawi"
+msgstr "Malta"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+#, fuzzy
+msgid "Mexico"
+msgstr "Mecsico Cyffredinol"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+#, fuzzy
+msgid "Malaysia"
+msgstr "Malta"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+#, fuzzy
+msgid "Mozambique"
+msgstr "Martinique"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+#, fuzzy
+msgid "Namibia"
+msgstr "Nairobi"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+#, fuzzy
+msgid "New Caledonia"
+msgstr "Macedonia"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr ""
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+#, fuzzy
+msgid "Norfolk Island"
+msgstr "Gogledd Iwerddon"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr ""
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+#, fuzzy
+msgid "Nicaragua"
+msgstr "Managua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Yr Iseldiroedd"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norwy"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr ""
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+#, fuzzy
+msgid "Niue"
+msgstr "Munud"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+#, fuzzy
+msgid "New Zealand"
+msgstr "Yr Iseldiroedd"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+#, fuzzy
+msgid "Oman"
+msgstr "Rh"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+#, fuzzy
+msgid "Peru"
+msgstr "Perth"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr ""
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr ""
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr ""
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+#, fuzzy
+msgid "Pakistan"
+msgstr "Pitcairn"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Gwlad y Pwyl"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr ""
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr ""
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portiwgal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+#, fuzzy
+msgid "Paraguay"
+msgstr "Managua"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+#, fuzzy
+msgid "Reunion"
+msgstr "Rhedeg"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romania"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "Gwasanaeth"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr ""
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+#, fuzzy
+msgid "Rwanda"
+msgstr "Canada"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr ""
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr ""
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr ""
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+#, fuzzy
+msgid "Sudan"
+msgstr "Sbaen"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Sweden"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapore"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr ""
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slofenia"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr ""
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slofakia"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr ""
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr ""
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr ""
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+#, fuzzy
+msgid "Somalia"
+msgstr "Romania"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+#, fuzzy
+msgid "Suriname"
+msgstr "Enw'r gwasanae&th"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr ""
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr ""
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+#, fuzzy
+msgid "Swaziland"
+msgstr "Y Swistir"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr ""
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+#, fuzzy
+msgid "Chad"
+msgstr "Wedi'u Newid"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr ""
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+#, fuzzy
+msgid "Togo"
+msgstr "Tokyo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+#, fuzzy
+msgid "Thailand"
+msgstr "Ffindir"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr ""
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr ""
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr ""
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+#, fuzzy
+msgid "Tunisia"
+msgstr "Tunis"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr ""
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr ""
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Twrci"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr ""
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+#, fuzzy
+msgid "Tuvalu"
+msgstr "Zulu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+#, fuzzy
+msgid "Taiwan"
+msgstr "Vatican"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+#, fuzzy
+msgid "Tanzania"
+msgstr "Tasmania"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Wcrain"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+#, fuzzy
+msgid "Uganda"
+msgstr "Canada"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr ""
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr ""
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr ""
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr ""
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr ""
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr ""
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr ""
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr ""
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr ""
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr ""
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr ""
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr ""
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr ""
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+#, fuzzy
+msgid "South Africa"
+msgstr "Affrica"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+#, fuzzy
+msgid "Zambia"
+msgstr "Jamaica"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr ""
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr ""
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+#, fuzzy
+msgid "Afar"
+msgstr "Affrica"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+#, fuzzy
+msgid "Abkhazian"
+msgstr "Albania"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr ""
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr ""
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+#, fuzzy
+msgid "Adangme"
+msgstr "&Uwch"
 
 #. language code: ady
 #: zypp/LanguageCode.cc:171
 msgid "Adyghe"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-#, fuzzy
-msgid "Afar"
-msgstr "Affrica"
-
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
 #. language code: afh
@@ -176,11 +1998,6 @@ msgstr ""
 msgid "Afrikaans"
 msgstr "Affrica"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr ""
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 #, fuzzy
@@ -198,16 +2015,6 @@ msgstr "Alaska"
 msgid "Akkadian"
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr ""
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albania"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 #, fuzzy
@@ -220,27 +2027,17 @@ msgstr "Albania"
 msgid "Aleut"
 msgstr "Aleutian"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-#, fuzzy
-msgid "Algeria"
-msgstr "Algiers"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 #, fuzzy
 msgid "Algonquian Languages"
 msgstr "Iaith"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr ""
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr ""
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+#, fuzzy
+msgid "Southern Altai"
+msgstr "Gogledd Iwerddon"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
@@ -248,33 +2045,9 @@ msgstr ""
 msgid "Amharic"
 msgstr "Affrica"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr ""
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr ""
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr ""
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-#, fuzzy
-msgid "Antarctica"
-msgstr "Iwerydd"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
 #. language code: apa
@@ -289,60 +2062,42 @@ msgstr "Iaith"
 msgid "Arabic"
 msgstr "Affrica"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr ""
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 #, fuzzy
 msgid "Aramaic"
 msgstr "Jamaica"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+#, fuzzy
+msgid "Armenian"
+msgstr "Aleutian"
+
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-#, fuzzy
-msgid "Argentina"
-msgstr "Arizona"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-#, fuzzy
-msgid "Armenia"
-msgstr "Affrica"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-#, fuzzy
-msgid "Armenian"
-msgstr "Aleutian"
-
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-#, fuzzy
-msgid "Aruba"
-msgstr "Dubai"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr ""
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -362,33 +2117,12 @@ msgstr "Awstria"
 msgid "Athapascan Languages"
 msgstr "Awstralia"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Awstralia"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 #, fuzzy
 msgid "Australian Languages"
 msgstr "Awstralia"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Awstria"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr ""
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 #, fuzzy
@@ -411,45 +2145,26 @@ msgstr ""
 msgid "Aymara"
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr ""
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr ""
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
+#. language code: bad
+#: zypp/LanguageCode.cc:237
 #, fuzzy
-msgid "Bahamas"
-msgstr "Panama"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+msgid "Banda"
+msgstr "Canada"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
+#. language code: bai
+#: zypp/LanguageCode.cc:239
 #, fuzzy
-msgid "Balinese"
-msgstr "Pennawd"
+msgid "Bamileke Languages"
+msgstr "Iaith"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
 #. language code: bal
@@ -463,64 +2178,32 @@ msgstr ""
 msgid "Bambara"
 msgstr "Samarkand"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-#, fuzzy
-msgid "Bamileke Languages"
-msgstr "Iaith"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
+#. language code: ban
+#: zypp/LanguageCode.cc:247
 #, fuzzy
-msgid "Banda"
-msgstr "Canada"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr ""
+msgid "Balinese"
+msgstr "Pennawd"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
-
 #. language code: bas
 #: zypp/LanguageCode.cc:253
 #, fuzzy
 msgid "Basa"
 msgstr "Alaska"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr ""
-
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr ""
-
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
 #. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr ""
-
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-#, fuzzy
-msgid "Belarus"
-msgstr "Beirut"
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr ""
 
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
@@ -528,17 +2211,6 @@ msgstr "Beirut"
 msgid "Belarusian"
 msgstr "Bwlgaria"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Gwlad Belg"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-#, fuzzy
-msgid "Belize"
-msgstr "Gwlad Belg"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 #, fuzzy
@@ -550,32 +2222,16 @@ msgstr "Bermuda"
 msgid "Bengali"
 msgstr ""
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr ""
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-#, fuzzy
-msgid "Bhutan"
-msgstr "Bahrain"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 #, fuzzy
@@ -598,273 +2254,73 @@ msgstr "Brunei"
 msgid "Bislama"
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-#, fuzzy
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia & Herzegovina"
-
 #. language code: bos bs
 #: zypp/LanguageCode.cc:281
 msgid "Bosnian"
 msgstr ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr ""
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-#, fuzzy
-msgid "Bouvet Island"
-msgstr "Queensland"
-
 #. language code: bra
 #: zypp/LanguageCode.cc:283
 msgid "Braj"
 msgstr ""
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-#, fuzzy
-msgid "Brazil"
-msgstr "Dwyrain Brasil"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-#, fuzzy
-msgid "Breton"
-msgstr "Freetown"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr ""
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr ""
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr ""
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr ""
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bwlgaria"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-#, fuzzy
-msgid "Bulgarian"
-msgstr "Bwlgaria"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-#, fuzzy
-msgid "Buriat"
-msgstr "Bwlgaria"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr ""
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr ""
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-#, fuzzy
-msgid "Burundi"
-msgstr "Brunei"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-#, fuzzy
-msgid "Caddo"
-msgstr "Cairo"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-#, fuzzy
-msgid "Cambodia"
-msgstr "Samoa"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-#, fuzzy
-msgid "Cameroon"
-msgstr "Cairo"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr ""
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr ""
-
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Arsefydlu %s: \"%s\""
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr ""
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Arsefydlu %s: \"%s\""
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr ""
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr ""
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Couldn't open file: %s."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr ""
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr ""
-
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr ""
-
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canada"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+#, fuzzy
+msgid "Breton"
+msgstr "Freetown"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
 msgstr ""
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Arsefydlu %s: \"%s\""
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+#, fuzzy
+msgid "Buriat"
+msgstr "Bwlgaria"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+#, fuzzy
+msgid "Bulgarian"
+msgstr "Bwlgaria"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Arsefydlu %s: \"%s\""
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+#, fuzzy
+msgid "Caddo"
+msgstr "Cairo"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
 #. language code: car
@@ -884,11 +2340,6 @@ msgstr "Casablanca"
 msgid "Caucasian (Other)"
 msgstr ""
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr ""
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 #, fuzzy
@@ -900,85 +2351,28 @@ msgstr "Ceuta"
 msgid "Celtic (Other)"
 msgstr ""
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-#, fuzzy
-msgid "Central African Republic"
-msgstr "Gweriniaeth Czech"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr ""
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-#, fuzzy
-msgid "Chad"
-msgstr "Wedi'u Newid"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-#, fuzzy
-msgid "Chagatai"
-msgstr "Shanghai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-#, fuzzy
-msgid "Chamic Languages"
-msgstr "Iaith"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 #, fuzzy
 msgid "Chamorro"
 msgstr "Cairo"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, fuzzy, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Copïo ffeiliau ffurfweddu i'r cysawd a osodwyd"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr ""
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr ""
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr ""
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 #, fuzzy
 msgid "Chibcha"
 msgstr "Tseina"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-#, fuzzy
-msgid "Chichewa"
-msgstr "Tseina"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr ""
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
+#. language code: chg
+#: zypp/LanguageCode.cc:321
 #, fuzzy
-msgid "Chile"
-msgstr "Tseina"
-
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Tseina"
+msgid "Chagatai"
+msgstr "Shanghai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
@@ -986,93 +2380,57 @@ msgstr "Tseina"
 msgid "Chinese"
 msgstr "Tseina"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr ""
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+#, fuzzy
+msgid "Mari"
+msgstr "Darwin"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr ""
 
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr ""
+
 #. language code: chp
 #: zypp/LanguageCode.cc:335
 msgid "Chipewyan"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-#, fuzzy
-msgid "Christmas Island"
-msgstr "Chile Easter Island"
-
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr ""
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr ""
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr ""
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr ""
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-#, fuzzy
-msgid "Colombia"
-msgstr "Colombo"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "Y gorchymyn a weithredir wrth gysylltu"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr ""
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
 #, fuzzy
-msgid "Congo"
-msgstr "Hongkong"
-
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr ""
+msgid "Chamic Languages"
+msgstr "Iaith"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1085,38 +2443,11 @@ msgstr "Costa Rica"
 msgid "Cornish"
 msgstr ""
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-#, fuzzy
-msgid "Corsican"
-msgstr "Costa Rica"
-
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr ""
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-#, fuzzy
-msgid "Cree"
-msgstr "Cre&u"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-#, fuzzy
-msgid "Creek"
-msgstr "Cre&u"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr ""
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+#, fuzzy
+msgid "Corsican"
+msgstr "Costa Rica"
 
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
@@ -1133,48 +2464,37 @@ msgstr ""
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+#, fuzzy
+msgid "Cree"
+msgstr "Cre&u"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Croatia"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-#, fuzzy
-msgid "Croatian"
-msgstr "Croatia"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-#, fuzzy
-msgid "Cuba"
-msgstr "Ceuta"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr ""
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr ""
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr ""
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Gweriniaeth Czech"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 #, fuzzy
@@ -1205,10 +2525,15 @@ msgstr "Dakar"
 msgid "Delaware"
 msgstr "Caledwedd"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Denmarc"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr ""
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr ""
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1221,61 +2546,30 @@ msgstr "Dominica"
 msgid "Divehi"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr ""
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-#, fuzzy
-msgid "Dominican Republic"
-msgstr "Gweriniaeth Czech"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr ""
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr ""
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 #, fuzzy
 msgid "Duala"
 msgstr "Palau"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
 #. language code: dut nld nl
@@ -1284,11 +2578,6 @@ msgstr ""
 msgid "Dutch"
 msgstr "De"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr ""
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 #, fuzzy
@@ -1300,26 +2589,11 @@ msgstr "Dubai"
 msgid "Dzongkha"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr ""
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr ""
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Yr Aifft"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1330,32 +2604,11 @@ msgstr ""
 msgid "Ekajuk"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr ""
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1366,134 +2619,26 @@ msgstr ""
 msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr ""
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr ""
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr ""
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 #, fuzzy
 msgid "Esperanto"
 msgstr "Dwyrain"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonia"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
-#, fuzzy
-msgid "Estonian"
-msgstr "Estonia"
-
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-#, fuzzy
-msgid "Ethiopia"
-msgstr "Estonia"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr ""
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr ""
-
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr ""
+#, fuzzy
+msgid "Estonian"
+msgstr "Estonia"
 
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Failed to parse: %s."
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
 
 #. language code: fan
@@ -1502,32 +2647,16 @@ msgstr ""
 msgid "Fang"
 msgstr "Baneri"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-#, fuzzy
-msgid "Fanti"
-msgstr "Iwerydd"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-#, fuzzy
-msgid "Faroe Islands"
-msgstr "Iwerddon"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr ""
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr ""
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+#, fuzzy
+msgid "Fanti"
+msgstr "Iwerydd"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
@@ -1535,124 +2664,11 @@ msgstr "Fiji"
 msgid "Fijian"
 msgstr "Fiji"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr ""
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Ffindir"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 #, fuzzy
@@ -1664,41 +2680,17 @@ msgstr "&Gorffen"
 msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Ffrainc"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 #, fuzzy
 msgid "French"
 msgstr "Greenwich"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr ""
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr ""
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr ""
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1715,52 +2707,24 @@ msgstr ""
 msgid "Frisian"
 msgstr "Yn gorffen"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-#, fuzzy
-msgid "Friulian"
-msgstr "Ffindir"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 #, fuzzy
 msgid "Fulah"
 msgstr "Baneri"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+#, fuzzy
+msgid "Friulian"
+msgstr "Ffindir"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 #, fuzzy
 msgid "Ga"
 msgstr "Guam"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr ""
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr ""
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-#, fuzzy
-msgid "Galician"
-msgstr "Vatican"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-#, fuzzy
-msgid "Gambia"
-msgstr "Jamaica"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-#, fuzzy
-msgid "Ganda"
-msgstr "Canada"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1772,28 +2736,55 @@ msgstr ""
 msgid "Gbaya"
 msgstr "Gaza"
 
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr ""
+
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+#, fuzzy
+msgid "Georgian"
+msgstr "Yr Almaen"
+
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+#, fuzzy
+msgid "German"
+msgstr "Yr Almaen"
+
 #. language code: gez
 #: zypp/LanguageCode.cc:475
 #, fuzzy
 msgid "Geez"
 msgstr "Groeg"
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
 msgstr ""
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr ""
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr ""
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
 #, fuzzy
-msgid "Georgian"
-msgstr "Yr Almaen"
+msgid "Galician"
+msgstr "Vatican"
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
 #, fuzzy
-msgid "German"
-msgstr "Yr Almaen"
+msgid "Manx"
+msgstr "&Uchaf"
 
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
@@ -1805,31 +2796,6 @@ msgstr ""
 msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr ""
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Yr Almaen"
-
-#: zypp/CountryCode.cc:238
-#, fuzzy
-msgid "Ghana"
-msgstr "Gaza"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr ""
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1850,11 +2816,6 @@ msgstr ""
 msgid "Grebo"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Groeg"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1865,66 +2826,17 @@ msgstr ""
 msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-#, fuzzy
-msgid "Greenland"
-msgstr "Iwerddon"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr ""
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Yr Almaen"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-#, fuzzy
-msgid "Guinea"
-msgstr "Guam"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr ""
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 #, fuzzy
 msgid "Gujarati"
 msgstr "Cyfnod"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-#, fuzzy
-msgid "Guyana"
-msgstr "Guam"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 #, fuzzy
@@ -1937,56 +2849,23 @@ msgstr "Michigan"
 msgid "Haida"
 msgstr "Caledwedd"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-#, fuzzy
-msgid "Haiti"
-msgstr "Hawaii"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 #, fuzzy
 msgid "Haitian"
 msgstr "Vatican"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "heb gysylltu"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 #, fuzzy
 msgid "Hawaiian"
 msgstr "Hawaii"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr ""
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -2013,16 +2892,6 @@ msgstr ""
 msgid "Hindi"
 msgstr ""
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr ""
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -2034,297 +2903,143 @@ msgstr ""
 msgid "Hmong"
 msgstr "Hongkong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-#, fuzzy
-msgid "Honduras"
-msgstr "Awr"
-
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-#, fuzzy
-msgid "Hong Kong"
-msgstr "Hongkong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr ""
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 #, fuzzy
 msgid "Hungarian"
-msgstr "Hwngari"
-
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hwngari"
-
-#. language code: hup
-#: zypp/LanguageCode.cc:539
-msgid "Hupa"
-msgstr ""
-
-#. language code: iba
-#: zypp/LanguageCode.cc:541
-msgid "Iban"
-msgstr ""
-
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Gwlad yr Iâ"
-
-#. language code: ice isl is
-#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
-#, fuzzy
-msgid "Icelandic"
-msgstr "Gwlad yr Iâ"
-
-#. language code: ido io
-#: zypp/LanguageCode.cc:549
-msgid "Ido"
-msgstr ""
-
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr ""
-
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
-msgstr ""
-
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-#, fuzzy
-msgid "Iloko"
-msgstr "Tokyo"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr ""
-
-#: zypp/CountryCode.cc:261
-#, fuzzy
-msgid "India"
-msgstr "Inetd"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr ""
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr ""
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr ""
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr ""
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-#, fuzzy
-msgid "Interlingue"
-msgstr "Parhau"
+msgstr "Hwngari"
 
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
+#. language code: hup
+#: zypp/LanguageCode.cc:539
+msgid "Hupa"
 msgstr ""
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
+#. language code: iba
+#: zypp/LanguageCode.cc:541
+msgid "Iban"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr ""
+#. language code: ice isl is
+#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
+#, fuzzy
+msgid "Icelandic"
+msgstr "Gwlad yr Iâ"
 
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
+#. language code: ido io
+#: zypp/LanguageCode.cc:549
+msgid "Ido"
 msgstr ""
 
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+#, fuzzy
+msgid "Sichuan Yi"
+msgstr "Lithuania"
 
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
 msgstr ""
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr ""
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+#, fuzzy
+msgid "Interlingue"
+msgstr "Parhau"
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+#, fuzzy
+msgid "Iloko"
+msgstr "Tokyo"
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
 msgstr ""
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-#, fuzzy
-msgid "Iran"
-msgstr "Iwerddon"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-#, fuzzy
-msgid "Iraq"
-msgstr "Israel"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Iwerddon"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr ""
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr ""
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr ""
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 #, fuzzy
 msgid "Iroquoian Languages"
 msgstr "Iaith"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 #, fuzzy
 msgid "Italian"
 msgstr "Yr Eidal"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Yr Eidal"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
-
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Siapan"
-
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-#, fuzzy
-msgid "Japanese"
-msgstr "Siapan"
-
 #. language code: jav jv
 #: zypp/LanguageCode.cc:579
 #, fuzzy
 msgid "Javanese"
 msgstr "Siapan"
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+#, fuzzy
+msgid "Japanese"
+msgstr "Siapan"
+
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
 #. language code: jrb
@@ -2332,14 +3047,9 @@ msgstr ""
 msgid "Judeo-Arabic"
 msgstr ""
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr ""
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
 #. language code: kab
@@ -2359,11 +3069,6 @@ msgstr "Bahrain"
 msgid "Kalaallisut"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr ""
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 #, fuzzy
@@ -2376,21 +3081,6 @@ msgstr "Katmandu"
 msgid "Kannada"
 msgstr "Canada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr ""
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr ""
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr ""
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 #, fuzzy
@@ -2402,9 +3092,9 @@ msgstr "Corea"
 msgid "Kashmiri"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
 #. language code: kaw
@@ -2419,32 +3109,26 @@ msgstr "Darwin"
 msgid "Kazakh"
 msgstr "Gaza"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-#, fuzzy
-msgid "Kenya"
-msgstr "Corea"
-
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr ""
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr ""
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr ""
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2455,12 +3139,6 @@ msgstr ""
 msgid "Kikuyu"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-#, fuzzy
-msgid "Kimbundu"
-msgstr "Katmandu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2469,20 +3147,20 @@ msgstr ""
 #. language code: kir ky
 #: zypp/LanguageCode.cc:625
 #, fuzzy
-msgid "Kirghiz"
-msgstr "Virgin"
+msgid "Kirghiz"
+msgstr "Virgin"
+
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+#, fuzzy
+msgid "Kimbundu"
+msgstr "Katmandu"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-#, fuzzy
-msgid "Klingon"
-msgstr "Saigon"
-
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
 msgid "Komi"
@@ -2494,11 +3172,6 @@ msgstr ""
 msgid "Kongo"
 msgstr "Hongkong"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr ""
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 #, fuzzy
@@ -2516,11 +3189,21 @@ msgstr "Corea"
 msgid "Kpelle"
 msgstr ""
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr ""
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr ""
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr ""
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 #, fuzzy
@@ -2538,27 +3221,12 @@ msgstr "Dymi"
 msgid "Kurdish"
 msgstr ""
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr ""
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 #, fuzzy
 msgid "Kutenai"
 msgstr "Kuwait"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr ""
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2581,71 +3249,23 @@ msgstr "Lima"
 msgid "Lao"
 msgstr ""
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr ""
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 #, fuzzy
 msgid "Latin"
 msgstr "Lleoliad"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latfia"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 #, fuzzy
 msgid "Latvian"
 msgstr "Latfia"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr ""
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr ""
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-#, fuzzy
-msgid "Libya"
-msgstr "Lima"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 #, fuzzy
@@ -2657,37 +3277,17 @@ msgstr "Luxembourg"
 msgid "Lingala"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lithuania"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 #, fuzzy
 msgid "Lithuanian"
 msgstr "Lithuania"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr ""
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
+#. language code: lol
+#: zypp/LanguageCode.cc:675
 #, fuzzy
-msgid "Low German"
-msgstr "Yr Almaen"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr ""
+msgid "Mongo"
+msgstr "Monaco"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
@@ -2695,26 +3295,33 @@ msgstr ""
 msgid "Lozi"
 msgstr "Mew&ngofnodi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr ""
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+#, fuzzy
+msgid "Luxembourgish"
+msgstr "Luxembourg"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr ""
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr ""
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+#, fuzzy
+msgid "Ganda"
+msgstr "Canada"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr ""
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2731,37 +3338,12 @@ msgstr ""
 msgid "Lushai"
 msgstr "Tahiti"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxembourg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-#, fuzzy
-msgid "Luxembourgish"
-msgstr "Luxembourg"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 #, fuzzy
 msgid "Macedonian"
 msgstr "Macedonia"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr ""
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 #, fuzzy
@@ -2774,6 +3356,11 @@ msgstr "Llygoden"
 msgid "Magahi"
 msgstr "Managua"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr ""
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2785,181 +3372,55 @@ msgstr ""
 msgid "Makasar"
 msgstr "Dakar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-#, fuzzy
-msgid "Malagasy"
-msgstr "Managua"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-#, fuzzy
-msgid "Malawi"
-msgstr "Malta"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-#, fuzzy
-msgid "Malay"
-msgstr "Malta"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr ""
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-#, fuzzy
-msgid "Malaysia"
-msgstr "Malta"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr ""
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-#, fuzzy
-msgid "Mali"
-msgstr "Malta"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-#, fuzzy
-msgid "Maltese"
-msgstr "Malta"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-#, fuzzy
-msgid "Manchu"
-msgstr "&Cychwyn"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-#, fuzzy
-msgid "Mandar"
-msgstr "Manila"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 #, fuzzy
 msgid "Mandingo"
 msgstr "Rhybudd"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr ""
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-#, fuzzy
-msgid "Manobo Languages"
-msgstr "Managua"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-#, fuzzy
-msgid "Manx"
-msgstr "&Uchaf"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 #, fuzzy
 msgid "Maori"
 msgstr "Monrovia"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-#, fuzzy
-msgid "Mari"
-msgstr "Darwin"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr ""
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr ""
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-#, fuzzy
-msgid "Marwari"
-msgstr "Caledwedd"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 #, fuzzy
 msgid "Masai"
 msgstr "Tasmania"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-#, fuzzy
-msgid "Mauritania"
-msgstr "Lithuania"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-#, fuzzy
-msgid "Mauritius"
-msgstr "Martinique"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
 #, fuzzy
-msgid "Mayan Languages"
-msgstr "Managua"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr ""
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+msgid "Malay"
+msgstr "Malta"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+#, fuzzy
+msgid "Mandar"
+msgstr "Manila"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
@@ -2967,17 +3428,11 @@ msgstr ""
 msgid "Mende"
 msgstr "Modd"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-#, fuzzy
-msgid "Mexico"
-msgstr "Mecsico Cyffredinol"
-
 #. language code: mic
 #: zypp/LanguageCode.cc:735
 msgid "Mi'kmaq"
@@ -2988,59 +3443,56 @@ msgstr ""
 msgid "Minangkabau"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr ""
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 #, fuzzy
 msgid "Miscellaneous Languages"
 msgstr "Managua"
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr ""
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+#, fuzzy
+msgid "Malagasy"
+msgstr "Managua"
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
 #, fuzzy
-msgid "Moldavian"
-msgstr "Moldofa"
+msgid "Maltese"
+msgstr "Malta"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldofa"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+#, fuzzy
+msgid "Manchu"
+msgstr "&Cychwyn"
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
+#. language code: mno
+#: zypp/LanguageCode.cc:751
 #, fuzzy
-msgid "Mongo"
-msgstr "Monaco"
+msgid "Manobo Languages"
+msgstr "Managua"
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
+msgstr ""
+
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
 #, fuzzy
-msgid "Mongolia"
-msgstr "Monrovia"
+msgid "Moldavian"
+msgstr "Moldofa"
 
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
@@ -3048,35 +3500,12 @@ msgstr "Monrovia"
 msgid "Mongolian"
 msgstr "Monrovia"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "Monaco"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr ""
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-#, fuzzy
-msgid "Morocco"
-msgstr "Monaco"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 #, fuzzy
 msgid "Mossi"
 msgstr "Llygoden"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-#, fuzzy
-msgid "Mozambique"
-msgstr "Martinique"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 #, fuzzy
@@ -3089,94 +3518,84 @@ msgstr "Iaith"
 msgid "Munda languages"
 msgstr "Iaith"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
+#. language code: mus
+#: zypp/LanguageCode.cc:765
 #, fuzzy
-msgid "Myanmar"
-msgstr "Panama"
+msgid "Creek"
+msgstr "Cre&u"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr ""
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+#, fuzzy
+msgid "Marwari"
+msgstr "Caledwedd"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+#, fuzzy
+msgid "Mayan Languages"
+msgstr "Managua"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr ""
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
+#. language code: nai
+#: zypp/LanguageCode.cc:777
 #, fuzzy
-msgid "Namibia"
-msgstr "Nairobi"
+msgid "North American Indian"
+msgstr "Gogledd Iwerddon"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr ""
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr ""
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr ""
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr ""
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr ""
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr ""
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr ""
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+#, fuzzy
+msgid "Low German"
+msgstr "Yr Almaen"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr ""
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Yr Iseldiroedd"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-#, fuzzy
-msgid "Netherlands Antilles"
-msgstr "Yr Iseldiroedd"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-#, fuzzy
-msgid "New Caledonia"
-msgstr "Macedonia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-#, fuzzy
-msgid "New Zealand"
-msgstr "Yr Iseldiroedd"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
 #. language code: nia
@@ -3184,52 +3603,24 @@ msgstr ""
 msgid "Nias"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-#, fuzzy
-msgid "Nicaragua"
-msgstr "Managua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr ""
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr ""
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-#, fuzzy
-msgid "Niue"
-msgstr "Munud"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-#, fuzzy
-msgid "No Code"
-msgstr "Modd"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
 #. language code: nog
@@ -3237,40 +3628,16 @@ msgstr ""
 msgid "Nogai"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-#, fuzzy
-msgid "Norfolk Island"
-msgstr "Gogledd Iwerddon"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-#, fuzzy
-msgid "North American Indian"
-msgstr "Gogledd Iwerddon"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-#, fuzzy
-msgid "North Korea"
-msgstr "Gogledd Iwerddon"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-#, fuzzy
-msgid "Northern Mariana Islands"
-msgstr "Gogledd Iwerddon"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
 #, fuzzy
-msgid "Northern Sami"
-msgstr "Gogledd Iwerddon"
+msgid "Norwegian"
+msgstr "Norwy"
 
 #. language code: nso
 #: zypp/LanguageCode.cc:813
@@ -3278,37 +3645,23 @@ msgstr "Gogledd Iwerddon"
 msgid "Northern Sotho"
 msgstr "Gogledd Iwerddon"
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norwy"
-
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-#, fuzzy
-msgid "Norwegian"
-msgstr "Norwy"
-
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr ""
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr ""
-
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 #, fuzzy
 msgid "Nubian Languages"
 msgstr "Iaith"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr ""
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+#, fuzzy
+msgid "Chichewa"
+msgstr "Tseina"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3331,11 +3684,6 @@ msgstr "Gogledd"
 msgid "Nzima"
 msgstr "Lima"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "&Dileu"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3346,21 +3694,6 @@ msgstr ""
 msgid "Ojibwa"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-#, fuzzy
-msgid "Oman"
-msgstr "Rh"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3383,152 +3716,87 @@ msgstr "Negeseuon"
 msgid "Ossetian"
 msgstr "Aleutian"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr ""
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 #, fuzzy
 msgid "Otomian Languages"
 msgstr "Iaith"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-#, fuzzy
-msgid "Pahlavi"
-msgstr "Palau"
-
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-#, fuzzy
-msgid "Pakistan"
-msgstr "Pitcairn"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-#, fuzzy
-msgid "Palauan"
-msgstr "Palau"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-#, fuzzy
-msgid "Pali"
-msgstr "Palau"
-
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-#, fuzzy
-msgid "Pampanga"
-msgstr "Tasmania"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
 #. language code: pag
 #: zypp/LanguageCode.cc:847
 #, fuzzy
 msgid "Pangasinan"
 msgstr "Panama"
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
+#. language code: pal
+#: zypp/LanguageCode.cc:849
 #, fuzzy
-msgid "Panjabi"
-msgstr "Panama"
-
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr ""
-
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr ""
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr ""
+msgid "Pahlavi"
+msgstr "Palau"
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
+#. language code: pam
+#: zypp/LanguageCode.cc:851
 #, fuzzy
-msgid "Paraguay"
-msgstr "Managua"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
+msgid "Pampanga"
+msgstr "Tasmania"
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+#, fuzzy
+msgid "Panjabi"
+msgstr "Panama"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
 msgstr ""
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+#. language code: pau
+#: zypp/LanguageCode.cc:857
 #, fuzzy
-msgid "Persian"
-msgstr "&Fersiwn RPC"
+msgid "Palauan"
+msgstr "Palau"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
 #, fuzzy
-msgid "Peru"
-msgstr "Perth"
+msgid "Persian"
+msgstr "&Fersiwn RPC"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr ""
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+#, fuzzy
+msgid "Pali"
+msgstr "Palau"
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
 msgstr ""
 
 #. language code: pon
@@ -3536,21 +3804,6 @@ msgstr ""
 msgid "Pohnpeian"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Gwlad y Pwyl"
-
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
-msgstr ""
-
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portiwgal"
-
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
 #, fuzzy
@@ -3563,77 +3816,21 @@ msgstr "Portiwgal"
 msgid "Prakrit Languages"
 msgstr "Iaith"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr ""
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr ""
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr ""
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3650,46 +3847,20 @@ msgstr "Siapan"
 msgid "Rarotongan"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr ""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-#, fuzzy
-msgid "Reunion"
-msgstr "Rhedeg"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr ""
+
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+#, fuzzy
+msgid "Romany"
 msgstr "Romania"
 
 #. language code: rum ron ro
@@ -3698,12 +3869,6 @@ msgstr "Romania"
 msgid "Romanian"
 msgstr "Romania"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-#, fuzzy
-msgid "Romany"
-msgstr "Romania"
-
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 #, fuzzy
@@ -3716,123 +3881,66 @@ msgstr "Rhedeg"
 msgid "Russian"
 msgstr "Rwsia"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr ""
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
+#. language code: sad
+#: zypp/LanguageCode.cc:905
 #, fuzzy
-msgid "Rwanda"
+msgid "Sandawe"
 msgstr "Canada"
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr ""
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr ""
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr ""
-
-#: zypp/CountryCode.cc:297
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
 #, fuzzy
-msgid "Saint Martin"
-msgstr "Shanghai"
+msgid "Sango"
+msgstr "Saigon"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
 #, fuzzy
-msgid "Salishan Languages"
-msgstr "Iaith"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr ""
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-#, fuzzy
-msgid "Sami Languages (Other)"
-msgstr "Iaith"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-#, fuzzy
-msgid "Samoan"
-msgstr "Samoa"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr ""
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-#, fuzzy
-msgid "Sandawe"
-msgstr "Canada"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-#, fuzzy
-msgid "Sango"
-msgstr "Saigon"
+msgid "Salishan Languages"
+msgstr "Iaith"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr ""
 
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr ""
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+#, fuzzy
+msgid "Sasak"
+msgstr "Samoa"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 #, fuzzy
 msgid "Santali"
 msgstr "Shanghai"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
 msgstr ""
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-#, fuzzy
-msgid "Sardinian"
-msgstr "Rhybudd"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
+#. language code: scn
+#: zypp/LanguageCode.cc:927
 #, fuzzy
-msgid "Sasak"
-msgstr "Samoa"
-
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr ""
+msgid "Sicilian"
+msgstr "Michigan"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
@@ -3840,6 +3948,12 @@ msgstr ""
 msgid "Scots"
 msgstr "De"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+#, fuzzy
+msgid "Croatian"
+msgstr "Croatia"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 #, fuzzy
@@ -3851,40 +3965,16 @@ msgstr "Hepgor"
 msgid "Semitic (Other)"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr ""
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "Gwasanaeth"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
 #, fuzzy
-msgid "Serer"
-msgstr "Gweinydd"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
-
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr ""
+msgid "Sign Languages"
+msgstr "Iaith"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
@@ -3892,110 +3982,26 @@ msgstr ""
 msgid "Shan"
 msgstr "Shanghai"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-#, fuzzy
-msgid "Shona"
-msgstr "Slofenia"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-#, fuzzy
-msgid "Sichuan Yi"
-msgstr "Lithuania"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-#, fuzzy
-msgid "Sicilian"
-msgstr "Michigan"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 #, fuzzy
 msgid "Sidamo"
 msgstr "Samoa"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr ""
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-#, fuzzy
-msgid "Sign Languages"
-msgstr "Iaith"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr ""
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr ""
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapore"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 #, fuzzy
 msgid "Siouan Languages"
 msgstr "Iaith"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -4009,109 +4015,89 @@ msgstr ""
 msgid "Slovak"
 msgstr "Slofakia"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slofakia"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slofenia"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 #, fuzzy
 msgid "Slovenian"
 msgstr "Slofenia"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-#, fuzzy
-msgid "Sogdian"
-msgstr "Mew&ngofnodi"
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
 #, fuzzy
-msgid "Somali"
-msgstr "Romania"
+msgid "Northern Sami"
+msgstr "Gogledd Iwerddon"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
+#. language code: smi
+#: zypp/LanguageCode.cc:965
 #, fuzzy
-msgid "Somalia"
-msgstr "Romania"
+msgid "Sami Languages (Other)"
+msgstr "Iaith"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-#, fuzzy
-msgid "Songhai"
-msgstr "Shanghai"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-#, fuzzy
-msgid "Soninke"
-msgstr "Parhau"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr ""
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
 #, fuzzy
-msgid "Sorbian Languages"
-msgstr "Iaith"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
+msgid "Samoan"
+msgstr "Samoa"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
 #, fuzzy
-msgid "South Africa"
-msgstr "Affrica"
+msgid "Shona"
+msgstr "Slofenia"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr ""
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+#, fuzzy
+msgid "Soninke"
+msgstr "Parhau"
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
+#. language code: sog
+#: zypp/LanguageCode.cc:981
 #, fuzzy
-msgid "South Korea"
-msgstr "Pegwn y De"
+msgid "Sogdian"
+msgstr "Mew&ngofnodi"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
+#. language code: som so
+#: zypp/LanguageCode.cc:983
 #, fuzzy
-msgid "Southern Altai"
-msgstr "Gogledd Iwerddon"
+msgid "Somali"
+msgstr "Romania"
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr ""
+#. language code: son
+#: zypp/LanguageCode.cc:985
+#, fuzzy
+msgid "Songhai"
+msgstr "Shanghai"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Sbaen"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr ""
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
@@ -4119,55 +4105,48 @@ msgstr "Sbaen"
 msgid "Spanish"
 msgstr "Sbaen"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr ""
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+#, fuzzy
+msgid "Sardinian"
+msgstr "Rhybudd"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
+#. language code: srr
+#: zypp/LanguageCode.cc:993
 #, fuzzy
-msgid "Sudan"
-msgstr "Sbaen"
+msgid "Serer"
+msgstr "Gweinydd"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
 msgstr ""
 
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+#, fuzzy
+msgid "Swati"
+msgstr "Sbaen"
+
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr ""
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr ""
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-#, fuzzy
-msgid "Suriname"
-msgstr "Enw'r gwasanae&th"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 #, fuzzy
 msgid "Susu"
 msgstr "Cyflwr"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
 #. language code: swa sw
@@ -4176,62 +4155,18 @@ msgstr ""
 msgid "Swahili"
 msgstr "Hawaii"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-#, fuzzy
-msgid "Swati"
-msgstr "Sbaen"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-#, fuzzy
-msgid "Swaziland"
-msgstr "Y Swistir"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Sweden"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 #, fuzzy
 msgid "Swedish"
 msgstr "Sweden"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Y Swistir"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr ""
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 #, fuzzy
 msgid "Syriac"
 msgstr "Gwasanaeth"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 #, fuzzy
@@ -4243,40 +4178,12 @@ msgstr "Tahiti"
 msgid "Tai (Other)"
 msgstr ""
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-#, fuzzy
-msgid "Taiwan"
-msgstr "Vatican"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr ""
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr ""
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-#, fuzzy
-msgid "Tamashek"
-msgstr "Tashkent"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 #, fuzzy
 msgid "Tamil"
 msgstr "Tasmania"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-#, fuzzy
-msgid "Tanzania"
-msgstr "Tasmania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 #, fuzzy
@@ -4289,6 +4196,11 @@ msgstr "Qatar"
 msgid "Telugu"
 msgstr "Gwlad Belg"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4300,35 +4212,22 @@ msgstr ""
 msgid "Tetum"
 msgstr "&Profi"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr ""
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr ""
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 #, fuzzy
 msgid "Thai"
 msgstr "Tahiti"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-#, fuzzy
-msgid "Thailand"
-msgstr "Ffindir"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr ""
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4344,47 +4243,27 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+#, fuzzy
+msgid "Klingon"
+msgstr "Saigon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
 #, fuzzy
-msgid "Togo"
-msgstr "Tokyo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr ""
+msgid "Tamashek"
+msgstr "Tashkent"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4396,15 +4275,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4412,17 +4285,23 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+#, fuzzy
+msgid "Tswana"
+msgstr "Tasmania"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 #, fuzzy
 msgid "Tsonga"
 msgstr "Estonia"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
 #, fuzzy
-msgid "Tswana"
-msgstr "Tasmania"
+msgid "Turkmen"
+msgstr "Twrci"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
@@ -4430,79 +4309,39 @@ msgstr "Tasmania"
 msgid "Tumbuka"
 msgstr "Timbuktu"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-#, fuzzy
-msgid "Tunisia"
-msgstr "Tunis"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 #, fuzzy
 msgid "Tupi Languages"
 msgstr "Iaith"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Twrci"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 #, fuzzy
 msgid "Turkish"
 msgstr "Tunis"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr ""
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-#, fuzzy
-msgid "Turkmen"
-msgstr "Twrci"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-#, fuzzy
-msgid "Tuvalu"
-msgstr "Zulu"
-
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 #, fuzzy
 msgid "Tuvinian"
 msgstr "Tunis"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr ""
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-#, fuzzy
-msgid "Uganda"
-msgstr "Canada"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4513,11 +4352,6 @@ msgstr ""
 msgid "Uighur"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Wcrain"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 #, fuzzy
@@ -4529,578 +4363,752 @@ msgstr "Wcrain"
 msgid "Umbundu"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+#, fuzzy
+msgid "Vai"
+msgstr "Vatican"
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+#, fuzzy
+msgid "Venda"
+msgstr "Grenada"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+#, fuzzy
+msgid "Votic"
+msgstr "Vatican"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+#, fuzzy
+msgid "Wakashan Languages"
+msgstr "Managua"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
 msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Y Deyrnas Unedig"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+#, fuzzy
+msgid "Welsh"
+msgstr "Gorllewin"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+#, fuzzy
+msgid "Sorbian Languages"
+msgstr "Iaith"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
 msgstr ""
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+#, fuzzy
+msgid "Yapese"
+msgstr "Ie"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr ""
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+#, fuzzy
+msgid "Yupik Languages"
+msgstr "Iaith"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr ""
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+#, fuzzy
+msgid "Zenaga"
+msgstr "Grenada"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+#, fuzzy
+msgid "Zhuang"
+msgstr "Wedi'u Newid"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr ""
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+#, fuzzy
+msgid "Zuni"
+msgstr "Tunis"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr ""
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "Saerniaeth:"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "Bydd pecyn %1 yn cael ei arsefydlu"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-#, fuzzy
-msgid "Vai"
-msgstr "Vatican"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "Rhaid arsefydlu'r pecynnau yma:"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "Methodd yr arsefydliad."
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-#, fuzzy
-msgid "Venda"
-msgstr "Grenada"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Arsefydlu %s: \"%s\""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
 msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-#, fuzzy
-msgid "Votic"
-msgstr "Vatican"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "Wakashan Languages"
-msgstr "Managua"
+msgid "uninstallable providers: "
+msgstr "Arsefydlu"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, fuzzy, c-format, boost-format
+msgid "do not install %s"
+msgstr "Arsefydlu %s: \"%s\""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "Arsefydlu %s: \"%s\""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-#, fuzzy
-msgid "Welsh"
-msgstr "Gorllewin"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "Gosod gyrrydd..."
+
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "&Dileu"
+
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-#, fuzzy
-msgid "Yapese"
-msgstr "Ie"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-#, fuzzy
-msgid "Yupik Languages"
-msgstr "Iaith"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Arsefydlu %s: \"%s\""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-#, fuzzy
-msgid "Zambia"
-msgstr "Jamaica"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-#, fuzzy
-msgid "Zenaga"
-msgstr "Grenada"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-#, fuzzy
-msgid "Zhuang"
-msgstr "Wedi'u Newid"
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Couldn't open file: %s."
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-#, fuzzy
-msgid "Zuni"
-msgstr "Tunis"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Arsefydlu %s: \"%s\""
+msgid "Failed to mount %s on %s"
+msgstr "Failed to parse: %s."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:67
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
+msgid "Cannot write file '%s'."
 msgstr "Arsefydlu %s: \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "Gosod gyrrydd..."
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, fuzzy, c-format, boost-format
-msgid "do not install %s"
-msgstr "Arsefydlu %s: \"%s\""
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr ""
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-#, fuzzy
-msgid "invalid"
-msgstr "Arsefydlu"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep %s"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "&Dileu"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr ""
+#: zypp/media/MediaException.cc:184
+#, fuzzy, c-format, boost-format
+msgid "Cannot eject media '%s'"
+msgstr "Arsefydlu %s: \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "Bydd pecyn %1 yn cael ei arsefydlu"
-
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "Arsefydlu %s: \"%s\""
-
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-#, fuzzy
-msgid "uninstallable providers: "
-msgstr "Arsefydlu"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "anhysbys"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
 #, fuzzy
-#~ msgid " Error!"
-#~ msgstr "Gwall"
+#~ msgid "do not keep %s installed"
+#~ msgstr "Arsefydlu %s: \"%s\""
+
+#, fuzzy
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Failed to parse: %s."
+
+#, fuzzy
+#~ msgid "%s remove failed"
+#~ msgstr "Methodd rpm."
 
 #, fuzzy
 #~ msgid "%s install failed"
@@ -5111,57 +5119,57 @@ msgstr ""
 #~ msgstr "&Ie, gosod"
 
 #, fuzzy
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "Rhaid arsefydlu'r pecynnau yma:"
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "Gosod gyrrydd..."
 
 #, fuzzy
-#~ msgid "%s remove failed"
-#~ msgstr "Methodd rpm."
+#~ msgid "Install missing resolvables"
+#~ msgstr "Gosod gyrrydd..."
 
 #, fuzzy
-#~ msgid ", Action: "
-#~ msgstr "Gweithred"
+#~ msgid "Keep resolvables"
+#~ msgstr "Gosod gyrrydd..."
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "Couldn't open file: %s."
+#~ msgid "Unlock these resolvables"
+#~ msgstr "Gosod gyrrydd..."
 
 #, fuzzy
-#~ msgid "Default"
-#~ msgstr "Rhag&osod"
+#~ msgid "install %s"
+#~ msgstr "Arsefydlu %s: \"%s\""
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgid "unlock all resolvables"
 #~ msgstr "Gosod gyrrydd..."
 
 #, fuzzy
-#~ msgid "Establishing %s"
-#~ msgstr "Arsefydlu %s: \"%s\""
+#~ msgid "Can't open solv-file: "
+#~ msgstr "Couldn't open file: %s."
 
 #, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Failed to parse: %s."
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "Rhaid arsefydlu'r pecynnau yma:"
 
 #, fuzzy
-#~ msgid "Install missing resolvables"
-#~ msgstr "Gosod gyrrydd..."
+#~ msgid "No need to install %s"
+#~ msgstr "&Ie, gosod"
 
 #, fuzzy
-#~ msgid "Keep resolvables"
-#~ msgstr "Gosod gyrrydd..."
+#~ msgid ", Action: "
+#~ msgstr "Gweithred"
 
 #, fuzzy
-#~ msgid "No need to install %s"
-#~ msgstr "&Ie, gosod"
+#~ msgid "Establishing %s"
+#~ msgstr "Arsefydlu %s: \"%s\""
+
+#, fuzzy
+#~ msgid " Error!"
+#~ msgstr "Gwall"
 
 #~ msgid "Ok"
 #~ msgstr "Iawn"
 
 #, fuzzy
-#~ msgid "The package archive has incorrect MD5 sum"
-#~ msgstr "Mae llofnod annilys gan yr RPM."
-
-#, fuzzy
 #~ msgid "The package file has incorrect MD5 sum"
 #~ msgstr "Mae llofnod annilys gan yr RPM."
 
@@ -5170,16 +5178,12 @@ msgstr ""
 #~ msgstr "Mae llofnod annilys gan yr RPM."
 
 #, fuzzy
-#~ msgid "Unlock these resolvables"
-#~ msgstr "Gosod gyrrydd..."
-
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "Arsefydlu %s: \"%s\""
+#~ msgid "The package archive has incorrect MD5 sum"
+#~ msgstr "Mae llofnod annilys gan yr RPM."
 
 #, fuzzy
-#~ msgid "install %s"
-#~ msgstr "Arsefydlu %s: \"%s\""
+#~ msgid "Default"
+#~ msgstr "Rhag&osod"
 
 #, fuzzy
 #~ msgid "to be installed (soft)"
@@ -5188,7 +5192,3 @@ msgstr ""
 #, fuzzy
 #~ msgid "to be uninstalled"
 #~ msgstr "ni arsefydlir y rhaglen"
-
-#, fuzzy
-#~ msgid "unlock all resolvables"
-#~ msgstr "Gosod gyrrydd..."
index fd39aa9..010e5ff 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -17,19 +17,93 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 1.5\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"ikke-installérbare leverandører: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal-undtagelse"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Ugyldig LDAP URL-forespørgselsstreng."
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr " SSL-certifikatproblem. Tjek at CA-certifikatet er OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Ugyldig LDAP URL-forespørgselsparameter '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "URL-objekt kunne ikke klones"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Ugyldig tom URL-objektreference"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "URL-komponenter kunne ikke fortolkes"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Mutex-attributter kan ikke initialiseres"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Rekursive mutex-attributter kan ikke angives"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Rekursive mutex-attributter kan ikke initialiseres"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Mutex-lås kan ikke hentes"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Mutex-lås kan ikke frigives"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Leverer"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Præ-kræver"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Kræver"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Konflikter"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Forælder"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Anbefaler"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Foreslår"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Forbedringer"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Supplerer"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Tvivlsom type '%s' for %u byte checksum '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -39,10 +113,6 @@ msgstr " afviklet"
 msgid " execution failed"
 msgstr " afvikling fejlede"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " afvikling skippet under afbrydelse"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -51,114 +121,1791 @@ msgstr " afvikling skippet under afbrydelse"
 msgid "%s already executed as %s)"
 msgstr "%s er allerede kørt som %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s konflikter med %s, der leveres af %s"
-
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s hører ikke til en distopgradering-softwarekilde"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " afvikling skippet under afbrydelse"
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s har laverestående arkitektur"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Fejl under afsendelse af bekendtgørelse af opdateringsbesked."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s kan ikke installeres"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Besked om ny opdatering"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s leveres af systemet og kan ikke slettes"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Installation er blevet afbrudt som ønsket."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s forælder %s, der leveres af %s"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
+"Beklager, denne version af libzypp blev bygget uden HAL-understøttelse."
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s kræver %s, men dette krav kan ikke leveres"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext er ikke tilsluttet"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(UDLØBET)"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive er ikke initialiseret."
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(udløber ikke)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume er ikke initialiseret."
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(udløber indenfor 24 t.)"
-msgstr[1] "(udløber indenfor 24 t.)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "dbus-tilslutning kan ikke oprettes"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(udløber indenfor 24 t.)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: libhal-kontekst kan ikke oprettes"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhazian"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: dbus-tilslutning kan ikke indstilles"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achinese"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "HAL-kontekst kan ikke initialiseres -- hald kører ikke?"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Ikke et cd-rom-drev"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM fejlede: "
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Tilføjer softwarekilden '%s'"
-
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Yderligere kundekontrakt nødvendig"
+msgid "Failed to import public key from file %s: %s"
+msgstr "Import af offentlig nøgle fra filen %s fejlede: %s"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "Yderligere rpm-output"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Fjernelse af den offentlige nøgle %s fejlede: %s"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adygejiensk"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Konfigurationsfiler er ændret for %s:"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm gemte %s som %s, men det var umuligt at bestemme forskellen"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm gemt %s som %s.\n"
+"Her er de første 25 linjer af forskelle:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm oprettede %s som %s, men det var umuligt at bestemme forskellen"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm oprettet %s som %s.\n"
+"Her er de første 25 linjer af forskelle:\n"
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "Yderligere rpm-output"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "backup %s blev oprettet"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Følgende handlinger udføres:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Kunne ikke læse mappen \"%s\""
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Alias for softwarekilde må ikke starte med punktum."
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Alias for tjeneste må ikke starte med punktum."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Kan ikke åbne filen \"%s\" til skrivning."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+"Ukendt tjeneste \"%1%\": Fjerner forældreløs tjeneste-softwarekilde \"%2%\""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Kan ikke oprette %s"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Kan ikke oprette mappe med metadata-cache."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Opbygger cache for softwarekilden '%s'"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Kan ikke oprette cache i %s - ingen skriverettigheder."
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Caching af softwarekilde (%d) mislykkedes."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Ikke-håndteret  softwarekilde-type"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Fejl under forsøg på at læse fra \"%s\""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Ukendt fejl ved læsning fra \"%s\""
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Tilføjer softwarekilden '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Ugyldig softwarekilde-filnavn i \"%s\""
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Fjerner softwarekilden '%s'"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Kan ikke regne ud hvor softwarekilden er lagret."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Kan ikke slette \"%s\""
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Kan ikke regne ud hvor tjenesten er lagret."
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "URL-oversigt tillader ikke %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Ugyldig %s-komponent '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Ugyldig %s-komponent"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Fortolkning af forespørgselsstreng er ikke understøttet af denne URL"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "URL-oversigt er en påkrævet komponent"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Ugyldig URL-oversigt '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "URL-oversigt tillader ikke et brugernavn"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "URL-oversigt tillader ikke en adgangskode"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "URL-oversigt kræver en værtskomponent"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "URL-oversigt tillader ikke en værtskomponent"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Ugyldig værtskomponent '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "URL-oversigt tillader ikke en port"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Ugyldig portkomponent '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "URL-oversigt kræver et stinavn"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Relativ sti er ikke tilladt hvis autoritet eksisterer"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Kodede strenge indeholder en NUL-byte"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Ugyldigt skilletegn for parameter-array."
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Ugyldigt skilletegn for parameter-map."
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Ugyldigt skilletegn for parameter-array join."
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Kunne ikke åbne pseudo-terminal: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Kan ikke åbne dataledning (%s)."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Kan ikke skifte rodmappe til '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "Kan ikke skifte mappe til \"%s\" indenfor chroot \"%s\" (%s)."
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Kan ikke skifte mappe til \"%s\" (%s)."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Kan ikke eksekvere '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Kan ikke forgrene (%s)."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Kommando afsluttet med status %d."
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Kommando dræbtes af signalet %d (%s)."
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Kommando afsluttet med ukendt fejl"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(udløber ikke)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(UDLØBET)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(udløber indenfor 24 t.)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(udløber indenfor 24 t.)"
+msgstr[1] "(udløber indenfor 24 t.)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "ukendt"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "ikke-supporteret"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Niveau 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Niveau 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Niveau 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Yderligere kundekontrakt nødvendig"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "ugyldig"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Supportniveau er ikke angivet"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Leverandøren yder ikke support."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Problembestemmelse, som betyder teknisk support designet til at give "
+"kompatibilitetsinformation, installationsassistance, brugssupport, løbende "
+"vedligeholdelse og basal fejlsøgning. Niveau 1-support er ikke beregnet til "
+"at rette produktfejl."
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Problemisolering, som betyder teknisk support designet til at duplikere "
+"kundeproblemer, isolere problemområdet og levere løsning på problemer som "
+"ikke løses af niveau 1-support."
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Problemløsning, som betyder teknisk support designet til at løse komplekse "
+"problemer ved at inddrage udvikling i løsning af produktfejl som er blevet "
+"identificeret af niveau 2-support."
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "En yderligere kundekontrakt er nødvendig for at få support."
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Ukendt support-mulighed. Beskrivelse ikke tilgængelig"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Ukendt land: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Ingen kode"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Forenede Arabiske Emirater"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
 msgid "Afghanistan"
 msgstr "Afghanistan"
 
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua og Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albanien"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenien"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Hollandske Antiller"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktis"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Amerikansk Samoa"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Østrig"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australien"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Alandøerne"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbajdsjan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnien-Herzegovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgien"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgarien"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasilien"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvet-øen"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Hviderusland"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Kokosøerne"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Centralafrikanske Republik"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Schweiz"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Elfenbenskysten"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cook-øerne"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Cameroun"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Kina"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Kap Verde"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Juleøen"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Cypern"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Tjekkiet"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Tyskland"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danmark"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikanske Republik"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algeriet"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estland"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egypten"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Vest-Sahara"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spanien"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopien"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finland"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falklandsøerne (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "De forenede Micronesiske stater"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Færøerne"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Frankrig"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Metropolitansk Frankrig"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Storbritanien"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgien"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Fransk Guinea"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grønland"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Ækvatorialguinea"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grækenland"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Syd-Georgien og sydlige Sandwich-øer"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heard Øen og McDonald Øerne"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Kroatien"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Ungarn"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesien"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irland"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Isle of Man"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Indien"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "British Indian Ocean Territory"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Island"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italien"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordan"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japan"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgisistan"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Cambodia"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comorerne"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Sankt Kitts og Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Nord Korea"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Syd Korea"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Caymanøerne"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kasakhstan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Laos"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Sankt Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litauen"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxembourg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Letland"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Liberia"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marokko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldavien"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Saint Martin"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshalløerne"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonien"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongoliet"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Nordmarianerne"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauretanien"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldiverne"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexico"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaysia"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambique"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Ny Caledonien"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolk Øen"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Holland"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norge"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "New Zeeland"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Fransk Polynesien"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Ny Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filippinerne"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polen"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Sankt Pierre og Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palæstinensisk territorie"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Réunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Rumænien"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbien"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Russiske føderation"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudiarabien"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Salomonøerne"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychellerne"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Sverige"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapore"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Sankt Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenien"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard og Jan Mayen øerne"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovakiet"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "São Tomé og Príncipe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Syrien"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swaziland"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks- og Caicos-øerne"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Tchad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Franske sydlige territorier"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thailand"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadzjikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunesien"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Øst-Timor"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Tyrkiet"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad og Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzania"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraine"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Fjerne, mindre øer, USA"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "USA"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Vatikanstaten"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Sankt Vincent og Grenadinerne"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Jomfruøerne (britisk)"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Jomfruøerne (USA)"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis og Futuna øerne"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Sydafrika"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Ukendt sprog: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abkhazian"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achinese"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adygejiensk"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-Asiatisk (Andre)"
+
 #. language code: afh
 #: zypp/LanguageCode.cc:175
 msgid "Afrihili"
@@ -169,11 +1916,6 @@ msgstr "Afrihili (Kunstsprog)"
 msgid "Afrikaans"
 msgstr "Afrikaans"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-Asiatisk (Andre)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -189,16 +1931,6 @@ msgstr "Akan"
 msgid "Akkadian"
 msgstr "Akkadian"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Alandøerne"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albanien"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -209,58 +1941,25 @@ msgstr "Albansk"
 msgid "Aleut"
 msgstr "Aleut"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algeriet"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "Algonkine sprog"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaisk (Turko-Tatarisk)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Amerikansk Samoa"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Sydaltaisk"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "Amharic"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "En yderligere kundekontrakt er nødvendig for at få support."
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktis"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua og Barbuda"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Engelsk, Gammel (ca. 450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -272,55 +1971,40 @@ msgstr "Apachesprog"
 msgid "Arabic"
 msgstr "Arabisk"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonisk"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "Aramæisk"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonisk"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armensk"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "Araucariask"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenien"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armensk"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "Kunstige (Andre)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -337,32 +2021,11 @@ msgstr "Asturisk"
 msgid "Athapascan Languages"
 msgstr "Athapaskiske sprog"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australien"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "Australske sprog"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Østrig"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronesisk (Malayo-Polynesisk)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Autentificering påkrævet for '%s'"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -383,44 +2046,25 @@ msgstr "Awadhi"
 msgid "Aymara"
 msgstr "Aymara"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbajdsjan"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Aserbadjansk"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Dårligt filnavn: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Dårligt tilknytningspunkt for medie"
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinesisk"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Bamileke sprog"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltisk (Andre)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bashkir"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -432,76 +2076,36 @@ msgstr "Baluchi"
 msgid "Bambara"
 msgstr "Bambara"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Bamileke sprog"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (Andre)"
-
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
-
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
-
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bashkir"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinesisk"
 
 #. language code: baq eus eu
 #: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 msgid "Basque"
 msgstr "Baskisk"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonesien)"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltisk (Andre)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "Beja"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Hviderusland"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "Hviderussisk"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgien"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -512,310 +2116,100 @@ msgstr "Bemba"
 msgid "Bengali"
 msgstr "Bengalsk"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "Berber-sprog"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "Bhojpuri"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
 msgstr "Bihari"
 
 #. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikol"
-
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Bini"
-
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
-
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
-
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnien-Herzegovina"
-
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosnisk"
-
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvet-øen"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Braj"
-
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasilien"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretonsk"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "British Indian Ocean Territory"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Jomfruøerne (britisk)"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Buginesisk"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Opbygger cache for softwarekilden '%s'"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgarien"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgarsk"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriat"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Burmesisk"
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Caddo"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Cambodia"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Cameroun"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Kan ikke oprette sat-pulje."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Mutex-lås kan ikke hentes"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Kan ikke skifte mappe til \"%s\" (%s)."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "Kan ikke skifte mappe til \"%s\" indenfor chroot \"%s\" (%s)."
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Kan ikke skifte rodmappe til '%s' (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Kan ikke oprette %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Kan ikke oprette cache i %s - ingen skriverettigheder."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Kan ikke oprette mappe med metadata-cache."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Kan ikke slette \"%s\""
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Kan ikke eksekvere '%s' (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Kan ikke regne ud hvor softwarekilden er lagret."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Kan ikke regne ud hvor tjenesten er lagret."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Kan ikke forgrene (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Mutex-attributter kan ikke initialiseres"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Rekursive mutex-attributter kan ikke initialiseres"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Kan ikke åbne filen \"%s\" til skrivning."
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikol"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Kan ikke åbne låsefilen: %s"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Bini"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Kan ikke åbne dataledning (%s)."
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Kunne ikke åbne pseudo-terminal: %s."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika (Blackfoot)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Kan ikke levere filen '%s' fra softwarekilden '%s'"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (Andre)"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Mutex-lås kan ikke frigives"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosnisk"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Rekursive mutex-attributter kan ikke angives"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Braj"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canada"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretonsk"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Kan ikke skubbe noget medie ud"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonesien)"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Kan ikke skubbe mediet '%s' ud"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriat"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Kan ikke finde tilgængelig løkkeenhed til at montere imagefilen fra '%s'"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Buginesisk"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgarsk"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Burmesisk"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Kan ikke skrive filen '%s'."
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Kap Verde"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Caddo"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Central Amerikanske Indian (Andre)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -832,11 +2226,6 @@ msgstr "Katalansk"
 msgid "Caucasian (Other)"
 msgstr "Kaukasisk (Andre)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Caymanøerne"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -847,166 +2236,80 @@ msgstr "Cebuano"
 msgid "Celtic (Other)"
 msgstr "Keltisk (Andre)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Centralafrikanske Republik"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Central Amerikanske Indian (Andre)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Tchad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Chamiske sprog"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Konfigurationsfiler er ændret for %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Chechen"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Chibcha"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Chechen"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Kina"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Kinesisk"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukese"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Chinook jargon"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyan"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Choctaw"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Juleøen"
-
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "Church Slavic"
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukese"
-
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Chuvash"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Traditionel newari"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokosøerne"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Kommando afsluttet med status %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Kommando afsluttet med ukendt fejl"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Kommando dræbtes af signalet %d (%s)."
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyan"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comorerne"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Konflikter"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Church Slavic"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Chuvash"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cook-øerne"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne"
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Chamiske sprog"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1023,31 +2326,6 @@ msgstr "Cornish"
 msgid "Corsican"
 msgstr "Corsicansk"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Elfenbenskysten"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Creoles og Pidgins (andre)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1063,46 +2341,36 @@ msgstr "Creolsk og Pidgin - fransk-baseret (andre)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Creolsk og Pidgin - portugisisk-baseret (andre)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Crimean Tatar"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Kroatien"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Kroatisk"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Creoles og Pidgins (andre)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kasjubisk"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Cushitisk (Andre)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Cypern"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Tjekkisk"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Tjekkiet"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1128,10 +2396,15 @@ msgstr "Dayak"
 msgid "Delaware"
 msgstr "Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danmark"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Athapan-slavisk"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1143,74 +2416,36 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Divehi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikanske Republik"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Download (curl)-fejl for '%s':\n"
-"Fejlkode: %s\n"
-"Fejlmeddelelse: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Download (curl) initialisering fejlede for '%s'"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Dravidiansk (Andre)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Nedre sorbiansk"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Tvivlsom type '%s' for %u byte checksum '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Hollandsk, Middelalder (ca. 1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Hollandsk"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Hollandsk, Middelalder (ca. 1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1221,26 +2456,11 @@ msgstr "Dyula"
 msgid "Dzongkha"
 msgstr "Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Øst-Timor"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egypten"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1251,109 +2471,31 @@ msgstr "Egyptisk (Oldtids-)"
 msgid "Ekajuk"
 msgstr "Ekajuk"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "Elamitisk"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Tom destination i URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Tomt filsystem i URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Tomt værtsmaskinenavn i URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Kodede strenge indeholder en NUL-byte"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
 msgstr "Engelsk"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Engelsk, Middelalder (1100-1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Engelsk, Gammel (ca. 450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Forbedringer"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Ækvatorialguinea"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "Fejl opstod under indstilling af download-tilvalg (curl) for \"%s\":"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Fejl under afsendelse af bekendtgørelse af opdateringsbesked."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Fejl under forsøg på at læse fra \"%s\""
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Engelsk, Middelalder (1100-1500)"
 
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estland"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estonisk"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopien"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1364,256 +2506,31 @@ msgstr "Ewe"
 msgid "Ewondo"
 msgstr "Ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Caching af softwarekilde (%d) mislykkedes."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Sletning af nøgle fejlede."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Import af offentlig nøgle fra filen %s fejlede: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Montering af %s fejlede på %s."
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Kunne ikke levere pakken %s. Vil du prøve at hente den igen?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Kunne ikke læse mappen \"%s\""
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Fjernelse af den offentlige nøgle %s fejlede: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Afmontering af %s fejlede"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandsøerne (Malvinas)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Fang"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Færøerne"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "Færøsk"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "De forenede Micronesiske stater"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "Fijian"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Filen %1%\n"
-"  fra installation af\n"
-"     %2%\n"
-"  er i konflikt med filen\n"
-"     %3%\n"
-"  fra installation af\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Filen %1%\n"
-"  fra installation af\n"
-"     %2%\n"
-"  er i konflikt med filen\n"
-"     %3%\n"
-"  fra pakken\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Filen %1%\n"
-"  fra installation af\n"
-"     %2%\n"
-"  er i konflikt med filen fra installation af\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Filen %1%\n"
-"  fra installation af\n"
-"     %2%\n"
-"  er i konflikt med en fil fra pakken\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Filen %1%\n"
-"  fra pakken\n"
-"     %2%\n"
-"  er i konflikt med filen\n"
-"     %3%\n"
-"  fra installation af\n"
-"     %4%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Filen %1%\n"
-"  fra pakken\n"
-"     %2%\n"
-"  er i konflikt med filen\n"
-"     %3%\n"
-"  fra pakken\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Filen %1%\n"
-"  fra pakken\n"
-"     %2%\n"
-"  er i konflikt med filen fra installation af\n"
-"     %3%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Filen %1%\n"
-"  fra pakken\n"
-"     %2%\n"
-"  er i konflikt med filen fra pakken\n"
-"     %3%"
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Filen %s blev ikke fundet på mediet '%s'"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filippinsk"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finland"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1624,40 +2541,16 @@ msgstr "Finsk"
 msgid "Finno-Ugrian (Other)"
 msgstr "Finno-Ugrisk (Andre)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Følgende handlinger udføres:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Frankrig"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Fransk"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Fransk Guinea"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Fransk Polynesien"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Franske sydlige territorier"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1673,46 +2566,21 @@ msgstr "Fransk, Gammel (ca. 842-1400)"
 msgid "Frisian"
 msgstr "Frisian"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friulian"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fulah"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friulian"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gælisk"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galicisk"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1723,15 +2591,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Geez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgien"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germanske (andre)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1743,6 +2606,36 @@ msgstr "Georgiansk"
 msgid "German"
 msgstr "Tysk"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Geez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertesisk"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gælisk"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irsk"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galicisk"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1753,30 +2646,6 @@ msgstr "Højtysk, Middelalder (ca. 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Højtysk, Gammel (ca. 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germanske (andre)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Tyskland"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertesisk"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1797,11 +2666,6 @@ msgstr "Gothisk"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grækenland"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1812,61 +2676,16 @@ msgstr "Græsk, Oldtid (til 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Græsk, Moderne (fra 1453)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grønland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1877,52 +2696,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitisk"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal-undtagelse"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext er ikke tilsluttet"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive er ikke initialiseret."
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume er ikke initialiseret."
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Har du aktiveret alle anmodede softwarekilder?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaiiansk"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heard Øen og McDonald Øerne"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1948,16 +2736,6 @@ msgstr "Himachali"
 msgid "Hindi"
 msgstr "Hindu"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Historik:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1968,31 +2746,21 @@ msgstr "Hittitisk"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Vatikanstaten"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Øvre sorbiansk"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Ungarnsk"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Ungarn"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2003,10 +2771,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Island"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2018,250 +2786,105 @@ msgstr "Islandsk"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Inari Samisk"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Indien"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (International Auxiliary Language Association)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Indisk (Andre)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indo-Europæisk (Andre)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesien"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonesisk"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indo-Europæisk (Andre)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Ingush"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Installation er blevet afbrudt som ønsket."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (International Auxiliary Language Association)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Inupiaq"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Ugyldig %s-komponent"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Ugyldig %s-komponent '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Ugyldig LDAP URL-forespørgselsparameter '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Ugyldig LDAP URL-forespørgselsstreng."
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Ugyldig URL-oversigt '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Ugyldig tom URL-objektreference"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Ugyldig værtskomponent '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Ugyldigt skilletegn for parameter-array join."
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Ugyldigt skilletegn for parameter-array."
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Ugyldigt skilletegn for parameter-map."
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Ugyldig portkomponent '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Ugyldigt regulært udtryk '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Ugyldigt regulært udtryk '%s': Regcomp returnerede %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Ugyldig softwarekilde-filnavn i \"%s\""
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Iransk (Andre)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irland"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irsk"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Irsk, Middelalder (ca. 900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Irsk, Gammel (Indtil ca. 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Irokesiske sprog"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Isle of Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italiensk"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italien"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javanesisk"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japan"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japansk"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javanesisk"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordan"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Jødisk-persisk"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Jødisk-arabisk"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Jødisk-persisk"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardisk"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2278,11 +2901,6 @@ msgstr "Kachinsk"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmyk"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2293,21 +2911,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karachay-Balkarisk"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2318,10 +2921,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kashmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kasjubisk"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2333,31 +2936,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Kasakhisk"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kasakhstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardisk"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmersk"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Khoisan (Andre)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmersk"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2368,11 +2966,6 @@ msgstr "Khotanesisk"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2383,15 +2976,15 @@ msgstr "Kinyarwanda"
 msgid "Kirghiz"
 msgstr "Kirghiz"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2403,11 +2996,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Congo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2423,11 +3011,21 @@ msgstr "Kosraeansk"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karachay-Balkarisk"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2443,26 +3041,11 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Kurdisk"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgisistan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2483,68 +3066,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Laos"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latinsk"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Letland"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Lettisk"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Niveau 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Niveau 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Niveau 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezghian"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Liberia"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2555,61 +3091,46 @@ msgstr "Limburgansk"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litauen"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Litausk"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Placeringen \"%s\" er midlertidigt utilgængelig."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Nedertysk"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Nedre sorbiansk"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxembourgsk"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lule-samisk"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2625,35 +3146,11 @@ msgstr "Luo (Kenya og Tanzania)"
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxembourg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxembourgsk"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonien"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Makedonsk"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2664,6 +3161,11 @@ msgstr "Maduresisk"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshallesisk"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2674,178 +3176,60 @@ msgstr "Maithili"
 msgid "Makasar"
 msgstr "Makasar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Madagaskariansk"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malaysisk"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "Malayalam"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaysia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldiverne"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Dårligt formeret URI"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltesisk"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchu"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
-msgstr "Mandingo"
-
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Manobosprog"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "Malayalam"
+
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
+msgstr "Mandingo"
 
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronesisk (Malayo-Polynesisk)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshalløerne"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshallesisk"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauretanien"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Mayanske sprog"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "Mediekilden '%s' indeholder ikke det ønskede medie"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Mediet '%s' er i brug af en anden instans"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malaysisk"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Medie er ikke tilknyttet"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Mediet åbnedes ikke under forsøg på at udføre handlingen '%s'."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Metropolitansk Frankrig"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexico"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Irsk, Middelalder (ca. 900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2857,86 +3241,61 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandesisk"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Diverse sprog"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Khmer (Andre)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Madagaskariansk"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltesisk"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manchu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Manobosprog"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldavisk"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldavien"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Khmer (Andre)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongoliet"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongolisk"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marokko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambique"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2947,210 +3306,141 @@ msgstr "Flere sprog"
 msgid "Munda languages"
 msgstr "Munda sprog"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandesisk"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Mayanske sprog"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Nordamerikansk indisk"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Neapolitansk"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele, nord"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele, syd"
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
-msgstr "Ndonga"
-
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Neapolitansk"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele, nord"
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepal Bhasa"
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
+msgstr "Ndonga"
+
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Nedertysk"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepali"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Holland"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Hollandske Antiller"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Ny Caledonien"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "New Zeeland"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Besked om ny opdatering"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepal Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Niger-Kordofaniansk (Niger-Congo)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-Saharansk (Sub-Saharansk Afrikansk)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niueansk"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Ingen kode"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Ingen URL i softwarekilden."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Norsk"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolk Øen"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Norse, gammel"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Nordamerikansk indisk"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Nord Korea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Nordmarianerne"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Nordsamisk"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Nordsotho"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norge"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norsk"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Norsk"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Ikke et cd-rom-drev"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Nordsotho"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Nubianske sprog"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Traditionel newari"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3171,10 +3461,6 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Forælder"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3185,20 +3471,6 @@ msgstr "Occitan (efter år 1500)"
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "En af eller begge '%s'- og '%s'-attributterne er påkrævet."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Operationen understøttes ikke af medie"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3219,164 +3491,85 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Ossetian"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Tyrkisk, Osmannisk"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Otomianske sprog"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Pakken %s lader til at være blevet defekt under overførslen. Vil du forsøge "
-"at hente den igen?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papuan-Australsk (Andre)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinansk"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauansk"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palæstinensisk territorie"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "Pampanga"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinansk"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
-msgstr "Panjabi"
-
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "Papiamento"
-
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua Ny Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papuan-Australsk (Andre)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Stien '%s' på mediet '%s' er ikke en mappe."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Stien '%s' på mediet '%s' er ikke en fil."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Adgangstilladelse til '%s' nægtet."
+msgstr "Panjabi"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persisk"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "Papiamento"
+
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauansk"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Persisk, gammel (ca. 600-400 F.K.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persisk"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Filippinsk (andre)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filippinerne"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Fønikisk"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Installér pakken \"lsof\" først."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeiansk"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polen"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Polsk"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeiansk"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3388,87 +3581,21 @@ msgstr "Portugisisk"
 msgid "Prakrit Languages"
 msgstr "Prakritsprog"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Præ-kræver"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Problembestemmelse, som betyder teknisk support designet til at give "
-"kompatibilitetsinformation, installationsassistance, brugssupport, løbende "
-"vedligeholdelse og basal fejlsøgning. Niveau 1-support er ikke beregnet til "
-"at rette produktfejl."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Problemisolering, som betyder teknisk support designet til at duplikere "
-"kundeproblemer, isolere problemområdet og levere løsning på problemer som "
-"ikke løses af niveau 1-support."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Problemløsning, som betyder teknisk support designet til at løse komplekse "
-"problemer ved at inddrage udvikling i løsning af produktfejl som er blevet "
-"identificeret af niveau 2-support."
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Provencalsk, Gammel (til 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Leverer"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pushto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Fortolkning af forespørgselsstreng er ikke understøttet af denne URL"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM fejlede: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Raeto-Romance"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3484,57 +3611,26 @@ msgstr "Rapanui"
 msgid "Rarotongan"
 msgstr "Rarotongansk"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Anbefaler"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Relativ sti er ikke tilladt hvis autoritet eksisterer"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Fjerner softwarekilden '%s'"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Alias for softwarekilde må ikke starte med punktum."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Den påkrævede attribut '%s' mangler."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Kræver"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Réunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Romansk (Andre)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Rumænien"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumænsk"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Raeto-Romance"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Romani"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumænsk"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3545,74 +3641,6 @@ msgstr "Rundi"
 msgid "Russian"
 msgstr "Russisk"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Russiske føderation"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Sankt Helena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Sankt Kitts og Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Sankt Lucia"
-
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint Martin"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Sankt Pierre og Miquelon"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Sankt Vincent og Grenadinerne"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Salishanske sprog"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Samaritansk Aramæisk"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Samiske sprog (andre)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoan"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
 #. language code: sad
 #: zypp/LanguageCode.cc:905
 msgid "Sandawe"
@@ -3623,41 +3651,61 @@ msgstr "Sandawe"
 msgid "Sango"
 msgstr "Sango"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Yakut"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Sydamerikansk Indiansk (Andre)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Salishanske sprog"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Samaritansk Aramæisk"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskrit"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "São Tomé og Príncipe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardinian"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbisk"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudiarabien"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Siciliansk"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Skotsk"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Kroatisk"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3668,142 +3716,40 @@ msgstr "Selkup"
 msgid "Semitic (Other)"
 msgstr "Semitisk (Andre)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbien"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbisk"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Alias for tjeneste må ikke starte med punktum."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "tjeneste-plugin understøtter ikke ændring af en attribut."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Irsk, Gammel (Indtil ca. 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychellerne"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Tegnsprog"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Shan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Siciliansk"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Tegnsprog"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Signaturfilen %s blev ikke fundet."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika (Blackfoot)"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapore"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Sinhala"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-Tibetansk (Andre)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Siouxsprog"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Skolt Samisk"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Athapan-slavisk"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-Tibetansk (Andre)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3815,213 +3761,141 @@ msgstr "Slavisk (Andre)"
 msgid "Slovak"
 msgstr "Slovakkisk"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovakiet"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenien"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Slovensk"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "Sogdian"
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Salomonøerne"
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Somali"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Sydsamisk (Lapland)"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Nordsamisk"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "Songhai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Samiske sprog (andre)"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lule-samisk"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Sorbianske sprog"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Inari Samisk"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-"Beklager, denne version af libzypp blev bygget uden HAL-understøttelse."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoan"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "Sotho"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Skolt Samisk"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Sydafrika"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Sydamerikansk Indiansk (Andre)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Syd-Georgien og sydlige Sandwich-øer"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Syd Korea"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "Sogdian"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Sydaltaisk"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Somali"
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Sydsamisk (Lapland)"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "Songhai"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spanien"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "Sotho"
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Spansk"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardinian"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Foreslår"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-Saharansk (Sub-Saharansk Afrikansk)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumeriansk"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sundansk"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Supplerer"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard og Jan Mayen øerne"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumeriansk"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Swahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Sverige"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Svensk"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Schweiz"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Syrien"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Syrisk"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Systemundtagelse '%s' på mediet '%s'."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Systemhåndtering er låst af programmet med pid %d (%s).\n"
-"
Luk dette program, før du prøver igen."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4032,36 +3906,11 @@ msgstr "Tahitisk"
 msgid "Tai (Other)"
 msgstr "Thai (andre)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tajik"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadzjikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamashek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamilsk"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4072,6 +3921,11 @@ msgstr "Tatar"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4082,33 +3936,21 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tajik"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Thai"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thailand"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Supportniveau er ikke angivet"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Leverandøren yder ikke support."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Denne handling køres allerede af et andet program."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Denne anmodning vil ødelægge dit system!"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4124,46 +3966,25 @@ msgstr "Tigre"
 msgid "Tigrinya"
 msgstr "Tigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Tidsfrist udløbet ved tilgang af \"%s\"."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4175,103 +3996,66 @@ msgstr "Tonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Tongaøerne)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Prøvede at importere ikke-eksisterende nøgle %s ind i nøgleringen %s"
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad og Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimshiansk"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmen"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunesien"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Tupisprog"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Tyrkiet"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Tyrkisk"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Tyrkisk, Osmannisk"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkmen"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks- og Caicos-øerne"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaisk (Turko-Tatarisk)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "Tuviniansk"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Udmurt"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4282,11 +4066,6 @@ msgstr "Ugaritisk"
 msgid "Uighur"
 msgstr "Uighur"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraine"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4297,211 +4076,36 @@ msgstr "Ukrainsk"
 msgid "Umbundu"
 msgstr "Umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "URL-objekt kunne ikke klones"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "dbus-tilslutning kan ikke oprettes"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "HAL-kontekst kan ikke initialiseres -- hald kører ikke?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "URL-komponenter kunne ikke fortolkes"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Ubestemt"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Ikke-håndteret  softwarekilde-type"
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Forenede Arabiske Emirater"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Storbritanien"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "USA"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Fjerne, mindre øer, USA"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Ukendt land: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Ukendt fejl ved læsning fra \"%s\""
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Ukendt sprog: "
-
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Ukendt matchtilstand \"%s\""
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Ukendt matchtilstand \"%s\" for mønstret \"%s\""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-"Ukendt tjeneste \"%1%\": Fjerner forældreløs tjeneste-softwarekilde \"%2%\""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Ukendt support-mulighed. Beskrivelse ikke tilgængelig"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Ikke-understøttet HTTP autentificeringsmetode '%s'"
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Ikke-understøttet URI-skema i '%s'."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Øvre sorbiansk"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "Urdu"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "URL-oversigt tillader ikke %s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "URL-oversigt tillader ikke en værtskomponent"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "URL-oversigt tillader ikke en adgangskode"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "URL-oversigt tillader ikke en port"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "URL-oversigt tillader ikke et brugernavn"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "URL-oversigt er en påkrævet komponent"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "URL-oversigt kræver en værtskomponent"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "URL-oversigt kræver et stinavn"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "Uzbekisk"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "Vai"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "Venda"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "Vietnamesisk"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Jomfruøerne (USA)"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Besøg Novell kundercenter for at tjekke om din registrering er gyldig og "
-"ikke udløbet."
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4522,16 +4126,6 @@ msgstr "Wakashanske sprog"
 msgid "Walamo"
 msgstr "Walamo"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis og Futuna øerne"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Walloon"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4547,26 +4141,31 @@ msgstr "Washo"
 msgid "Welsh"
 msgstr "Walisisk"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Vest-Sahara"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Sorbianske sprog"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Walloon"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "Wolof"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmyk"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "Xhosa"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Yakut"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4577,11 +4176,6 @@ msgstr "Yao"
 msgid "Yapese"
 msgstr "Yapese"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
-
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
 msgid "Yiddish"
@@ -4597,16 +4191,6 @@ msgstr "Yoruba"
 msgid "Yupik Languages"
 msgstr "Yupiske sprog"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
-
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
-
 #. language code: zap
 #: zypp/LanguageCode.cc:1139
 msgid "Zapotec"
@@ -4617,244 +4201,660 @@ msgstr "Zapotec"
 msgid "Zenaga"
 msgstr "Zenaga"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Prøvede at importere ikke-eksisterende nøgle %s ind i nøgleringen %s"
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Sletning af nøgle fejlede."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Signaturfilen %s blev ikke fundet."
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Kan ikke levere filen '%s' fra softwarekilden '%s'"
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Ingen URL i softwarekilden."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "tjeneste-plugin understøtter ikke ændring af en attribut."
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Pakken %s lader til at være blevet defekt under overførslen. Vil du forsøge "
+"at hente den igen?"
+
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr ""
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Kunne ikke levere pakken %s. Vil du prøve at hente den igen?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm-kontrol mislykkedes."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm mislykkedes."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"Systemhåndtering er låst af programmet med pid %d (%s).\n"
+"
Luk dette program, før du prøver igen."
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s hører ikke til en distopgradering-softwarekilde"
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s har laverestående arkitektur"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problem med den installerede pakke %s"
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "modstridende forespørgsler"
+
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "et eller andet afhængighedsproblem"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "intet leverer forespurgt %s"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Har du aktiveret alle anmodede softwarekilder?"
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "pakken %s findes ikke"
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "ikke understøttet anmodning"
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s leveres af systemet og kan ikke slettes"
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s kan ikke installeres"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "intet leverer %s, der kræves af %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "kan ikke installere både %s og %s"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s konflikter med %s, der leveres af %s"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s forælder %s, der leveres af %s"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "installerede %s forælder %s, der leveres af %s"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "solvable %s konflikter med %s, der leveres af den selv"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s kræver %s, men dette krav kan ikke leveres"
+
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "slettede udbydere: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"ikke-installérbare leverandører: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "ikke-installérbare leverandører: "
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "installér ikke %s"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "behold %s"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Denne anmodning vil ødelægge dit system!"
+
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "Ignorér advarslen om et ødelagt system"
+
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "spørg ikke efter at installere en solvable, der leverer %s"
+
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "spørg ikke efter at slette alle solvables, der leverer %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "installér ikke sidste nye version af %s"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "behold %s på trods af laverestående arkitektur"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "Installér %s på trods af laverestående arkitektur"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm-kontrol mislykkedes."
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "behold forældet %s"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm mislykkedes."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "installér %s fra ekskluderet softwarekilde"
+
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "nedgradering af %s til %s"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr "arkitekturændring af %s til %s"
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"installér %s (med leverandørændring)\n"
+"  %s  -->  %s"
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "udskiftning af %s med %s"
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "afinstallation af %s"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "ødelæg %s ved at ignorere nogle af dens afhængigheder"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr ""
+
+#: zypp/parser/RepoindexFileReader.cc:197
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "kan ikke installere både %s og %s"
+msgid "Required attribute '%s' is missing."
+msgstr "Den påkrævede attribut '%s' mangler."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "modstridende forespørgsler"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "En af eller begge '%s'- og '%s'-attributterne er påkrævet."
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/base/InterProcessMutex.cc:83
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "backup %s blev oprettet"
+msgid "Can't open lock file: %s"
+msgstr "Kan ikke åbne låsefilen: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Denne handling køres allerede af et andet program."
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Historik:"
+
+#: zypp/base/StrMatcher.cc:152
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "afinstallation af %s"
+msgid "Unknown match mode '%s'"
+msgstr "Ukendt matchtilstand \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "slettede udbydere: "
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Ukendt matchtilstand \"%s\" for mønstret \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "spørg ikke efter at slette alle solvables, der leverer %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Ugyldigt regulært udtryk '%s': Regcomp returnerede %d"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "spørg ikke efter at installere en solvable, der leverer %s"
+msgid "Invalid regular expression '%s'"
+msgstr "Ugyldigt regulært udtryk '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Installér pakken \"lsof\" først."
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "installér ikke %s"
+msgid "Authentication required for '%s'"
+msgstr "Autentificering påkrævet for '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "installér ikke sidste nye version af %s"
+msgid "Failed to mount %s on %s"
+msgstr "Montering af %s fejlede på %s."
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "nedgradering af %s til %s"
+msgid "Failed to unmount %s"
+msgstr "Afmontering af %s fejlede"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr ""
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Dårligt filnavn: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "Ignorér advarslen om et ødelagt system"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Mediet åbnedes ikke under forsøg på at udføre handlingen '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"installér %s (med leverandørændring)\n"
-"  %s  -->  %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Filen %s blev ikke fundet på mediet '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "Installér %s på trods af laverestående arkitektur"
+msgid "Cannot write file '%s'."
+msgstr "Kan ikke skrive filen '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Medie er ikke tilknyttet"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Dårligt tilknytningspunkt for medie"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "installér %s fra ekskluderet softwarekilde"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Download (curl) initialisering fejlede for '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "installerede %s forælder %s, der leveres af %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "Systemundtagelse '%s' på mediet '%s'."
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "ugyldig"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Stien '%s' på mediet '%s' er ikke en fil."
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "behold %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Stien '%s' på mediet '%s' er ikke en mappe."
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Dårligt formeret URI"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Tomt værtsmaskinenavn i URI"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Tomt filsystem i URI"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Tom destination i URI"
+
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Ikke-understøttet URI-skema i '%s'."
+
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operationen understøttes ikke af medie"
+
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Download (curl)-fejl for '%s':\n"
+"Fejlkode: %s\n"
+"Fejlmeddelelse: %s\n"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "behold %s på trods af laverestående arkitektur"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "Fejl opstod under indstilling af download-tilvalg (curl) for \"%s\":"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "behold forældet %s"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Mediekilden '%s' indeholder ikke det ønskede medie"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: libhal-kontekst kan ikke oprettes"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "Mediet '%s' er i brug af en anden instans"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: dbus-tilslutning kan ikke indstilles"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Kan ikke skubbe noget medie ud"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "intet leverer %s, der kræves af %s"
+msgid "Cannot eject media '%s'"
+msgstr "Kan ikke skubbe mediet '%s' ud"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "intet leverer forespurgt %s"
+msgid "Permission to access '%s' denied."
+msgstr "Adgangstilladelse til '%s' nægtet."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "pakken %s findes ikke"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Tidsfrist udløbet ved tilgang af \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problem med den installerede pakke %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Placeringen \"%s\" er midlertidigt utilgængelig."
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr ""
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr " SSL-certifikatproblem. Tjek at CA-certifikatet er OK for '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
+"Kan ikke finde tilgængelig løkkeenhed til at montere imagefilen fra '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "udskiftning af %s med %s"
-
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm oprettede %s som %s, men det var umuligt at bestemme forskellen"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Ikke-understøttet HTTP autentificeringsmetode '%s'"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
-"rpm oprettet %s som %s.\n"
-"Her er de første 25 linjer af forskelle:\n"
+"Besøg Novell kundercenter for at tjekke om din registrering er gyldig og "
+"ikke udløbet."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm gemte %s som %s, men det var umuligt at bestemme forskellen"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Kan ikke oprette sat-pulje."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm gemt %s som %s.\n"
-"Her er de første 25 linjer af forskelle:\n"
+"Filen %1%\n"
+"  fra pakken\n"
+"     %2%\n"
+"  er i konflikt med filen fra pakken\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "solvable %s konflikter med %s, der leveres af den selv"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Filen %1%\n"
+"  fra pakken\n"
+"     %2%\n"
+"  er i konflikt med filen fra installation af\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "et eller andet afhængighedsproblem"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Filen %1%\n"
+"  fra installation af\n"
+"     %2%\n"
+"  er i konflikt med en fil fra pakken\n"
+"     %3%"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "ikke-installérbare leverandører: "
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Filen %1%\n"
+"  fra installation af\n"
+"     %2%\n"
+"  er i konflikt med filen fra installation af\n"
+"     %3%"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "ukendt"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Filen %1%\n"
+"  fra pakken\n"
+"     %2%\n"
+"  er i konflikt med filen\n"
+"     %3%\n"
+"  fra pakken\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "ikke-supporteret"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Filen %1%\n"
+"  fra pakken\n"
+"     %2%\n"
+"  er i konflikt med filen\n"
+"     %3%\n"
+"  fra installation af\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "ikke understøttet anmodning"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Filen %1%\n"
+"  fra installation af\n"
+"     %2%\n"
+"  er i konflikt med filen\n"
+"     %3%\n"
+"  fra pakken\n"
+"     %4%"
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Filen %1%\n"
+"  fra installation af\n"
+"     %2%\n"
+"  er i konflikt med filen\n"
+"     %3%\n"
+"  fra installation af\n"
+"     %4%"
index 34bf7f7..83bdadc 100644 (file)
--- a/po/de.po
+++ b/po/de.po
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# translation of zypp.de.po to German
+# translation of zypp.de.po to
+# @TITLE@
+# Copyright (C) 2006, SUSE Linux GmbH, Nuremberg
 #
+# This file is distributed under the same license as @PACKAGE@ package. FIRST
+#
+#
+# Lars Vogdt <lrupp@suse.de>, 2007.
+# Stephan Kulow <coolo@kde.org>, 2007.
+# Marko Schugardt <mail.sapex@gmx.de>, 2008,2009.
+# Michael Skiba <trans@michael-skiba.de>, 2008, 2012, 2013.
+# Jannick Kuhr <opensource@kuhr.org>, 2008.
+# Hermann-Josef Beckers <hj.beckers@onlinehome.de>, 2009.
+# Hermann J. Beckers <hj.beckers@onlinehome.de>, 2011, 2014.
 msgid ""
 msgstr ""
-"Project-Id-Version: zypp\n"
+"Project-Id-Version: zypp.de\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 16:56\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2014-10-12 14:20+0200\n"
+"Last-Translator: Hermann J. Beckers <hj.beckers@onlinehome.de>\n"
+"Language-Team: German <kde-i18n-de@kde.org>\n"
+"Language: de\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 1.5\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"nicht installierbare Anbieter: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal-Ausnahme"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Ungültige Anfragezeichenkette für LDAP-URL"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" SSL-Zertifikat-Problem; überprüfen Sie, ob das CA-Zertifikat für '%s' in "
-"Ordnung ist."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Ungültiger Anfrageparameter für LDAP-URL '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "URL-Objekt kann nicht geklont werden"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Ungültiger leerer URL-Objektverweis"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "URL-Komponenten können nicht analysiert werden"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Die Mutex-Eigenschaften können nicht initialisiert werden"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Die Eigenschaft des rekursiven Mutex kann nicht festgelegt werden"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Der rekursive Mutex kann nicht initialisiert werden"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Es kann keine Mutex-Sperre erlangt werden"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Die Mutex-Sperre kann nicht aufgehoben werden"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Bietet"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "setzt voraus"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Benötigt"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Steht in Konflikt"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Veraltet"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Empfehlungen"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Vorschläge"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Erweiterungen"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Zusätze"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Zweifelhafter Typ '%s' für %u-Byte-Prüfsumme '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -38,1591 +124,2440 @@ msgstr " ausgeführt"
 msgid " execution failed"
 msgstr " Ausführung fehlgeschlagen"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " Ausführung beim Abbrechen übersprungen"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
 #: zypp/target/TargetImpl.cc:449
 #, c-format, boost-format
 msgid "%s already executed as %s)"
-msgstr "%s bereits als %s ausgeführt)"
+msgstr "%s wurde bereits als %s ausgeführt)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s steht in Konflikt mit %s, das von %s zur Verfügung gestellt wurde"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " Ausführung während des Abbrechens übersprungen"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s gehört nicht zu einem Distributionsaktualisierungs-Repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Fehler beim Senden der Aktualisierungs-Benachrichtigung"
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s besitzt eine nachrangige Architektur"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Neue Aktualisierungs-Nachricht"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s ist nicht installierbar"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Die Installation wurde wie gefordert abgebrochen."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s wird vom System bereitgestellt und kann nicht gelöscht werden"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
+"Entschuldigung, aber diese Version von libzypp wurde ohne HAL-Unterstützung "
+"erstellt."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s löst %s ab, das von %s zur Verfügung gestellt wurde"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext nicht verbunden"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s benötigt %s, kann jedoch nicht zur Verfügung gestellt werden"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive nicht initialisiert"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(ABGELAUFEN)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume nicht initialisiert"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(läuft nicht ab)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "D-Bus-Verbindung kann nicht hergestellt werden"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(läuft innerhalb 24 Stunden ab)"
-msgstr[1] "(läuft innerhalb 24 Stunden ab)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Erstellen des libhal-Kontexts nicht möglich"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(läuft innerhalb 24 Stunden ab)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr ""
+"libhal_set_dbus_connection: Festlegen der dbus-Verbindung nicht möglich"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abchasisch"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
+"HAL-Kontext kann nicht initialisiert werden -- Wird hald nicht ausgeführt?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Aceh-Sprache"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Kein CD-ROM-Laufwerk"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acholi-Sprache"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM fehlgeschlagen: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme-Sprache"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr ""
+"Importieren des öffentlichen Schlüssels aus Datei %s fehlgeschlagen: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Repository '%s' hinzufügen"
+msgid "Failed to remove public key %s: %s"
+msgstr "Entfernen des öffentlichen Schlüssels %s fehlgeschlagen: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Zusätzlicher Kundenvertrag erforderlich"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Geänderte Konfigurationsdateien für %s:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm hat %s als %s gespeichert, der Unterschied konnte jedoch nicht ermittelt "
+"werden"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm hat %s als %s gespeichert.\n"
+"Hier die ersten 25 Zeilen mit Unterschieden:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm hat %s als %s erstellt, der Unterschied konnte jedoch nicht ermittelt "
+"werden"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm hat %s als %s erstellt.\n"
+"Hier die ersten 25 Zeilen mit Unterschieden:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
 #: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
 msgid "Additional rpm output"
-msgstr "Zusätzliche RPM-Ausgabe"
+msgstr "Zusätzliche rpm-Ausgabe"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adygeisch"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "Sicherung %s erstellt"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar-Sprache"
-
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "Signatur ist OK"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Afrihili"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Unbekannter Signaturtyp"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikaans"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "Signatur ist nicht OK"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Andere afro-asiatische Sprachen"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "Signatur ist OK, aber Schlüssel ist nicht verbürgt"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Ainu"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "Öffentlicher Schlüssel für Signatur nicht verfügbar"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Akan-Sprache"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "Datei nicht vorhanden oder Signatur kann nicht geprüft werden"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Akkadisch"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Folgende Aktionen werden ausgeführt:"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Aland-Inseln"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "Repo-Verzeichnis %1% kann nicht gelesen werden: Zugriff verweigert"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albanien"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Lesen von Verzeichnis '%s' fehlgeschlagen"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albanisch"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "Repo-Datei %1% kann nicht gelesen werden: Zugriff verweigert"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aleutisch"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Repository-Alias kann nicht mit einem Punkt beginnen."
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algerien"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Dienst-Alias kann nicht mit einem Punkt beginnen."
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Algonkin-Sprachen"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "'%s' kann nicht zum Schreiben geöffnet werden."
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Andere altaische Sprachen"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+"Unbekannter Dienst %1%': Verwaistes Dienst-Repository %2%' wird entfernt"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Amerikanisch Samoa"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Keine gültigen Metadaten bei de(m|n) festgelegten URL(s) gefunden"
+msgstr[1] "Keine gültigen Metadaten bei de(m|n) festgelegten URL(s) gefunden"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amharisch"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "%s kann nicht erstellt werden"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
 msgstr ""
-"Ein zusätzlicher Kundenvertrag ist erforderlich, um Unterstützung zu "
-"erhalten."
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
+"Verzeichnis für das zwischenspeichern der Metadaten kann nicht erstellt "
+"werden."
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Zwischenspeicher für Repository '%s' wird erzeugt"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Cache kann nicht in %s erstellt werden - keine Schreibberechtigung."
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktis"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Zwischenspeichern des Repos (%d) fehlgeschlagen."
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua und Barbuda"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Unbehandelter Repository-Typ"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Apachen-Sprache"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Fehler beim Versuch von '%s' zu lesen"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Arabisch"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Unbekannter Fehler beim Lesen von '%s'"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonesisch"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Repository '%s' wird hinzugefügt"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Aramäisch"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Ungültiger Repo-Dateiname bei '%s'"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho-Sprache"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Repository '%s' wird entfernt"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Arauka-Sprachen"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Speicherort des Repos nicht auffindbar."
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak-Sprachen"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "'%s' kann nicht gelöscht werden"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentinien"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Speicherort des Dienstes nicht auffindbar."
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenien"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "%s laut URL-Schema nicht zulässig"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armenisch"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Ungültige %s-Komponente '%s'"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Andere Kunstsprache"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Ungültige Komponente %s"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+"Die Analyse von Anfragezeichenketten wird für diese URL nicht unterstützt"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Assamesisch"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Das URL-Schema ist eine erforderliche Komponente"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Asturianisch"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Ungültiges URL-Schema '%s'"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Athapaskische Sprachen"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Benutzername laut URL-Schema nicht zulässig"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australien"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Passwort laut URL-Schema nicht zulässig"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Australische Sprachen"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Für das URL-Schema ist eine Host-Komponente erforderlich"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Österreich"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Host-Komponente laut URL-Schema nicht zulässig"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Andere austronesische Sprachen"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Ungültige Host-Komponente '%s'"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Port laut URL-Schema nicht zulässig"
+
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Authentifizierung erforderlich für '%s'"
+msgid "Invalid port component '%s'"
+msgstr "Ungültige Portkomponente '%s'"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Awarisch"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Für das URL-Schema ist ein Pfadname erforderlich"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Awestisch"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Relativer Pfad nicht erlaubt, wenn Zertifizierungsstelle vorhanden ist"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Awadhi"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Die verschlüsselte Zeichenkette enthält ein NULL-Byte"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Aymara-Sprache"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Ungültiges Trennzeichen für Parameter-Array-Spaltung"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Aserbaidschan"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Ungültiges Trennzeichen für Parameterzuordnungs-Spaltung"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Aserbeidschanisch"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Ungültiges Trennzeichen für Parameter-Array-Zusammenführung"
 
-#: zypp/media/MediaException.cc:47
+#: zypp/ExternalProgram.cc:258
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Fehlerhafter Dateiname: '%s'"
+msgid "Can't open pty (%s)."
+msgstr "PTY kann nicht geöffnet werden (%s)."
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Fehlerhafter Medienanschlusspunkt"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Die Pipe kann nicht geöffnet werden (%s)."
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Das Wurzelverzeichnis kann nicht auf '%s' geändert werden (%s)."
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "Wechsel zu '%s' innerhalb chroot '%s' nicht möglich (%s)"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinesisch"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Nach '%s' kann nicht gewechselt werden (%s)."
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Andere baltische Sprachen"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "'%s' kann nicht ausgeführt werden (%s)."
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Belutschisch"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Fork fehlgeschlagen (%s)."
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Bambara-Sprache"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Kommando mit Status %d beendet."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Bamileke-Sprache"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Kommando wurde mit Signal %d (%s) beendet."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda-Sprache"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Kommando mit unbekanntem Fehler beendet."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesch"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(läuft nicht ab)"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Andere Bantusprachen"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(ABGELAUFEN)"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(läuft innerhalb 24 Stunden ab)"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basaa-Sprache"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(läuft innerhalb 24 Stunden ab)"
+msgstr[1] "(läuft innerhalb 24 Stunden ab)"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Baschkirisch"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "Unbekannt"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baskisch"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "nicht unterstützt"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak-Sprache"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Level 1"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Bedauye"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Level 2"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Weißrussland"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Level 3"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Weißrussisch"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Zusätzlicher Kundenvertrag notwendig"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgien"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "ungültig"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Das Level der Unterstützung ist nicht festgelegt"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Bemba-Sprache"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Der Hersteller bietet keine Unterstützung an."
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengali"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Problembestimmung bedeutet, technische Unterstützung, die entworfen wurde,um "
+"Kompatibilitätsinformationen, Installationsassistenz, "
+"Anwendungsunterstützung, fortlaufende Aufrechterhaltung und grundlegende "
+"Hilfe bei Fehlersuche anzubieten. Level-1-Unterstützung beabsichtigt nicht, "
+"Produktdefektfehler zu beheben."
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Problemisolation bedeutet, technische Unterstützung, die entworfen wurde, um "
+"Kundenprobleme nachzuvollziehen, Problembereiche zu isolieren und Lösungen "
+"für Probleme anzubieten, die nicht von der Level-1-Unterstützung gelöst "
+"wurden."
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Andere Berbersprachen"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Problemlösung bedeutet, technische Unterstützung, die entworfen wurde, um "
+"komplexe Probleme zu lösen, durch Einschaltung der Entwicklung bei der "
+"Lösung von Produktdefekten, die von der Level-2-Unterstützung identifiziert "
+"wurden."
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+"Ein zusätzlicher Kundenvertrag ist notwendig, um Unterstützung zu erhalten."
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Bhojpuri"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Unbekannte Unterstützungsoption. Beschreibung nicht verfügbar"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Unbekanntes Land: "
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihari"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Kein Code"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikol-Sprache"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Bini-Sprache"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Vereinigte Arabische Emirate"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afghanistan"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Bilin"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua und Barbuda"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivien"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnien-Herzegowina"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albanien"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosnisch"
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenien"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Niederländische Antillen"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvetinsel"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Braj-Bhakha"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktis"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasilien"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentinien"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretonisch"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Amerikanisch Samoa"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Britisches Territorium im Indischen Ozean"
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Österreich"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Britische Jungferninseln"
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australien"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Bugi-Sprache"
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Aland-Inseln"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Cache für Repository '%s' erzeugen"
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Aserbaidschan"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgarien"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnien-Herzegowina"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgarisch"
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Burjatisch"
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesch"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgien"
 
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
 msgstr "Burkina Faso"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Burmesisch"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgarien"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
 
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "Burundi"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Caddo-Sprachen"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodscha"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Sat-Pool kann nicht erstellt werden."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Mutex-Sperre kann nicht abgerufen werden"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Wechsel zu '%s' nicht möglich (%s)."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "Wechsel zu '%s' innerhalb chroot '%s' nicht möglich (%s)"
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "chroot zu '%s' (%s) nicht möglich."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "%s konnte nicht erstellt werden"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-"Cache konnte auf %s nicht erstellt werden - keine Schreibberechtigungen."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Metadaten-Cache-Verzeichnis konnte nicht erstellt werden."
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "'%s' kann nicht gelöscht werden"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivien"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "exec '%s' (%s) nicht möglich."
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasilien"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Speicherort des Repos kann nicht gefunden werden."
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Speicherort des Dienstes kann nicht gefunden werden."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "(%s) abzweigen nicht möglich."
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvetinsel"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Mutex-Attribute können nicht initialisiert werden"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Rekursiver Mutex kann initialisiert werden"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Weißrussland"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Datei '%s' konnte nicht zum Schreiben geöffnet werden."
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Sperrdatei kann nicht geöffnet werden: %s"
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Pipe (%s) kann nicht geöffnet werden."
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Kokosinseln"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "PTY (%s) kann nicht geöffnet werden."
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr ""
-"Datei '%s' aus Repository '%s' kann nicht zur Verfügung gestellt werden"
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Zentralafrikanische Republik"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Mutex-Sperre kann nicht aufgehoben werden"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Schweiz"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Rekursives Mutex-Attribut kann nicht festgelegt werden"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Côte d'Ivoire"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cookinseln"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Es kann kein Medium ausgeworfen werden"
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Medium '%s' kann nicht ausgeworfen werden"
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Das verfügbare Loop-Device zum Einhängen der Datei aus '%s' kann nicht "
-"gefunden werden"
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "China"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "Repo-Verzeichnis '%1%' kann nicht gelesen werden: Zugriff verweigert"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolumbien"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "Repo-Datei '%1%' kann nicht gelesen werden: Zugriff verweigert"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Datei '%s' kann nicht geschrieben werden."
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuba"
 
 #. :CUB:192:
 #: zypp/CountryCode.cc:208
 msgid "Cape Verde"
 msgstr "Kap Verde"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "Karibisch"
-
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Katalanisch"
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Weihnachtsinsel"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "Andere kaukasische Sprachen"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Zypern"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Kaimaninseln"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Tschechische Republik"
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "Cebuano"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Deutschland"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Andere keltische Sprachen"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Dschibuti"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Zentralafrikanische Republik"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Dänemark"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Andere Indianersprachen (Zentralamerika)"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Tschad"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikanische Republik"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Tschagataisch"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algerien"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Cham-Sprachen"
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ekuador"
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "Chamorro-Sprache"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estland"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Geänderte Konfigurationsdateien für %s:"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Ägypten"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Tschetschenisch"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Westsahara"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee-Sprache"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne-Sprache"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spanien"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "Chibcha-Sprachen"
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Äthiopien"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Nyanja-Sprache"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finnland"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidschi"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "China"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falklandinseln (Malwinen)"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Chinesisch"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Föderierte Staaten von Mikronesien"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "Chinook-Jargon"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Färöer-Inseln"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyan"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Frankreich"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "Choctaw-Sprache"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Frankreich, Metropolitan"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Weihnachtsinsel"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabun"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "Kirchenslawisch"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Vereinigtes Königreich"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Trukesisch"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Tschuwaschisch"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgien"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Alt-Newari"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Französisch-Guayana"
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokosinseln"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolumbien"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Kommando mit Status %d beendet."
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Kommando mit unbekanntem Fehler beendet."
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grönland"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Kommando wurde mit Signal %d (%s) beendet."
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Komoren"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Konflikte"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Guinea"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cookinseln"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Griechenland"
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "Koptisch"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Süd-Georgia und die südlichen Sandwichinseln"
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "Kornisch"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "Korsisch"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Côte d'Ivoire"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree-Sprache"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Muskogisch"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Kreolische Sprachen (Pidgin-Sprachen)"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "Kreolisch-Englisch (andere)"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "Kreolisch-Französisch (andere)"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hongkong"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "Kreolisch-Portugiesisch (andere)"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heard-Insel und McDonald-Inseln"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "Krimtatarisch"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
 
 #. :HND:340:
 #: zypp/CountryCode.cc:254
 msgid "Croatia"
 msgstr "Kroatien"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Kroatisch"
-
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuba"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr "Andere kuschitische Sprachen"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Ungarn"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Zypern"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesien"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "Tschechisch"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irland"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Tschechische Republik"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "Dakota-Sprache"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Isle of Man"
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "Dänisch"
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Indien"
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr "Darginisch"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Britisches Territorium im Indischen Ozean"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr "Dajakisch"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "Delaware-Sprache"
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Dänemark"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Island"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "Dinka-Sprache"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italien"
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "Maledivisch"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Dschibuti"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaika"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "Dogri"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordanien"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib-Sprache"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japan"
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenia"
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikanische Republik"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgisistan"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Fehler beim Download (curl) für '%s':\n"
-"Fehlercode: '%s'\n"
-"Fehlermeldung: '%s'\n"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodscha"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Fehler bei der Initialisierung von Download (curl) für '%s'"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "Andere drawidische Sprachen"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Komoren"
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "Duala-Sprachen"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "St. Kitts und Nevis"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Typ '%s' für %u-Byte-Prüfsumme '%s' fragwürdig"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Nordkorea"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Niederländisch"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Südkorea"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Mittelniederländisch (ca. 1050-1350)"
-
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr "Dyula-Sprache"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "Dzongkha"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Kaimaninseln"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Osttimor"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kasachstan"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ekuador"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Demokratische Volksrepublik Laos"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "Efik"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Ägypten"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "St. Lucia"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "Ägyptisch"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "Ekajuk"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Elamisch"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Leeres Ziel in URI"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litauen"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Leeres Dateisystem in URI"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxemburg"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Leerer Hostname in URI"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Lettland"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Verschlüsselte Zeichenfolge enthält ein NULL-Byte"
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libyen"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Englisch"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marokko"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Mittelenglisch (1100-1500)"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Altenglisch (ca. 450-1100)"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldau"
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Erweiterungen"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Guinea"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Saint Martin"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"Beim Festlegen der Download (curl)-Optionen für '%s' ist ein Fehler "
-"aufgetreten:"
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshallinseln"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Fehler beim Senden der Aktualisierungsbenachrichtigung"
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Mazedonien"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Fehler beim Versuch, aus '%s' zu lesen"
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erza-Mordwinisch"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Esperanto"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolei"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estland"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Estnisch"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Nördliche Marianen"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Äthiopien"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Ewe-Sprache"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauretanien"
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Ewondo"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Repo (%d) konnte nicht im Cache gespeichert werden."
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Fehler beim Löschen des Schlüssels."
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-"Importieren des öffentlichen Schlüssels aus Datei %s fehlgeschlagen: %s"
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Malediven"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexiko"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaysia"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mosambik"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Neukaledonien"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolkinsel"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Niederlande"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norwegen"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauruanisch"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Neuseeland"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Französisch-Polynesien"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua-Neuguinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Philippinen"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polen"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "St. Pierre und Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palästinensische Autonomiegebiete"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Katar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Rumänien"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbien"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Russische Föderation"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudi-Arabien"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Salomonen"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychellen"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Schweden"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "St. Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slowenien"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard und Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slowakei"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome und Principe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Syrien"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swasiland"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks- und Caicosinseln"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Tschad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Französische Süd- und Antarktisgebiete"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thailand"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadschikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelauanisch"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunesien"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Osttimor"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Türkei"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad und Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Elliceanisch"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tansania"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraine"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Amerikanisch-Ozeanien"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "USA"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Usbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Heiliger Stuhl (Vatikan)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "St. Vincent und die Grenadinen"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Britische Jungferninseln"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Amerikanische Jungferninseln"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis und Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Südafrika"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Sambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Simbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Unbekannte Sprache: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar-Sprache"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abchasisch"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Aceh-Sprache"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acholi-Sprache"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme-Sprache"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adygeisch"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Andere afro-asiatische Sprachen"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Afrihili"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikaans"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Ainu"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Akan-Sprache"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Akkadisch"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albanisch"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aleutisch"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Algonkin-Sprachen"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Altaisch"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amharisch"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Altenglisch (ca. 450-1100)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Apachen-Sprachen"
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Arabisch"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Aramäisch"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonesisch"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armenisch"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Arauka-Sprachen"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho-Sprache"
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Andere Kunstsprache"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak-Sprachen"
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Assamesisch"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Asturianisch"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Athapaskische Sprachen"
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Australische Sprachen"
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Awarisch"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Awestisch"
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Awadhi"
+
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Aymara-Sprache"
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Aserbeidschanisch"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda-Sprache"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Bamileke-Sprache"
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Baschkirisch"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Belutschisch"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Bambara-Sprache"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinesisch"
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Baskisch"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basaa-Sprache"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Andere baltische Sprachen"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Bedauye"
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Weißrussisch"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Bemba-Sprache"
+
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengali"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Andere Berbersprachen"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Bhojpuri"
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Bihari"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikol-Sprache"
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Bini-Sprache"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Blackfoot-Sprache"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Andere Bantusprachen"
+
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosnisch"
+
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Braj-Bhakha"
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretonisch"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak-Sprache"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Burjatisch"
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Bugi-Sprache"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgarisch"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Burmesisch"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Bilin"
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Caddo-Sprachen"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Andere Indianersprachen (Zentralamerika)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "Karibisch"
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "Katalanisch"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "Andere kaukasische Sprachen"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "Cebuano"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Andere keltische Sprachen"
+
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "Chamorro-Sprache"
+
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "Chibcha-Sprachen"
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Tschetschenisch"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Tschagataisch"
+
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Chinesisch"
+
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Trukesisch"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "Chinook-Jargon"
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "Choctaw-Sprache"
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Fehler beim Einhängen von '%s' in '%s'"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyan"
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"Paket %s konnte nicht bereitgestellt werden. Möchten Sie erneut versuchen, "
-"es abzurufen?"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee-Sprache"
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Verzeichnis '%s' konnte nicht gelesen werden"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Kirchenslawisch"
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Entfernen des öffentlichen Schlüssels %s fehlgeschlagen: %s"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Tschuwaschisch"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Fehler beim Aushängen von '%s'"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne-Sprache"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandinseln (Malwinen)"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Cham-Sprachen"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "Pangwe-Sprache"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "Koptisch"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fante-Sprache"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "Kornisch"
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Färöer-Inseln"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "Korsisch"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr "Kreolisch-Englisch (andere)"
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr "Kreolisch-Französisch (andere)"
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr "Kreolisch-Portugiesisch (andere)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree-Sprache"
+
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "Krimtatarisch"
+
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Kreolische Sprachen (Pidgin-Sprachen)"
+
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kaschubisch"
+
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr "Andere kuschitische Sprachen"
+
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "Tschechisch"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "Dakota-Sprache"
+
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Dänisch"
+
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr "Darginisch"
+
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr "Dajakisch"
+
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "Delaware-Sprache"
+
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slave-Sprache"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib-Sprache"
+
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "Dinka-Sprache"
+
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "Maledivisch"
+
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "Dogri"
+
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "Andere drawidische Sprachen"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Niedersorbisch"
+
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "Duala-Sprachen"
+
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Mittelniederländisch (ca. 1050-1350)"
+
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Niederländisch"
+
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
+msgstr "Dyula-Sprache"
+
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "Dzongkha"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "Efik"
+
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "Ägyptisch (altertümlich)"
+
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "Ekajuk"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Elamisch"
+
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Englisch"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Mittelenglisch (1100-1500)"
+
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Esperanto"
+
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Estnisch"
+
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Ewe-Sprache"
+
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Ewondo"
+
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "Pangwe-Sprache"
 
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "Färöisch"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Föderierte Staaten von Mikronesien"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidschi"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fante-Sprache"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "Fidschi-Sprache"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Datei %1%\n"
-"  aus Installation von\n"
-"     %2%\n"
-"  im Konflikt mit Datei\n"
-"     %3%\n"
-"  aus Installation von\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Datei %1%\n"
-"  aus Installation von\n"
-"     %2%\n"
-"  im Konflikt mit Datei\n"
-"     %3%\n"
-"  aus Paket\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Datei %1%\n"
-"  aus Installation von\n"
-"     %2%\n"
-"  im Konflikt mit Datei aus Installation von\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Datei %1%\n"
-"  aus Installation von\n"
-"     %2%\n"
-"  im Konflikt mit Datei aus Paket\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Datei %1%\n"
-"  aus Paket\n"
-"     %2%\n"
-"  im Konflikt mit Datei\n"
-"     %3%\n"
-"  aus Installation von\n"
-"     %4%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Datei %1%\n"
-"  aus Paket\n"
-"     %2%\n"
-"  im Konflikt mit Datei\n"
-"     %3%\n"
-"  aus Paket\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Datei %1%\n"
-"  aus Paket\n"
-"     %2%\n"
-"  im Konflikt mit Datei aus Installation von\n"
-"     %3%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Datei %1%\n"
-"  aus Paket\n"
-"     %2%\n"
-"  im Konflikt mit Datei aus Paket\n"
-"     %3%"
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Datei '%s' auf Medium '%s' nicht gefunden"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "Datei nicht vorhanden oder Signatur kann nicht geprüft werden"
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Pilipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finnland"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1633,40 +2568,16 @@ msgstr "Finnisch"
 msgid "Finno-Ugrian (Other)"
 msgstr "Andere finnougrische Sprachen"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Folgende Aktionen werden ausgeführt:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon-Sprache"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Frankreich"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Französisch"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Französisch-Guayana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Französisch-Polynesien"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Französische Süd- und Antarktisgebiete"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1682,46 +2593,21 @@ msgstr "Altfranzösisch (842-ca. 1400)"
 msgid "Frisian"
 msgstr "Friesisch"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friulisch"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Ful"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friulisch"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabun"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gälisch"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galicisch"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda-Sprache"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1732,25 +2618,50 @@ msgstr "Gayo-Sprache"
 msgid "Gbaya"
 msgstr "Gbaya-Sprache"
 
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Andere germanische Sprachen"
+
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
+msgstr "Georgisch"
+
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+msgid "German"
+msgstr "Deutsch"
+
 #. language code: gez
 #: zypp/LanguageCode.cc:475
 msgid "Geez"
 msgstr "Altäthiopisch"
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgien"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertesisch"
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
-msgstr "Georgisch"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gälisch"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irisch"
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-msgid "German"
-msgstr "Deutsch"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galicisch"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manxs"
 
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
@@ -1762,30 +2673,6 @@ msgstr "Mittelhochdeutsch (ca. 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Althochdeutsch (ca. 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Andere germanische Sprachen"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Deutschland"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertesisch"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1806,11 +2693,6 @@ msgstr "Gotisch"
 msgid "Grebo"
 msgstr "Grebo-Sprache"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Griechenland"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1821,61 +2703,16 @@ msgstr "Altgriechisch (bis 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Griechisch (nach 1453)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grönland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani-Sprache"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati-Sprache"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1886,52 +2723,21 @@ msgstr "Kutchin-Sprache"
 msgid "Haida"
 msgstr "Haida-Sprache"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitien"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal-Ausnahme"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext nicht verbunden"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive nicht initialisiert"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume nicht initialisiert"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Haussa-Sprache"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Wurden alle erforderlichen Repositorys aktiviert?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaiisch"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heard-Insel und McDonald-Inseln"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1957,16 +2763,6 @@ msgstr "Himachali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri-Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Verlauf:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1977,31 +2773,21 @@ msgstr "Hethitisch"
 msgid "Hmong"
 msgstr "Miao-Sprachen"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Heiliger Stuhl (Vatikan)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri-Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hongkong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Obersorbisch"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Ungarisch"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Ungarn"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2012,10 +2798,10 @@ msgstr "Hupa-Sprache"
 msgid "Iban"
 msgstr "Iban-Sprache"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Island"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Ibo-Sprache"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2027,250 +2813,105 @@ msgstr "Isländisch"
 msgid "Ido"
 msgstr "Sinohoan"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Ibo-Sprache"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Nosu"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo-Sprache"
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr "Ilokano-Sprache"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Inari-Samisch"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Indien"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr "Andere indoarische Sprachen"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Andere indogermanische Sprachen"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesien"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "Indonesisch"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "Inguschisch"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Die Installation wurde gemäß Anweisung abgebrochen."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingua"
-
 #. language code: iku iu
 #: zypp/LanguageCode.cc:555
 msgid "Inuktitut"
-msgstr "Inuktitut"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "Inupik"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Unzulässige %s-Komponente"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Unzulässige %s-Komponente: '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Unzulässiger Abfrageparameter für die LDAP-URL:  '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Unzulässige Abfragezeichenkette für die LDAP-URL"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "'%s' ist ein unzulässiges URL-Schema"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Unzulässiger leerer URL-Objektverweis"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Unzulässige Host-Komponente: '%s'"
+msgstr "Inuktitut"
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Ungültiges Trennzeichen für Parameter-Array-Zusammenführung"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingua"
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Ungültiges Trennzeichen für Parameter-Array-Spaltung"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr "Ilokano-Sprache"
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Ungültiges Trennzeichen für Parameterzuordnungs-Spaltung"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (International Auxiliary Language Association)"
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Unzulässige Portkomponente: '%s'"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr "Andere indoarische Sprachen"
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Ungültiger regulärer Ausdruck '%s'"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "Indonesisch"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Ungültiger regulärer Ausdruck '%s': regcomp gab %d wieder"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Andere indogermanische Sprachen"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Repo-Dateiname bei '%s' ungültig"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "Inguschisch"
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "Inupik"
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Andere iranische Sprachen"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irland"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irisch"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Mittelirisch (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Altirisch (bis 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Irokesische Sprachen"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Isle of Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italienisch"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italien"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaika"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javanisch"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japan"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japanisch"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javanisch"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordanien"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Jüdisch-Persisch"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Jüdisch-Arabisch"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Jüdisch-Persisch"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardinisch"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Karakalpakisch"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2287,11 +2928,6 @@ msgstr "Kachin-Sprache"
 msgid "Kalaallisut"
 msgstr "Grönländisch"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmückisch"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2302,21 +2938,6 @@ msgstr "Kamba-Sprache"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri-Sprache"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Karakalpakisch"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karatschaisch"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2327,10 +2948,10 @@ msgstr "Karenisch"
 msgid "Kashmiri"
 msgstr "Kaschmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kaschubisch"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri-Sprache"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2342,31 +2963,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Kasachisch"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kasachstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenia"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardinisch"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi-Sprache"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Kambodschanisch"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Andere Khoisan-Sprachen"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Kambodschanisch"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2377,11 +2993,6 @@ msgstr "Andere Khoisan-Sprachen"
 msgid "Kikuyu"
 msgstr "Kikuyu-Sprache"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu-Sprache"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2392,15 +3003,15 @@ msgstr "Rwanda-Sprache"
 msgid "Kirghiz"
 msgstr "Kirgisisch"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu-Sprache"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingonisch"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2412,11 +3023,6 @@ msgstr "Komi-Sprache"
 msgid "Kongo"
 msgstr "Kongo-Sprache"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2432,11 +3038,21 @@ msgstr "Kosraeanisch"
 msgid "Kpelle"
 msgstr "Kpelle-Sprache"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karatschaisch"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru-Sprachen"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Oraon-Sprache"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2452,26 +3068,11 @@ msgstr "Kumükisch"
 msgid "Kurdish"
 msgstr "Kurdisch"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Oraon-Sprache"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai-Sprache"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgisistan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2487,73 +3088,26 @@ msgstr "Lahnda"
 msgid "Lamba"
 msgstr "Lamba-Sprache (Bantusprache)"
 
-#. language code: lao lo
-#: zypp/LanguageCode.cc:661
-msgid "Lao"
-msgstr "Laotisch"
-
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Demokratische Volksrepublik Laos"
+#. language code: lao lo
+#: zypp/LanguageCode.cc:661
+msgid "Lao"
+msgstr "Laotisch"
 
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latein"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Lettland"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Lettisch"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Stufe 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Stufe 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Stufe 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lesgisch"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libyen"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2564,61 +3118,46 @@ msgstr "Limburgisch"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litauen"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Litauisch"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Auf den Standort '%s' kann zeitweise nicht zugegriffen werden."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Niederdeutsch"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Niedersorbisch"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo-Sprache"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Rotse-Sprache"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga-Sprache"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburgisch"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Lulua-Sprache"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga-Sprache"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda-Sprache"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno-Sprache"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lule-Samisch"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2634,35 +3173,11 @@ msgstr "Luo-Sprache"
 msgid "Lushai"
 msgstr "Lushai-Sprache"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburgisch"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Mazedonien"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Makedonisch"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2673,6 +3188,11 @@ msgstr "Maduresisch"
 msgid "Magahi"
 msgstr "Khotta"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marschallesisch"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2683,179 +3203,60 @@ msgstr "Maithili"
 msgid "Makasar"
 msgstr "Makassarisch"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malagassi-Sprache"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malaiisch"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malayalam"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaysia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Malediven"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Fehlerhaft gebildete URI"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltesisch"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Mandschurisch"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandaresisch"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Malinke-Sprache"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Meithei-Sprache"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Manobo-Sprache"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manxs"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori-Sprache"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Andere austronesische Sprachen"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshallinseln"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marschallesisch"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Massai-Sprache"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauretanien"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Maya-Sprachen"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "Medienquelle '%s' enthält nicht das gewünschte Medium"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Medium '%s' wird von einer anderen Instanz verwendet"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malaiisch"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Medium nicht angeschlossen"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Mokschamordwinisch"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
-"Beim Versuch, Aktion '%s' durchzuführen, wurde das Medium nicht geöffnet."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandaresisch"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende-Sprache"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Frankreich, Metropolitan"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexiko"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Mittelirisch (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2867,2018 +3268,2237 @@ msgstr "Micmac-Sprache"
 msgid "Minangkabau"
 msgstr "Minangkabau-Sprache"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandesisch"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Verschiedene Sprachen"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Andere Mon-Khmer-Sprachen"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malagassi-Sprache"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltesisch"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Mandschurisch"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Meithei-Sprache"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Manobo-Sprache"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk-Sprache"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Mokschamordwinisch"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldauisch"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldau"
+#. language code: mon mn
+#: zypp/LanguageCode.cc:757
+msgid "Mongolian"
+msgstr "Mongolisch"
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Andere Mon-Khmer-Sprachen"
+#. language code: mos
+#: zypp/LanguageCode.cc:759
+msgid "Mossi"
+msgstr "Mossi-Sprache"
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
+#. language code: mul
+#: zypp/LanguageCode.cc:761
+msgid "Multiple Languages"
+msgstr "Mehrere Sprachen"
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo-Sprache"
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
+msgstr "Mundasprachen"
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolei"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Muskogisch"
 
-#. language code: mon mn
-#: zypp/LanguageCode.cc:757
-msgid "Mongolian"
-msgstr "Mongolisch"
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandesisch"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
 
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Maya-Sprachen"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erza-Mordwinisch"
+
+#. language code: nah
+#: zypp/LanguageCode.cc:775
+msgid "Nahuatl"
+msgstr "Nahuatl"
+
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Indianersprachen (Nordamerika)"
+
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Neapolitanisch"
+
+#. language code: nav nv
+#: zypp/LanguageCode.cc:783
+msgid "Navajo"
+msgstr "Navajo-Sprache"
+
+#. language code: nbl nr
+#: zypp/LanguageCode.cc:785
+msgid "Ndebele, South"
+msgstr "Ndbele-Sprache (Transvaal)"
+
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele-Sprache (Simbabwe)"
+
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
+msgstr "Ndonga"
+
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Niederdeutsch"
+
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
+msgstr "Nepali"
+
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Newari"
+
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
+msgstr "Nias-Sprache"
+
+#. language code: nic
+#: zypp/LanguageCode.cc:799
+msgid "Niger-Kordofanian (Other)"
+msgstr "Andere Nigerkordofanische Sprachen"
+
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+msgid "Niuean"
+msgstr "Niue-Sprache"
+
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Nynorsk"
+
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Bokmål"
+
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
+msgstr "Nogaisch"
+
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
+msgstr "Altnorwegisch"
+
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
+msgstr "Norwegisch"
+
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Sotho-Sprache (Nord)"
+
+#. language code: nub
+#: zypp/LanguageCode.cc:815
+msgid "Nubian Languages"
+msgstr "Nubische Sprachen"
+
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Alt-Newari"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Nyanja-Sprache"
+
+#. language code: nym
+#: zypp/LanguageCode.cc:821
+msgid "Nyamwezi"
+msgstr "Nyamwezi-Sprache"
+
+#. language code: nyn
+#: zypp/LanguageCode.cc:823
+msgid "Nyankole"
+msgstr "Nikole-Sprache"
+
+#. language code: nyo
+#: zypp/LanguageCode.cc:825
+msgid "Nyoro"
+msgstr "Nyoro-Sprache"
 
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marokko"
+#. language code: nzi
+#: zypp/LanguageCode.cc:827
+msgid "Nzima"
+msgstr "Nzima-Sprache"
 
-#. language code: mos
-#: zypp/LanguageCode.cc:759
-msgid "Mossi"
-msgstr "Mossi-Sprache"
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
+msgstr "Okzitanisch (nach 1500)"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mosambik"
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
+msgstr "Ojibwa-Sprache"
 
-#. language code: mul
-#: zypp/LanguageCode.cc:761
-msgid "Multiple Languages"
-msgstr "Mehrere Sprachen"
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
+msgstr "Oriya-Sprache"
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
-msgstr "Mundasprachen"
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
+msgstr "Galla-Sprache"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+msgid "Osage"
+msgstr "Osage-Sprache"
 
-#. language code: nah
-#: zypp/LanguageCode.cc:775
-msgid "Nahuatl"
-msgstr "Nahuatl"
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
+msgstr "Ossetisch"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Osmanisch (1500-1928)"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauruanisch"
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
+msgstr "Otomangue-Sprachen"
 
-#. language code: nav nv
-#: zypp/LanguageCode.cc:783
-msgid "Navajo"
-msgstr "Navajo-Sprache"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Andere Papuasprachen"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele-Sprache (Simbabwe)"
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinan-Sprache"
 
-#. language code: nbl nr
-#: zypp/LanguageCode.cc:785
-msgid "Ndebele, South"
-msgstr "Ndbele-Sprache (Transvaal)"
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr "Pehlewi"
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
-msgstr "Ndonga"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "Pampanggan-Sprache"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Neapolitanisch"
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "Pandschabi-Sprache"
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "Papiamento"
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Newari"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palau-Sprache"
 
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
-msgstr "Nepali"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
+msgstr "Altpersisch (ca. 600-400 v. Chr.)"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Niederlande"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persisch"
 
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Niederländische Antillen"
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
+msgstr "Philippinen-Austronesisch (andere)"
 
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Neukaledonien"
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
+msgstr "Phönikisch"
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Neuseeland"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Neue Aktualisierungsnachricht"
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
+msgstr "Polnisch"
 
-#. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
-msgstr "Nias-Sprache"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Ponapeianisch"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
+msgstr "Portugiesisch"
 
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
+msgstr "Prâkrit"
 
-#. language code: nic
-#: zypp/LanguageCode.cc:799
-msgid "Niger-Kordofanian (Other)"
-msgstr "Andere Nigerkordofanische Sprachen"
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
+msgstr "Altprovenzalisch (Altokzitanisch, bis 1500)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
+msgstr "Paschtu"
 
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilosaharanische Sprachen"
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
+msgstr "Quechua-Sprache"
 
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
+msgstr "Rajasthani"
 
-#. language code: niu
-#: zypp/LanguageCode.cc:801
-msgid "Niuean"
-msgstr "Niue-Sprache"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
+msgstr "Osterinsel-Sprache"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Kein Code"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
+msgstr "Rarotonganisch"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Das Repository enthält keine URL."
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
+msgstr "Andere romanische Sprachen"
 
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
-msgstr "Nogaisch"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Rätoromanisch"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolkinsel"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "Romani (Sprache)"
 
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
-msgstr "Altnorwegisch"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumänisch"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Indianersprachen (Nordamerika)"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundi-Sprache"
 
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Nordkorea"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Russisch"
 
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Nördliche Marianen"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandawe-Sprache"
 
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Nordsamisch"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango-Sprache"
 
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Sotho-Sprache (Nord)"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Jakutisch"
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norwegen"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Andere Indianersprachen (Südamerika)"
 
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
-msgstr "Norwegisch"
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Salish-Sprachen"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Bokmål"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Samaritanisch"
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Nynorsk"
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
+msgstr "Sanskrit"
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Kein CDROM-Laufwerk"
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
-msgid "Nubian Languages"
-msgstr "Nubische Sprachen"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "Santali"
 
-#. language code: nym
-#: zypp/LanguageCode.cc:821
-msgid "Nyamwezi"
-msgstr "Nyamwezi-Sprache"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbisch"
 
-#. language code: nyn
-#: zypp/LanguageCode.cc:823
-msgid "Nyankole"
-msgstr "Nikole-Sprache"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Sizilianisch"
 
-#. language code: nyo
-#: zypp/LanguageCode.cc:825
-msgid "Nyoro"
-msgstr "Nyoro-Sprache"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "Schottisch"
 
-#. language code: nzi
-#: zypp/LanguageCode.cc:827
-msgid "Nzima"
-msgstr "Nzima-Sprache"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Kroatisch"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Veraltetete Pakete"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "Selkupisch"
 
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
-msgstr "Okzitanisch (nach 1500)"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "Andere semitische Sprachen"
 
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
-msgstr "Ojibwa-Sprache"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Altirisch (bis 900)"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Zeichensprachen"
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Eine oder beide der Attribute '%s' oder '%s' sind erforderlich."
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "Schan-Sprache"
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Vorgang von Medium nicht unterstützt"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "Sidamo-Sprache"
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
-msgstr "Oriya-Sprache"
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr "Singhalesisch"
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
-msgstr "Galla-Sprache"
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+msgid "Siouan Languages"
+msgstr "Sioux-Sprachen"
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
-msgid "Osage"
-msgstr "Osage-Sprache"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Andere sinotibetische Sprachen"
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
-msgstr "Ossetisch"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
+msgstr "Andere slawische Sprachen"
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
-msgstr "Otomangue-Sprachen"
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "Slowakisch"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Paket %s wurde anscheinend bei der Übertragung beschädigt. Möchten Sie "
-"erneut versuchen, es abzurufen?"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Slowenisch"
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr "Pehlewi"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Südsamisch"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Nordsamisch"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Samisch (andere)"
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lule-Samisch"
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palau-Sprache"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Inari-Samisch"
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palästinensische Autonomiegebiete"
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoanisch"
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Skolt-Lappisch"
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "Pampanggan-Sprache"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Schona-Sprache"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi-Sprache"
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinan-Sprache"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke-Sprache"
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "Pandschabi-Sprache"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "Sogdisch"
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "Papiamento"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Somali"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua-Neuguinea"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "Songhai-Sprache"
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Andere Papuasprachen"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "Süd-Sotho-Sprache"
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
+#. language code: spa es
+#: zypp/LanguageCode.cc:989
+msgid "Spanish"
+msgstr "Spanisch"
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Pfad '%s' auf Medium '%s' ist kein Verzeichnis."
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardisch"
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Pfad '%s' auf Medium '%s' ist keine Datei."
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer-Sprache"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Zugriff auf '%s' verweigert."
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilosaharanische Sprachen"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persisch"
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swasi-Sprache"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr "Altpersisch (ca. 600-400 v. Chr.)"
+#. language code: suk
+#: zypp/LanguageCode.cc:999
+msgid "Sukuma"
+msgstr "Sukuma-Sprache"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: sun su
+#: zypp/LanguageCode.cc:1001
+msgid "Sundanese"
+msgstr "Sundanesisch"
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
-msgstr "Philippinen-Austronesisch (andere)"
+#. language code: sus
+#: zypp/LanguageCode.cc:1003
+msgid "Susu"
+msgstr "Susu"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Philippinen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumerisch"
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
-msgstr "Phönikisch"
+#. language code: swa sw
+#: zypp/LanguageCode.cc:1007
+msgid "Swahili"
+msgstr "Swahili"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
+#. language code: swe sv
+#: zypp/LanguageCode.cc:1009
+msgid "Swedish"
+msgstr "Schwedisch"
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Bitte zuerst Paket 'lsof' installieren."
+#. language code: syr
+#: zypp/LanguageCode.cc:1011
+msgid "Syriac"
+msgstr "Syrisch"
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Ponapeianisch"
+#. language code: tah ty
+#: zypp/LanguageCode.cc:1013
+msgid "Tahitian"
+msgstr "Tahitisch"
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polen"
+#. language code: tai
+#: zypp/LanguageCode.cc:1015
+msgid "Tai (Other)"
+msgstr "Andere Thaisprachen"
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
-msgstr "Polnisch"
+#. language code: tam ta
+#: zypp/LanguageCode.cc:1017
+msgid "Tamil"
+msgstr "Tamil"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: tat tt
+#: zypp/LanguageCode.cc:1019
+msgid "Tatar"
+msgstr "Tatarisch"
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
-msgstr "Portugiesisch"
+#. language code: tel te
+#: zypp/LanguageCode.cc:1021
+msgid "Telugu"
+msgstr "Telugu-Sprache"
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
-msgstr "Prâkrit"
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Temne-Sprache"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Setzt voraus"
+#. language code: ter
+#: zypp/LanguageCode.cc:1025
+msgid "Tereno"
+msgstr "Tereno-Sprache"
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Problembestimmung bezeichnet den technischen Support, der "
-"Kompatibilitätsinformationen, Hilfe bei der Installation, "
-"Anwendungsunterstützung, fortlaufende Wartung und grundlegende Hilfe bei der "
-"Fehlersuche bieten soll. Support der Stufe 1 ist nicht dazu gedacht, "
-"Produktfehler zu beheben."
+#. language code: tet
+#: zypp/LanguageCode.cc:1027
+msgid "Tetum"
+msgstr "Tetum-Sprache"
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Problemisolierung bezeichnet den technischen Support, der Kundenprobleme "
-"nachbilden, Problembereiche isolieren und Lösungen für Probleme bieten soll, "
-"die nicht durch den Support der Stufe 1 behoben werden konnten."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tadschikisch"
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Problemlösung bezeichnet den technischen Support, der komplexe Probleme "
-"lösen soll, wobei das Engineering zur Beseitigung von Produktfehlern, die im "
-"Support der Stufe 2 erkannt wurden, einbezogen wird."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
-msgstr "Altprovenzalisch (Altokzitanisch, bis 1500)"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "Thailändisch"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Bereitstellungen"
+#. language code: tib bod bo
+#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
+msgid "Tibetan"
+msgstr "Tibetisch"
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+#. language code: tig
+#: zypp/LanguageCode.cc:1039
+msgid "Tigre"
+msgstr "Tigre-Sprache"
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
-msgstr "Paschtu"
+#. language code: tir ti
+#: zypp/LanguageCode.cc:1041
+msgid "Tigrinya"
+msgstr "Tigrinja-Sprache"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Katar"
+#. language code: tiv
+#: zypp/LanguageCode.cc:1043
+msgid "Tiv"
+msgstr "Tiv-Sprache"
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
-msgstr "Quechua-Sprache"
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingonisch"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-"Die Analyse von Abfragezeichenketten wird für diese URL nicht unterstützt"
+#. language code: tli
+#: zypp/LanguageCode.cc:1049
+msgid "Tlingit"
+msgstr "Tlingit-Sprache"
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM fehlgeschlagen: "
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamaseq"
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Rätoromanisch"
+#. language code: tog
+#: zypp/LanguageCode.cc:1053
+msgid "Tonga (Nyasa)"
+msgstr "Tonga (Bantusprache, Sambia)"
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
-msgstr "Rajasthani"
+#. language code: ton to
+#: zypp/LanguageCode.cc:1055
+msgid "Tonga (Tonga Islands)"
+msgstr "Tongaisch"
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
-msgstr "Osterinsel-Sprache"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Neumelanesisch"
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr "Rarotonganisch"
+#. language code: tsi
+#: zypp/LanguageCode.cc:1059
+msgid "Tsimshian"
+msgstr "Tsimshian-Sprache"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Empfehlungen"
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana-Sprache"
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-"Die Angabe des relativen Pfads ist nicht erlaubt, wenn die "
-"Zertifizierungsstelle vorhanden ist"
+#. language code: tso ts
+#: zypp/LanguageCode.cc:1063
+msgid "Tsonga"
+msgstr "Tsonga-Sprache"
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Repository '%s' entfernen"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmenisch"
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Ein Repository-Alias darf nicht mit einem Punkt beginnen."
+#. language code: tum
+#: zypp/LanguageCode.cc:1067
+msgid "Tumbuka"
+msgstr "Tumbuka-Sprache"
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Erforderliches Attribut '%s' fehlt."
+#. language code: tup
+#: zypp/LanguageCode.cc:1069
+msgid "Tupi Languages"
+msgstr "Tupi"
 
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Anforderungen"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "Türkisch"
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Andere altaische Sprachen"
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "Andere romanische Sprachen"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi-Sprache"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Rumänien"
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "Tuwinisch"
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumänisch"
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "Udmurtisch"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "Romani (Sprache)"
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "Ugaritisch"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundi-Sprache"
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "Uigurisch"
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Russisch"
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "Ukrainisch"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Russische Föderation"
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "Mbundu-Sprache"
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Unbestimmt"
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "St. Helena"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Urdu"
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "St. Kitts und Nevis"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Usbekisch"
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "St. Lucia"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vai-Sprache"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint Martin"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Venda-Sprache"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "St. Pierre und Miquelon"
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnamesisch"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Volapük"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "St. Vincent und die Grenadinen"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Wotisch"
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Salish-Sprache"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "Wakash-Sprachen"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Samaritanisch"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Walamo-Sprache"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Samisch (andere)"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Waray"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Washo-Sprache"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoanisch"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Kymrisch"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Sorbisch"
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandawe-Sprache"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Wallonisch"
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sango-Sprache"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolof-Sprache"
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
-msgstr "Sanskrit"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmückisch"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "Santali"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhosa-Sprache"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome und Principe"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yao-Sprache (Bantusprache)"
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardisch"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yapesisch"
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Jiddisch"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudi-Arabien"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Yoruba-Sprache"
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "Schottisch"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Yupik-Sprache"
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "Selkupisch"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapotekisch"
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "Andere semitische Sprachen"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbien"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande-Sprachen"
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbisch"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu-Sprache"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer-Sprache"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni-Sprache"
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Ein Dienst-Alias darf nicht mit einem Punkt beginnen."
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+"Versuch, nicht existierenden Schlüssel %s in Schlüsselring %s zu importieren"
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "Das Dienst-Plugin unterstützt keine Änderung von Attributen."
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Löschen des Schlüssels fehlgeschlagen."
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychellen"
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Signaturdatei %s nicht gefunden"
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "Schan-Sprache"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Die Datei '%s' aus dem Repository '%s' kann nicht angeboten werden"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Schona-Sprache"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Das Repository enthält keine URL."
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Nosu"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "Dienst-Erweiterung unterstützt keine Attributänderung."
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Sizilianisch"
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Paket %s wurde anscheinend während des Transfers beschädigt. Wollen Sie es "
+"erneut abrufen?"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "Sidamo-Sprache"
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "Fehler beim Überprüfen der Signatur"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
+"Bereitstellen von Paket %s fehlgeschlagen. Wollen Sie es erneut abrufen?"
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Zeichensprachen"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm-Prüfung fehlgeschlagen."
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "Signatur ist nicht OK"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm fehlgeschlagen."
 
-#: zypp/KeyRing.cc:575
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Signaturdatei %s nicht gefunden"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"Die Systemverwaltung ist durch die Anwendung mit dem PID %d (%s) gesperrt.\n"
+"Schließen Sie diese Anwendung, bevor Sie es erneut probieren."
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "Signatur ist OK"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s gehört nicht zu einem Dist-Upgrade-Repository"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "Signatur ist OK, aber Schlüssel ist nicht verbürgt"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s besitzt eine nachrangige Architektur"
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "Fehler beim Überprüfen der Signatur"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "Problem mit installiertem Paket %s"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "Öffentlicher Schlüssel für Signatur nicht verfügbar"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "Kollidierende Anforderungen"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Blackfoot-Sprache"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "Abhängigkeitsproblem"
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi-Sprache"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "Das angeforderte Paket %s wird von keinem Repository angeboten"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Haben Sie alle erforderlichen Repositories aktiviert?"
 
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
-msgstr "Singhalesisch"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "Paket %s existiert nicht"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Andere sinotibetische Sprachen"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "nicht unterstützte Anforderung"
 
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-msgid "Siouan Languages"
-msgstr "Sioux-Sprachen"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s wird vom System bereitgestellt und kann nicht gelöscht werden."
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Skolt-Lappisch"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s ist nicht installierbar"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slave-Sprache"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s, benötigt von %s, wird von keinem Repository angeboten"
 
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr "Andere slawische Sprachen"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Es können nicht beide Pakete, %s und %s, installiert werden"
 
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "Slowakisch"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s steht im Konflikt mit %s, das von %s bereitgestellt wird"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slowakei"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s macht %s, angeboten durch %s, obsolet"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slowenien"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "installiertes %s macht %s, welches durch %s angeboten wird, obsolet"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Slowenisch"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr ""
+"Das auflösbare Objekt %s steht in Konflikt mit %s, welches es selbst "
+"anbietet."
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "Sogdisch"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s benötigt %s, was aber nicht angeboten werden kann"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Salomonen"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "Gelöschte Anbieter: "
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Somali"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"Nicht installierbare Anbieter: "
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "Nicht installierbare Anbieter: "
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "Songhai-Sprache"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "Sperre entfernen und Entfernen von %s zulassen"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke-Sprache"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "%s nicht installieren"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Sorbisch"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "%s behalten"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Diese Version von libzypp wurde ohne HAL-Unterstützung erstellt."
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "Sperre entfernen und Installation von %s zulassen"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "Süd-Sotho-Sprache"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Diese Anfrage wird Ihr System beschädigen!"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Südafrika"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "Warnung vor einem beschädigten System ignorieren"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Andere Indianersprachen (Südamerika)"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr ""
+"Nicht nach der Installation eines auflösbaren Objekts, das %s anbietet, "
+"fragen."
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Südgeorgien und die südlichen Sandwichinseln"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr ""
+"Nicht nach der Löschung aller auflösbaren Objekte, die %s anbieten, fragen."
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Südkorea"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "Nicht die neueste Version von %s installieren"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Altaisch"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s trotz der nachrangigen Architektur behalten"
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Südsamisch"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "%s trotz der nachrangigen Architektur installieren"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spanien"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "veraltetes %s behalten"
+
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "%s aus dem ausgeschlossenen Repository installieren"
 
-#. language code: spa es
-#: zypp/LanguageCode.cc:989
-msgid "Spanish"
-msgstr "Spanisch"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "Rückaktualisierung von %s zu %s"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "Architekturwechsel von %s zu %s"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"%s installieren (mit Anbieterwechsel)\n"
+"  %s --> %s"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Vorschläge"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "Ersatz von %s durch %s"
 
-#. language code: suk
-#: zypp/LanguageCode.cc:999
-msgid "Sukuma"
-msgstr "Sukuma-Sprache"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Deinstallation von %s"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumerisch"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "%s beschädigen durch Ignorieren einiger Abhängigkeiten"
 
-#. language code: sun su
-#: zypp/LanguageCode.cc:1001
-msgid "Sundanese"
-msgstr "Sundanesisch"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "Einige Abhängigkeiten allgemein ignorieren"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Zusätze"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "Benötigte Eigenschaft '%s' fehlt."
 
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Eine oder beide der Eigenschaften '%s' oder '%s' sind notwendig."
 
-#. language code: sus
-#: zypp/LanguageCode.cc:1003
-msgid "Susu"
-msgstr "Susu"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Die Sperrdatei %s kann nicht geöffnet werden"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard und Jan Mayen"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Die Aktion wird bereits von einem anderen Programm ausgeführt."
 
-#. language code: swa sw
-#: zypp/LanguageCode.cc:1007
-msgid "Swahili"
-msgstr "Swahili"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Verlauf:"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swasi-Sprache"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Unbekannter Übereinstimmungsmodus '%s'"
 
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swasiland"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Unbekannter Übereinstimmungsmodus %s für Muster %s."
 
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Schweden"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Ungültiger regulärer Ausdruck '%s': regcomp gab %d zurück"
 
-#. language code: swe sv
-#: zypp/LanguageCode.cc:1009
-msgid "Swedish"
-msgstr "Schwedisch"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Ungültiger regulärer Ausdruck '%s'"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Schweiz"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Bitte zuerst Paket 'lsof' installieren."
 
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Syrien"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Authentifizierung benötigt für '%s'"
 
-#. language code: syr
-#: zypp/LanguageCode.cc:1011
-msgid "Syriac"
-msgstr "Syrisch"
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Einhängen von %s auf %s fehlgeschlagen"
 
-#: zypp/media/MediaException.cc:91
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Systemausnahme '%s' auf Medium '%s'."
+msgid "Failed to unmount %s"
+msgstr "Aushängen von %s fehlgeschlagen"
 
-#: zypp/ZYppFactory.cc:394
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Die Systemverwaltung ist gesperrt durch die Anwendung mit PID %d (%s).\n"
-"Schließen Sie diese Anwendung, bevor Sie es erneut versuchen."
+msgid "Bad file name: %s"
+msgstr "Ungültiger Dateiname: %s"
 
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Medium nicht geöffnet beim Versuch die Aktion '%s' durchzuführen."
 
-#. language code: tah ty
-#: zypp/LanguageCode.cc:1013
-msgid "Tahitian"
-msgstr "Tahitisch"
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "Datei '%s' nicht auf dem Medium '%s' gefunden."
 
-#. language code: tai
-#: zypp/LanguageCode.cc:1015
-msgid "Tai (Other)"
-msgstr "Andere Thaisprachen"
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Datei '%s' kann nicht geschrieben werden."
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Medium nicht angehängt"
 
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tadschikisch"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Ungültiger Einhängepunkt des Mediums"
 
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadschikistan"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Initialisierung des Downloads (curl) für '%s' fehlgeschlagen"
 
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamaseq"
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr "Systemausnahme '%s' auf Medium '%s'."
 
-#. language code: tam ta
-#: zypp/LanguageCode.cc:1017
-msgid "Tamil"
-msgstr "Tamil"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Pfad '%s' auf Medium '%s' ist keine Datei."
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tansania"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Pfad '%s' auf Medium '%s' ist kein Verzeichnis."
 
-#. language code: tat tt
-#: zypp/LanguageCode.cc:1019
-msgid "Tatar"
-msgstr "Tatarisch"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Fehlgebildete URI"
 
-#. language code: tel te
-#: zypp/LanguageCode.cc:1021
-msgid "Telugu"
-msgstr "Telugu-Sprache"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Leerer Hostname in URI"
 
-#. language code: ter
-#: zypp/LanguageCode.cc:1025
-msgid "Tereno"
-msgstr "Tereno-Sprache"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Leeres Dateisystem in URI"
 
-#. language code: tet
-#: zypp/LanguageCode.cc:1027
-msgid "Tetum"
-msgstr "Tetum-Sprache"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Leeres Ziel in URI"
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr "Thailändisch"
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Nicht unterstütztes URI-Schema in '%s'."
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thailand"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operation wird durch das Medium nicht unterstützt"
 
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Die Support-Stufe wurde nicht angegeben"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Fehler beim Herunterladen (curl) für '%s':\n"
+"Fehlerkode: %s\n"
+"Fehlernachricht: %s\n"
 
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Der Anbieter bietet keinen Support an."
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"Beim Setzen der Download-Optionen (curl) für '%s' ist ein Fehler aufgetreten:"
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Die Aktion wird bereits von einem anderen Programm ausgeführt."
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Medienquelle '%s' enthält nicht das gewünschte Medium"
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Diese Anfrage bringt Ihr System zum Absturz!"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "Medium '%s' wird gerade von einer anderen Instanz benutzt"
 
-#. language code: tib bod bo
-#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
-msgid "Tibetan"
-msgstr "Tibetisch"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Es kann kein Medium ausgeworfen werden"
 
-#. language code: tig
-#: zypp/LanguageCode.cc:1039
-msgid "Tigre"
-msgstr "Tigre-Sprache"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
+msgstr "Das Medium '%s' kann nicht ausgeworfen werden"
 
-#. language code: tir ti
-#: zypp/LanguageCode.cc:1041
-msgid "Tigrinya"
-msgstr "Tigrinja-Sprache"
+#: zypp/media/MediaException.cc:199
+#, c-format, boost-format
+msgid "Permission to access '%s' denied."
+msgstr "Zugriffserlaubnis auf '%s' verweigert."
 
 #: zypp/media/MediaException.cc:207
 #, c-format, boost-format
 msgid "Timeout exceeded when accessing '%s'."
-msgstr "Zeitüberschreitung beim Zugriff auf '%s'."
+msgstr "Zeitablauf beim Zugriff auf '%s'"
 
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Temne-Sprache"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Auf die Adresse '%s' kann zeitweise nicht zugegriffen werden."
 
-#. language code: tiv
-#: zypp/LanguageCode.cc:1043
-msgid "Tiv"
-msgstr "Tiv-Sprache"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" SSL-Zertifikat-Problem, überprüfen Sie, ob das CA-Zertifikat für '%s' in "
+"Ordnung ist."
 
-#. language code: tli
-#: zypp/LanguageCode.cc:1049
-msgid "Tlingit"
-msgstr "Tlingit-Sprache"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Es kann kein verfügbares Loop-Device gefunden werden, um die Abbilddatei von "
+"'%s' einzuhängen"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Nicht unterstützte HTTP-Authentifizierungsmethode '%s'"
 
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Neumelanesisch"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Suchen Sie das Novell Customer Center auf, um zu prüfen, ob Ihre "
+"Registrierung gültig und nicht abgelaufen ist."
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelauanisch"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Es kann kein Sat-Pool erstellt werden."
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Datei %1%\n"
+"  aus Paket\n"
+"     %2%\n"
+"  steht im Konflikt mit einer Datei aus Paket\n"
+"     %3%"
 
-#. language code: tog
-#: zypp/LanguageCode.cc:1053
-msgid "Tonga (Nyasa)"
-msgstr "Tonga (Bantusprache, Sambia)"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Datei %1%\n"
+"  aus dem Paket\n"
+"     %2%\n"
+"  steht im Konflikt zu Datei aus der Installation von\n"
+"     %3%"
 
-#. language code: ton to
-#: zypp/LanguageCode.cc:1055
-msgid "Tonga (Tonga Islands)"
-msgstr "Tongaisch"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Datei %1%\n"
+"  aus der Installation von\n"
+"     %2%\n"
+"  steht im Konflikt mit einer Datei aus Paket\n"
+"     %3%"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"Versuch, nicht existierenden Schlüssel %s in Schlüsselbund %s zu importieren"
+"Datei %1%\n"
+"  aus der Installation von\n"
+"     %2%\n"
+"  steht im Konflikt mit einer Datei aus der Installation von\n"
+"     %3%"
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad und Tobago"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Datei %1%\n"
+"  aus dem Paket\n"
+"     %2%\n"
+"  steht im Konflikt zu Datei\n"
+"     %3%\n"
+"  aus Paket\n"
+"     %4%"
 
-#. language code: tsi
-#: zypp/LanguageCode.cc:1059
-msgid "Tsimshian"
-msgstr "Tsimshian-Sprache"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Datei %1%\n"
+"  aus dem Paket\n"
+"     %2%\n"
+"  steht im Konflikt zu Datei\n"
+"     %3%\n"
+"  aus der Installation von\n"
+"     %4%"
 
-#. language code: tso ts
-#: zypp/LanguageCode.cc:1063
-msgid "Tsonga"
-msgstr "Tsonga-Sprache"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Datei %1%\n"
+"  aus der Installation von\n"
+"     %2%\n"
+"  steht im Konflikt zu Datei\n"
+"     %3%\n"
+"  aus Paket\n"
+"     %4%"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana-Sprache"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Datei %1%\n"
+"  aus der Installation von\n"
+"     %2%\n"
+"  steht im Konflikt zu Datei\n"
+"     %3%\n"
+"  aus der Installation von\n"
+"     %4%"
 
-#. language code: tum
-#: zypp/LanguageCode.cc:1067
-msgid "Tumbuka"
-msgstr "Tumbuka-Sprache"
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "einige Abhängigkeiten generell ignorieren"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunesien"
+#~ msgid "do not forbid installation of %s"
+#~ msgstr "Installation von %s nicht unterbinden"
 
-#. language code: tup
-#: zypp/LanguageCode.cc:1069
-msgid "Tupi Languages"
-msgstr "Tupi"
+#~ msgid "do not keep %s installed"
+#~ msgstr "%s nicht installiert lassen"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Türkei"
+#~ msgid "%s remove failed"
+#~ msgstr "فشلت إزالة %s"
 
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "Türkisch"
+#, fuzzy
+#~ msgid "Invalid user name or password."
+#~ msgstr "كلمة السر CA غير صالحة."
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Osmanisch (1500-1928)"
+#~ msgid "rpm output:"
+#~ msgstr "مخرجات rpm:"
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkmenisch"
+#~ msgid "%s install failed"
+#~ msgstr "فشل تثبيت %s"
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#~ msgid "%s installed ok"
+#~ msgstr "تم تثبيت %s بنجاح"
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks- und Caicosinseln"
+#~ msgid "%s remove ok"
+#~ msgstr "تمت إزالة %s بنجاح"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Elliceanisch"
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "Tuwinisch"
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi-Sprache"
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "Udmurtisch"
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "تجاهل %s القديم في %s"
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "Ugaritisch"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "تجاهل تعارض %s هذا"
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "Uigurisch"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "تجاهل هذا المتطلب هنا فقط"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraine"
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "Urkainisch"
+#~ msgid "Install missing resolvables"
+#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "Mbundu-Sprache"
+#~ msgid "Keep resolvables"
+#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "URL-Objekt kann nicht geklont werden"
+#~ msgid "Unlock these resolvables"
+#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Dbus-Verbindung kann nicht hergestellt werden"
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-"HAL-Kontext kann nicht initialisiert werden -- Wird hald nicht ausgeführt?"
+#~ msgid "install %s"
+#~ msgstr "تثبيت %s"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "URL-Komponenten können nicht analysiert werden"
+#~ msgid "unlock %s"
+#~ msgstr "إلغاء قفل %s"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Nicht einzuordnen"
+#~ msgid "unlock all resolvables"
+#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Unverarbeiteter Repository-Typ"
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "تعذر فتح الملف %1."
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Vereinigte Arabische Emirate"
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "تعذرت قراءة القطاع %u."
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Vereinigtes Königreich"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "USA"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Amerikanisch-Ozeanien"
+#~ msgid "Software management is already running."
+#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Unbekanntes Land: "
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Unbekannter Fehler beim Lesen aus '%s'"
+#~ msgid "%s replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Unbekannte Sprache: "
+#, fuzzy
+#~ msgid "%s will be deleted by the user.\n"
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Unbekannter Übereinstimmungsmodus '%s'"
+#, fuzzy
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Unbekannter Übereinstimmungsmodus %s für Schema %s."
+#~ msgid "Invalid information"
+#~ msgstr "المعلومات غير صالحة"
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-"Unbekannter Dienst '%1%': Verwaistes Dienst-Repository '%2%' wird entfernt"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Unbekannte Support-Option. Keine Beschreibung vorhanden"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s مطلوب بواسطة\n"
+#~ "%s"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Unbekannter Signaturtyp"
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Nicht unterstützte HTTP-Authentifizierungsmethode '%s'"
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s يتعارض مع:\n"
+#~ "%s"
 
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Nicht unterstütztes URI-Schema in '%s'."
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Obersorbisch"
+#~ msgid "%s obsoletes:%s"
+#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Urdu"
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "%s laut URL-Schema nicht zulässig"
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Host-Komponente laut URL-Schema nicht zulässig"
+#~ msgid "%s depends on %s"
+#~ msgstr "%s يعتمد على %s"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Passwort laut URL-Schema nicht zulässig"
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s يعتمد على:%s"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Port laut URL-Schema nicht zulässig"
+#~ msgid "Child of"
+#~ msgstr "عنصر فرعي لـ"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Benutzername laut URL-Schema nicht zulässig"
+#, fuzzy
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Das URL-Schema ist eine erforderliche Komponente"
+#, fuzzy
+#~ msgid ""
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Für das URL-Schema ist eine Host-Komponente erforderlich"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Für das URL-Schema ist ein Pfadname erforderlich"
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "لم يتم استيفاء متطلبات %s"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Usbekisch"
+#~ msgid "%s has missing dependencies"
+#~ msgstr "تم فقد تبعيات %s"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Usbekistan"
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vai-Sprache"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#~ msgid "No need to install %s"
+#~ msgstr "لا داعي لتثبيت %s"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Venda-Sprache"
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnamesisch"
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Amerikanische Jungferninseln"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "تعذر تثبيت %s لأنه متعارض"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Prüfen Sie im Novell Customer Center, ob Ihre Registrierung gültig und nicht "
-"abgelaufen ist."
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Volapük"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Wotisch"
+#, fuzzy
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s يفتقد المتطلب %s"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "Wakash-Sprachen"
+#~ msgid ", Action: "
+#~ msgstr "، الإجراء:"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Walamo-Sprache"
+#~ msgid ", Trigger: "
+#~ msgstr "، تشغيل:"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis und Futuna"
+#~ msgid "package"
+#~ msgstr "الحزمة"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Wallonisch"
+#~ msgid "selection"
+#~ msgstr "التحديد"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Waray"
+#~ msgid "pattern"
+#~ msgstr "النمط"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Washo-Sprache"
+#~ msgid "product"
+#~ msgstr "المنتج"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Kymrisch"
+#~ msgid "patch"
+#~ msgstr "التصحيح"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Westsahara"
+#~ msgid "script"
+#~ msgstr "البرنامج النصي"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolof-Sprache"
+#~ msgid "message"
+#~ msgstr "الرسالة"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhosa-Sprache"
+#~ msgid "atom"
+#~ msgstr "الذرة"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Jakutisch"
+#~ msgid "system"
+#~ msgstr "النظام"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yao-Sprache (Bantusprache)"
+#~ msgid "Resolvable"
+#~ msgstr "التبعية القابلة للتحليل"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Yapesisch"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Jiddisch"
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Yoruba-Sprache"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Yupik-Sprache"
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Sambia"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande-Sprachen"
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapotekisch"
+#~ msgid "Establishing %s"
+#~ msgstr "تأسيس %s"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#~ msgid "Installing %s"
+#~ msgstr "تثبيت %s"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Simbabwe"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "تخطي %s: تم التثبيت بالفعل"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu-Sprache"
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni-Sprache"
+#~ msgid "for %s"
+#~ msgstr "لـ %s"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "Applydeltarpm-Prüfung nicht bestanden."
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "Fehler bei applydeltarpm"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
 
-#: zypp/solver/detail/SATResolver.cc:1325
-#, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "Architekturwechsel von %s zu %s"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "%s durch Ignorieren einiger Abhängigkeiten brechen"
+#~ msgid ""
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
+#~ msgstr ""
+#~ "%s يوفر %s، لكنه قابل لإلغاء التثبيت.  حاول تثبيته للحصول على مزيد من "
+#~ "التفاصيل."
 
-#: zypp/solver/detail/SATResolver.cc:1017
-#, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "%s und %s können nicht gleichzeitig installiert sein"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s يوفر %s، لكنه مقفل."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "In Konflikt stehende Anforderungen"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
 
-#: zypp/target/rpm/RpmDb.cc:2344
-#, c-format, boost-format
-msgid "created backup %s"
-msgstr "Sicherung %s erstellt"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
 
-#: zypp/solver/detail/SATResolver.cc:1354
-#, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Deinstallation von %s"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "Gelöschte Anbieter: "
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr ""
-"Löschen aller auflösbaren Elemente mit %s darf nicht angefordert werden"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr ""
-"Installation eines auflösbaren Elements mit %s darf nicht angefordert werden"
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, c-format, boost-format
-msgid "do not install %s"
-msgstr "%s nicht installieren"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "Neueste Version von %s darf nicht installiert werden"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "Downgrade von %s zu %s"
+#~ msgid "from %s"
+#~ msgstr "من %s"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "Einige Abhängigkeiten allgemein ignorieren"
+#~ msgid " Error!"
+#~ msgstr "خطأ!"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "Warnung eines beschädigten Systems ignorieren"
+#~ msgid " Important!"
+#~ msgstr "هام!"
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"%s installieren (mit Anbieterwechsel)\n"
-"  %s --> %s"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "%s trotz der nachrangigen Architektur installieren"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "%s aus dem ausgeschlossenen Repository installieren"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "installiertes %s macht %s, welches durch %s angeboten wird, obsolet"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "Ungültig"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "%s behalten"
+#~ msgid "%s part of %s"
+#~ msgstr "%s جزء من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s trotz der nachrangigen Architektur beibehalten"
+#, fuzzy
+#~ msgid "Double timeout"
+#~ msgstr "موعد الاستحقاق: %1"
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "veraltetes %s beibehalten"
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Erstellen des libhal-Kontexts nicht möglich"
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "تعذر تحليل سلطة Url"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr ""
-"libhal_set_dbus_connection: Festlegen der dbus-Verbindung nicht möglich"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s benötigt von %s wird nirgends zur Verfügung gestellt"
+#~ msgid ""
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
+#~ "الارتباط."
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "Angefordertes %s wird nirgends zur Verfügung gestellt"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "Paket %s existiert nicht"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "تعذرت استعادة كافة المصادر."
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "Problem mit installiertem Paket %s"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "Sperre entfernen und Installation von %s zulassen"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "Sperre entfernen und Entfernen von %s zulassen"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "Ersatz von %s durch %s"
+#~ msgid "Reading index files"
+#~ msgstr "قراءة ملفات الفهرس"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr ""
-"rpm hat %s als %s erstellt, der Unterschied konnte jedoch nicht ermittelt "
-"werden"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"rpm hat %s als %s erstellt.\n"
-"Hier die ersten 25 Zeilen mit Unterschieden:\n"
+#~ msgid "Reading product from %s"
+#~ msgstr "قراءة المنتج من %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr ""
-"rpm hat %s als %s gespeichert, der Unterschied konnte jedoch nicht ermittelt "
-"werden"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "قراءة قائمة الملفات من %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
-msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"rpm hat %s als %s gespeichert.\n"
-"Hier die ersten 25 Zeilen mit Unterschieden:\n"
+#~ msgid "Reading packages from %s"
+#~ msgstr "قراءة الحزم من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr ""
-"Das auflösbare Element %s steht in Konflikt mit %s, das es selbst zur "
-"Verfügung gestellt hat"
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "Abhängigkeitsproblem"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "Nicht installierbare Anbieter: "
+#~ msgid "Reading patches index %s"
+#~ msgstr "قراءة فهرس التصحيحات %s"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "Unbekannt"
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "Nicht unterstützt"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "nicht unterstützte Anforderung"
+#~ msgid "Reading packages file"
+#~ msgstr "قراءة ملف الحزم"
+
+#~ msgid "Reading translation: %s"
+#~ msgstr "قراءة الترجمة: %s"
+
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
+#~ "التثبيت؟"
+
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
+
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
+
+#~ msgid "Downloading %s"
+#~ msgstr "إنزال %s"
+
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr ""
+#~ "Der öffentliche Schlüssel %s vom Schlüsselring %s kann nicht in Datei %s "
+#~ "erstellt werden"
+
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr ""
+#~ "Es wurde versucht, den nicht vorhandenen Schlüssel %s in Schlüsselring %s "
+#~ "zu importieren"
+
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "Es kann innerhalb des Chroot (%s) nicht zu '/' gewechselt werden."
+
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr ""
+#~ "Initialisierung des Downloads (Metalink-Curl) für '%s' fehlgeschlagen"
+
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "Fehler beim Herunterladen (Metalink-Curl) für '%s':\n"
+#~ "Fehlerkode: %s\n"
+#~ "Fehlermeldung: %s\n"
+
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "Dateiabbruf bei %d%% unterbrochen"
+
+#~ msgid "Download interrupted by user"
+#~ msgstr "Dateiabbruf durch Benutzer unterbrochen"
+
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr ""
+#~ "Beim Setzen der Download-Optionen (Metalink-Curl) für '%s' ist ein Fehler "
+#~ "aufgetreten:"
+
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "%s konnte von %s nicht abgerufen werden"
+
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Serbien und Montenegro"
+
+#~ msgid "Unknown Distribution"
+#~ msgstr "Unbekannte Distribution"
+
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "einige Abhängigkeiten von %s ignorieren"
+
+#~ msgid ""
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Datei %s hat keine Prüfsumme.\n"
+#~ "Datei trotzdem verwenden?"
+
+#~ msgid ""
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Datei %s hat die Integritätsprüfung mit dem folgenden Schlüssel nicht "
+#~ "bestanden:\n"
+#~ "%s|%s|%s\n"
+#~ "Datei trotzdem verwenden?"
+
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Datei %s hat eine ungültige Prüfsumme.\n"
+#~ "Erwartet %s, gefunden %s\n"
+#~ "Datei trotzdem verwenden?"
+
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Datei %s hat eine unbekannte Prüfsumme %s.\n"
+#~ "Datei trotzdem verwenden?"
+
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "Datei %s ist unsigniert.\n"
+#~ "Datei trotzdem verwenden?"
+
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Datei %s ist mit einem unbekanntem Schlüssel signiert:\n"
+#~ "%s|%s|%s\n"
+#~ "Datei trotzdem verwenden?"
+
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "Nicht vertrauenswürdiger Schlüssel gefunden:\n"
+#~ "%s|%s|%s\n"
+#~ "Schlüssel als vertrauenswürdig betrachten?"
+
+#~ msgid "Timeout exceeded when access '%s'."
+#~ msgstr "Zeitablauf beim Zugriff auf '%s'."
index e66b2c7..e995994 100644 (file)
--- a/po/el.po
+++ b/po/el.po
@@ -29,21 +29,93 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Gtranslator 2.91.7\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"μη εγκαταστήσιμοι πάροχοι:"
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Εξαίρεση Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Λανθασμένη σειρά αναζήτησης LDAP URL"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" πρόβλημα πιστοποιητικού SSL, επιβεβαιώστε ότι το πιστοποιητικό της CA  "
-"είναι εντάξει για '%s'. "
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Λανθασμένη παράμετρος αναζήτησης LDAP URL '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Αδυναμία κλωνοποίησης αντικειμένου Url"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Λανθασμένη αναφορά αντικειμένου κενού Url"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Αδυναμία ανάλυσης συστατικών Url"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Αδυναμία αρχικοποίησης ιδιοτήτων mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Αδυναμία ορισμού παλινδρομικής ιδιότητας mutex"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Αδυναμία αρχικοποίησης παλινδρομικής mutex"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Αδυναμία λήψης κλειδαριάς mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Αδυναμία ελευθέρωσης κλειδαριάς mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Παρέχει"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Προαπαιτεί"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Απαιτεί"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Συγκρούσεις"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Απαρχαιώνει"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Συνιστά"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Προτείνει"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Ενισχύει"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Συμπληρώνει"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Ύποπτος τύπος '%s' για το %u byte στον αθροιστικό έλεγχο '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -54,10 +126,6 @@ msgstr " εκτελέστηκε"
 msgid " execution failed"
 msgstr " εκτέλεση απέτυχε"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " η εκτέλεση σταμάτησε κατά την  ακύρωση  "
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -66,1580 +134,2428 @@ msgstr " η εκτέλεση σταμάτησε κατά την  ακύρωση
 msgid "%s already executed as %s)"
 msgstr "%s έχουν ήδη εκτελεστεί ως %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "το %s συγκρούεται με %s που παρέχεται από το %s"
-
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s δεν ανήκει σε αποθετήριο αναβάθμισης της διανομής  "
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " η εκτέλεση σταμάτησε κατά την  ακύρωση  "
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "Το %s έχει υποδαιέστερη αρχιτεκτονική"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Σφάλμα κατα την αποστολή μηνύματος ειδοποίησης ενημέρωσης."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s είναι μη εγκαταστάσιμο"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Νέο μήνυμα αναβάθμισης"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "Το %s παρέχεται από το σύστημα και είναι αδύνατο να διαγραφεί"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Η εγκατάσταση ακυρώθηκε όπως επιλέχθηκε."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "Το %s απαρχαιώνει το %s που παρέχεται από το %s"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
+"Συγγνώμη, αλλά αυτή η έκδοση του libzypp χτίστηκε χωρίς υποστήριξη HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s απαιτεί %s, αλλά αυτή η απαίτηση δεν μπορεί να δοθεί"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "Το HalContext δεν είναι συνδεμένο"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(ΕΛΗΞΕ)"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "Το HalDrive δεν είναι αρχικοποιημένο"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(δεν λήγει)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "Το HalVolume δεν είναι αρχικοποιημένο"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(λήγει σε %d ημέρα)"
-msgstr[1] "(λήγει σε %d ημέρες)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Αδυναμία δημιουργίας σύνδεσης dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(λήγει μέσα σε 24ω)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Αδυναμία δημιουργίας περιεχομένου libhal"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhazian"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: Αδυναμία ορισμού σύνδεσης dbus"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achinese"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
+"Αδυναμία αρχικοποίησης περιεχομένου HAL -- ο δαίμονας hald δεν εκτελείται;"
 
-#  power saving scheme name, combo box and default contents of text entry
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Όχι οδηγός CDROM"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "Το RPM απέτυχε:"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "ΠÏ\81οÏ\83θήκη Î±Ï\80οθεÏ\84ηÏ\81ίοÏ\85 '%s'."
+msgid "Failed to import public key from file %s: %s"
+msgstr "Î\91Ï\80έÏ\84Ï\85Ï\87ε Î½Î± ÎµÎ¹Ï\83άγει Ï\84ο Î´Î·Î¼Ï\8cÏ\83ιο ÎºÎ»ÎµÎ¹Î´Î¯ Î±Ï\80Ï\8c Ï\84ο Î±Ï\81Ï\87είο %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Συμπληρωματική σύμβαση πελάτη είναι απαραίτητη "
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Αδυναμία απομάκρυνσης του δημοσίου κλειδιού %s: %s"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "Επιπρόσθετο αποτέλεσμα rpm"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Αλλαγή αρχείων ρύθμισης για %s:"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adyghe"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "Το rpm αποθήκευσε το  %s ως %s αλλά ήταν αδύνατο να διαφανεί η διαφορά"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"Το rpm αποθήκευσε το  %s ως %s.\n"
+"Εδώ είναι οι πρώτες 25 γραμμές της διαφοράς:\n"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Αφγανιστάν"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "Το rpm δημιουργήσε το %s ως %s αλλά ήταν αδύνατο να διαφανεί η διαφορά"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Αφριχίλι"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"To rpm δημιουργήσε το %s ως %s.\n"
+"Εδώ είναι οι πρώτες 25 σειρές της διαφοράς:\n"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikaans"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "Επιπρόσθετο αποτέλεσμα rpm"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Î\91Ï\86Ï\81ο-Î\91Ï\83ιαÏ\84ικά (Î\86λλο)"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "δημιοÏ\85Ï\81γία Î±Î½Ï\84ιγÏ\81άÏ\86οÏ\85 Î±Ï\83Ï\86αλείαÏ\82 %s"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Î\99αÏ\80Ï\89νικά (Ainu)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "Î\97 Ï\85Ï\80ογÏ\81αÏ\86ή ÎµÎ¯Î½Î±Î¹ Î\9fÎ\9a"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Akan"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Άγνωστος τύπος υπογραφής"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Akkadian"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "Η υπογραφή δεν μπορεί να επαληθευτεί"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Î\9dηÏ\83ιά Aland"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "Î\97 Ï\85Ï\80ογÏ\81αÏ\86ή ÎµÎ¯Î½Î±Î¹ Î\9fÎ\9a, Î±Î»Î»Î¬ Ï\84ο ÎºÎ»ÎµÎ¹Î´Î¯ Î´ÎµÎ½ ÎµÎ¯Î½Î±Î¹ Î­Î¼Ï\80ιÏ\83Ï\84ο"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Î\91λβανία"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "Î\97 Ï\85Ï\80ογÏ\81αÏ\86έÏ\82 Ï\84οÏ\85 Î´Î·Î¼Ï\8cÏ\83ιοÏ\85 ÎºÎ»ÎµÎ¹Î´Î¹Î¿Ï\8d Î´ÎµÎ½ ÎµÎ¯Î½Î±Î¹ Î´Î¹Î±Î¸Î­Ï\83ιμεÏ\82"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Î\91λβανικά"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "Το Î±Ï\81Ï\87είο Î´ÎµÎ½ Ï\85Ï\80άÏ\81Ï\87ει Î® Î· Ï\85Ï\80ογÏ\81αÏ\86ή Î´ÎµÎ½ Î¼Ï\80οÏ\81εί Î½Î± ÎµÎ»ÎµÏ\87θεί"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aleut"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Οι ακόλουθες ενέργειες θα γίνουν:"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Αλγερία"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+"Αδυναμία ανάγνωσης καταλόγου αποθετηρίου '%1%': Δεν έχετε δικαιώματα "
+"πρόσβασης"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Γλώσσες Algonquian"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Αποτυχία ανάγνωσης καταλόγου '%s'"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaic (Other)"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+"Αδυναμία ανάγνωσης αρχείου αποθετηρίου '%1%': Δεν έχετε δικαιώματα πρόσβασης"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Αμερικανική Σαμόα"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Το alias του αποθετηρίου δεν μπορεί να ξεκινά από τελεία."
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amharic"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Το ψευδώνυμο της υπηρεσίας δεν μπορεί να ξεκινά με τελεία."
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-"Μια συμπληρωματική σύμβαση πελάτη είναι απαραίτητη για  λήψη υποστήριξης."
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Αδυναμία ανοίγματος αρχείου '%s' για εγγραφή."
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Ανδόρα"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+"Άγνωστη υπηρεσία '%1%': Αφαίρεση του ορφανού αποθετηρίου υπηρεσιών '%2%'"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Ανγκόλα"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Δεν βρέθηκαν έγκυρα μεταδεδομένα στην καθορισμένη URL"
+msgstr[1] "Δεν βρέθηκαν έγκυρα μεταδεδομένα στις καθορισμένες URLs"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Î\91γκίλα"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Î\91δÏ\85ναμία Î´Î·Î¼Î¹Î¿Ï\85Ï\81γίαÏ\82 %s"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Ανταρκτική"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Αδυναμία δημιουργίας καταλόγου μεταδεδομένων λανθάνουσας μνήμης."
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Î\91νÏ\84ίγκοÏ\85α ÎºÎ±Î¹ Î\9cÏ\80αÏ\81μÏ\80οÏ\8dνÏ\84α"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Î\94ημιοÏ\85Ï\81γία Î»Î±Î½Î¸Î¬Î½Î¿Ï\85Ï\83αÏ\82 Î¼Î½Î®Î¼Î·Ï\82 Î±Ï\80οθεÏ\84ηÏ\81ίοÏ\85 '%s'"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Γλώσσες Απάτσι"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+"Αδυναμία δημιουργίας λανθάνουσας μνήμης στο %s - όχι δικαιώματα εγγραφής. "
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Î\91Ï\81αβικά"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία Î±Ï\80οθήκεÏ\85Ï\83ηÏ\82 Ï\83Ï\84ην Î»Î±Î½Î¸Î¬Î½Î¿Ï\85Ï\83α Î¼Î½Î®Î¼Î· Ï\84οÏ\85 Î±Ï\80οθεÏ\84ηÏ\81ίοÏ\85 (%d)."
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonese"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Τύπος αδιαχείριστου αποθετηρίου"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Αραμαϊκά"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Σφάλμα προσπαθώντας να διαβάσει από το '%s'"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Αραπάχο"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Άγνωστο σφάλμα διαβάζετε από '%s'"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Araucanian"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Προσθήκη αποθετηρίου '%s'."
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Αργεντινή"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Αρμενία"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Αρμενικά"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Μη έγκυρο όνομα αποθετηρίου αρχείου στο '%s'"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "ΤεÏ\87νηÏ\84ή (Î\86λλο)"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Î\91Ï\80ομάκÏ\81Ï\85νÏ\83η Î±Ï\80οθεÏ\84ηÏ\81ίοÏ\85 '%s'"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Αρούμπα"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Δεν είναι κατανοητό που είναι αποθηκευμένο το αποθετήριο."
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Assamese"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Αδυναμία διαγραφής '%s'"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Asturian"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Δεν είναι κατανοητό που είναι αποθηκευμένη η υπηρεσία."
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Î\93λÏ\8eÏ\83Ï\83εÏ\82 Athapascan"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Το Url Ï\83Ï\87ήμα Î´ÎµÎ½ ÎµÏ\80ιÏ\84Ï\81έÏ\80ει Î­Î½Î± %s"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Î\91Ï\85Ï\83Ï\84Ï\81αλία"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Î\9bανθαÏ\83μένο %s Ï\83Ï\85Ï\83Ï\84αÏ\84ικÏ\8c '%s'"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Î\91Ï\85Ï\83Ï\84Ï\81αλιανέÏ\82 Î\93λÏ\8eÏ\83Ï\83εÏ\82"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Î\9bανθαÏ\83μένο %s Ï\83Ï\85Ï\83Ï\84αÏ\84ικÏ\8c"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Αυστρία"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Η ανάλυση γραμμής αναζήτησης δεν υποστηρίζεται από αυτό το URL"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronesian (Άλλες)"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Το σχήμα Url είναι ένα απαιτούμενο συστατικό"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:830
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Î\91Ï\80αιÏ\84είÏ\84αι Ï\80ιÏ\83Ï\84οÏ\80οίηÏ\83η Î³Î¹Î± '%s'"
+msgid "Invalid Url scheme '%s'"
+msgstr "Î\9bανθαÏ\83μένο Ï\83Ï\87ήμα Url '%s'"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Avaric"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Το σχήμα Url δεν επιτρέπει όνομα χρήστη"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Avestan"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Το σχήμα Url δεν επιτρέπει συνθηματικό"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Awadhi"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Το σχήμα Url απαιτεί ένα συστατικό διακομιστή"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Aymara"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Το σχήμα Url δεν επιτρέπει ένα συστατικό διακομιστή"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Î\91ζεÏ\81μÏ\80αÏ\8aÏ\84ζάν"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Î\9bανθαÏ\83μένο Ï\83Ï\85Ï\83Ï\84αÏ\84ικÏ\8c Î´Î¹Î±ÎºÎ¿Î¼Î¹Ï\83Ï\84ή '%s'"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Αζερμπαϊτζανικά"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Το σχήμα Url δεν σας επιτρέπει μια θύρα"
 
-#: zypp/media/MediaException.cc:47
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Εσφαλμένο όνομα αρχείου: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Εσφαλμένο σημείο σύνδεσης μέσου"
+msgid "Invalid port component '%s'"
+msgstr "Λανθασμένο συστατικό θύρας '%s'"
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Μπαχάμες"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Το σχήμα Url απαιτεί όνομα διαδρομής"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Μπαχρέιν"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Σχετική διαδρομή δεν επιτρέπεται εαν υπάρχει αρχή"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinese"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Κωδικοποιημένο αλφαριθμητικό περιέχει ενα NUL byte"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Βαλτικά (Άλλο)"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Λανθασμένος διαχωριστικός χαρακτήρας διαχωρισμού παραμέτρου σειράς"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Baluchi"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Λανθασμένος διαχωριστικός χαρακτήρας διαχωρισμού παραμέτρου χάρτη"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Bambara"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Λανθασμένος διαχωριστικός χαρακτήρας ένωσης σειράς"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Î\93λÏ\8eÏ\83Ï\83εÏ\82 Bamileke"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Î\91δÏ\85ναμία Î±Î½Î¿Î¯Î³Î¼Î±Ï\84οÏ\82 pty (%s)."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Αδυναμία ανοίγματος διασωλήνωσης (%s)."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Î\9cÏ\80ανγκλανÏ\84εÏ\82"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Î\94εν Î¼Ï\80οÏ\81εί Î½Î± ÎºÎ¬Î½ÎµÎ¹ chroot Ï\83ε '%s' (%s)."
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (Άλλη)"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+"Αδυναμία αλλαγής καταλόγου στο '%s' μέσα σε περιβάλλον αλλαγμένου καταλόγου "
+"ρίζας '%s' (%s)."
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Î\9cÏ\80αÏ\81μÏ\80άνÏ\84οÏ\82"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Î\91δÏ\85ναμία Î±Î»Î»Î±Î³Î®Ï\82 ÎºÎ±Ï\84αλÏ\8cγοÏ\85 Ï\83Ï\84ο '%s' (%s)."
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Μη δυνατή εκτέλεση του '%s' (%s)."
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bashkir"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Αδυναμία διακλάδωσης (%s)."
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Î\92άÏ\83κικα"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Î\97 ÎµÎ½Ï\84ολή Ï\84εÏ\81μαÏ\84ίÏ\83Ï\84ηκε Î¼Îµ ÎºÎ±Ï\84άÏ\83Ï\84αÏ\83η %d."
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonesia)"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Η εντολή τερματίστηκε από το σήμα %d (%s)."
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Beja"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Η εντολή τερματίστηκε με άγνωστο σφάλμα."
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Λευκορωσία"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(δεν λήγει)"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Λευκορωσικά"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(ΕΛΗΞΕ)"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Βέλγιο"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(λήγει μέσα σε 24ω)"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Μπελίζ"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(λήγει σε %d ημέρα)"
+msgstr[1] "(λήγει σε %d ημέρες)"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Bemba"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "άγνωστη"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengali"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "μη υποστηριζόμενο"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Μπενίν"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Επίπεδο 1"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Berber (Other)"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Επίπεδο 2 "
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Βερμούδες"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Επίπεδο 3"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Bhojpuri"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Συμπληρωματική σύμβαση πελάτη είναι απαραίτητη "
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Μπουτάν"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "μη έγκυρο"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihari"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Το επίπεδο υποστήριξης είναι απροσδιόριστο"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikol"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Ο κατασκευαστής δεν παρέχει υποστήριξη."
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Bini"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Προσδιορισμός προβλήματος, που σημαίνει πως η τεχνική υποστήριξη είναι "
+"σχεδιασμένη για να παρέχει πληροφορίες συμβατότητας, βοήθεια εγκατάστασης, "
+"υποστήριξη χρήσης, συνεχόμενη συντήρηση και βασική λύση προβλημάτων. Η "
+"υποστήριξη επιπέδου 1 δεν προορίζεται για να διορθώνει σφάλματα "
+"ελαττωματικών προϊόντων."
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Απόμονωση προβλήματος, που σημαίνει πως η τεχνική υποστήριξη είναι "
+"σχεδιασμένη για να αναπαράγει τα προβλήματα των πελατών, να απομονώνει την "
+"περιοχή του προβλήματος και να παρέχει λύση για προβλήματα που δεν λύνονται "
+"με την υποστήριξη Επιπέδου 1. "
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Επίλυση προβλήματος, που σημαίνει ότι η τεχνική υποστήριξη είναι σχεδιασμένη "
+"για να επιλύει πολύπλοκα προβλήματα χρησιμοποιώντας μηχανική στην επίλυση "
+"σφαλμάτων υλικού που έχουν επιβεβαιωθεί από την υποστήριξη Επιπέδου 2."
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Βολιβία"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+"Μια συμπληρωματική σύμβαση πελάτη είναι απαραίτητη για  λήψη υποστήριξης."
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Βοσνία-Ερζεγοβίνη"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Άγνωστη επιλογή υποστήριξης.Δεν υπάρχει διαθέσιμη περιγραφή"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Βοσνιακά"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Άγνωστη χώρα: "
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Μποτσουάνα"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Όχι Κώδικας"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Νήσος Μπουβέ"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Ανδόρα"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Braj"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Ηνωμένα Αραβικά Εμιράτα"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Î\92Ï\81αζιλία"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Î\91Ï\86γανιÏ\83Ï\84άν"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Breton"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Αντίγκουα και Μπαρμπούντα"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Î\92Ï\81εÏ\84ανικά Î\95δάÏ\86η Î\99νδικοÏ\8d Î©ÎºÎµÎ±Î½Î¿Ï\8d"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Î\91γκίλα"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Î\92Ï\81εÏ\84ανικά Î Î±Ï\81θένα Î\9dηÏ\83ιά"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Î\91λβανία"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Î\9cÏ\80Ï\81οÏ\85νέι Î\9dÏ\84αÏ\81οÏ\85Ï\83αλάμ"
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Î\91Ï\81μενία"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Buginese"
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Ολλανδικές Αντίλλες"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Î\94ημιοÏ\85Ï\81γία Î»Î±Î½Î¸Î¬Î½Î¿Ï\85Ï\83αÏ\82 Î¼Î½Î®Î¼Î·Ï\82 Î±Ï\80οθεÏ\84ηÏ\81ίοÏ\85 '%s'"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Î\91νγκÏ\8cλα"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Î\92οÏ\85λγαÏ\81ία"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Î\91νÏ\84αÏ\81κÏ\84ική"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Î\92οÏ\85λγαÏ\81ικά"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Î\91Ï\81γενÏ\84ινή"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriat"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Αμερικανική Σαμόα"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Αυστρία"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Αυστραλία"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Αρούμπα"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Νησιά Aland"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Αζερμπαϊτζάν"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Βοσνία-Ερζεγοβίνη"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Μπαρμπάντος"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Μπανγκλαντες"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Βέλγιο"
 
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
 msgstr "Μπουρκίνα Φάσο"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Burmese"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Βουλγαρία"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Μπαχρέιν"
 
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "Μπουρούντι"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Caddo"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Καμπότζη"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Μπενίν"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Î\9aαμεÏ\81οÏ\8dν"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Î\92εÏ\81μοÏ\8dδεÏ\82"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Αδυναμία δημιουργίας sat-pool."
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Μπρουνέι Νταρουσαλάμ"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Αδυναμία λήψης κλειδαριάς mutex"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Βολιβία"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Î\91δÏ\85ναμία Î±Î»Î»Î±Î³Î®Ï\82 ÎºÎ±Ï\84αλÏ\8cγοÏ\85 Ï\83Ï\84ο '%s' (%s)."
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Î\92Ï\81αζιλία"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-"Αδυναμία αλλαγής καταλόγου στο '%s' μέσα σε περιβάλλον αλλαγμένου καταλόγου "
-"ρίζας '%s' (%s)."
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Μπαχάμες"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Î\94εν Î¼Ï\80οÏ\81εί Î½Î± ÎºÎ¬Î½ÎµÎ¹ chroot Ï\83ε '%s' (%s)."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Î\9cÏ\80οÏ\85Ï\84άν"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Î\91δÏ\85ναμία Î´Î·Î¼Î¹Î¿Ï\85Ï\81γίαÏ\82 %s"
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Î\9dήÏ\83οÏ\82 Î\9cÏ\80οÏ\85βέ"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-"Αδυναμία δημιουργίας λανθάνουσας μνήμης στο %s - όχι δικαιώματα εγγραφής. "
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Μποτσουάνα"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Αδυναμία δημιουργίας καταλόγου μεταδεδομένων λανθάνουσας μνήμης."
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Λευκορωσία"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Αδυναμία διαγραφής '%s'"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Μπελίζ"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Μη δυνατή εκτέλεση του '%s' (%s)."
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Καναδάς"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Δεν είναι κατανοητό που είναι αποθηκευμένο το αποθετήριο."
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Νήσοι Κόκος (Κήλινγκ)"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Δεν είναι κατανοητό που είναι αποθηκευμένη η υπηρεσία."
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Κονγκό"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Î\91δÏ\85ναμία Î´Î¹Î±ÎºÎ»Î¬Î´Ï\89Ï\83ηÏ\82 (%s)."
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Î\9aενÏ\84Ï\81οαÏ\86Ï\81ικανική Î\94ημοκÏ\81αÏ\84ία"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Αδυναμία αρχικοποίησης ιδιοτήτων mutex"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Ελβετία"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Αδυναμία αρχικοποίησης παλινδρομικής mutex"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Ακτή Ελεφαντοστού"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Αδυναμία ανοίγματος αρχείου '%s' για εγγραφή."
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Νήσοι Κουκ"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Î\91δÏ\85ναμία Î±Î½Î¿Î¯Î³Î¼Î±Ï\84οÏ\82 Î±Ï\81Ï\87είοÏ\85 ÎºÎ»ÎµÎ¹Î´Ï\8eμαÏ\84οÏ\82: %s"
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Χιλή"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Î\91δÏ\85ναμία Î±Î½Î¿Î¯Î³Î¼Î±Ï\84οÏ\82 Î´Î¹Î±Ï\83Ï\89λήνÏ\89Ï\83ηÏ\82 (%s)."
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Î\9aαμεÏ\81οÏ\8dν"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Αδυναμία ανοίγματος pty (%s)."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Αδυναμία παροχής αρχείου '%s' από το αποθετήριο '%s'"
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Αδυναμία ελευθέρωσης κλειδαριάς mutex"
-
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Αδυναμία ορισμού παλινδρομικής ιδιότητας mutex"
-
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Καναδάς"
-
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Αδυναμία αποβολής κάποιου μέσου"
-
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Αδυναμία αποβολής μέσου '%s'"
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Αδυναμία εύρεσης διαθέσιμης συσκευής βρόγχου για προσάρτηση αρχείου εικόνας "
-"δεδομένων από '%s'"
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Κίνα"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
-"Αδυναμία ανάγνωσης καταλόγου αποθετηρίου '%1%': Δεν έχετε δικαιώματα "
-"πρόσβασης"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Κολομβία"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
-"Αδυναμία ανάγνωσης αρχείου αποθετηρίου '%1%': Δεν έχετε δικαιώματα πρόσβασης"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Κόστα Ρίκα"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Î\91δÏ\85ναμία ÎµÎ³Î³Ï\81αÏ\86ήÏ\82 Î±Ï\81Ï\87είο '%s'."
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Î\9aοÏ\8dβα"
 
 #. :CUB:192:
 #: zypp/CountryCode.cc:208
 msgid "Cape Verde"
 msgstr "Πράσινο Ακρωτήριο"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "Î\94ιάλεκÏ\84οÏ\82 Î\9aαÏ\81αÏ\8aβικήÏ\82"
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Î\9dήÏ\83οι Î§Ï\81ιÏ\83Ï\84οÏ\85γέννÏ\89ν"
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Καταλονικά"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Κύπρος"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "Î\9aαÏ\85κάÏ\83ια (Î\86λλο)"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Î\94ημοκÏ\81αÏ\84ία Ï\84ηÏ\82 Î¤Ï\83εÏ\87ίαÏ\82"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Î\9dήÏ\83οι Î\9aέιμαν"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Î\93εÏ\81μανία"
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "Cebuano"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Τζιμπουτί"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Î\9aέλÏ\84ικα (Î\86λλο)"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Î\94ανία"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Κεντροαφρικανική Δημοκρατία"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Î\99νδιανικά Î\9aενÏ\84Ï\81ικήÏ\82 Î\91μεÏ\81ικήÏ\82 (Î\86λλο)"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Î\94ομινικανή Î\94ημοκÏ\81αÏ\84ία"
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "ΤÏ\83ανÏ\84"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Î\91λγεÏ\81ία"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Εκουαδόρ"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "ΧαμικέÏ\82 Î\93λÏ\8eÏ\83Ï\83εÏ\82"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Î\95Ï\83θονία"
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "Chamorro"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Αίγυπτος"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Αλλαγή αρχείων ρύθμισης για %s:"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Δυτική Σαχάρα"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "ΤÏ\83εÏ\84Ï\83ενικά"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Î\95Ï\81Ï\85θÏ\81αία"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Ισπανία"
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne"
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Αιθιοπία"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "Chibcha"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Φινλανδία"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Φίτζι"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Χιλή"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Î\9dήÏ\83οι Î¦Ï\8eκλανÏ\84 (Î\9cαλβίνεÏ\82)"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Κίνα"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Κυβερνητικές Πολιτείες της Μικρονησίας"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Î\9aινεζικά"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "ΦεÏ\81Ï\8cεÏ\82 Î\9dήÏ\83οι"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "Î\9bεξικÏ\8c Chinook"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Î\93αλλία"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyan"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Μητροπολιτική Γαλλία"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "Choctaw"
-
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Νήσοι Χριστουγέννων"
-
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "Church Slavic"
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukese"
-
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Chuvash"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Classical Newari"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Γκαμπόν"
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Î\9dήÏ\83οι Î\9aÏ\8cκοÏ\82 (Î\9aήλινγκ)"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Î\97νÏ\89μένο Î\92αÏ\83ίλειο"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Î\9aολομβία"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Î\93Ï\81ανάδα"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Î\97 ÎµÎ½Ï\84ολή Ï\84εÏ\81μαÏ\84ίÏ\83Ï\84ηκε Î¼Îµ ÎºÎ±Ï\84άÏ\83Ï\84αÏ\83η %d."
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Î\93εÏ\89Ï\81γία"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Η εντολή τερματίστηκε με άγνωστο σφάλμα."
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Γαλλική Γουιάνα"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Η εντολή τερματίστηκε από το σήμα %d (%s)."
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Κομόρες"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Γκάνα"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Συγκρούσεις"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Γιβραλτάρ"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Κονγκό"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Γροιλανδία"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Î\9dήÏ\83οι Î\9aοÏ\85κ"
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Î\93κάμÏ\80ια"
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "Î\9aοÏ\80Ï\84ικά"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Î\93οÏ\85Ï\8aνέα"
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "Cornish"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Γουαδελούπη"
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "Î\9aοÏ\81Ï\83ικά"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Î\99Ï\83ημεÏ\81ινή Î\93οÏ\85Ï\8aνέα"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Î\9aÏ\8cÏ\83Ï\84α Î¡Î¯Îºα"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Î\95λλάδα"
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Î\91κÏ\84ή Î\95λεÏ\86ανÏ\84οÏ\83Ï\84οÏ\8d"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Î\9dÏ\8cÏ\84ια Î\93εÏ\89Ï\81γία ÎºÎ±Î¹ Î\9dÏ\8cÏ\84ια Î\9dηÏ\83ιά Î£Î¬Î½Ï\84οÏ\85ιÏ\84Ï\82"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Γουατεμάλα"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Γκουάμ"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Creoles και Pidgins (Other)"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Γουϊνέα-Μπισάου"
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "Creoles and Pidgins, Βασισμένες στα Αγγλικά (Άλλο)"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Γουιάνα"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "Creoles and Pidgins, Βασισμένες στα Γαλλικά (Άλλο)"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Χονγκ Κονγκ "
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "Creoles and Pidgins, Βασισμένες στα Πορτογαλλικά (Άλλο)"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Νησί Heard και Νησιά McDonald"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "Crimean Tatar"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Ονδούρας"
 
 #. :HND:340:
 #: zypp/CountryCode.cc:254
 msgid "Croatia"
 msgstr "Κροατία"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Î\9aÏ\81οαÏ\84ικά"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Î\91Ï\8aÏ\84ή"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Î\9aοÏ\8dβα"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Î\9fÏ\85γγαÏ\81ία"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr "Cushitic (Other)"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Ινδονησία"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Î\9aÏ\8dÏ\80Ï\81οÏ\82"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Î\99Ï\81λανδία"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "ΤÏ\83έÏ\87ικα"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Î\99Ï\83Ï\81αήλ"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Δημοκρατία της Τσεχίας"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Isle of  Man"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "Dakota"
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Ινδία"
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "Δανέζικα"
-
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr "Dargwa"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Βρετανικά Εδάφη Ινδικού Ωκεανού"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr "Dayak"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Ιράκ"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "Delaware"
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Ιράν"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Î\94ανία"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Î\99Ï\83λανδία"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "Dinka"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Ιταλία"
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "Divehi"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Τζιμπουτί"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Τζαμάικα"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "Dogri"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Ιορδανία"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Ιαπωνία"
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Κένυα"
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Î\94ομινικανή Î\94ημοκÏ\81αÏ\84ία"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Î\9aιÏ\81γιÏ\83Ï\84άν"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Σφάλμα λήψεως (curl) για '%s':\n"
-"Κωδικός σφάλματος: %s\n"
-"Μήνυμα λάθους: %s\n"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Καμπότζη"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Η αρχικοποίηση λήψης (curl) απέτυχε για '%s'"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Κιριμπάτι"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "Dravidian (Other)"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Κομόρες"
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "Duala"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Άγιος Χριστόφορος και Χιονία"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Ύποπτος τύπος '%s' για το %u byte στον αθροιστικό έλεγχο '%s'"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Βόρεια Κορέα"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Î\9fλλανδικά"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Î\9dÏ\8cÏ\84ια Î\9aοÏ\81έα"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Î\9fλλανδικά, Î\9cεÏ\83αίÏ\89να (1050-1350 Î¼.Χ.)"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Î\9aοÏ\85βέιÏ\84"
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr "Dyula"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Νήσοι Κέιμαν"
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "Dzongkha"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Καζακστάν"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Î\91ναÏ\84ολικÏ\8c Î¤Î¹Î¼Ï\8cÏ\81"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Î\9bαική Î\94ημοκÏ\81αÏ\84ία Ï\84οÏ\85 Î\9bάοÏ\82"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Î\95κοÏ\85αδÏ\8cÏ\81"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Î\9bίβανοÏ\82"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "Efik"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Αγία Λουκία"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Î\91ίγÏ\85Ï\80Ï\84οÏ\82"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Î\9bίÏ\87Ï\84ενÏ\83Ï\84αÏ\8aν"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "Î\91ιγÏ\85Ï\80Ï\84ιακά (Î\91Ï\81Ï\87αία)"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "ΣÏ\81ι Î\9bάνκα"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "Ekajuk"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Λιβερία"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "Î\95λ Î£Î±Î»Î²Î±Î´Ï\8cÏ\81"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Î\9bεÏ\83Ï\8cÏ\84ο"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Elamite"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Λιθουανία"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Κενός προορισμός στην URI"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Λουξεμβούργο"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Κενό σύστημα αρχείων στην URI"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Λετονία"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Κενό όνομα φιλοξενιας στην  URI"
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Λιβύη"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Κωδικοποιημένο αλφαριθμητικό περιέχει ενα NUL byte"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Μαρόκο"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Î\91γγλικά"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Î\9cονακÏ\8c"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Î\91γγλικά, Î\9cεÏ\83αίÏ\89να (1100-1500 Î¼.Χ.)"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Î\9cολδαβία"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Αγγλικά, Παλαιά (450-110 μ.Χ.)"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro "
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Î\95νιÏ\83Ï\87Ï\8dει"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Î\86γιοÏ\82 Î\9cαÏ\81ίνοÏ\82"
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Ισημερινή Γουϊνέα"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Μαδαγασκάρη"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Î\95Ï\81Ï\85θÏ\81αία"
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Î\9dήÏ\83οι Î\9cάÏ\81Ï\83αλ"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"Σφάλμα προκλήθηκε κατά την διάρκεια ρύθμισης των ρυθμίσεων λήψεων (curl) για "
-"'%s':"
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Π.Γ.Δ.Μ."
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Σφάλμα κατα την αποστολή μηνύματος ειδοποίησης ενημέρωσης."
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Μάλι"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Σφάλμα προσπαθώντας να διαβάσει από το '%s'"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Μιανμάρ"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Μογγολία"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Î\95Ï\83Ï\80εÏ\81άνÏ\84ο"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Î\9cακάο"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Î\95Ï\83θονία"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Î\9dήÏ\83οι Î\92οÏ\81είÏ\89ν Î\9cαÏ\81ιάννÏ\89ν"
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Î\95Ï\83θονικά"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Î\9cαÏ\81Ï\84ινίκα"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Î\91ιθιοÏ\80ία"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Î\9cαÏ\85Ï\81ιÏ\84ανία"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Ewe"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Μονσεράτ"
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Ewondo"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Μάλτα"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία Î±Ï\80οθήκεÏ\85Ï\83ηÏ\82 Ï\83Ï\84ην Î»Î±Î½Î¸Î¬Î½Î¿Ï\85Ï\83α Î¼Î½Î®Î¼Î· Ï\84οÏ\85 Î±Ï\80οθεÏ\84ηÏ\81ίοÏ\85 (%d)."
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Î\9cαÏ\85Ï\81ίÏ\84ιοÏ\82"
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Αποτυχία της διαγραφής κλειδιού."
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Μαλβίδες"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Απέτυχε να εισάγει το δημόσιο κλειδί από το αρχείο %s: %s"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Μαλάουϊ"
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Î\91δÏ\85ναμία Ï\80Ï\81οÏ\83άÏ\81Ï\84ηÏ\83ηÏ\82 %s Ï\83Ï\84ο %s"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Î\9cεξικÏ\8c"
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Αποτυχία παροχής Πακέτου %s. Θέλετε να ξαναδοκιμάσετε ανάκτηση;"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Μαλαισία"
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Αποτυχία ανάγνωσης καταλόγου '%s'"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Μοζαμβίκη"
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Αδυναμία απομάκρυνσης του δημοσίου κλειδιού %s: %s"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Ναμίμπια"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία Î±Ï\80Ï\8c\80Ï\81οÏ\83άÏ\81Ï\84ηÏ\83ηÏ\82 %s"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Î\9dέα Î\9aαληδονία"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Î\9dήÏ\83οι Î¦Ï\8eκλανÏ\84 (Î\9cαλβίνεÏ\82)"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Î\9dίγηÏ\81αÏ\82"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "Fang"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Νήσοι Νόρφολκ"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Νιγηρία"
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "ΦεÏ\81Ï\8cεÏ\82 Î\9dήÏ\83οι"
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Î\9dικαÏ\81άγοÏ\85α"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Faroese"
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Ολλανδία"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Î\9aÏ\85βεÏ\81νηÏ\84ικέÏ\82 Î Î¿Î»Î¹Ï\84είεÏ\82 Ï\84ηÏ\82 Î\9cικÏ\81ονηÏ\83ίαÏ\82"
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Î\9dοÏ\81βηγία"
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Φίτζι"
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Νεπάλ"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Βράχος Πολυνησίας"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Νέα Ζηλανδία"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Ομάν"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Παναμάς"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Περού"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Γαλλική Πολυνησία"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Παπούα Νέα Γουϊνέα"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Φιλιππίνες"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Πακιστάν"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Πολωνία"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Άγιος Πέτρος και Μιχαήλ"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Νήσοι Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Πουέρτο Ρίκο"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Παλαιστινιακά Εδάφη"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Πορτογαλία"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Νήσοι Παλάου"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Παραγουάη"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Κατάρ"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Νήσος Ρεουνιόν"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Ρουμανία"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Σερβία"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Ρωσική Ομοσπονδία"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ρουάντα"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Σαουδική Αραβία"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Νήσοι Σολομώντος"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Σεϋχέλλες"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Σουδάν"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Σουηδία"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Σιγκαπούρη"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Νήσος Αγίας Ελένης"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Σλοβενία"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Σβάλμπαρντ και Γιαν Μάγεν"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Σλοβακία"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Σιέρρα Λεόνε"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "Άγιος Μαρίνος"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Σενεγάλη"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Σομαλία"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Σουρινάμ"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Σάο Τόμε και Πρίντσιπε"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "Ελ Σαλβαδόρ"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Συρία"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Σουαζιλάνδη"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Νήσοι Turks και Caicos"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Τσαντ"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Νότια Γαλλικά Εδάφη"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Τόγκο"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Ταϊλάνδη"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Τατζικιστάν"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Τοκελάου"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Τουρκμενιστάν"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Τυνησία"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Τόγκα"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Ανατολικό Τιμόρ"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Τουρκία"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Τρινιντάντ και Τομπάγκο"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Τουβαλού"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Ταϊλάνδη"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Τανζανία"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ουκρανία"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Ουγκάντα"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Μικρά απομονωμένα νησιά Ηνωμένων Πολιτειών"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Ηνωμένες Πολιτείες της Αμερικής"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Ουρουγουάη"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Ουζμπεκιστάν"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Αγία Θέση (Πόλη Κράτος Βατικανού)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Άγιος Βικέντιος και Γρεναδίνες"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Βενεζουέλα"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Βρετανικά Παρθένα Νησιά"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Παρθένες Νήσοι, Η.Π.Α."
+
+#
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Βιετνάμ"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Βανουάτου"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Γουόλις και Φουτούνα"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Σαμόα"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Υεμένη"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Μαγιοτ"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Νότια Αφρική"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Ζάμπια"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Ζιμπάμπουε"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Άγνωστη γλώσσα: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abkhazian"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achinese"
+
+#  power saving scheme name, combo box and default contents of text entry
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adyghe"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Αφρο-Ασιατικά (Άλλο)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Αφριχίλι"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikaans"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Ιαπωνικά (Ainu)"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Akan"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Akkadian"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Αλβανικά"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aleut"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Γλώσσες Algonquian"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Southern Altai"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amharic"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Αγγλικά, Παλαιά (450-110 μ.Χ.)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Γλώσσες Απάτσι"
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Αραβικά"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Αραμαϊκά"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonese"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Αρμενικά"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Araucanian"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Αραπάχο"
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Τεχνητή (Άλλο)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Assamese"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Asturian"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Γλώσσες Athapascan"
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Αυστραλιανές Γλώσσες"
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Avaric"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Avestan"
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Awadhi"
+
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Aymara"
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Αζερμπαϊτζανικά"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Γλώσσες Bamileke"
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bashkir"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Baluchi"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Bambara"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinese"
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Βάσκικα"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Βαλτικά (Άλλο)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Beja"
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Λευκορωσικά"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Bemba"
+
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengali"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Berber (Other)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Bhojpuri"
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Bihari"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikol"
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Bini"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (Άλλη)"
+
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Βοσνιακά"
+
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Braj"
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Breton"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonesia)"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriat"
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Buginese"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Βουλγαρικά"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Burmese"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Caddo"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Ινδιανικά Κεντρικής Αμερικής (Άλλο)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "Διάλεκτος Καραϊβικής"
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "Καταλονικά"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "Καυκάσια (Άλλο)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "Cebuano"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Κέλτικα (Άλλο)"
+
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "Chamorro"
+
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "Chibcha"
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Τσετσενικά"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
+
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Κινεζικά"
+
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukese"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "Λεξικό Chinook"
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "Choctaw"
+
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee"
+
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Church Slavic"
+
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Chuvash"
+
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne"
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Χαμικές Γλώσσες"
+
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "Κοπτικά"
+
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "Cornish"
+
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "Κορσικά"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr "Creoles and Pidgins, Βασισμένες στα Αγγλικά (Άλλο)"
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr "Creoles and Pidgins, Βασισμένες στα Γαλλικά (Άλλο)"
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr "Creoles and Pidgins, Βασισμένες στα Πορτογαλλικά (Άλλο)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
+
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "Crimean Tatar"
+
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Creoles και Pidgins (Other)"
+
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kashubian"
+
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr "Cushitic (Other)"
+
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "Τσέχικα"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "Dakota"
+
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Δανέζικα"
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fijian"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr "Dargwa"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Το αρχείο %1%\n"
-"  από την εγκατάσταση του\n"
-"     %2%\n"
-"  συγκρούεται με το αρχείο\n"
-"     %3%\n"
-"  από την εγκατάσταση του\n"
-"     %4%"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr "Dayak"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Το αρχείο %1%\n"
-"  από την εγκατάσταση του\n"
-"     %2%\n"
-"  συγκρούεται με το αρχείο\n"
-"     %3%\n"
-"  από το πακέτο\n"
-"     %4%"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "Delaware"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Το αρχείο %1%\n"
-"  από την εγκατάσταση του\n"
-"     %2%\n"
-"  συγκρούεται με το αρχείο από την εγκατάσταση του\n"
-"     %3%"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slave (Athapascan)"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Το αρχείο %1%\n"
-"  από την εγκατάσταση του\n"
-"     %2%\n"
-"  συγκρούεται με το αρχείο από το πακέτο\n"
-"     %3%"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Το αρχείο %1%\n"
-"  από το πακέτο\n"
-"     %2%\n"
-"  συγκρούεται με το αρχείο\n"
-"     %3%\n"
-"  από την εγκατάσταση του\n"
-"     %4%"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "Dinka"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Το αρχείο %1%\n"
-"  από το πακέτο\n"
-"     %2%\n"
-"  συγκρούεται με το αρχείο\n"
-"     %3%\n"
-"  από το πακέτο\n"
-"     %4%"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "Divehi"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Το αρχείο %1%\n"
-"  από το πακέτο\n"
-"     %2%\n"
-"  συγκρούεται με το αρχείο από την εγκατάσταση του\n"
-"     %3%"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "Dogri"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Το αρχείο %1%\n"
-"  από το πακέτο\n"
-"     %2%\n"
-"  συγκρούεται με το αρχείο από το πακέτο\n"
-"     %3%"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "Dravidian (Other)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Lower Sorbian"
+
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "Duala"
+
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Ολλανδικά, Μεσαίωνα (1050-1350 μ.Χ.)"
+
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Ολλανδικά"
+
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
+msgstr "Dyula"
+
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "Dzongkha"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "Efik"
+
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "Αιγυπτιακά (Αρχαία)"
+
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "Ekajuk"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Elamite"
+
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Αγγλικά"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Αγγλικά, Μεσαίωνα (1100-1500 μ.Χ.)"
+
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Εσπεράντο"
+
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Εσθονικά"
+
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Ewe"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Το αρχείο '%s' δεν βρέθηκε στο μέσο '%s'"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Ewondo"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "Το αρχείο δεν υπάρχει ή η υπογραφή δεν μπορεί να ελεχθεί"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "Fang"
+
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Faroese"
+
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Fijian"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Φινλανδία"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1650,40 +2566,16 @@ msgstr "Φινλανδικά"
 msgid "Finno-Ugrian (Other)"
 msgstr "Φινο-Ουγγρικά (Άλλο)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Οι ακόλουθες ενέργειες θα γίνουν:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Γαλλία"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Γαλλικά"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Γαλλική Γουιάνα"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Γαλλική Πολυνησία"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Νότια Γαλλικά Εδάφη"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1699,46 +2591,21 @@ msgstr "Γαλλικά, Παλαιά (842-1400 μ.Χ.)"
 msgid "Frisian"
 msgstr "Frisian"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friulian"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fulah"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friulian"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Γκαμπόν"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaelic"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galician"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Γκάμπια"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Γκάνα"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1749,15 +2616,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Geez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Γεωργία"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Γερμανικά (Άλλο)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1769,6 +2631,37 @@ msgstr "Γεωργιανά"
 msgid "German"
 msgstr "Γερμανικά"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Geez"
+
+#
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertese"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaelic"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Ιρλανδικά"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galician"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1779,31 +2672,6 @@ msgstr "Γερμανικά, Ύστερος Μεσαίωνας (1050-1500 μ.Χ.)
 msgid "German, Old High (ca.750-1050)"
 msgstr "Γερμανικά, Ύστερα Παλαιά (750-1050 μ.Χ.)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Γερμανικά (Άλλο)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Γερμανία"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Γκάνα"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Γιβραλτάρ"
-
-#
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertese"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1824,11 +2692,6 @@ msgstr "Gothic"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Ελλάδα"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1839,61 +2702,16 @@ msgstr "Ελληνικά, Αρχαία (μέχρι 1453 μ.Χ.)"
 msgid "Greek, Modern (1453-)"
 msgstr "Ελληνικά, Σύγχρονα (1453 μ.Χ. - )"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Γροιλανδία"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Γρανάδα"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Γουαδελούπη"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Γκουάμ"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Γουατεμάλα"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Γουϊνέα"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Γουϊνέα-Μπισάου"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Γουιάνα"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1904,52 +2722,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Αϊτή"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitian"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Εξαίρεση Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "Το HalContext δεν είναι συνδεμένο"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "Το HalDrive δεν είναι αρχικοποιημένο"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "Το HalVolume δεν είναι αρχικοποιημένο"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Έχετε ενεργοποιήσει όλα τα απαιτούμενα αποθετήρια;"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaiian"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Νησί Heard και Νησιά McDonald"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1968,22 +2755,12 @@ msgstr "Hiligaynon"
 #. language code: him
 #: zypp/LanguageCode.cc:525
 msgid "Himachali"
-msgstr "Himachali"
-
-#. language code: hin hi
-#: zypp/LanguageCode.cc:527
-msgid "Hindi"
-msgstr "Hindi"
-
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
+msgstr "Himachali"
 
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Ιστορικό:"
+#. language code: hin hi
+#: zypp/LanguageCode.cc:527
+msgid "Hindi"
+msgstr "Hindi"
 
 #. language code: hit
 #: zypp/LanguageCode.cc:529
@@ -1995,31 +2772,21 @@ msgstr "Hittite"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Αγία Θέση (Πόλη Κράτος Βατικανού)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Ονδούρας"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Χονγκ Κονγκ "
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Upper Sorbian"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Ουγγρικά"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Ουγγαρία"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2030,10 +2797,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Ισλανδία"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2045,250 +2812,105 @@ msgstr "Ισλανδικά"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Inari Sami"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Ινδία"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (International Auxiliary Language Association)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Ινδικά (Άλλο)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Ινδεο-Ευρωπαϊκά (Άλλο)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Ινδονησία"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Ινδονησιακά"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Ινδεο-Ευρωπαϊκά (Άλλο)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Ingush"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Η εγκατάσταση ακυρώθηκε όπως επιλέχθηκε."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (International Auxiliary Language Association)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Inupiaq"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Λανθασμένο %s συστατικό"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Λανθασμένο %s συστατικό '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Λανθασμένη παράμετρος αναζήτησης LDAP URL '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Λανθασμένη σειρά αναζήτησης LDAP URL"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Λανθασμένο σχήμα Url '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Λανθασμένη αναφορά αντικειμένου κενού Url"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Λανθασμένο συστατικό διακομιστή '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Λανθασμένος διαχωριστικός χαρακτήρας ένωσης σειράς"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Λανθασμένος διαχωριστικός χαρακτήρας διαχωρισμού παραμέτρου σειράς"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Λανθασμένος διαχωριστικός χαρακτήρας διαχωρισμού παραμέτρου χάρτη"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Λανθασμένο συστατικό θύρας '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Μη  έγκυρη κανονική έκφραση '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Μή έγκυρη κανονική έκφραση '%s': η εντολή regcomp επέστρεψε %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Μη έγκυρο όνομα αποθετηρίου αρχείου στο '%s'"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Ιράν"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Ιρανικά (Άλλο)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Ιράκ"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Ιρλανδία"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Ιρλανδικά"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Ιρλανδικά, Μεσαίωνα (900-1200 μ.Χ.)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Ιρλανδικά, Παλαιά (μέχρι 900 μ.Χ.)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Γλώσσες Iroquoian"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Isle of  Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Ισραήλ"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Ιταλικά"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Ιταλία"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Τζαμάικα"
-
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Ιαπωνία"
-
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
-msgstr "Ιαπωνικά"
-
 #. language code: jav jv
 #: zypp/LanguageCode.cc:579
 msgid "Javanese"
 msgstr "Javanese"
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Ιορδανία"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
-msgstr "Î\99οÏ\85δαιο-Î\91Ï\81αβικά"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
+msgstr "Î\99αÏ\80Ï\89νικά"
 
 #. language code: jpr
 #: zypp/LanguageCode.cc:585
 msgid "Judeo-Persian"
 msgstr "Ιουδαιο-Περσικά"
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardian"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
+msgstr "Ιουδαιο-Αραβικά"
+
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2305,11 +2927,6 @@ msgstr "Kachin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmyk"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2320,21 +2937,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karachay-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2345,10 +2947,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kashmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kashubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2360,31 +2962,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Kazakh"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Καζακστάν"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Κένυα"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardian"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Khoisan (Other)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2395,11 +2992,6 @@ msgstr "Khotanese"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2410,15 +3002,15 @@ msgstr "Kinyarwanda"
 msgid "Kirghiz"
 msgstr "Kirghiz"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Κιριμπάτι"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2430,11 +3022,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2450,11 +3037,21 @@ msgstr "Kosraean"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karachay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2470,26 +3067,11 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Κουρδικά"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Κουβέιτ"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Κιργιστάν"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2510,68 +3092,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Λαική Δημοκρατία του Λάος"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Λατινικά"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Λετονία"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Λεττονικά"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Λίβανος"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Λεσότο"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Επίπεδο 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Επίπεδο 2 "
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Επίπεδο 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezghian"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Λιβερία"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Λιβύη"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Λίχτενσταϊν"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2582,61 +3117,46 @@ msgstr "Limburgan"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Λιθουανία"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Λιθουανικά"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Η τοποθεσία '%s' δεν είναι προσωρινά προσβάσιμη."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Low German"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Lower Sorbian"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxembourgish"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Γκάνα"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lule Sami"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2652,35 +3172,11 @@ msgstr "Luo (Kenya and Tanzania)"
 msgid "Lushai"
 msgstr "Λουσάι"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Λουξεμβούργο"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxembourgish"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Μακάο"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Π.Γ.Δ.Μ."
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Σκοπιανικά"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Μαδαγασκάρη"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2691,6 +3187,11 @@ msgstr "Madurese"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshallese"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2701,178 +3202,60 @@ msgstr "Maithili"
 msgid "Makasar"
 msgstr "Makasar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malagasy"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Μαλάουϊ"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malay"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malayalam"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Μαλαισία"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Μαλβίδες"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Κακά-διατυπωμένο URI"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Μάλι"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Μάλτα"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltese"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchu"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Γλώσσες Manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronesian (Άλλες)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Νήσοι Μάρσαλ"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshallese"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Μαρτινίκα"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Μαυριτανία"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Μαυρίτιος"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Γλώσσες Μάγια"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Μαγιοτ"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "Η πηγή του πολυμέσου '%s' δεν περιέχει το επιθυμητό μέσο."
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Το μέσο '%s' χρησιμοποιείτε από άλλο στιγμιότυπο"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malay"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Μέσο όχι συνδεδεμένο"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Το μέσο δεν ανοίχτηκε κατά την προσπάθεια εκτέλεσης της δράσης '%s'."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Μητροπολιτική Γαλλία"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Μεξικό"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Ιρλανδικά, Μεσαίωνα (900-1200 μ.Χ.)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2884,86 +3267,61 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandese"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Διάφορες Γλώσσες"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Khmer (Other)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malagasy"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltese"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manchu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Γλώσσες Manobo"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Μολδαβικά"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Μολδαβία"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Khmer (Other)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Μονακό"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Μογγολία"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Μογγολικά"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro "
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Μονσεράτ"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Μαρόκο"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Μοζαμβίκη"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2974,210 +3332,141 @@ msgstr "Πολλαπλές Γλώσσες"
 msgid "Munda languages"
 msgstr "Γλώσσες Munda"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Μιανμάρ"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandese"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Γλώσσες Μάγια"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Î\9dαμίμÏ\80ια"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Î\99νδιανικά Î\92Ï\8cÏ\81ειαÏ\82 Î\91μεÏ\81ικήÏ\82"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Neapolitan"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Ναβαχό"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele, North"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele, South"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele, North"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Neapolitan"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Νεπάλ"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepal Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Low German"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepali"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Ολλανδία"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Ολλανδικές Αντίλλες"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Νέα Καληδονία"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Νέα Ζηλανδία"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Νέο μήνυμα αναβάθμισης"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepal Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Νικαράγουα"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Νίγηρας"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Niger-Kordofanian (Other)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Νιγηρία"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-Saharan (Other)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Βράχος Πολυνησίας"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niuean"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Όχι Κώδικας"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Norwegian Nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Δεν υπάρχει το URL στο αποθετήριο."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Norwegian Bokmal"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Νήσοι Νόρφολκ"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Νορβηγικά, Παλαιά"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Ινδιανικά Βόρειας Αμερικής"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Βόρεια Κορέα"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Νήσοι Βορείων Μαριάννων"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Northern Sami"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Northern Sotho"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Νορβηγία"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Νορβηγικά"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Norwegian Bokmal"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Norwegian Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Όχι οδηγός CDROM"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Northern Sotho"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Γλώσσες Nubia"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Classical Newari"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3198,10 +3487,6 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Απαρχαιώνει"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3212,20 +3497,6 @@ msgstr "Occitan (post 1500)"
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Ομάν"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Μία ή και οι δύο ιδιότητες των '%s' ή '%s' χρειάζονται."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Η λειτουργία δεν υποστηρίζεται από το μέσο"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3246,65 +3517,35 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Ossetian"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Τουρκικά, Οθωμανικής Περιόδου (1500-1928 μ.Χ.)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Γλώσσες Otomian"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Το πακέτο %s φαίνεται πως καταστράφηκε κατά την μεταφορά. Θέλετε να "
-"ξαναδοκιμάσετε ανάκτηση;"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Παπουανά (Άλλα)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinan"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Πακιστάν"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Νήσοι Παλάου"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauan"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Παλαιστινιακά Εδάφη"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
 #. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "Pampanga"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Παναμάς"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinan"
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "Pampanga"
 
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
@@ -3316,94 +3557,45 @@ msgstr "Panjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Παπούα Νέα Γουϊνέα"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Παπουανά (Άλλα)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Παραγουάη"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Η διαδρομή '%s' στο μέσο '%s' δεν είναι κατάλογος."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Η διαδρομή '%s' στο μέσο '%s' δεν είναι αρχείο."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Η άδεια για πρόσβαση στο '%s' απαγορεύτηκε."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Περσικά"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauan"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Περσικά, Παλαιά (400 π.Χ - 600 μ.Χ.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Περού"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Περσικά"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Φιλιππινιακά"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Φιλιππίνες"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Φοινικικά"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Νήσοι Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Παρακαλώ εγκαταστήστε πρώτα το πακέτο 'lsof'."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeian"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Πολωνία"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Πολωνικά"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Πορτογαλία"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeian"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3415,89 +3607,21 @@ msgstr "Πορτογαλική γλώσσα"
 msgid "Prakrit Languages"
 msgstr "Γλώσσες Prakit"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Προαπαιτεί"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Προσδιορισμός προβλήματος, που σημαίνει πως η τεχνική υποστήριξη είναι "
-"σχεδιασμένη για να παρέχει πληροφορίες συμβατότητας, βοήθεια εγκατάστασης, "
-"υποστήριξη χρήσης, συνεχόμενη συντήρηση και βασική λύση προβλημάτων. Η "
-"υποστήριξη επιπέδου 1 δεν προορίζεται για να διορθώνει σφάλματα "
-"ελαττωματικών προϊόντων."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Απόμονωση προβλήματος, που σημαίνει πως η τεχνική υποστήριξη είναι "
-"σχεδιασμένη για να αναπαράγει τα προβλήματα των πελατών, να απομονώνει την "
-"περιοχή του προβλήματος και να παρέχει λύση για προβλήματα που δεν λύνονται "
-"με την υποστήριξη Επιπέδου 1. "
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Επίλυση προβλήματος, που σημαίνει ότι η τεχνική υποστήριξη είναι σχεδιασμένη "
-"για να επιλύει πολύπλοκα προβλήματα χρησιμοποιώντας μηχανική στην επίλυση "
-"σφαλμάτων υλικού που έχουν επιβεβαιωθεί από την υποστήριξη Επιπέδου 2."
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Provencal, Old (to 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Παρέχει"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Πουέρτο Ρίκο"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pushto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Κατάρ"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Η ανάλυση γραμμής αναζήτησης δεν υποστηρίζεται από αυτό το URL"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "Το RPM απέτυχε:"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Raeto-Romance"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3513,134 +3637,35 @@ msgstr "Rapanui"
 msgid "Rarotongan"
 msgstr "Rarotongan"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Συνιστά"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Σχετική διαδρομή δεν επιτρέπεται εαν υπάρχει αρχή"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Απομάκρυνση αποθετηρίου '%s'"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Το alias του αποθετηρίου δεν μπορεί να ξεκινά από τελεία."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Το απαιτούμενο χαρακτηριστικό '%s' λείπει."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Απαιτεί"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Νήσος Ρεουνιόν"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Romance (Other)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Ρουμανία"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Ρουμανικά"
-
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "Romany"
-
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundi"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Ρωσικά"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Ρωσική Ομοσπονδία"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ρουάντα"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Νήσος Αγίας Ελένης"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Άγιος Χριστόφορος και Χιονία"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Αγία Λουκία"
-
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Άγιος Μαρίνος"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Άγιος Πέτρος και Μιχαήλ"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Άγιος Βικέντιος και Γρεναδίνες"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Γλώσσες Salishan"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Αραμαϊκά Σαμαριτικά"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Γλώσσες Σαμι(Άλλες)"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Raeto-Romance"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Σαμόα"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "Romany"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoan"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Ρουμανικά"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "Άγιος Μαρίνος"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundi"
+
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Ρωσικά"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3652,41 +3677,61 @@ msgstr "Sandawe"
 msgid "Sango"
 msgstr "Sango"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Yakut"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Νότια Αμερικάνικα Ινδιάνικα (Άλλα)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Γλώσσες Salishan"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Αραμαϊκά Σαμαριτικά"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskrit"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Σάο Τόμε και Πρίντσιπε"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardinian"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbian"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Σαουδική Αραβία"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Sicilian"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Scots"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Κροατικά"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3697,142 +3742,40 @@ msgstr "Selkup"
 msgid "Semitic (Other)"
 msgstr "Σημιτική (Άλλη)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Σενεγάλη"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Σερβία"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbian"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Το ψευδώνυμο της υπηρεσίας δεν μπορεί να ξεκινά με τελεία."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "Το πρόσθετο της υπηρεσίας σεν υποστηρίζει την αλλαγή μιας ιδιότητας."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Ιρλανδικά, Παλαιά (μέχρι 900 μ.Χ.)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "ΣεÏ\8bÏ\87έλλες"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Î\9dοημαÏ\84ικέÏ\82 Î\93λÏ\8eÏ\83Ï\83ες"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Shan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Sicilian"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Σιέρρα Λεόνε"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Νοηματικές Γλώσσες"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "Η υπογραφή δεν μπορεί να επαληθευτεί"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Το αρχείο υπογραφής %s δε βρέθηκε"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "Η υπογραφή είναι ΟΚ"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "Η υπογραφή είναι ΟΚ, αλλά το κλειδί δεν είναι έμπιστο"
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "Απέτυχε η επαλήθευση της υπογραφής"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "Η υπογραφές του δημόσιου κλειδιού δεν είναι διαθέσιμες"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Σιγκαπούρη"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Sinhala"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-Tibetan (Other)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Γλώσσες Siouan"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Skolt Sami"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-Tibetan (Other)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3844,213 +3787,141 @@ msgstr "Σλαβικά (Άλλο)"
 msgid "Slovak"
 msgstr "Σλοβακικά"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Σλοβακία"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Σλοβένικα"
+
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Southern Sami"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Northern Sami"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Γλώσσες Σαμι(Άλλες)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lule Sami"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Inari Sami"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoan"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Skolt Sami"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Σλοβενία"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Σλοβένικα"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "Sogdian"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Νήσοι Σολομώντος"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Somali"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Σομαλία"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "Songhai"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Γλώσσες Sorbian"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-"Συγγνώμη, αλλά αυτή η έκδοση του libzypp χτίστηκε χωρίς υποστήριξη HAL."
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Sotho, Southern"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Νότια Αφρική"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Νότια Αμερικάνικα Ινδιάνικα (Άλλα)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Νότια Γεωργία και Νότια Νησιά Σάντουιτς"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Νότια Κορέα"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Southern Altai"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Southern Sami"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Ισπανία"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Ισπανικά"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Σρι Λάνκα"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardinian"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Σουδάν"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Προτείνει"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-Saharan (Other)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Σουμεριακά"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Σουδανικά"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Συμπληρώνει"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Σουρινάμ"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "ΣβάλμÏ\80αÏ\81νÏ\84 ÎºÎ±Î¹ Î\93ιαν Î\9cάγεν"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "ΣοÏ\85μεÏ\81ιακά"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Σουαχίλι"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Σουαζιλάνδη"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Σουηδία"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Σουηδικά"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Ελβετία"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Συρία"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Συριακά"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Εξαίρεση '%s' συστήματος στο μέσο '%s'."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Η διαχείριση συστήματος έχει κλειδωθεί από την εφαρμογή με pid %d (%s).\n"
-"Κλείστε την εφαρμογή πριν ξαναπροσπαθήσετε"
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4061,36 +3932,11 @@ msgstr "Tahitian"
 msgid "Tai (Other)"
 msgstr "Tai (Άλλα)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Ταϊλάνδη"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tajik"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Τατζικιστάν"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamashek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Τανζανία"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4101,6 +3947,11 @@ msgstr "Tatar"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4111,33 +3962,21 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tajik"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Ταϊλανδέζικα"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Ταϊλάνδη"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Το επίπεδο υποστήριξης είναι απροσδιόριστο"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Ο κατασκευαστής δεν παρέχει υποστήριξη."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Αυτή η ενέργεια εκτελείται ήδη από άλλο πρόγραμμα."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Το αίτημα αυτό θα σπάσει το σύστημα σας!"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4149,50 +3988,29 @@ msgid "Tigre"
 msgstr "Tigre"
 
 #. language code: tir ti
-#: zypp/LanguageCode.cc:1041
-msgid "Tigrinya"
-msgstr "Tigrinya"
-
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Το χρονικό όριο εξαντλήθηκε όταν έγινε πρόσβαση '%s'."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
+#: zypp/LanguageCode.cc:1041
+msgid "Tigrinya"
+msgstr "Tigrinya"
 
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Τόγκο"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Τοκελάου"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Τόγκα"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4204,722 +4022,982 @@ msgstr "Tonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Νήσοι Tonga)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Προσπάθεια εισαγωγής μη υπάρχοντος κλειδιού %s στην κλειδοθήκη %s"
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Τρινιντάντ και Τομπάγκο"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimshian"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmen"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Τυνησία"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Γλώσσες Τουπι"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Τουρκία"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Τούρκικα"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Τουρκικά, Οθωμανικής Περιόδου (1500-1928 μ.Χ.)"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaic (Other)"
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkmen"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Τουρκμενιστάν"
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "Tuvinian"
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Νήσοι Turks και Caicos"
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "Udmurt"
+
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "Ugaritic"
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "Uighur"
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "Ουκρανικά"
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "Umbundu"
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Απροσδιόριστο"
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Urdu"
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Uzbek"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vai"
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Venda"
+
+#
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Βιετναμικά"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Volapuk"
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Votic"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "Γλώσσες Γουακασάν"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Walamo"
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Waray"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Washo"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Welsh"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Γλώσσες Sorbian"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Walloon"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolof"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmyk"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhosa"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yao"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yapese"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Yiddish"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Yoruba"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Γλώσσες Εσκιμώων"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapotec"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Τουβαλού"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Ζουλού"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "Tuvinian"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Προσπάθεια εισαγωγής μη υπάρχοντος κλειδιού %s στην κλειδοθήκη %s"
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "Udmurt"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Αποτυχία της διαγραφής κλειδιού."
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Î\9fÏ\85γκάνÏ\84α"
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Το Î±Ï\81Ï\87είο Ï\85Ï\80ογÏ\81αÏ\86ήÏ\82 %s Î´Îµ Î²Ï\81έθηκε"
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "Ugaritic"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Αδυναμία παροχής αρχείου '%s' από το αποθετήριο '%s'"
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "Uighur"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Δεν υπάρχει το URL στο αποθετήριο."
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ουκρανία"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "Το πρόσθετο της υπηρεσίας σεν υποστηρίζει την αλλαγή μιας ιδιότητας."
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "Ουκρανικά"
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Το πακέτο %s φαίνεται πως καταστράφηκε κατά την μεταφορά. Θέλετε να "
+"ξαναδοκιμάσετε ανάκτηση;"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "Umbundu"
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "Απέτυχε η επαλήθευση της υπογραφής"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Αδυναμία κλωνοποίησης αντικειμένου Url"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Αποτυχία παροχής Πακέτου %s. Θέλετε να ξαναδοκιμάσετε ανάκτηση;"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Î\91δÏ\85ναμία Î´Î·Î¼Î¹Î¿Ï\85Ï\81γίαÏ\82 Ï\83Ï\8dνδεÏ\83ηÏ\82 dbus"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "Î\88λεγÏ\87οÏ\82 applydeltarpm Î±Ï\80έÏ\84Ï\85Ï\87ε."
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm απέτυχε."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
-"Αδυναμία αρχικοποίησης περιεχομένου HAL -- ο δαίμονας hald δεν εκτελείται;"
+"Η διαχείριση συστήματος έχει κλειδωθεί από την εφαρμογή με pid %d (%s).\n"
+"Κλείστε την εφαρμογή πριν ξαναπροσπαθήσετε"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Αδυναμία ανάλυσης συστατικών Url"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s δεν ανήκει σε αποθετήριο αναβάθμισης της διανομής  "
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Î\91Ï\80Ï\81οÏ\83διÏ\8cÏ\81ιÏ\83Ï\84ο"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "Το %s Î­Ï\87ει Ï\85Ï\80οδαιέÏ\83Ï\84εÏ\81η Î±Ï\81Ï\87ιÏ\84εκÏ\84ονική"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Τύπος αδιαχείριστου αποθετηρίου"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "πρόβλημα με τα εγκατεστημένα πακέτα %s"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Ηνωμένα Αραβικά Εμιράτα"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "συγκρουόμενες αιτήσεις"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Ηνωμένο Βασίλειο"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "κάποιο πρόβλημα εξαρτήσεων"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Ηνωμένες Πολιτείες της Αμερικής"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "τίποτα δεν παρέχει το ζητούμενο %s"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Μικρά απομονωμένα νησιά Ηνωμένων Πολιτειών"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Έχετε ενεργοποιήσει όλα τα απαιτούμενα αποθετήρια;"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Άγνωστη χώρα: "
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "το πακέτο %s δεν υπάρχει"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "μη υποστηριζόμενο αίτημα"
+
+#: zypp/solver/detail/SATResolver.cc:1003
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Î\86γνÏ\89Ï\83Ï\84ο Ï\83Ï\86άλμα Î´Î¹Î±Î²Î¬Î¶ÎµÏ\84ε Î±Ï\80Ï\8c '%s'"
+msgid "%s is provided by the system and cannot be erased"
+msgstr "Το %s Ï\80αÏ\81έÏ\87εÏ\84αι Î±Ï\80Ï\8c Ï\84ο Ï\83Ï\8dÏ\83Ï\84ημα ÎºÎ±Î¹ ÎµÎ¯Î½Î±Î¹ Î±Î´Ï\8dναÏ\84ο Î½Î± Î´Î¹Î±Î³Ï\81αÏ\86εί"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Άγνωστη γλώσσα: "
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s είναι μη εγκαταστάσιμο"
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/solver/detail/SATResolver.cc:1012
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Άγνωστη λειτουργία ταιριάσματος  '%s'"
+msgid "nothing provides %s needed by %s"
+msgstr "τίποτα δεν παρέχει το %s που χρειάζεται από το %s"
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/solver/detail/SATResolver.cc:1017
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Î\86γνÏ\89Ï\83Ï\84η Î»ÎµÎ¹Ï\84οÏ\85Ï\81γία Ï\84αιÏ\81ιάÏ\83μαÏ\84οÏ\82 '%s' Î³Î¹Î± Ï\84ο Î¼Î¿Ï\84ίβο '%s'"
+msgid "cannot install both %s and %s"
+msgstr "αδÏ\85ναμία ÎµÎ³ÎºÎ±Ï\84άÏ\83Ï\84αÏ\83ηÏ\82 %s ÎºÎ±Î¹ %s"
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-"Άγνωστη υπηρεσία '%1%': Αφαίρεση του ορφανού αποθετηρίου υπηρεσιών '%2%'"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "το %s συγκρούεται με %s που παρέχεται από το %s"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Άγνωστη επιλογή υποστήριξης.Δεν υπάρχει διαθέσιμη περιγραφή"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "Το %s απαρχαιώνει το %s που παρέχεται από το %s"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Άγνωστος τύπος υπογραφής"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "το %s πεπαλαιώνει %s που παρέχεται από %s"
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/solver/detail/SATResolver.cc:1036
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Μη υποστηριζόμενη μέθοδος πιστοποίησης HTTP '%s'"
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "το επιλύσιμο %s συγκρούεται με %s που παρέχεται από τον εαυτό του"
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:1068
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Μη υποστηριζόμενο URl σχήμα στο '%s'."
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s απαιτεί %s, αλλά αυτή η απαίτηση δεν μπορεί να δοθεί"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Upper Sorbian"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "διαγραμμένοι πάροχοι: "
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Urdu"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"μη εγκαταστήσιμοι πάροχοι:"
 
-#: zypp/url/UrlBase.cc:154
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "Μη εγκαταστήσιμοι πάροχοι:"
+
+#: zypp/solver/detail/SATResolver.cc:1141
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Το Url Ï\83Ï\87ήμα Î´ÎµÎ½ ÎµÏ\80ιÏ\84Ï\81έÏ\80ει Î­Î½Î± %s"
+msgid "remove lock to allow removal of %s"
+msgstr "αÏ\86αίÏ\81εÏ\83η ÎºÎ»ÎµÎ¹Î´Ï\8eμαÏ\84οÏ\82 Î³Î¹Î± Î½Î± ÎµÏ\80ιÏ\84Ï\81αÏ\80εί Î· Î±Ï\86αίÏ\81εÏ\83η Ï\84οÏ\85 %s"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Το σχήμα Url δεν επιτρέπει ένα συστατικό διακομιστή"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "να μην εγκατασταθεί το %s"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Το σχήμα Url δεν επιτρέπει συνθηματικό"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "κράτα το %s"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Το σχήμα Url δεν σας επιτρέπει μια θύρα"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "αφαίρεση κλειδώματος για να επιτραπεί η εγκατάσταση του %s"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Το σχήμα Url δεν επιτρέπει όνομα χρήστη"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Το αίτημα αυτό θα σπάσει το σύστημα σας!"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Το σχήμα Url είναι ένα απαιτούμενο συστατικό"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "Αγνοήστε την προειδοποίηση του σπασμένου συστήματος"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Το σχήμα Url απαιτεί ένα συστατικό διακομιστή"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "να μην ζητηθεί η εγκατάσταση όλων των επιλύσιμων παρέχοντας %s"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Το σχήμα Url απαιτεί όνομα διαδρομής"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "να μην ζητηθεί η διαγραφή όλων των επιλύσιμων παρέχοντας %s"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Î\9fÏ\85Ï\81οÏ\85γοÏ\85άη"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "να Î¼Î·Î½ ÎµÎ³ÎºÎ±Ï\84αÏ\83Ï\84αθεί Î· Î½ÎµÏ\8cÏ\84εÏ\81η Î­ÎºÎ´Î¿Ï\83η Ï\84οÏ\85 %s"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "διατήρηση του %s παρόλη την υποδεέστερη αρχιτεκτονική"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Î\9fÏ\85ζμÏ\80εκιÏ\83Ï\84άν"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "Î\95γκαÏ\84άÏ\83Ï\84αÏ\83η %s Ï\80αÏ\81Ï\8cλο Ï\80οÏ\85 Î¸Î± Î±Î»Î»Î¬Î¾ÎµÎ¹ Ï\84ην Î±Ï\81Ï\87ιÏ\84εκÏ\84ονική"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vai"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "διατήρηση πεπαλαιώμενου %s"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "Δεν βρέθηκαν έγκυρα μεταδεδομένα στην καθορισμένη URL"
-msgstr[1] "Δεν βρέθηκαν έγκυρα μεταδεδομένα στις καθορισμένες URLs"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "εγκαταστήσετε %s από το εξαιρετέο αποθετήριο"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Βανουάτου"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "υποβάθμιση του %s από %s"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Venda"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "αλλαγή αρχιτεκτονικής από %s σε %s"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Βενεζουέλα"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"εγκατάσταση %s (με αλλαγή προμηθευτή)\n"
+"  %s --> %s"
 
-#
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Βιετνάμ"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "αντικατάσταση του %s με το %s"
 
-#
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Βιετναμικά"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Επανεγκατάσταση του %s"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Παρθένες Νήσοι, Η.Π.Α."
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "σπάσιμο %s λόγω αγνόησης μερικών εξαρτήσεων του."
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Επισκεπτείται  το Κέντρο Πελατών της Novell για να ελέγξετε έαν η εγγραφής "
-"είναι έγκυρη και δεν έχει λήξει."
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "γενικά αγνόηση μερικών εξαρτήσεων"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Volapuk"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "Το απαιτούμενο χαρακτηριστικό '%s' λείπει."
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Votic"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Μία ή και οι δύο ιδιότητες των '%s' ή '%s' χρειάζονται."
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "Î\93λÏ\8eÏ\83Ï\83εÏ\82 Î\93οÏ\85ακαÏ\83άν"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Î\91δÏ\85ναμία Î±Î½Î¿Î¯Î³Î¼Î±Ï\84οÏ\82 Î±Ï\81Ï\87είοÏ\85 ÎºÎ»ÎµÎ¹Î´Ï\8eμαÏ\84οÏ\82: %s"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Walamo"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Αυτή η ενέργεια εκτελείται ήδη από άλλο πρόγραμμα."
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Î\93οÏ\85Ï\8cλιÏ\82 ÎºÎ±Î¹ Î¦Î¿Ï\85Ï\84οÏ\8dνα"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Î\99Ï\83Ï\84οÏ\81ικÏ\8c:"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Walloon"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Άγνωστη λειτουργία ταιριάσματος  '%s'"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Waray"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Άγνωστη λειτουργία ταιριάσματος '%s' για το μοτίβο '%s'"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Washo"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Μή έγκυρη κανονική έκφραση '%s': η εντολή regcomp επέστρεψε %d"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Welsh"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Μη  έγκυρη κανονική έκφραση '%s'"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Δυτική Σαχάρα"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Παρακαλώ εγκαταστήστε πρώτα το πακέτο 'lsof'."
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolof"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Απαιτείται πιστοποίηση για '%s'"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhosa"
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Αδυναμία προσάρτησης %s στο %s"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Yakut"
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Αποτυχία από-προσάρτησης %s"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yao"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Εσφαλμένο όνομα αρχείου: %s"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Yapese"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Το μέσο δεν ανοίχτηκε κατά την προσπάθεια εκτέλεσης της δράσης '%s'."
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Υεμένη"
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "Το Î±Ï\81Ï\87είο '%s' Î´ÎµÎ½ Î²Ï\81έθηκε Ï\83Ï\84ο Î¼Î­Ï\83ο '%s'"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Yiddish"
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Αδυναμία εγγραφής αρχείο '%s'."
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Yoruba"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Μέσο όχι συνδεδεμένο"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Γλώσσες Εσκιμώων"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Εσφαλμένο σημείο σύνδεσης μέσου"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Ζάμπια"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Η αρχικοποίηση λήψης (curl) απέτυχε για '%s'"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr "Εξαίρεση '%s' συστήματος στο μέσο '%s'."
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapotec"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Η διαδρομή '%s' στο μέσο '%s' δεν είναι αρχείο."
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Η διαδρομή '%s' στο μέσο '%s' δεν είναι κατάλογος."
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Κακά-διατυπωμένο URI"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Ζιμπάμπουε"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Κενό όνομα φιλοξενιας στην  URI"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Ζουλού"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Κενό σύστημα αρχείων στην URI"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Κενός προορισμός στην URI"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "Έλεγχος applydeltarpm απέτυχε."
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Μη υποστηριζόμενο URl σχήμα στο '%s'."
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm απέτυχε."
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Η λειτουργία δεν υποστηρίζεται από το μέσο"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "αλλαγή αρχιτεκτονικής από %s σε %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Σφάλμα λήψεως (curl) για '%s':\n"
+"Κωδικός σφάλματος: %s\n"
+"Μήνυμα λάθους: %s\n"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "σπάσιμο %s λόγω αγνόησης μερικών εξαρτήσεων του."
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"Σφάλμα προκλήθηκε κατά την διάρκεια ρύθμισης των ρυθμίσεων λήψεων (curl) για "
+"'%s':"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "αδÏ\85ναμία ÎµÎ³ÎºÎ±Ï\84άÏ\83Ï\84αÏ\83ηÏ\82 %s ÎºÎ±Î¹ %s"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Î\97 Ï\80ηγή Ï\84οÏ\85 Ï\80ολÏ\85μέÏ\83οÏ\85 '%s' Î´ÎµÎ½ Ï\80εÏ\81ιέÏ\87ει Ï\84ο ÎµÏ\80ιθÏ\85μηÏ\84Ï\8c Î¼Î­Ï\83ο."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "συγκρουόμενες αιτήσεις"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "Το μέσο '%s' χρησιμοποιείτε από άλλο στιγμιότυπο"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Αδυναμία αποβολής κάποιου μέσου"
+
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "δημιοÏ\85Ï\81γία Î±Î½Ï\84ιγÏ\81άÏ\86οÏ\85 Î±Ï\83Ï\86αλείαÏ\82 %s"
+msgid "Cannot eject media '%s'"
+msgstr "Î\91δÏ\85ναμία Î±Ï\80οβολήÏ\82 Î¼Î­Ï\83οÏ\85 '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Î\95Ï\80ανεγκαÏ\84άÏ\83Ï\84αÏ\83η Ï\84οÏ\85 %s"
+msgid "Permission to access '%s' denied."
+msgstr "Î\97 Î¬Î´ÎµÎ¹Î± Î³Î¹Î± Ï\80Ï\81Ï\8cÏ\83βαÏ\83η Ï\83Ï\84ο '%s' Î±Ï\80αγοÏ\81εÏ\8dÏ\84ηκε."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "διαγραμμένοι πάροχοι: "
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Το χρονικό όριο εξαντλήθηκε όταν έγινε πρόσβαση '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "να Î¼Î·Î½ Î¶Î·Ï\84ηθεί Î· Î´Î¹Î±Î³Ï\81αÏ\86ή Ï\8cλÏ\89ν Ï\84Ï\89ν ÎµÏ\80ιλÏ\8dÏ\83ιμÏ\89ν Ï\80αÏ\81έÏ\87ονÏ\84αÏ\82 %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Î\97 Ï\84οÏ\80οθεÏ\83ία '%s' Î´ÎµÎ½ ÎµÎ¯Î½Î±Î¹ Ï\80Ï\81οÏ\83Ï\89Ï\81ινά Ï\80Ï\81οÏ\83βάÏ\83ιμη."
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "να μην ζητηθεί η εγκατάσταση όλων των επιλύσιμων παρέχοντας %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" πρόβλημα πιστοποιητικού SSL, επιβεβαιώστε ότι το πιστοποιητικό της CA  "
+"είναι εντάξει για '%s'. "
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "να μην εγκατασταθεί το %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Αδυναμία εύρεσης διαθέσιμης συσκευής βρόγχου για προσάρτηση αρχείου εικόνας "
+"δεδομένων από '%s'"
+
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Μη υποστηριζόμενη μέθοδος πιστοποίησης HTTP '%s'"
+
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Επισκεπτείται  το Κέντρο Πελατών της Novell για να ελέγξετε έαν η εγγραφής "
+"είναι έγκυρη και δεν έχει λήξει."
+
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Αδυναμία δημιουργίας sat-pool."
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Το αρχείο %1%\n"
+"  από το πακέτο\n"
+"     %2%\n"
+"  συγκρούεται με το αρχείο από το πακέτο\n"
+"     %3%"
+
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Το αρχείο %1%\n"
+"  από το πακέτο\n"
+"     %2%\n"
+"  συγκρούεται με το αρχείο από την εγκατάσταση του\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "να μην εγκατασταθεί η νεότερη έκδοση του %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Το αρχείο %1%\n"
+"  από την εγκατάσταση του\n"
+"     %2%\n"
+"  συγκρούεται με το αρχείο από το πακέτο\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "υποβάθμιση του %s από %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Το αρχείο %1%\n"
+"  από την εγκατάσταση του\n"
+"     %2%\n"
+"  συγκρούεται με το αρχείο από την εγκατάσταση του\n"
+"     %3%"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "γενικά αγνόηση μερικών εξαρτήσεων"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Το αρχείο %1%\n"
+"  από το πακέτο\n"
+"     %2%\n"
+"  συγκρούεται με το αρχείο\n"
+"     %3%\n"
+"  από το πακέτο\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "Αγνοήστε την προειδοποίηση του σπασμένου συστήματος"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Το αρχείο %1%\n"
+"  από το πακέτο\n"
+"     %2%\n"
+"  συγκρούεται με το αρχείο\n"
+"     %3%\n"
+"  από την εγκατάσταση του\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
-"εγκατάσταση %s (με αλλαγή προμηθευτή)\n"
-"  %s --> %s"
+"Το αρχείο %1%\n"
+"  από την εγκατάσταση του\n"
+"     %2%\n"
+"  συγκρούεται με το αρχείο\n"
+"     %3%\n"
+"  από το πακέτο\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "Εγκατάσταση %s παρόλο που θα αλλάξει την αρχιτεκτονική"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Το αρχείο %1%\n"
+"  από την εγκατάσταση του\n"
+"     %2%\n"
+"  συγκρούεται με το αρχείο\n"
+"     %3%\n"
+"  από την εγκατάσταση του\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "εγκαταστήσετε %s από το εξαιρετέο αποθετήριο"
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "Γενική αγνόησή κάποιων εξαρτήσεων"
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "το %s πεπαλαιώνει %s που παρέχεται από %s"
+#~ msgid "do not forbid installation of %s"
+#~ msgstr "να μην απαγορευτεί η εγκατάσταση του %s"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "μη έγκυρο"
+#~ msgid "do not keep %s installed"
+#~ msgstr "μην κρατήσετε το %s εγκατεστημένο"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "κράτα το %s"
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "διατήρηση του %s παρόλη την υποδεέστερη αρχιτεκτονική"
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "διατήρηση πεπαλαιώμενου %s"
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Αδυναμία δημιουργίας περιεχομένου libhal"
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: Αδυναμία ορισμού σύνδεσης dbus"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "تجاهل %s القديم في %s"
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "τίποτα δεν παρέχει το %s που χρειάζεται από το %s"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "تجاهل تعارض %s هذا"
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "τίποτα δεν παρέχει το ζητούμενο %s"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "تجاهل هذا المتطلب هنا فقط"
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "το πακέτο %s δεν υπάρχει"
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "πρόβλημα με τα εγκατεστημένα πακέτα %s"
+#~ msgid "Install missing resolvables"
+#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "αφαίρεση κλειδώματος για να επιτραπεί η εγκατάσταση του %s"
+#~ msgid "Keep resolvables"
+#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "αφαίρεση κλειδώματος για να επιτραπεί η αφαίρεση του %s"
+#~ msgid "Unlock these resolvables"
+#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "αντικατάσταση του %s με το %s"
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "Το rpm δημιουργήσε το %s ως %s αλλά ήταν αδύνατο να διαφανεί η διαφορά"
+#~ msgid "install %s"
+#~ msgstr "تثبيت %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"To rpm δημιουργήσε το %s ως %s.\n"
-"Εδώ είναι οι πρώτες 25 σειρές της διαφοράς:\n"
+#~ msgid "unlock %s"
+#~ msgstr "إلغاء قفل %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "Το rpm αποθήκευσε το  %s ως %s αλλά ήταν αδύνατο να διαφανεί η διαφορά"
+#~ msgid "unlock all resolvables"
+#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
-msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"Το rpm αποθήκευσε το  %s ως %s.\n"
-"Εδώ είναι οι πρώτες 25 γραμμές της διαφοράς:\n"
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "تعذر فتح الملف %1."
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "το επιλύσιμο %s συγκρούεται με %s που παρέχεται από τον εαυτό του"
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "تعذرت قراءة القطاع %u."
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "κάποιο πρόβλημα εξαρτήσεων"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "Μη εγκαταστήσιμοι πάροχοι:"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "άγνωστη"
+#~ msgid "Software management is already running."
+#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "μη υποστηριζόμενο"
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "μη υποστηριζόμενο αίτημα"
+#~ msgid "%s replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
 #, fuzzy
-#~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
-#~ msgstr ""
-#~ "\n"
-#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
-
-#~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
+#~ msgid "%s will be deleted by the user.\n"
 #~ msgstr ""
 #~ "\n"
 #~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#~ msgid " Error!"
-#~ msgstr "خطأ!"
-
-#~ msgid " Important!"
-#~ msgstr "هام!"
+#, fuzzy
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#~ msgid " fails checksum verification."
-#~ msgstr "فشل التحقق من المجموع الاختباري."
+#~ msgid "Invalid information"
+#~ msgstr "المعلومات غير صالحة"
 
-#~ msgid " miss checksum."
-#~ msgstr "فقد المجموع الاختباري."
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
 
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s مطلوب بواسطة\n"
+#~ "%s"
 
 #~ msgid "%s conflicts with other resolvables"
 #~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
@@ -4931,262 +5009,375 @@ msgstr "μη υποστηριζόμενο αίτημα"
 #~ "%s يتعارض مع:\n"
 #~ "%s"
 
-#~ msgid "%s depended on %s"
-#~ msgstr "%s اعتمد على %s"
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
 
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s اعتمد على %s"
+#~ msgid "%s obsoletes:%s"
+#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
-#~ msgid "%s depends on %s"
-#~ msgstr "%s يعتمد على %s"
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
 #~ msgid "%s depends on other resolvables"
 #~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
 
+#~ msgid "%s depends on %s"
+#~ msgstr "%s يعتمد على %s"
+
 #~ msgid "%s depends on:%s"
 #~ msgstr "%s يعتمد على:%s"
 
+#~ msgid "Child of"
+#~ msgstr "عنصر فرعي لـ"
+
 #, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
 
 #, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
+#~ msgid ""
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
-#~ msgid "%s has missing dependencies"
-#~ msgstr "تم فقد تبعيات %s"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
+
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
 
 #~ msgid "%s has unfulfilled requirements"
 #~ msgstr "لم يتم استيفاء متطلبات %s"
 
-#~ msgid "%s install failed"
-#~ msgstr "%s εγκατάσταση απέτυχε"
+#~ msgid "%s has missing dependencies"
+#~ msgstr "تم فقد تبعيات %s"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
+
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
+
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
+
+#~ msgid "No need to install %s"
+#~ msgstr "لا داعي لتثبيت %s"
+
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
+
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
+
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "تعذر تثبيت %s لأنه متعارض"
+
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
+
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
+
+#, fuzzy
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s يفتقد المتطلب %s"
+
+#~ msgid ", Action: "
+#~ msgstr "، الإجراء:"
+
+#~ msgid ", Trigger: "
+#~ msgstr "، تشغيل:"
+
+#~ msgid "package"
+#~ msgstr "الحزمة"
+
+#~ msgid "selection"
+#~ msgstr "التحديد"
+
+#~ msgid "pattern"
+#~ msgstr "النمط"
+
+#~ msgid "product"
+#~ msgstr "المنتج"
+
+#~ msgid "patch"
+#~ msgstr "التصحيح"
+
+#~ msgid "script"
+#~ msgstr "البرنامج النصي"
+
+#~ msgid "message"
+#~ msgstr "الرسالة"
+
+#~ msgid "atom"
+#~ msgstr "الذرة"
+
+#~ msgid "system"
+#~ msgstr "النظام"
+
+#~ msgid "Resolvable"
+#~ msgstr "التبعية القابلة للتحليل"
+
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
+
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
+
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
+
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
+
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
+
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
+
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
+
+#~ msgid "Establishing %s"
+#~ msgstr "تأسيس %s"
+
+#~ msgid "Installing %s"
+#~ msgstr "تثبيت %s"
+
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
 
-#~ msgid "%s installed ok"
-#~ msgstr "%s εγκατάσταση ok"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "تخطي %s: تم التثبيت بالفعل"
 
 #, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
 
-#, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
+#~ msgid "for %s"
+#~ msgstr "لـ %s"
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s يفتقد المتطلب %s"
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
 
-#~ msgid "%s is locked and cannot be uninstalled."
-#~ msgstr "%s Ù\85Ù\82Ù\81Ù\84 Ù\88Ù\8aتعذر إلغاء تثبيته."
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86 ØªÙ\85ت Ø¬Ø¯Ù\88Ù\84تÙ\87 Ù\84إلغاء تثبيته."
 
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "%s Ù\85Ø·Ù\84Ù\88ب Ø¨Ù\88اسطة Ø§Ù\84تبعÙ\8aات Ø§Ù\84Ù\82ابÙ\84Ø© Ù\84Ù\84تحÙ\84Ù\8aÙ\84 Ø§Ù\84أخرÙ\89"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86 ØªÙ\85 ØªØ«Ø¨Ù\8aت Ø¥ØµØ¯Ø§Ø± Ø¢Ø®Ø± Ù\84Ù\80 %s Ù\87ذا Ø¨Ø§Ù\84Ù\81عÙ\84."
 
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "%s Ù\85Ø·Ù\84Ù\88ب Ø¨Ù\88اسطة\n"
-#~ "%s"
+#~ "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86Ù\87 Ù\82ابÙ\84 Ù\84Ø¥Ù\84غاء Ø§Ù\84تثبÙ\8aت.  Ø­Ø§Ù\88Ù\84 ØªØ«Ø¨Ù\8aتÙ\87 Ù\84Ù\84حصÙ\88Ù\84 Ø¹Ù\84Ù\89 Ù\85زÙ\8aد Ù\85Ù\86 "
+#~ "التفاصيل."
 
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s يوفر %s، لكنه مقفل."
+
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
 
 #, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s Ù\85Ø·Ù\84Ù\88ب Ø¨Ù\88اسطة %s"
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86 Ù\84Ù\87 Ù\87Ù\8aÙ\83Ù\84 Ø¢Ø®Ø±."
 
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
 #~ msgstr ""
 #~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
 #~ msgstr ""
 #~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
-#~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
-#~ "الارتباط."
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr ""
-#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
+
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
+
+#~ msgid "from %s"
+#~ msgstr "من %s"
+
+#~ msgid " Error!"
+#~ msgstr "خطأ!"
+
+#~ msgid " Important!"
+#~ msgstr "هام!"
+
+#~ msgid "%s depended on %s"
+#~ msgstr "%s اعتمد على %s"
 
 #, fuzzy
-#~ msgid "%s is suggested by %s"
+#~ msgid "%s is recommended by %s"
 #~ msgstr "%s مطلوب بواسطة %s"
 
 #, fuzzy
-#~ msgid "%s is supplemented by %s"
+#~ msgid "%s is suggested by %s"
 #~ msgstr "%s مطلوب بواسطة %s"
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
-
 #, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
-
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#~ msgid "%s obsoletes:%s"
-#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
 #~ msgid "%s part of %s"
 #~ msgstr "%s جزء من %s"
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
-
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
+#, fuzzy
+#~ msgid "Double timeout"
+#~ msgstr "موعد الاستحقاق: %1"
 
 #, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86 Ù\84Ù\87 Ù\87Ù\8aÙ\83Ù\84 Ø¢Ø®Ø±."
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s Ù\85Ø·Ù\84Ù\88ب Ø¨Ù\88اسطة %s"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "تعذر تحليل سلطة Url"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s يوفر %s، لكنه مقفل."
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
 
 #~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
 #~ msgstr ""
-#~ "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86Ù\87 Ù\82ابÙ\84 Ù\84Ø¥Ù\84غاء Ø§Ù\84تثبÙ\8aت.  Ø­Ø§Ù\88Ù\84 ØªØ«Ø¨Ù\8aتÙ\87 Ù\84Ù\84حصÙ\88Ù\84 Ø¹Ù\84Ù\89 Ù\85زÙ\8aد Ù\85Ù\86 "
-#~ "اÙ\84تÙ\81اصÙ\8aÙ\84."
+#~ "%s Ù\85Ø·Ù\84Ù\88ب Ø¨Ù\88اسطة ØªØ¨Ø¹Ù\8aØ© Ù\82ابÙ\84Ø© Ù\84Ù\84تحÙ\84Ù\8aÙ\84 Ø£Ø®Ø±Ù\89 Ù\85Ø·Ù\84Ù\88ب ØªØ«Ø¨Ù\8aتÙ\87اØ\8c Ù\84ذا Ù\84Ù\86 Ù\8aتÙ\85 Ø¥Ù\84غاء "
+#~ "اÙ\84ارتباط."
 
-#, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
+
+#~ msgid "Unable to restore all sources."
+#~ msgstr "تعذرت استعادة كافة المصادر."
 
-#, fuzzy
 #~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
 
-#~ msgid "%s remove failed"
-#~ msgstr "%s αφαίρεση απέτυχε"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#~ msgid "%s remove ok"
-#~ msgstr "%s αφαίρεση ok"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#~ msgid "%s replaced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
+#~ msgid "Reading index files"
+#~ msgstr "قراءة ملفات الفهرس"
 
-#, fuzzy
-#~ msgid "%s will be deleted by the user.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
 
-#, fuzzy
-#~ msgid "%s will be installed by the user.\n"
-#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
+#~ msgid "Reading product from %s"
+#~ msgstr "قراءة المنتج من %s"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "قراءة قائمة الملفات من %s"
 
-#~ msgid ", Action: "
-#~ msgstr "، الإجراء:"
+#~ msgid "Reading packages from %s"
+#~ msgstr "قراءة الحزم من %s"
 
-#~ msgid ", Trigger: "
-#~ msgstr "، تشغيل:"
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
 
-#, fuzzy
-#~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
-#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
 
-#~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
-#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
+#~ msgid "Reading patches index %s"
+#~ msgstr "قراءة فهرس التصحيحات %s"
 
-#~ msgid "Can't chdir to '/' inside chroot (%s)."
-#~ msgstr "Δεν μπορεί chdir να '/' μέσα σε chroot (%s)."
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
 
-#, fuzzy
-#~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
-#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
 
-#, fuzzy
-#~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
-#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
+#~ msgid "Reading packages file"
+#~ msgstr "قراءة ملف الحزم"
 
-#, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
+#~ msgid "Reading translation: %s"
+#~ msgstr "قراءة الترجمة: %s"
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "تعذر فتح الملف %1."
-
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
-
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
-#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
-
-#~ msgid "Cannot create a file needed to perform update installation."
-#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
-
-#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
 #~ msgstr ""
-#~ "Αδυναμία δημιουργίας δημοσίου κλειδιού %s από την κλειδοθήκη %s στο "
-#~ "αρχείο %s"
-
-#~ msgid "Cannot install %s to fulfil the dependencies of %s"
-#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
+#~ "التثبيت؟"
 
-#, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting"
-#~ msgstr "تعذر تثبيت %s لأنه متعارض"
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
+#~ msgid "Downloading %s"
+#~ msgstr "إنزال %s"
 
-#~ msgid "Child of"
-#~ msgstr "عنصر فرعي لـ"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr ""
+#~ "Αδυναμία δημιουργίας δημοσίου κλειδιού %s από την κλειδοθήκη %s στο "
+#~ "αρχείο %s"
 
-#, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr ""
+#~ "Εγίνε προσπάθεια προσθήκης μη υπάρχον κλειδιού %s στην κλειδοθήκη %s"
 
-#, fuzzy
-#~ msgid "Double timeout"
-#~ msgstr "موعد الاستحقاق: %1"
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "Δεν μπορεί chdir να '/' μέσα σε chroot (%s)."
 
 #~ msgid "Download (Metalink curl) initialization failed for '%s'"
 #~ msgstr "Η αρχικοποίηση λήψης (Metalink curl) απέτυχε για '%s'"
@@ -5206,32 +5397,29 @@ msgstr "μη υποστηριζόμενο αίτημα"
 #~ msgid "Download interrupted by user"
 #~ msgstr "Το κατέβασμα διακόπηκε από τον χρήστη"
 
-#~ msgid "Downloading %s"
-#~ msgstr "إنزال %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
-
 #~ msgid ""
 #~ "Error occurred while setting download (metalink curl) options for '%s':"
 #~ msgstr ""
 #~ "Σφάλμα προκλήθηκε κατά την διάρκεια ρύθμισης των ρυθμίσεων λήψεων "
 #~ "(metalink curl) για '%s':"
 
-#, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "تعذرت قراءة القطاع %u."
-
-#~ msgid "Establishing %s"
-#~ msgstr "تأسيس %s"
-
 #~ msgid "Failed to download %s from %s"
 #~ msgstr "Αδυναμία λήψεως %s από το %s"
 
+#~ msgid "Valid metadata not found at specified URL(s)"
+#~ msgstr "Δεν βρέθηκαν έγκυρα μεταδεδομένα στο/α συγκεκριμένο/α URL(s)"
+
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Σερβία και Μαυροβούνιο"
+
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "Άγνωστη επιλογή της list"
+
+#, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "αδυναμία επίλυσης εξαρτήσεων"
+
 #~ msgid ""
 #~ "File %s does not have a checksum.\n"
 #~ "Use the file anyway?"
@@ -5280,138 +5468,6 @@ msgstr "μη υποστηριζόμενο αίτημα"
 #~ "%s|%s|%s\n"
 #~ "Χρήση αυτού του αρχείου παρ' αυτά;"
 
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
-
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "تجاهل %s القديم في %s"
-
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "تجاهل تعارض %s هذا"
-
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
-
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "تجاهل هذا المتطلب هنا فقط"
-
-#, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
-
-#~ msgid "Install missing resolvables"
-#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
-
-#~ msgid "Installing %s"
-#~ msgstr "تثبيت %s"
-
-#~ msgid "Invalid information"
-#~ msgstr "المعلومات غير صالحة"
-
-#~ msgid "Invalid user name or password."
-#~ msgstr "Λανθασμένο όνομα χρήστη ή συνθηματικό."
-
-#~ msgid "Keep resolvables"
-#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
-
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
-
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
-
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
-
-#~ msgid "No need to install %s"
-#~ msgstr "لا داعي لتثبيت %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
-#~ msgstr ""
-#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
-#~ "التثبيت؟"
-
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
-
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
-
-#~ msgid "Reading filelist from %s"
-#~ msgstr "قراءة قائمة الملفات من %s"
-
-#~ msgid "Reading index files"
-#~ msgstr "قراءة ملفات الفهرس"
-
-#~ msgid "Reading packages file"
-#~ msgstr "قراءة ملف الحزم"
-
-#~ msgid "Reading packages from %s"
-#~ msgstr "قراءة الحزم من %s"
-
-#~ msgid "Reading patch %s"
-#~ msgstr "قراءة التصحيح %s"
-
-#~ msgid "Reading patches index %s"
-#~ msgstr "قراءة فهرس التصحيحات %s"
-
-#~ msgid "Reading pattern from %s"
-#~ msgstr "قراءة النمط من %s"
-
-#~ msgid "Reading product from %s"
-#~ msgstr "قراءة المنتج من %s"
-
-#~ msgid "Reading selection from %s"
-#~ msgstr "قراءة التحديد من %s"
-
-#~ msgid "Reading translation: %s"
-#~ msgstr "قراءة الترجمة: %s"
-
-#~ msgid "Resolvable"
-#~ msgstr "التبعية القابلة للتحليل"
-
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Σερβία και Μαυροβούνιο"
-
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "تخطي %s: تم التثبيت بالفعل"
-
-#~ msgid "Software management is already running."
-#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
-
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
-
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
-
-#, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
-
-#~ msgid "This would invalidate %s."
-#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
-
-#~ msgid "Tried to import not existant key %s into keyring %s"
-#~ msgstr ""
-#~ "Εγίνε προσπάθεια προσθήκης μη υπάρχον κλειδιού %s στην κλειδοθήκη %s"
-
-#~ msgid "Unable to parse Url authority"
-#~ msgstr "تعذر تحليل سلطة Url"
-
-#~ msgid "Unable to restore all sources."
-#~ msgstr "تعذرت استعادة كافة المصادر."
-
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "Άγνωστη επιλογή της list"
-
-#~ msgid "Unlock these resolvables"
-#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
-
 #~ msgid ""
 #~ "Untrusted key found:\n"
 #~ "%s|%s|%s\n"
@@ -5421,76 +5477,20 @@ msgstr "μη υποστηριζόμενο αίτημα"
 #~ "%s|%s|%s\n"
 #~ "Θα εμπιστευτείτε αυτό το κλειδί;"
 
-#~ msgid "Updating %s to %s"
-#~ msgstr "تحديث %s إلى %s"
-
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
-
-#~ msgid "Valid metadata not found at specified URL(s)"
-#~ msgstr "Δεν βρέθηκαν έγκυρα μεταδεδομένα στο/α συγκεκριμένο/α URL(s)"
-
-#~ msgid "atom"
-#~ msgstr "الذرة"
-
-#~ msgid "delete %s"
-#~ msgstr "حذف %s"
-
-#~ msgid "do not forbid installation of %s"
-#~ msgstr "να μην απαγορευτεί η εγκατάσταση του %s"
-
-#~ msgid "do not keep %s installed"
-#~ msgstr "μην κρατήσετε το %s εγκατεστημένο"
-
-#~ msgid "for %s"
-#~ msgstr "لـ %s"
-
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "لطلب %s لـ %s عند تحديث %s"
-
-#~ msgid "from %s"
-#~ msgstr "من %s"
-
-#~ msgid "generally ignore of some dependecies"
-#~ msgstr "Γενική αγνόησή κάποιων εξαρτήσεων"
-
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "αδυναμία επίλυσης εξαρτήσεων"
-
-#~ msgid "install %s"
-#~ msgstr "تثبيت %s"
-
-#~ msgid "message"
-#~ msgstr "الرسالة"
-
-#~ msgid "package"
-#~ msgstr "الحزمة"
-
-#~ msgid "patch"
-#~ msgstr "التصحيح"
-
-#~ msgid "pattern"
-#~ msgstr "النمط"
+#~ msgid "%s remove failed"
+#~ msgstr "%s αφαίρεση απέτυχε"
 
-#~ msgid "product"
-#~ msgstr "المنتج"
+#~ msgid "Invalid user name or password."
+#~ msgstr "Λανθασμένο όνομα χρήστη ή συνθηματικό."
 
 #~ msgid "rpm output:"
 #~ msgstr "αποτέλεσμα rpm:"
 
-#~ msgid "script"
-#~ msgstr "البرنامج النصي"
-
-#~ msgid "selection"
-#~ msgstr "التحديد"
-
-#~ msgid "system"
-#~ msgstr "النظام"
+#~ msgid "%s install failed"
+#~ msgstr "%s εγκατάσταση απέτυχε"
 
-#~ msgid "unlock %s"
-#~ msgstr "إلغاء قفل %s"
+#~ msgid "%s installed ok"
+#~ msgstr "%s εγκατάσταση ok"
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
+#~ msgid "%s remove ok"
+#~ msgstr "%s αφαίρεση ok"
index 6b7e5ef..e4cb20f 100644 (file)
@@ -21,17 +21,93 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: KBabel 1.11.4\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal Exception"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Invalid LDAP URL query string"
+
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Invalid LDAP URL query parameter '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Unable to clone Url object"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Invalid empty Url object reference"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Unable to parse Url components"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Can't initialise mutex attributes"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Can't set recursive mutex attribute"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Can't initialise recursive mutex"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Can't acquire the mutex lock"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Can't release the mutex lock"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Provides"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Requires"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Conflicts"
+
+#: zypp/Dep.cc:100
 #, fuzzy
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr "There are no installable providers of %s"
+msgid "Obsoletes"
+msgstr "%s obsoletes:%s"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Recommends"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Suggests"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Enhances"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Supplements"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -44,10 +120,6 @@ msgstr "Execute"
 msgid " execution failed"
 msgstr "DBI Execution failed: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -56,775 +128,2104 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s conflicts with %s"
-
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s provides %s, but has another architecture."
-
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "not installed"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+#, fuzzy
+msgid "Error sending update message notification."
+msgstr "Error during key encryption."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s is locked and cannot be uninstalled."
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, fuzzy, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s obsoletes %s"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Installation has been aborted as directed."
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext not connected"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-#, fuzzy
-msgid "(does not expire)"
-msgstr "'%1' does not exist."
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive not initialised"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume not initialised"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Unable to create dbus connection"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhazian"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Can't create libhal context"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achinese"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: Can't set dbus connection"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Unable to initialise HAL context -- hald not running?"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Not a CDROM drive"
 
-#: zypp/RepoManager.cc:1611
-#, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Adding repository '%s'"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+#, fuzzy
+msgid "RPM failed: "
+msgstr "failed"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-#, fuzzy
-msgid "Additional rpm output"
-msgstr "Additional rpm output:"
-
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adyghe"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, fuzzy, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Unable to get the public key."
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Changed configuration files for %s:"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm saved %s as %s, but it was impossible to determine the difference"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Afrihili"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm created %s as %s, but it was impossible to determine the difference"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+#, fuzzy
+msgid "Additional rpm output"
+msgstr "Additional rpm output:"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "created backup %s"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "Source package '%s' not found."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "Source package '%s' not found."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "Source package '%s' not found."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+#, fuzzy
+msgid "Following actions will be done:"
+msgstr "The following packages will be updated:\n"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+#, fuzzy
+msgid "Repository alias cannot start with dot."
+msgstr "The VM's name cannot start with a digit."
+
+#: zypp/RepoManager.cc:349
+#, fuzzy
+msgid "Service alias cannot start with dot."
+msgstr "The VM's name cannot start with a digit."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Cannot open file for writing."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Valid metadata not found at specified URL(s)"
+msgstr[1] "Valid metadata not found at specified URL(s)"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Cannot create %s: %m\n"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "Cannot create directory %1: %2."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Building repository '%s' cache"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+#, fuzzy
+msgid "Unhandled repository type"
+msgstr "Uploaded %s to repository."
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, fuzzy, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Error parsing metadata for '%s':"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Unknown command '%s'"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Adding repository '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Invalid export filename."
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Removing repository '%s'"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Cannot stat '%s': %m\n"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Url scheme does not allow a %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Invalid %s component '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Invalid %s component"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Query string parsing not supported for this URL"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Url scheme is a required component"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Invalid Url scheme '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Url scheme does not allow a username"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Url scheme does not allow a password"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Url scheme requires a host component"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Url scheme does not allow a host component"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Invalid host component '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Url scheme does not allow a port"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Invalid port component '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Url scheme requires path name"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Relative path not allowed if authority exists"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Encoded string contains a NUL byte"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Invalid parameter array split separator character"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Invalid parameter map split separator character"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Invalid parameter array join separator character"
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Cannot open file %1."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Can't find %s."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, fuzzy, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Can't find %s."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "Command executed when connecting"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+#, fuzzy
+msgid "(does not expire)"
+msgstr "'%1' does not exist."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "unknown"
+
+#: zypp/VendorSupportOptions.cc:17
+#, fuzzy
+msgid "unsupported"
+msgstr " - not supported"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+#, fuzzy
+msgid "The vendor does not provide support."
+msgstr "The disk does not exist."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Unknown country: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "No Code"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "United Arab Emirates"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afghanistan"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua and Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albania"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenia"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Netherlands Antilles"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarctica"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "American Samoa"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austria"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australia"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Aland Islands"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaijan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnia and Herzegovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgium"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaria"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brazil"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvet Island"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Belarus"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Cocos (Keeling) Islands"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Central African Republic"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Switzerland"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Cote D'Ivoire"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cook Islands"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Cameroon"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "China"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Cape Verde"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Christmas Island"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Cyprus"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Czech Republic"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Germany"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Denmark"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominican Republic"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algeria"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonia"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egypt"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Western Sahara"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spain"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Ethiopia"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finland"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falkland Islands (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Federated States of Micronesia"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Faroe Islands"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "France"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Metropolitan France"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "United Kingdom"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgia"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "French Guiana"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Germany"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Greenland"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Equatorial Guinea"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Greece"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "South Georgia and the South Sandwich Islands"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heard Island and McDonald Islands"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Croatia"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hungary"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesia"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Ireland"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "British Indian Ocean Territory"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Iraq"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Iceland"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italy"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordan"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japan"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kyrgyzstan"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Cambodia"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comoros"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts and Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "North Korea"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "South Korea"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Cayman Islands"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazakhstan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Lao People's Democratic Republic"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Lebanon"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lithuania"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxembourg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latvia"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libya"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Morocco"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "Mongo"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "San Marino"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagascar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshall Islands"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedonia"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolia"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Northern Mariana Islands"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritania"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikaans"
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldives"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-Asiatic (Other)"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Ainu"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexico"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Akan"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaysia"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Akkadian"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambique"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Aland Islands"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albania"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "New Caledonia"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albanian"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aleut"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolk Island"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algeria"
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Algonquian Languages"
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaic (Other)"
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Netherlands"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "American Samoa"
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norway"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amharic"
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "New Zealand"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "French Polynesia"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua New Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Philippines"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Poland"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint Pierre and Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestinian Territory"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romania"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "Serbian"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Russian Federation"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudi Arabia"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Solomon Islands"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychelles"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Sweden"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapore"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Saint Helena"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenia"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard and Jan Mayen"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarctica"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovakia"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua and Barbuda"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Apache Languages"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Arabic"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonese"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Aramaic"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome and Principe"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Araucanian"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Syria"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swaziland"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenia"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks and Caicos Islands"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armenian"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Chad"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Artificial (Other)"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "French Southern Territories"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Assamese"
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thailand"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Asturian"
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tajikistan"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Athapascan Languages"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australia"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Australian Languages"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisia"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austria"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronesian (Other)"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "East Timor"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Authentication required for '%s'"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turkey"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Avaric"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad and Tobago"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Avestan"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Awadhi"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Aymara"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzania"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaijan"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraine"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Azerbaijani"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "United States Minor Outlying Islands"
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "United States"
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinese"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Holy See (Vatican City State)"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltic (Other)"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Saint Vincent and the Grenadines"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Baluchi"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Bambara"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "British Virgin Islands"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Bamileke Languages"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Virgin Islands, U.S."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (Other)"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis and Futuna"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Yemen"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bashkir"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Basque"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "South Africa"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonesia)"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Beja"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belarus"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Unknown language: "
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Belarusian"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgium"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abkhazian"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achinese"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Bemba"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengali"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adyghe"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Berber (Other)"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-Asiatic (Other)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Afrihili"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Bhojpuri"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikaans"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Ainu"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihari"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Akan"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikol"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Akkadian"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Bini"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albanian"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aleut"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Algonquian Languages"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Southern Altai"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia and Herzegovina"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amharic"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosnian"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "English, Old (ca.450-1100)"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Apache Languages"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvet Island"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Arabic"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Braj"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Aramaic"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brazil"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonese"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Breton"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armenian"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "British Indian Ocean Territory"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Araucanian"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "British Virgin Islands"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Artificial (Other)"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Buginese"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Building repository '%s' cache"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Assamese"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaria"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Asturian"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgarian"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Athapascan Languages"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriat"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Australian Languages"
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Avaric"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Burmese"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Avestan"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Awadhi"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Caddo"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Aymara"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Cambodia"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Azerbaijani"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Cameroon"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "Cannot create the file."
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Bamileke Languages"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Can't acquire the mutex lock"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bashkir"
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Can't find %s."
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Baluchi"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Bambara"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinese"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Cannot create %s: %m\n"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Basque"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
 
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "Cannot create directory %1: %2."
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltic (Other)"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Cannot stat '%s': %m\n"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Beja"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Belarusian"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Bemba"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengali"
 
-#: zypp/ExternalProgram.cc:381
-#, fuzzy, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Can't find %s."
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Berber (Other)"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Can't initialise mutex attributes"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Bhojpuri"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Can't initialise recursive mutex"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Bihari"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Cannot open file for writing."
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikol"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Cannot open file %1."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Bini"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Cannot open file %1."
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, fuzzy, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Can't provide file %s from repository %s"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (Other)"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Can't release the mutex lock"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosnian"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Can't set recursive mutex attribute"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Braj"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canada"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Breton"
 
-#: zypp/media/MediaException.cc:182
-#, fuzzy
-msgid "Cannot eject any media"
-msgstr "Cannot find any schemes."
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonesia)"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Cannot stat '%s': %m\n"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriat"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Buginese"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgarian"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Burmese"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Cannot write to file %1."
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Cape Verde"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Caddo"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Central American Indian (Other)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -841,11 +2242,6 @@ msgstr "Catalan"
 msgid "Caucasian (Other)"
 msgstr "Caucasian (Other)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Cayman Islands"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -856,167 +2252,80 @@ msgstr "Cebuano"
 msgid "Celtic (Other)"
 msgstr "Celtic (Other)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Central African Republic"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Central American Indian (Other)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Chad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Chamic Languages"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Changed configuration files for %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Chechen"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Chibcha"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Chechen"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "China"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Chinese"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukese"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Chinook Jargon"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyan"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Choctaw"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Christmas Island"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "Church Slavic"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukese"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "Chuvash"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Classical Newari"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Cocos (Keeling) Islands"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "Command executed when connecting"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comoros"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Conflicts"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cook Islands"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Chamic Languages"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1033,31 +2342,6 @@ msgstr "Cornish"
 msgid "Corsican"
 msgstr "Corsican"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Cote D'Ivoire"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Creoles and Pidgins (Other)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1073,46 +2357,36 @@ msgstr "Creoles and Pidgins, French-Based (Other)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Creoles and Pidgins, Portuguese-Based (Other)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Crimean Tatar"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Croatia"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Croatian"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Creoles and Pidgins (Other)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kashubian"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Cushitic (Other)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Cyprus"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Czech"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Czech Republic"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1138,10 +2412,15 @@ msgstr "Dayak"
 msgid "Delaware"
 msgstr "Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Denmark"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slave (Athapascan)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1153,71 +2432,36 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Divehi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominican Republic"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Dravidian (Other)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Lower Sorbian"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Dutch, Middle (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Dutch"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Dutch, Middle (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1228,62 +2472,25 @@ msgstr "Dyula"
 msgid "Dzongkha"
 msgstr "Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "East Timor"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egypt"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
-msgstr "Egyptian (Ancient)"
-
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "Ekajuk"
-
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Elamite"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-#, fuzzy
-msgid "Empty host name in URI"
-msgstr "Empty CA name."
+msgstr "Egyptian (Ancient)"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Encoded string contains a NUL byte"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "Ekajuk"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Elamite"
 
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
@@ -1295,74 +2502,16 @@ msgstr "English"
 msgid "English, Middle (1100-1500)"
 msgstr "English, Middle (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "English, Old (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Enhances"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Equatorial Guinea"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-#, fuzzy
-msgid "Error sending update message notification."
-msgstr "Error during key encryption."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, fuzzy, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Error parsing metadata for '%s':"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonia"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estonian"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Ethiopia"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1373,209 +2522,31 @@ msgstr "Ewe"
 msgid "Ewondo"
 msgstr "Ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to start the VM."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Unable to open %s - %s\n"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, fuzzy, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Package %s fails integrity check. Do you want to retry?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, fuzzy, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Unable to get the public key."
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Failed to load module \"%s\"."
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falkland Islands (Malvinas)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Fang"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Faroe Islands"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "Faroese"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Federated States of Micronesia"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fijian"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "File %1 not found in the repository."
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Fijian"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finland"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1586,41 +2557,16 @@ msgstr "Finnish"
 msgid "Finno-Ugrian (Other)"
 msgstr "Finno-Ugrian (Other)"
 
-#: zypp/ProblemSolution.cc:114
-#, fuzzy
-msgid "Following actions will be done:"
-msgstr "The following packages will be updated:\n"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "France"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "French"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "French Guiana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "French Polynesia"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "French Southern Territories"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1636,46 +2582,21 @@ msgstr "French, Old (842-ca.1400)"
 msgid "Frisian"
 msgstr "Frisian"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friulian"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fulah"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friulian"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaelic"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galician"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1686,15 +2607,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Geez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germanic (Other)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1706,6 +2622,36 @@ msgstr "Georgian"
 msgid "German"
 msgstr "German"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Geez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertese"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaelic"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irish"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galician"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1716,30 +2662,6 @@ msgstr "German, Middle High (ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "German, Old High (ca.750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germanic (Other)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Germany"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertese"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1760,11 +2682,6 @@ msgstr "Gothic"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Greece"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1775,62 +2692,16 @@ msgstr "Greek, Ancient (to 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Greek, Modern (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Greenland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Germany"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1841,52 +2712,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitian"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal Exception"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext not connected"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive not initialised"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume not initialised"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaiian"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heard Island and McDonald Islands"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1912,16 +2752,6 @@ msgstr "Himachali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "History:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1932,30 +2762,20 @@ msgstr "Hittite"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Holy See (Vatican City State)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Upper Sorbian"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
-msgid "Hungarian"
-msgstr "Hungarian"
-
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hungary"
+msgid "Hungarian"
+msgstr "Hungarian"
 
 #. language code: hup
 #: zypp/LanguageCode.cc:539
@@ -1967,10 +2787,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Iceland"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1982,250 +2802,105 @@ msgstr "Icelandic"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Inari Sami"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (International Auxiliary Language Association)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Indic (Other)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indo-European (Other)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesia"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonesian"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indo-European (Other)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Ingush"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Installation has been aborted as directed."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (International Auxiliary Language Association)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Inupiaq"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Invalid %s component"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Invalid %s component '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Invalid LDAP URL query parameter '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Invalid LDAP URL query string"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Invalid Url scheme '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Invalid empty Url object reference"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Invalid host component '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Invalid parameter array join separator character"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Invalid parameter array split separator character"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Invalid parameter map split separator character"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Invalid port component '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Invalid Url scheme '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Invalid export filename."
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Iranian (Other)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Iraq"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Ireland"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irish"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Irish, Middle (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Irish, Old (to 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Iroquoian Languages"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italian"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italy"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javanese"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japan"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japanese"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javanese"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordan"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Judeo-Persian"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Judeo-Arabic"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Judeo-Persian"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2242,35 +2917,15 @@ msgstr "Kachin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmyk"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
 msgstr "Kamba"
 
 #. language code: kan kn
-#: zypp/LanguageCode.cc:599
-msgid "Kannada"
-msgstr "Kannada"
-
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karachay-Balkar"
+#: zypp/LanguageCode.cc:599
+msgid "Kannada"
+msgstr "Kannada"
 
 #. language code: kar
 #: zypp/LanguageCode.cc:601
@@ -2282,10 +2937,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kashmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kashubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2297,31 +2952,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Kazakh"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardian"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Khoisan (Other)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2332,11 +2982,6 @@ msgstr "Khotanese"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2347,15 +2992,15 @@ msgstr "Kinyarwanda"
 msgid "Kirghiz"
 msgstr "Kirghiz"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2367,11 +3012,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2387,11 +3027,21 @@ msgstr "Kosraean"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karachay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2407,26 +3057,11 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Kurdish"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kyrgyzstan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2447,68 +3082,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Lao People's Democratic Republic"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latin"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latvia"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Latvian"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Lebanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezghian"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libya"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2519,61 +3107,46 @@ msgstr "Limburgan"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lithuania"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Lithuanian"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Low German"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Lower Sorbian"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxembourgish"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lule Sami"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2589,227 +3162,90 @@ msgstr "Luo (Kenya and Tanzania)"
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxembourg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxembourgish"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Macedonian"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagascar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
 msgstr "Madurese"
 
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
-msgstr "Magahi"
-
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
-msgstr "Maithili"
-
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr "Makasar"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malagasy"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malay"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "Malayalam"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaysia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldives"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
+msgstr "Magahi"
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshallese"
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltese"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
+msgstr "Maithili"
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchu"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
+msgstr "Makasar"
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "Malayalam"
 
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Manobo Languages"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronesian (Other)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshall Islands"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshallese"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritania"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Mayan Languages"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malay"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Metropolitan France"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexico"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Irish, Middle (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2821,87 +3257,61 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandese"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Miscellaneous Languages"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Khmer (Other)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malagasy"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltese"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manchu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Manobo Languages"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldavian"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Khmer (Other)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolia"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongolian"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "Mongo"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Morocco"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambique"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2912,210 +3322,141 @@ msgstr "Multiple Languages"
 msgid "Munda languages"
 msgstr "Munda languages"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandese"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Mayan Languages"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "North American Indian"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Neapolitan"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele, North"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele, South"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele, North"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Neapolitan"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepal Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Low German"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepali"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Netherlands"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Netherlands Antilles"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "New Caledonia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "New Zealand"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepal Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Niger-Kordofanian (Other)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-Saharan (Other)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niuean"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "No Code"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Norwegian Nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "No url in repository."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Norwegian Bokmal"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolk Island"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Norse, Old"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "North American Indian"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "North Korea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Northern Mariana Islands"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Northern Sami"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Northern Sotho"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norway"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norwegian"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Norwegian Bokmal"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Norwegian Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Not a CDROM drive"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Northern Sotho"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Nubian Languages"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Classical Newari"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3136,11 +3477,6 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "%s obsoletes:%s"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3151,21 +3487,6 @@ msgstr "Occitan (post 1500)"
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-#, fuzzy
-msgid "Operation not supported by medium"
-msgstr "Profile version not supported by Apparmor module\n"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3186,63 +3507,35 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Ossetian"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turkish, Ottoman (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Otomian Languages"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, fuzzy, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr "Package %s fails integrity check. Do you want to retry?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papuan (Other)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinan"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauan"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestinian Territory"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
-msgstr "Pampanga"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinan"
+msgstr "Pampanga"
 
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
@@ -3254,94 +3547,45 @@ msgstr "Panjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua New Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papuan (Other)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, fuzzy, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "%1 is not a directory."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
-
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Permissions denied"
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persian"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauan"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Persian, Old (ca.600-400 B.C.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persian"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Philippine (Other)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Philippines"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Phoenician"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeian"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Poland"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Polish"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeian"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3353,78 +3597,21 @@ msgstr "Portuguese"
 msgid "Prakrit Languages"
 msgstr "Prakrit Languages"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Provencal, Old (to 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Provides"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pushto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Query string parsing not supported for this URL"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "failed"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Raeto-Romance"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3440,136 +3627,35 @@ msgstr "Rapanui"
 msgid "Rarotongan"
 msgstr "Rarotongan"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Recommends"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Relative path not allowed if authority exists"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Removing repository '%s'"
-
-#: zypp/RepoManager.cc:338
-#, fuzzy
-msgid "Repository alias cannot start with dot."
-msgstr "The VM's name cannot start with a digit."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, fuzzy, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Required file is missing: "
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Requires"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Romance (Other)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romania"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Romanian"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Raeto-Romance"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Romany"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundi"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Russian"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Russian Federation"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Saint Helena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts and Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
-
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "San Marino"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre and Miquelon"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent and the Grenadines"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Salishan Languages"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Samaritan Aramaic"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Sami Languages (Other)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Romanian"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoan"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundi"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Russian"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3581,41 +3667,61 @@ msgstr "Sandawe"
 msgid "Sango"
 msgstr "Sango"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Yakut"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "South American Indian (Other)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Salishan Languages"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Samaritan Aramaic"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskrit"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome and Principe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardinian"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbian"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudi Arabia"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Sicilian"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Scots"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Croatian"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3626,149 +3732,40 @@ msgstr "Selkup"
 msgid "Semitic (Other)"
 msgstr "Semitic (Other)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "Serbian"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbian"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-#, fuzzy
-msgid "Service alias cannot start with dot."
-msgstr "The VM's name cannot start with a digit."
-
-#: zypp/repo/RepoException.cc:129
-#, fuzzy
-msgid "Service plugin does not support changing an attribute."
-msgstr "resource type VAR1 does not support show changes feature"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Irish, Old (to 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelles"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Sign Languages"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Shan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Sicilian"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Sign Languages"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "Source package '%s' not found."
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Source package '%s' not found."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "Source package '%s' not found."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "Source package '%s' not found."
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapore"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Sinhala"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-Tibetan (Other)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Siouan Languages"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Skolt Sami"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-Tibetan (Other)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3780,210 +3777,141 @@ msgstr "Slavic (Other)"
 msgid "Slovak"
 msgstr "Slovak"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovakia"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Slovenian"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenia"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Southern Sami"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Northern Sami"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Sami Languages (Other)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lule Sami"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Inari Sami"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoan"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Skolt Sami"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Slovenian"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "Sogdian"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Solomon Islands"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Somali"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "Songhai"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Sorbian Languages"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Sotho, Southern"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "South Africa"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "South American Indian (Other)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "South Georgia and the South Sandwich Islands"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "South Korea"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Southern Altai"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Southern Sami"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spain"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Spanish"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardinian"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-Saharan (Other)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumerian"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sundanese"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Supplements"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard and Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumerian"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Swahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Sweden"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Swedish"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Switzerland"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Syria"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Syriac"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3994,36 +3922,11 @@ msgstr "Tahitian"
 msgid "Tai (Other)"
 msgstr "Tai (Other)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tajik"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tajikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamashek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4034,6 +3937,11 @@ msgstr "Tatar"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4044,35 +3952,21 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tajik"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Thai"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thailand"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-#, fuzzy
-msgid "The vendor does not provide support."
-msgstr "The disk does not exist."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-#, fuzzy
-msgid "This request will break your system!"
-msgstr "The request already exists."
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4088,46 +3982,25 @@ msgstr "Tigre"
 msgid "Tigrinya"
 msgstr "Tigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
-#. language code: tli
-#: zypp/LanguageCode.cc:1049
-msgid "Tlingit"
-msgstr "Tlingit"
-
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
+#. language code: tli
+#: zypp/LanguageCode.cc:1049
+msgid "Tlingit"
+msgstr "Tlingit"
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4139,103 +4012,66 @@ msgstr "Tonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Tonga Islands)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimshian"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmen"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisia"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Tupi Languages"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turkey"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turkish"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turkish, Ottoman (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkmen"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks and Caicos Islands"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaic (Other)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "Tuvinian"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Udmurt"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4246,11 +4082,6 @@ msgstr "Ugaritic"
 msgid "Uighur"
 msgstr "Uighur"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraine"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4261,210 +4092,36 @@ msgstr "Ukrainian"
 msgid "Umbundu"
 msgstr "Umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Unable to clone Url object"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Unable to create dbus connection"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Unable to initialise HAL context -- hald not running?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Unable to parse Url components"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Undetermined"
 
-#: zypp/RepoManager.cc:1377
-#, fuzzy
-msgid "Unhandled repository type"
-msgstr "Uploaded %s to repository."
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "United Arab Emirates"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "United Kingdom"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "United States"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "United States Minor Outlying Islands"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Unknown country: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Unknown command '%s'"
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Unknown language: "
-
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Unknown command '%s'"
-
-#: zypp/base/StrMatcher.cc:153
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Unknown digest %s for file %s."
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Unsupported HTTP authentication method '%s'"
-
-#: zypp/media/MediaException.cc:140
-#, fuzzy, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Invalid URL scheme '%1'."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Upper Sorbian"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "Urdu"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Url scheme does not allow a %s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Url scheme does not allow a host component"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Url scheme does not allow a password"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Url scheme does not allow a port"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Url scheme does not allow a username"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Url scheme is a required component"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Url scheme requires a host component"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Url scheme requires path name"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Uzbek"
-
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vai"
-
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-#, fuzzy
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "Valid metadata not found at specified URL(s)"
-msgstr[1] "Valid metadata not found at specified URL(s)"
+msgid "Uzbek"
+msgstr "Uzbek"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vai"
 
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "Venda"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "Vietnamese"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Virgin Islands, U.S."
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4485,16 +4142,6 @@ msgstr "Wakashan Languages"
 msgid "Walamo"
 msgstr "Walamo"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis and Futuna"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Walloon"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4505,480 +4152,775 @@ msgstr "Waray"
 msgid "Washo"
 msgstr "Washo"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Welsh"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Welsh"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Sorbian Languages"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Walloon"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolof"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmyk"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhosa"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yao"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yapese"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Yiddish"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Yoruba"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Yupik Languages"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapotec"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to start the VM."
+
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Source package '%s' not found."
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, fuzzy, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Can't provide file %s from repository %s"
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "No url in repository."
+
+#: zypp/repo/RepoException.cc:129
+#, fuzzy
+msgid "Service plugin does not support changing an attribute."
+msgstr "resource type VAR1 does not support show changes feature"
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, fuzzy, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr "Package %s fails integrity check. Do you want to retry?"
+
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, fuzzy, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Package %s fails integrity check. Do you want to retry?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm check failed."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm failed."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s provides %s, but has another architecture."
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "Problem installing source package %s-%s:"
+
+#: zypp/solver/detail/SATResolver.cc:986
+#, fuzzy
+msgid "conflicting requests"
+msgstr "Connection request to: "
+
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "Cannot install %s due to dependency problems"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, fuzzy, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "None provides %s"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "backup does not exists"
+
+#: zypp/solver/detail/SATResolver.cc:1000
+#, fuzzy
+msgid "unsupported request"
+msgstr " - not supported"
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s is locked and cannot be uninstalled."
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "not installed"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, fuzzy, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s is needed by %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Cannot install %s"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s conflicts with %s"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, fuzzy, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s obsoletes %s"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s obsoletes %s"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s conflicts with %s"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1070
+#, fuzzy
+msgid "deleted providers: "
+msgstr "None provides %s"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yao"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+#, fuzzy
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr "There are no installable providers of %s"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Yapese"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "There are no installable providers of %s"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "do not install %s"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Yoruba"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "keep %s"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Yupik Languages"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "do not install %s"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+#, fuzzy
+msgid "This request will break your system!"
+msgstr "The request already exists."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapotec"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, fuzzy, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "There are no installable providers of %s"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "Do not install or delete the resolvables concerned"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, fuzzy, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s provides %s, but has another architecture."
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, fuzzy, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "Install %s although it would change the architecture"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%s obsoletes %s"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm check failed."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm failed."
+#: zypp/solver/detail/SATResolver.cc:1318
+#, fuzzy, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "Updating %s to %s"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr ""
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Installation of %s failed:"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, fuzzy, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "Generally ignore this requirement"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "Generally ignore this requirement"
+
+#: zypp/parser/RepoindexFileReader.cc:197
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Cannot install %s"
+msgid "Required attribute '%s' is missing."
+msgstr "Required file is missing: "
 
-#: zypp/solver/detail/SATResolver.cc:986
-#, fuzzy
-msgid "conflicting requests"
-msgstr "Connection request to: "
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Cannot open file %1."
+
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "History:"
+
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Unknown command '%s'"
+
+#: zypp/base/StrMatcher.cc:153
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Unknown digest %s for file %s."
+
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "created backup %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/StrMatcher.cc:158
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Installation of %s failed:"
+msgid "Invalid regular expression '%s'"
+msgstr "Invalid Url scheme '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-#, fuzzy
-msgid "deleted providers: "
-msgstr "None provides %s"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Authentication required for '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "Do not install or delete the resolvables concerned"
+msgid "Failed to mount %s on %s"
+msgstr "Unable to open %s - %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:41
 #, fuzzy, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "There are no installable providers of %s"
+msgid "Failed to unmount %s"
+msgstr "Failed to load module \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "do not install %s"
+msgid "Bad file name: %s"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:60
 #, fuzzy, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "Updating %s to %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "File %1 not found in the repository."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "Generally ignore this requirement"
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Cannot write to file %1."
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, fuzzy, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "Install %s although it would change the architecture"
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:106
 #, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s obsoletes %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "%1 is not a directory."
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "keep %s"
+#: zypp/media/MediaException.cc:125
+#, fuzzy
+msgid "Empty host name in URI"
+msgstr "Empty CA name."
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, fuzzy, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s provides %s, but has another architecture."
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:140
 #, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%s obsoletes %s"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Invalid URL scheme '%1'."
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:145
+#, fuzzy
+msgid "Operation not supported by medium"
+msgstr "Profile version not supported by Apparmor module\n"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, fuzzy, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s is needed by %s"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, fuzzy, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "None provides %s"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "backup does not exists"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:182
+#, fuzzy
+msgid "Cannot eject any media"
+msgstr "Cannot find any schemes."
+
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "Problem installing source package %s-%s:"
+msgid "Cannot eject media '%s'"
+msgstr "Cannot stat '%s': %m\n"
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:199
 #, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "do not install %s"
+msgid "Permission to access '%s' denied."
+msgstr "Permissions denied"
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Unsupported HTTP authentication method '%s'"
+
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "Cannot create the file."
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
-"rpm created %s as %s, but it was impossible to determine the difference"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm saved %s as %s, but it was impossible to determine the difference"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s conflicts with %s"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
 #, fuzzy
-msgid "some dependency problem"
-msgstr "Cannot install %s due to dependency problems"
+#~ msgid "do not keep %s installed"
+#~ msgstr "not installed"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "uninstallable providers: "
-msgstr "There are no installable providers of %s"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Unable to open %s - %s\n"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "unknown"
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Serbia and Montenegro"
 
-#: zypp/VendorSupportOptions.cc:17
 #, fuzzy
-msgid "unsupported"
-msgstr " - not supported"
+#~ msgid "Unknown Distribution"
+#~ msgstr "Unknown list option"
 
-#: zypp/solver/detail/SATResolver.cc:1000
 #, fuzzy
-msgid "unsupported request"
-msgstr " - not supported"
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "could not resolve dependencies"
 
 #~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
 
 #~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
-
-#~ msgid " Error!"
-#~ msgstr " Error!"
-
-#~ msgid " Important!"
-#~ msgstr " Important!"
-
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "%s cannot be installed due to missing dependencies"
-
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "%s conflicts with other resolvables"
+#~ "File %s failed integrity check with the following key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 
 #~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s conflicts with:\n"
-#~ "%s"
-
-#~ msgid "%s depended on %s"
-#~ msgstr "%s depended on %s"
-
-#~ msgid "%s depends on %s"
-#~ msgstr "%s depends on %s"
-
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s depends on other resolvables"
-
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s depends on:%s"
-
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "%s fulfils dependencies of %s but will be kept on your system"
-
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "%s fulfils dependencies of %s but will be uninstalled"
-
-#~ msgid "%s has missing dependencies"
-#~ msgstr "%s has missing dependencies"
-
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "%s has unfulfilled requirements"
-
-#~ msgid "%s install failed"
-#~ msgstr "%s install failed"
-
-#~ msgid "%s installed ok"
-#~ msgstr "%s installed ok"
-
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s is enhanced by %s"
-
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s is freshened by %s"
-
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s is lacking the requirement %s"
-
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "%s is needed by other resolvables"
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
 
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s is needed by:\n"
-#~ "%s"
-
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "%s is not installed and has been marked as not installable"
-
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s is recommended by %s"
-
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s is replaced by %s"
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
 
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
 #~ msgstr ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
 
 #~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 
 #~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s is suggested by %s"
-
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s is supplemented by %s"
-
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s is not installable due to conflicts with %s"
-
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s obsoletes other resolvables"
-
-#~ msgid "%s part of %s"
-#~ msgstr "%s part of %s"
-
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s provides %s,  but is scheduled to be kept."
-
-#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
 #~ msgstr ""
-#~ "%s provides %s, but another version of that %s is already installed."
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
 
-#, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s provides %s, but has another architecture."
+#~ msgid "%s remove failed"
+#~ msgstr "%s remove failed"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s provides %s, but is scheduled to be uninstalled."
+#~ msgid "Invalid user name or password."
+#~ msgstr "Invalid user name or password."
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s provides %s, but it is locked."
+#~ msgid "rpm output:"
+#~ msgstr "rpm output:"
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s provides %s, but it is not installable.  Try installing it on its own "
-#~ "for more details."
+#~ msgid "%s install failed"
+#~ msgstr "%s install failed"
+
+#~ msgid "%s installed ok"
+#~ msgstr "%s installed ok"
+
+#~ msgid "%s remove ok"
+#~ msgstr "%s remove ok"
 
 #~ msgid ""
 #~ "%s provides this dependency, but would change the architecture of the "
@@ -4995,85 +4937,165 @@ msgstr " - not supported"
 #~ "%s provides this dependency, but would change the architecture of the "
 #~ "installed item"
 
-#~ msgid "%s remove failed"
-#~ msgstr "%s remove failed"
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "Do not install or delete the resolvables concerned"
 
-#~ msgid "%s remove ok"
-#~ msgstr "%s remove ok"
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "Ignore that %s is already set to install"
+
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "Ignore the obsolete %s in %s"
+
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "Ignore this conflict of %s"
+
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "Ignore this requirement just here"
+
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "Install %s although it would change the architecture"
+
+#~ msgid "Install missing resolvables"
+#~ msgstr "Install missing resolvables"
+
+#~ msgid "Keep resolvables"
+#~ msgstr "Keep resolvables"
+
+#~ msgid "Unlock these resolvables"
+#~ msgstr "Unlock these resolvables"
+
+#~ msgid "delete %s"
+#~ msgstr "delete %s"
+
+#~ msgid "install %s"
+#~ msgstr "install %s"
+
+#~ msgid "unlock %s"
+#~ msgstr "unlock %s"
+
+#~ msgid "unlock all resolvables"
+#~ msgstr "unlock all resolvables"
+
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "Cannot open file %1."
+
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "Error reading repositories:"
+
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "Path Parameter parsing not supported for this URL"
+
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "Path parameter parsing not supported for this URL"
+
+#~ msgid "Reading '%s' repository cache"
+#~ msgstr "Reading '%s' repository cache"
+
+#~ msgid "Reading patch and delta rpms from '%s' repository cache"
+#~ msgstr "Reading patch and delta rpms from '%s' repository cache"
+
+#~ msgid "Cleaning repository '%s' cache"
+#~ msgstr "Cleaning repository '%s' cache"
+
+#~ msgid "Reading repository '%s' cache"
+#~ msgstr "Reading repository '%s' cache"
+
+#~ msgid "Software management is already running."
+#~ msgstr "Software management is already running."
+
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s is replaced by %s"
 
 #~ msgid "%s replaced by %s"
 #~ msgstr "%s replaced by %s"
 
-#~ msgid "%s will be deleted by another application. (ApplLow/ApplHigh)\n"
-#~ msgstr "%s will be deleted by another application. (ApplLow/ApplHigh)\n"
-
 #~ msgid "%s will be deleted by the user.\n"
 #~ msgstr "%s will be deleted by the user.\n"
 
-#~ msgid "%s will be installed by another application. (ApplLow/ApplHigh)\n"
-#~ msgstr "%s will be installed by another application. (ApplLow/ApplHigh)\n"
+#~ msgid "%s will be deleted by another application. (ApplLow/ApplHigh)\n"
+#~ msgstr "%s will be deleted by another application. (ApplLow/ApplHigh)\n"
 
 #~ msgid "%s will be installed by the user.\n"
 #~ msgstr "%s will be installed by the user.\n"
 
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "%s will not be uninstalled, because it is still required"
+#~ msgid "%s will be installed by another application. (ApplLow/ApplHigh)\n"
+#~ msgstr "%s will be installed by another application. (ApplLow/ApplHigh)\n"
 
-#~ msgid ", Action: "
-#~ msgstr ", Action: "
+#, fuzzy
+#~ msgid "No valid solution found within %d seconds"
+#~ msgstr "No valid solution found with just resolvables of best architecture."
 
-#~ msgid ", Trigger: "
-#~ msgstr ", Trigger: "
+#~ msgid "No valid solution found with just resolvables of best architecture."
+#~ msgstr "No valid solution found with just resolvables of best architecture."
 
 #~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
+#~ "With this run only resolvables with the best architecture have been "
+#~ "regarded.\n"
 #~ msgstr ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
+#~ "With this run only resolvables with the best architecture have been "
+#~ "regarded.\n"
 
 #~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ "Regarding all possible resolvables takes time, but can come to a valid "
+#~ "result."
 #~ msgstr ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ "Regarding all possible resolvables takes time, but can come to a valid "
+#~ "result."
+
+#~ msgid "Invalid information"
+#~ msgstr "Invalid information"
+
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s is needed by other resolvables"
 
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
+#~ "%s is needed by:\n"
+#~ "%s"
 #~ msgstr ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
+#~ "%s is needed by:\n"
+#~ "%s"
 
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "Can't install %s, because it does not apply to this system."
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "%s conflicts with other resolvables"
 
-#, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "Cannot open file %1."
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s conflicts with:\n"
+#~ "%s"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "Can't satisfy requirement %s for %s"
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s obsoletes other resolvables"
 
-#~ msgid "Cannot install %s to fulfil the dependencies of %s"
-#~ msgstr "Cannot install %s to fulfil the dependencies of %s"
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
 
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "Cannot install %s to fulfil the dependencies of %s"
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s depends on other resolvables"
 
-#~ msgid "Cannot install %s, because it is conflicting"
-#~ msgstr "Cannot install %s, because it is conflicting"
+#~ msgid "%s depends on %s"
+#~ msgstr "%s depends on %s"
 
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "Cannot install %s, because it is conflicting with %s"
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s depends on:%s"
 
 #~ msgid "Child of"
 #~ msgstr "Child of"
 
-#~ msgid "Cleaning repository '%s' cache"
-#~ msgstr "Cleaning repository '%s' cache"
-
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "Do not install or delete the resolvables concerned"
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
 
 #~ msgid ""
 #~ "Due to the problems described above/below, this resolution will not solve "
@@ -5082,257 +5104,235 @@ msgstr " - not supported"
 #~ "Due to the problems described above/below, this resolution will not solve "
 #~ "all dependencies"
 
-#, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "Error reading repositories:"
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "Cannot install %s, because it is conflicting with %s"
 
-#~ msgid "Establishing %s"
-#~ msgstr "Establishing %s"
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "%s is not installed and has been marked as not installable"
 
-#, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Unable to open %s - %s\n"
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "%s has unfulfilled requirements"
 
-#~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
+#~ msgid "%s has missing dependencies"
+#~ msgstr "%s has missing dependencies"
 
-#~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "File %s failed integrity check with the following key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "%s cannot be installed due to missing dependencies"
 
-#~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "%s fulfils dependencies of %s but will be uninstalled"
 
-#~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "%s fulfils dependencies of %s but will be kept on your system"
 
-#~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
-#~ msgstr ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
+#~ msgid "No need to install %s"
+#~ msgstr "No need to install %s"
 
-#~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "Cannot install %s to fulfil the dependencies of %s"
 
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "Ignore that %s is already set to install"
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "Cannot install %s to fulfil the dependencies of %s"
 
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "Ignore the obsolete %s in %s"
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "%s will not be uninstalled, because it is still required"
 
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "Ignore this conflict of %s"
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s obsoletes %s. But %s cannot be deleted, because it is locked."
 
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "Ignore this requirement just here"
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "Cannot install %s, because it is conflicting"
 
-#, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "Install %s although it would change the architecture"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s is not installable due to conflicts with %s"
 
-#~ msgid "Install missing resolvables"
-#~ msgstr "Install missing resolvables"
+#~ msgid "Requirememt %s cannot be fulfilled."
+#~ msgstr "Requirement %s cannot be fulfilled."
 
-#~ msgid "Installing %s"
-#~ msgstr "Installing %s"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "for requiring %s for %s when upgrading %s"
 
-#~ msgid "Invalid information"
-#~ msgstr "Invalid information"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s is lacking the requirement %s"
 
-#~ msgid "Invalid user name or password."
-#~ msgstr "Invalid user name or password."
+#~ msgid ", Action: "
+#~ msgstr ", Action: "
 
-#~ msgid "Keep resolvables"
-#~ msgstr "Keep resolvables"
+#~ msgid ", Trigger: "
+#~ msgstr ", Trigger: "
 
-#~ msgid "Make a solver run with ALL possibilities."
-#~ msgstr "Make a solver run with ALL possibilities."
+#~ msgid "package"
+#~ msgstr "package"
 
-#, fuzzy
-#~ msgid "Make a solver run with best architecture only."
-#~ msgstr "Make a solver run with ALL possibilities."
+#~ msgid "selection"
+#~ msgstr "selection"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "Marking %s as not installable due to conflicts over %s"
+#~ msgid "pattern"
+#~ msgstr "pattern"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "Marking resolvable %s as not installable"
+#~ msgid "product"
+#~ msgstr "product"
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "Marking this resolution attempt as invalid."
+#~ msgid "patch"
+#~ msgstr "patch"
 
-#~ msgid "No need to install %s"
-#~ msgstr "No need to install %s"
+#~ msgid "script"
+#~ msgstr "script"
 
-#~ msgid "No valid solution found with just resolvables of best architecture."
-#~ msgstr "No valid solution found with just resolvables of best architecture."
+#~ msgid "message"
+#~ msgstr "message"
 
-#, fuzzy
-#~ msgid "No valid solution found within %d seconds"
-#~ msgstr "No valid solution found with just resolvables of best architecture."
+#~ msgid "atom"
+#~ msgstr "atom"
 
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "Path Parameter parsing not supported for this URL"
+#~ msgid "system"
+#~ msgstr "system"
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "Path parameter parsing not supported for this URL"
+#~ msgid "Resolvable"
+#~ msgstr "Resolvable"
 
-#~ msgid "Reading '%s' repository cache"
-#~ msgstr "Reading '%s' repository cache"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "Marking this resolution attempt as invalid."
 
-#~ msgid "Reading patch and delta rpms from '%s' repository cache"
-#~ msgstr "Reading patch and delta rpms from '%s' repository cache"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "Marking resolvable %s as not installable"
 
-#~ msgid "Reading repository '%s' cache"
-#~ msgstr "Reading repository '%s' cache"
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
 
 #~ msgid ""
-#~ "Regarding all possible resolvables takes time, but can come to a valid "
-#~ "result."
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
 #~ msgstr ""
-#~ "Regarding all possible resolvables takes time, but can come to a valid "
-#~ "result."
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
 
-#~ msgid "Regarding all resolvables with a compatible architecture."
-#~ msgstr "Regarding all resolvables with a compatible architecture."
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "Can't install %s, because it does not apply to this system."
 
-#, fuzzy
-#~ msgid "Regarding resolvables with best architecture only."
-#~ msgstr "Regarding all resolvables with compatible architecture."
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
 
-#~ msgid "Requirememt %s cannot be fulfilled."
-#~ msgstr "Requirement %s cannot be fulfilled."
+#~ msgid "This would invalidate %s."
+#~ msgstr "This would invalidate %s."
 
-#~ msgid "Resolvable"
-#~ msgstr "Resolvable"
+#~ msgid "Establishing %s"
+#~ msgstr "Establishing %s"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Serbia and Montenegro"
+#~ msgid "Installing %s"
+#~ msgstr "Installing %s"
 
 #~ msgid "Skipping %s: already installed"
 #~ msgstr "Skipping %s: already installed"
 
-#~ msgid "Software management is already running."
-#~ msgstr "Software management is already running."
-
-#, fuzzy
-#~ msgid "Start the next solver run with doubled timeout."
-#~ msgstr "Make a solver run with ALL possibilities."
-
 #~ msgid "There are no alternative providers of %s installed"
 #~ msgstr "There are no alternative providers of %s installed"
 
-#~ msgid "This would invalidate %s."
-#~ msgstr "This would invalidate %s."
+#~ msgid "for %s"
+#~ msgstr "for %s"
 
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "Unknown list option"
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "Upgrading to %s to avoid removing %s is not possible."
 
-#~ msgid "Unlock these resolvables"
-#~ msgstr "Unlock these resolvables"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s provides %s, but is scheduled to be uninstalled."
 
-#~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
 #~ msgstr ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
-
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "Upgrading to %s to avoid removing %s is not possible."
+#~ "%s provides %s, but another version of that %s is already installed."
 
 #~ msgid ""
-#~ "With this run only resolvables with the best architecture have been "
-#~ "regarded.\n"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "With this run only resolvables with the best architecture have been "
-#~ "regarded.\n"
+#~ "%s provides %s, but it is not installable.  Try installing it on its own "
+#~ "for more details."
 
-#~ msgid "atom"
-#~ msgstr "atom"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s provides %s, but it is locked."
 
-#~ msgid "delete %s"
-#~ msgstr "delete %s"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s provides %s,  but is scheduled to be kept."
 
 #, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "not installed"
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s provides %s, but has another architecture."
 
-#~ msgid "for %s"
-#~ msgstr "for %s"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "Can't satisfy requirement %s for %s"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "for requiring %s for %s when upgrading %s"
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "Marking %s as not installable due to conflicts over %s"
 
 #~ msgid "from %s"
 #~ msgstr "from %s"
 
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "could not resolve dependencies"
+#~ msgid " Error!"
+#~ msgstr " Error!"
 
-#~ msgid "install %s"
-#~ msgstr "install %s"
+#~ msgid " Important!"
+#~ msgstr " Important!"
 
-#~ msgid "message"
-#~ msgstr "message"
+#~ msgid "Make a solver run with ALL possibilities."
+#~ msgstr "Make a solver run with ALL possibilities."
 
-#~ msgid "package"
-#~ msgstr "package"
+#~ msgid "Regarding all resolvables with a compatible architecture."
+#~ msgstr "Regarding all resolvables with a compatible architecture."
 
-#~ msgid "patch"
-#~ msgstr "patch"
+#, fuzzy
+#~ msgid "Make a solver run with best architecture only."
+#~ msgstr "Make a solver run with ALL possibilities."
 
-#~ msgid "pattern"
-#~ msgstr "pattern"
+#, fuzzy
+#~ msgid "Regarding resolvables with best architecture only."
+#~ msgstr "Regarding all resolvables with compatible architecture."
 
-#~ msgid "product"
-#~ msgstr "product"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s depended on %s"
 
-#~ msgid "rpm output:"
-#~ msgstr "rpm output:"
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s is recommended by %s"
 
-#~ msgid "script"
-#~ msgstr "script"
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s is suggested by %s"
 
-#~ msgid "selection"
-#~ msgstr "selection"
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s is enhanced by %s"
 
-#~ msgid "system"
-#~ msgstr "system"
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s is supplemented by %s"
 
-#~ msgid "unlock %s"
-#~ msgstr "unlock %s"
+#~ msgid "%s part of %s"
+#~ msgstr "%s part of %s"
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "unlock all resolvables"
+#, fuzzy
+#~ msgid "Start the next solver run with doubled timeout."
+#~ msgstr "Make a solver run with ALL possibilities."
+
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s is freshened by %s"
index f5c8d53..99eca97 100644 (file)
@@ -16,1540 +16,2507 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr ""
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
+#: zypp/Url.cc:300
 #, fuzzy
-msgid " executed"
-msgstr "Execute"
+msgid "Unable to clone Url object"
+msgstr "Unable to determine target"
 
-#: zypp/target/TargetImpl.cc:332
+#: zypp/Url.cc:313
 #, fuzzy
-msgid " execution failed"
-msgstr "DBI Execution failed: %s"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
+msgid "Invalid empty Url object reference"
+msgstr "Invalid preference"
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
-msgstr ""
+# ###############################################################################
+# Old yast2-agents.po
+#: zypp/Url.cc:326 zypp/Url.cc:340
+#, fuzzy
+msgid "Unable to parse Url components"
+msgstr "Unable to open"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:99
+msgid "Conflicts"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/Dep.cc:100
+#, fuzzy
+msgid "Obsoletes"
+msgstr "Obsoletes"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#: zypp/target/TargetImpl.cc:310
+#, fuzzy
+msgid " executed"
+msgstr "Execute"
+
+#: zypp/target/TargetImpl.cc:332
+#, fuzzy
+msgid " execution failed"
+msgstr "DBI Execution failed: %s"
+
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:229
+#, fuzzy
+msgid "Unable to create dbus connection"
+msgstr "unable to create work area\n"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+#, fuzzy
+msgid "RPM failed: "
+msgstr "Download failed: "
+
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr ""
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Reading log entries from %s."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Can't find %s."
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr ""
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Invalid privilege '{0}'"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Can't find %s."
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:173
+#, fuzzy, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Invalid component URI: "
+
+#: zypp/url/UrlBase.cc:180
+#, fuzzy, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Invalid component URI: "
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:830
+#, fuzzy, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Invalid privilege '{0}'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1049
+#, fuzzy, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Invalid component URI: "
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1081
+#, fuzzy, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Invalid component URI: "
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Can't find %s."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, fuzzy, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Can't find %s."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "unknown"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr ""
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr ""
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr ""
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr ""
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr ""
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr ""
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr ""
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr ""
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr ""
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr ""
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr ""
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr ""
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr ""
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr ""
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr ""
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr ""
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr ""
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr ""
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr ""
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr ""
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr ""
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr ""
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr ""
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr ""
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr ""
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr ""
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr ""
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr ""
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr ""
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr ""
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr ""
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr ""
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr ""
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr ""
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr ""
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr ""
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr ""
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr ""
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr ""
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr ""
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr ""
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr ""
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr ""
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr ""
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr ""
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr ""
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr ""
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr ""
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr ""
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr ""
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr ""
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr ""
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr ""
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr ""
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr ""
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr ""
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr ""
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr ""
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr ""
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr ""
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr ""
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr ""
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr ""
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr ""
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr ""
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr ""
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr ""
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr ""
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr ""
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr ""
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr ""
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr ""
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr ""
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr ""
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr ""
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr ""
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr ""
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr ""
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr ""
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr ""
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr ""
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr ""
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr ""
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr ""
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr ""
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr ""
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr ""
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr ""
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr ""
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr ""
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr ""
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr ""
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr ""
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr ""
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr ""
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr ""
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr ""
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr ""
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr ""
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr ""
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr ""
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr ""
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr ""
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr ""
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr ""
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr ""
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr ""
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr ""
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr ""
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
 msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
 msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
 msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
 msgstr ""
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
 msgstr ""
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
 msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
 msgstr ""
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
 msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
 msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
 msgstr ""
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
 msgstr ""
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
 msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
 msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
 msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
 msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
 msgstr ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
 msgstr ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
 msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
 msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
 msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr ""
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr ""
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr ""
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr ""
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr ""
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr ""
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr ""
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr ""
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr ""
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr ""
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr ""
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr ""
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr ""
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
 msgstr ""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
 msgstr ""
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
 msgstr ""
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
 msgstr ""
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
 msgstr ""
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
 msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
 msgstr ""
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
 msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
 msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
 msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
 msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
 msgstr ""
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
 msgstr ""
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
 msgstr ""
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
 msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
 msgstr ""
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
 msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
 msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
 msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
 msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
 msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
 msgstr ""
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
 msgstr ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
 msgstr ""
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
 msgstr ""
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
 msgstr ""
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
 msgstr ""
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
 msgstr ""
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
 msgstr ""
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
 msgstr ""
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
 msgstr ""
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
 msgstr ""
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
 msgstr ""
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
 msgstr ""
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
 msgstr ""
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
 msgstr ""
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
 msgstr ""
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
 msgstr ""
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
 msgstr ""
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
 msgstr ""
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Can't find %s."
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr ""
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
 msgstr ""
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Can't find %s."
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr ""
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Can't find %s."
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr ""
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:381
-#, fuzzy, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Can't find %s."
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Reading log entries from %s."
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Couldn't open file: %s."
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr ""
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Couldn't open file: %s."
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr ""
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, fuzzy, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Reading log entries from %s."
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
 msgstr ""
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
 msgstr ""
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
 msgstr ""
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
 msgstr ""
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
 msgstr ""
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
 msgstr ""
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
 msgstr ""
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
 msgstr ""
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
 msgstr ""
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
 msgstr ""
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
 msgstr ""
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
 msgstr ""
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
 msgstr ""
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
 msgstr ""
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
 msgstr ""
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
 msgstr ""
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
 msgstr ""
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
 msgstr ""
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
 msgstr ""
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
 msgstr ""
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
 msgstr ""
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
 msgstr ""
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
 msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr ""
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
 msgstr ""
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
 msgstr ""
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
 msgstr ""
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
 msgstr ""
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
 msgstr ""
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
 msgstr ""
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
 msgstr ""
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
 msgstr ""
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
 msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
 msgstr ""
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
 msgstr ""
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
 msgstr ""
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
 msgstr ""
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
 msgstr ""
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
 msgstr ""
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
 msgstr ""
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
 msgstr ""
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
 msgstr ""
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
 msgstr ""
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr ""
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
 msgstr ""
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
 msgstr ""
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
 msgstr ""
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
 msgstr ""
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
 msgstr ""
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
 msgstr ""
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
 msgstr ""
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
 msgstr ""
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
 msgstr ""
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
 msgstr ""
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
 msgstr ""
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
 msgstr ""
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
 msgstr ""
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
 msgstr ""
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr ""
 
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr ""
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
 msgstr ""
 
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Failed to parse: %s."
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr ""
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Failed to parse: %s."
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
 msgstr ""
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
 msgstr ""
 
 #. language code: fil
@@ -1557,11 +2524,6 @@ msgstr ""
 msgid "Filipino"
 msgstr ""
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr ""
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1572,40 +2534,16 @@ msgstr ""
 msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr ""
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr ""
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr ""
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr ""
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr ""
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1621,46 +2559,21 @@ msgstr ""
 msgid "Frisian"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr ""
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr ""
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr ""
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr ""
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr ""
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr ""
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr ""
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr ""
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr ""
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1671,14 +2584,9 @@ msgstr ""
 msgid "Gbaya"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr ""
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
 msgstr ""
 
 #. language code: geo kat ka
@@ -1691,6 +2599,36 @@ msgstr ""
 msgid "German"
 msgstr ""
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr ""
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr ""
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr ""
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr ""
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr ""
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr ""
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1701,30 +2639,6 @@ msgstr ""
 msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr ""
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr ""
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr ""
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr ""
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr ""
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1745,11 +2659,6 @@ msgstr ""
 msgid "Grebo"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr ""
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1760,61 +2669,16 @@ msgstr ""
 msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr ""
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr ""
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr ""
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr ""
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr ""
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr ""
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr ""
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr ""
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr ""
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr ""
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr ""
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1825,52 +2689,21 @@ msgstr ""
 msgid "Haida"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr ""
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr ""
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr ""
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1896,16 +2729,6 @@ msgstr ""
 msgid "Hindi"
 msgstr ""
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr ""
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1916,231 +2739,104 @@ msgstr ""
 msgid "Hmong"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr ""
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr ""
-
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr ""
-
-#. language code: hun hu
-#: zypp/LanguageCode.cc:537
-msgid "Hungarian"
-msgstr ""
-
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr ""
-
-#. language code: hup
-#: zypp/LanguageCode.cc:539
-msgid "Hupa"
-msgstr ""
-
-#. language code: iba
-#: zypp/LanguageCode.cc:541
-msgid "Iban"
-msgstr ""
-
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr ""
-
-#. language code: ice isl is
-#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
-msgid "Icelandic"
-msgstr ""
-
-#. language code: ido io
-#: zypp/LanguageCode.cc:549
-msgid "Ido"
-msgstr ""
-
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr ""
-
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
-msgstr ""
-
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr ""
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr ""
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr ""
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr ""
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr ""
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr ""
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr ""
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr ""
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr ""
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, fuzzy, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Invalid component URI: "
-
-#: zypp/url/UrlBase.cc:173
-#, fuzzy, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Invalid component URI: "
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
 msgstr ""
 
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
+#. language code: hun hu
+#: zypp/LanguageCode.cc:537
+msgid "Hungarian"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:830
-#, fuzzy, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Invalid privilege '{0}'"
+#. language code: hup
+#: zypp/LanguageCode.cc:539
+msgid "Hupa"
+msgstr ""
 
-#: zypp/Url.cc:313
-#, fuzzy
-msgid "Invalid empty Url object reference"
-msgstr "Invalid preference"
+#. language code: iba
+#: zypp/LanguageCode.cc:541
+msgid "Iban"
+msgstr ""
 
-#: zypp/url/UrlBase.cc:1049
-#, fuzzy, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Invalid component URI: "
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr ""
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
+#. language code: ice isl is
+#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
+msgid "Icelandic"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
+#. language code: ido io
+#: zypp/LanguageCode.cc:549
+msgid "Ido"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1081
-#, fuzzy, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Invalid component URI: "
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
+msgstr ""
 
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Invalid privilege '{0}'"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr ""
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Invalid privilege '{0}'"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr ""
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
 msgstr ""
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
 msgstr ""
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
 msgstr ""
 
 #. language code: iro
@@ -2148,33 +2844,19 @@ msgstr ""
 msgid "Iroquoian Languages"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr ""
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr ""
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr ""
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
 msgstr ""
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
 msgstr ""
 
 #. language code: jpn ja
@@ -2182,19 +2864,9 @@ msgstr ""
 msgid "Japanese"
 msgstr ""
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr ""
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
 #. language code: jrb
@@ -2202,14 +2874,9 @@ msgstr ""
 msgid "Judeo-Arabic"
 msgstr ""
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr ""
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
 #. language code: kab
@@ -2227,11 +2894,6 @@ msgstr ""
 msgid "Kalaallisut"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr ""
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2242,21 +2904,6 @@ msgstr ""
 msgid "Kannada"
 msgstr ""
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr ""
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr ""
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr ""
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2267,9 +2914,9 @@ msgstr ""
 msgid "Kashmiri"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
 #. language code: kaw
@@ -2282,14 +2929,9 @@ msgstr ""
 msgid "Kazakh"
 msgstr ""
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr ""
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
 #. language code: kha
@@ -2297,16 +2939,16 @@ msgstr ""
 msgid "Khasi"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr ""
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr ""
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr ""
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2317,11 +2959,6 @@ msgstr ""
 msgid "Kikuyu"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr ""
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2332,14 +2969,14 @@ msgstr ""
 msgid "Kirghiz"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
 #. language code: kom kv
@@ -2352,11 +2989,6 @@ msgstr ""
 msgid "Kongo"
 msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr ""
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2372,11 +3004,21 @@ msgstr ""
 msgid "Kpelle"
 msgstr ""
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr ""
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr ""
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr ""
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2389,12 +3031,7 @@ msgstr ""
 
 #. language code: kur ku
 #: zypp/LanguageCode.cc:651
-msgid "Kurdish"
-msgstr ""
-
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
+msgid "Kurdish"
 msgstr ""
 
 #. language code: kut
@@ -2402,16 +3039,6 @@ msgstr ""
 msgid "Kutenai"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr ""
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr ""
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2432,68 +3059,21 @@ msgstr ""
 msgid "Lao"
 msgstr ""
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr ""
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr ""
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr ""
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr ""
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr ""
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr ""
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr ""
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr ""
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2504,39 +3084,29 @@ msgstr ""
 msgid "Lingala"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr ""
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr ""
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
+#. language code: loz
+#: zypp/LanguageCode.cc:677
+msgid "Lozi"
 msgstr ""
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
 msgstr ""
 
-#. language code: loz
-#: zypp/LanguageCode.cc:677
-msgid "Lozi"
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
 msgstr ""
 
 #. language code: lub lu
@@ -2544,9 +3114,9 @@ msgstr ""
 msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
 msgstr ""
 
 #. language code: lui
@@ -2554,11 +3124,6 @@ msgstr ""
 msgid "Luiseno"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr ""
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2574,35 +3139,11 @@ msgstr ""
 msgid "Lushai"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr ""
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr ""
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr ""
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr ""
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr ""
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr ""
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2613,6 +3154,11 @@ msgstr ""
 msgid "Magahi"
 msgstr ""
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr ""
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2623,162 +3169,49 @@ msgstr ""
 msgid "Makasar"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr ""
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr ""
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr ""
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr ""
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr ""
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr ""
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr ""
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr ""
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr ""
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr ""
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr ""
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr ""
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr ""
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr ""
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr ""
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr ""
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr ""
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr ""
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr ""
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr ""
-
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
-msgstr ""
-
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr ""
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr ""
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr ""
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr ""
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
 msgstr ""
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
 msgstr ""
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
 msgstr ""
 
 #. language code: men
@@ -2786,14 +3219,9 @@ msgstr ""
 msgid "Mende"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr ""
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
 #. language code: mic
@@ -2806,54 +3234,49 @@ msgstr ""
 msgid "Minangkabau"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr ""
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr ""
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
 msgstr ""
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
 msgstr ""
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
 msgstr ""
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
 msgstr ""
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
 msgstr ""
 
 #. language code: mon mn
@@ -2861,31 +3284,11 @@ msgstr ""
 msgid "Mongolian"
 msgstr ""
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr ""
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr ""
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr ""
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr ""
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2896,9 +3299,29 @@ msgstr ""
 msgid "Munda languages"
 msgstr ""
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr ""
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr ""
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr ""
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr ""
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
 msgstr ""
 
 #. language code: nah
@@ -2906,15 +3329,14 @@ msgstr ""
 msgid "Nahuatl"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
 msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
 #. language code: nav nv
@@ -2922,34 +3344,24 @@ msgstr ""
 msgid "Navajo"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr ""
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr ""
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr ""
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr ""
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr ""
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
 msgstr ""
 
 #. language code: nep ne
@@ -2957,123 +3369,44 @@ msgstr ""
 msgid "Nepali"
 msgstr ""
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr ""
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr ""
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr ""
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
-
-#. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
-msgstr ""
-
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr ""
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr ""
-
-#. language code: nic
-#: zypp/LanguageCode.cc:799
-msgid "Niger-Kordofanian (Other)"
-msgstr ""
-
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr ""
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr ""
-
-#. language code: niu
-#: zypp/LanguageCode.cc:801
-msgid "Niuean"
-msgstr ""
-
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr ""
-
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr ""
-
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
-msgstr ""
-
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
+#. language code: nic
+#: zypp/LanguageCode.cc:799
+msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+msgid "Niuean"
 msgstr ""
 
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
 msgstr ""
 
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
 msgstr ""
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
 msgstr ""
 
 #. language code: nor no
@@ -3081,23 +3414,24 @@ msgstr ""
 msgid "Norwegian"
 msgstr ""
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
+#. language code: nub
+#: zypp/LanguageCode.cc:815
+msgid "Nubian Languages"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
 msgstr ""
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
-msgid "Nubian Languages"
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
 msgstr ""
 
 #. language code: nym
@@ -3120,11 +3454,6 @@ msgstr ""
 msgid "Nzima"
 msgstr ""
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "Obsoletes"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3135,20 +3464,6 @@ msgstr ""
 msgid "Ojibwa"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3169,17 +3484,24 @@ msgstr ""
 msgid "Ossetian"
 msgstr ""
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr ""
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr ""
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr ""
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
 #. language code: pal
@@ -3187,46 +3509,11 @@ msgstr ""
 msgid "Pahlavi"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr ""
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr ""
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr ""
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr ""
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr ""
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr ""
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr ""
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3237,39 +3524,9 @@ msgstr ""
 msgid "Papiamento"
 msgstr ""
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr ""
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr ""
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr ""
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
-
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Permission denied\n"
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr ""
 
 #. language code: peo
@@ -3277,9 +3534,9 @@ msgstr ""
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
 msgstr ""
 
 #. language code: phi
@@ -3287,33 +3544,14 @@ msgstr ""
 msgid "Philippine (Other)"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr ""
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr ""
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr ""
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
 #. language code: pol pl
@@ -3321,9 +3559,9 @@ msgstr ""
 msgid "Polish"
 msgstr ""
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
 msgstr ""
 
 #. language code: por pt
@@ -3336,54 +3574,14 @@ msgstr ""
 msgid "Prakrit Languages"
 msgstr ""
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
-
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr ""
-
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
-msgstr ""
-
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
+
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
 msgstr ""
 
 #. language code: que qu
@@ -3391,23 +3589,6 @@ msgstr ""
 msgid "Quechua"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "Download failed: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr ""
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3423,50 +3604,14 @@ msgstr ""
 msgid "Rarotongan"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr ""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr ""
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr ""
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
 msgstr ""
 
 #. language code: rom
@@ -3474,6 +3619,11 @@ msgstr ""
 msgid "Romany"
 msgstr ""
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr ""
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3484,42 +3634,24 @@ msgstr ""
 msgid "Russian"
 msgstr ""
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr ""
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr ""
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr ""
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr ""
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
 msgstr ""
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
 #. language code: sal
@@ -3532,89 +3664,19 @@ msgstr ""
 msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr ""
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr ""
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr ""
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr ""
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr ""
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr ""
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr ""
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr ""
-
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr ""
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr ""
-
 #. language code: sas
 #: zypp/LanguageCode.cc:919
 msgid "Sasak"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr ""
-
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr ""
-
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr ""
-
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr ""
-
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr ""
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
 msgstr ""
 
 #. language code: scc srp sr
@@ -3622,102 +3684,49 @@ msgstr ""
 msgid "Serbian"
 msgstr ""
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr ""
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
-
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr ""
-
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr ""
-
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr ""
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr ""
-
 #. language code: scn
 #: zypp/LanguageCode.cc:927
 msgid "Sicilian"
 msgstr ""
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr ""
-
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr ""
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
 msgstr ""
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
 msgstr ""
 
 #. language code: sin si
@@ -3725,24 +3734,14 @@ msgstr ""
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr ""
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -3755,98 +3754,79 @@ msgstr ""
 msgid "Slovak"
 msgstr ""
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr ""
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr ""
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr ""
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr ""
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr ""
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
 msgstr ""
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
 msgstr ""
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
 msgstr ""
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
 msgstr ""
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
 msgstr ""
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
 msgstr ""
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
 msgstr ""
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
 msgstr ""
 
 #. language code: spa es
@@ -3854,18 +3834,24 @@ msgstr ""
 msgid "Spanish"
 msgstr ""
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
 msgstr ""
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
 msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
 #. language code: suk
@@ -3873,33 +3859,19 @@ msgstr ""
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr ""
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr ""
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr ""
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
 #. language code: swa sw
@@ -3907,86 +3879,24 @@ msgstr ""
 msgid "Swahili"
 msgstr ""
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr ""
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr ""
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr ""
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr ""
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr ""
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr ""
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr ""
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
 msgstr ""
 
-#. language code: tai
-#: zypp/LanguageCode.cc:1015
-msgid "Tai (Other)"
-msgstr ""
-
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr ""
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr ""
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr ""
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
+#. language code: tai
+#: zypp/LanguageCode.cc:1015
+msgid "Tai (Other)"
 msgstr ""
 
 #. language code: tam ta
@@ -3994,11 +3904,6 @@ msgstr ""
 msgid "Tamil"
 msgstr ""
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4009,6 +3914,11 @@ msgstr ""
 msgid "Telugu"
 msgstr ""
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4019,31 +3929,19 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr ""
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
 msgstr ""
 
 #. language code: tib bod bo
@@ -4061,45 +3959,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4112,15 +3989,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4128,14 +3999,19 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr ""
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr ""
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
 msgstr ""
 
 #. language code: tum
@@ -4143,50 +4019,24 @@ msgstr ""
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr ""
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr ""
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr ""
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr ""
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr ""
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr ""
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr ""
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
 msgstr ""
 
 #. language code: tyv
@@ -4194,21 +4044,11 @@ msgstr ""
 msgid "Tuvinian"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr ""
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr ""
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4219,11 +4059,6 @@ msgstr ""
 msgid "Uighur"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr ""
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4234,575 +4069,728 @@ msgstr ""
 msgid "Umbundu"
 msgstr ""
 
-#: zypp/Url.cc:300
-#, fuzzy
-msgid "Unable to clone Url object"
-msgstr "Unable to determine target"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-#, fuzzy
-msgid "Unable to create dbus connection"
-msgstr "unable to create work area\n"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr ""
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr ""
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr ""
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr ""
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr ""
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr ""
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr ""
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr ""
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr ""
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr ""
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr ""
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr ""
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr ""
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr ""
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-# ###############################################################################
-# Old yast2-agents.po
-#: zypp/Url.cc:326 zypp/Url.cc:340
-#, fuzzy
-msgid "Unable to parse Url components"
-msgstr "Unable to open"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
 msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
 msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
 msgstr ""
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
+
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid "Signature file %s not found"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
+#: zypp/repo/RepoProvideFile.cc:259
+#, fuzzy, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Reading log entries from %s."
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
 msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
 msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
 msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
 msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "Reading log entries from %s."
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "Obsoletes"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Reading log entries from %s."
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr ""
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Couldn't open file: %s."
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/base/StrMatcher.cc:152
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/base/StrMatcher.cc:153
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/base/StrMatcher.cc:158
+#, fuzzy, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Invalid privilege '{0}'"
+
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Reading log entries from %s."
+msgid "Failed to mount %s on %s"
+msgstr "Failed to parse: %s."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr ""
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Failed to parse: %s."
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Cannot write file '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, c-format, boost-format
-msgid "downgrade of %s to %s"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr ""
+
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "Obsoletes"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
+
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:199
 #, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "Reading log entries from %s."
+msgid "Permission to access '%s' denied."
+msgstr "Permission denied\n"
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "unknown"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "List package's requirements"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "Couldn't open file: %s."
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#, fuzzy
-#~ msgid "Downloading %s"
-#~ msgstr "Downloading Package Lists"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
 #, fuzzy
 #~ msgid "Failed to download %s from %s"
@@ -4813,39 +4801,51 @@ msgstr ""
 #~ msgstr "Invalid password"
 
 #, fuzzy
-#~ msgid "Reading filelist from %s"
-#~ msgstr "Reading log entries from %s."
+#~ msgid "Can't open solv-file: "
+#~ msgstr "Couldn't open file: %s."
 
 #, fuzzy
-#~ msgid "Reading packages file"
-#~ msgstr "No package owns file {0}"
+#~ msgid "Software management is already running."
+#~ msgstr "A daemon is already running"
+
+#~ msgid "Requirememt %s cannot be fulfilled."
+#~ msgstr "Requirement %s cannot be fulfilled."
 
 #, fuzzy
-#~ msgid "Reading packages from %s"
-#~ msgstr "Reading log entries from %s."
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "List package's requirements"
+
+#~ msgid "system"
+#~ msgstr "system"
 
 #, fuzzy
-#~ msgid "Reading pattern from %s"
-#~ msgstr "Reading log entries from %s."
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "Unable to determine target"
+
+#, fuzzy
+#~ msgid "Unable to restore all sources."
+#~ msgstr "Unable to determine target"
 
 #, fuzzy
 #~ msgid "Reading product from %s"
 #~ msgstr "Reading log entries from %s."
 
-#~ msgid "Requirememt %s cannot be fulfilled."
-#~ msgstr "Requirement %s cannot be fulfilled."
+#, fuzzy
+#~ msgid "Reading filelist from %s"
+#~ msgstr "Reading log entries from %s."
 
 #, fuzzy
-#~ msgid "Software management is already running."
-#~ msgstr "A daemon is already running"
+#~ msgid "Reading packages from %s"
+#~ msgstr "Reading log entries from %s."
 
 #, fuzzy
-#~ msgid "Unable to parse Url authority"
-#~ msgstr "Unable to determine target"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "Reading log entries from %s."
 
 #, fuzzy
-#~ msgid "Unable to restore all sources."
-#~ msgstr "Unable to determine target"
+#~ msgid "Reading packages file"
+#~ msgstr "No package owns file {0}"
 
-#~ msgid "system"
-#~ msgstr "system"
+#, fuzzy
+#~ msgid "Downloading %s"
+#~ msgstr "Downloading Package Lists"
index f62e65f..ffd1f6b 100644 (file)
--- a/po/eo.po
+++ b/po/eo.po
@@ -15,831 +15,811 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-msgid " execution failed"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:99
+msgid "Conflicts"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
+#: zypp/target/TargetImpl.cc:332
+msgid " execution failed"
 msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
 msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
 msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
 msgstr ""
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
 msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
 msgstr ""
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
 msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
 msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
 msgstr ""
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
 msgstr ""
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
 msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
 msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
 msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr ""
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
 msgstr ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
 msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
 msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/RepoManager.cc:1366
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
+msgid "Failed to cache repo (%d)."
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
 msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
 msgstr ""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
 msgstr ""
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
 msgstr ""
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
 msgstr ""
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
 msgstr ""
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
 msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
 msgstr ""
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
 msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
 msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
 msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
 msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
 msgstr ""
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
 msgstr ""
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
 msgstr ""
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
 msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
 msgstr ""
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
 msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
 msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
 msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
 msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
 msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr ""
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
 msgstr ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
 msgstr ""
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
 msgstr ""
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
 msgstr ""
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
 msgstr ""
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
 msgstr ""
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
 msgstr ""
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
 msgstr ""
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
 msgstr ""
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
 msgstr ""
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
 msgstr ""
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
 msgstr ""
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
 msgstr ""
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
 msgstr ""
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
 msgstr ""
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
 msgstr ""
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
 msgstr ""
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
 msgstr ""
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr ""
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
 msgstr ""
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
 msgstr ""
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
 msgstr ""
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
 msgstr ""
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
 msgstr ""
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
 msgstr ""
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
 msgstr ""
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
 msgstr ""
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
 msgstr ""
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
 msgstr ""
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
 msgstr ""
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
 msgstr ""
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
 msgstr ""
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
 msgstr ""
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
 msgstr ""
 
 #. :COD:180:
@@ -847,2869 +827,2895 @@ msgstr ""
 msgid "Central African Republic"
 msgstr ""
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
 msgstr ""
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
 msgstr ""
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
 msgstr ""
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
 msgstr ""
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
 msgstr ""
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
 msgstr ""
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
 msgstr ""
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
 msgstr ""
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
 msgstr ""
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
 msgstr ""
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
 msgstr ""
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
 msgstr ""
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
 msgstr ""
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
 msgstr ""
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
 msgstr ""
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
 msgstr ""
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
 msgstr ""
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
 msgstr ""
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
 msgstr ""
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
 msgstr ""
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
 msgstr ""
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
 msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
 msgstr ""
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
 msgstr ""
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
 msgstr ""
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
 msgstr ""
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
 msgstr ""
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
 msgstr ""
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
 msgstr ""
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
 msgstr ""
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
 msgstr ""
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
 msgstr ""
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
 msgstr ""
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
 msgstr ""
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
 msgstr ""
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
 msgstr ""
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
 msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
 msgstr ""
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
 msgstr ""
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
 msgstr ""
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
 msgstr ""
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
 msgstr ""
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
 msgstr ""
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
 msgstr ""
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
 msgstr ""
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
 msgstr ""
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
 msgstr ""
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
 msgstr ""
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
 msgstr ""
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
 msgstr ""
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
 msgstr ""
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
+#: zypp/CountryCode.cc:261
+msgid "India"
 msgstr ""
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
 msgstr ""
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
 msgstr ""
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
 msgstr ""
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
 msgstr ""
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
 msgstr ""
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
 msgstr ""
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
 msgstr ""
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
 msgstr ""
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
 msgstr ""
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
 msgstr ""
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
 msgstr ""
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
 msgstr ""
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
 msgstr ""
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
 msgstr ""
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
 msgstr ""
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
 msgstr ""
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
 msgstr ""
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
 msgstr ""
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
 msgstr ""
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
 msgstr ""
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
 msgstr ""
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
 msgstr ""
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
 msgstr ""
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
 msgstr ""
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
 msgstr ""
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
 msgstr ""
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
 msgstr ""
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
 msgstr ""
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
 msgstr ""
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
 msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
 msgstr ""
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
 msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
 msgstr ""
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
 msgstr ""
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
 msgstr ""
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
 msgstr ""
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr ""
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr ""
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr ""
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr ""
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr ""
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr ""
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr ""
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr ""
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr ""
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr ""
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr ""
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr ""
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr ""
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr ""
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
 msgstr ""
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
 msgstr ""
 
-#. language code: fil
-#: zypp/LanguageCode.cc:437
-msgid "Filipino"
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
 msgstr ""
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
 msgstr ""
 
-#. language code: fin fi
-#: zypp/LanguageCode.cc:439
-msgid "Finnish"
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
 msgstr ""
 
-#. language code: fiu
-#: zypp/LanguageCode.cc:441
-msgid "Finno-Ugrian (Other)"
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
 msgstr ""
 
-#. language code: fon
-#: zypp/LanguageCode.cc:443
-msgid "Fon"
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
 msgstr ""
 
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
 msgstr ""
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
 msgstr ""
 
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
 msgstr ""
 
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
 msgstr ""
 
-#. language code: frm
-#: zypp/LanguageCode.cc:449
-msgid "French, Middle (ca.1400-1600)"
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
 msgstr ""
 
-#. language code: fro
-#: zypp/LanguageCode.cc:451
-msgid "French, Old (842-ca.1400)"
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
 msgstr ""
 
-#. language code: fry fy
-#: zypp/LanguageCode.cc:453
-msgid "Frisian"
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
 msgstr ""
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
 msgstr ""
 
-#. language code: gaa
-#: zypp/LanguageCode.cc:459
-msgid "Ga"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
 msgstr ""
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
 msgstr ""
 
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
 msgstr ""
 
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
 msgstr ""
 
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
 msgstr ""
 
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
 msgstr ""
 
-#. language code: gay
-#: zypp/LanguageCode.cc:461
-msgid "Gayo"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
 msgstr ""
 
-#. language code: gba
-#: zypp/LanguageCode.cc:463
-msgid "Gbaya"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
 msgstr ""
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
 msgstr ""
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
 msgstr ""
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-msgid "German"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
 msgstr ""
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
 msgstr ""
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
 msgstr ""
 
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
 msgstr ""
 
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr ""
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr ""
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
 msgstr ""
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
 msgstr ""
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
 msgstr ""
 
-#. language code: gon
-#: zypp/LanguageCode.cc:491
-msgid "Gondi"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
 msgstr ""
 
-#. language code: gor
-#: zypp/LanguageCode.cc:493
-msgid "Gorontalo"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
 msgstr ""
 
-#. language code: got
-#: zypp/LanguageCode.cc:495
-msgid "Gothic"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
 msgstr ""
 
-#. language code: grb
-#: zypp/LanguageCode.cc:497
-msgid "Grebo"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
 msgstr ""
 
-#. language code: grc
-#: zypp/LanguageCode.cc:499
-msgid "Greek, Ancient (to 1453)"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
 msgstr ""
 
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
 msgstr ""
 
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
 msgstr ""
 
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
 msgstr ""
 
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
 msgstr ""
 
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
 msgstr ""
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
 msgstr ""
 
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
 msgstr ""
 
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
 msgstr ""
 
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
 msgstr ""
 
-#. language code: guj gu
-#: zypp/LanguageCode.cc:507
-msgid "Gujarati"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
 msgstr ""
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
 msgstr ""
 
-#. language code: gwi
-#: zypp/LanguageCode.cc:509
-msgid "Gwich'in"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
 msgstr ""
 
-#. language code: hai
-#: zypp/LanguageCode.cc:511
-msgid "Haida"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
 msgstr ""
 
-#. language code: hat ht
-#: zypp/LanguageCode.cc:513
-msgid "Haitian"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
 msgstr ""
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
 msgstr ""
 
-#. language code: hau ha
-#: zypp/LanguageCode.cc:515
-msgid "Hausa"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
 msgstr ""
 
-#. language code: haw
-#: zypp/LanguageCode.cc:517
-msgid "Hawaiian"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#. language code: heb he
-#: zypp/LanguageCode.cc:519
-msgid "Hebrew"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#. language code: her hz
-#: zypp/LanguageCode.cc:521
-msgid "Herero"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
 msgstr ""
 
-#. language code: hil
-#: zypp/LanguageCode.cc:523
-msgid "Hiligaynon"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. language code: him
-#: zypp/LanguageCode.cc:525
-msgid "Himachali"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. language code: hin hi
-#: zypp/LanguageCode.cc:527
-msgid "Hindi"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
 msgstr ""
 
-#. language code: hit
-#: zypp/LanguageCode.cc:529
-msgid "Hittite"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
 msgstr ""
 
-#. language code: hmn
-#: zypp/LanguageCode.cc:531
-msgid "Hmong"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
 msgstr ""
 
-#. language code: hun hu
-#: zypp/LanguageCode.cc:537
-msgid "Hungarian"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
 msgstr ""
 
-#. language code: hup
-#: zypp/LanguageCode.cc:539
-msgid "Hupa"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
 msgstr ""
 
-#. language code: iba
-#: zypp/LanguageCode.cc:541
-msgid "Iban"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
 msgstr ""
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#. language code: ice isl is
-#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
-msgid "Icelandic"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
 msgstr ""
 
-#. language code: ido io
-#: zypp/LanguageCode.cc:549
-msgid "Ido"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
 msgstr ""
 
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
 msgstr ""
 
-#: zypp/CountryCode.cc:261
-msgid "India"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
 msgstr ""
 
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
 msgstr ""
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
 msgstr ""
 
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
 msgstr ""
 
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
 msgstr ""
 
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
 msgstr ""
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
 msgstr ""
 
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
 msgstr ""
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
 msgstr ""
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
 msgstr ""
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. language code: iro
-#: zypp/LanguageCode.cc:575
-msgid "Iroquoian Languages"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
 msgstr ""
 
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#. language code: ita it
-#: zypp/LanguageCode.cc:577
-msgid "Italian"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
 msgstr ""
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
 msgstr ""
 
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
 msgstr ""
 
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
 msgstr ""
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
 msgstr ""
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
 msgstr ""
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
 msgstr ""
 
-#. language code: kab
-#: zypp/LanguageCode.cc:591
-msgid "Kabyle"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. language code: kac
-#: zypp/LanguageCode.cc:593
-msgid "Kachin"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
 msgstr ""
 
-#. language code: kal kl
-#: zypp/LanguageCode.cc:595
-msgid "Kalaallisut"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#. language code: kam
-#: zypp/LanguageCode.cc:597
-msgid "Kamba"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
 msgstr ""
 
-#. language code: kan kn
-#: zypp/LanguageCode.cc:599
-msgid "Kannada"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
 msgstr ""
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
 msgstr ""
 
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
 msgstr ""
 
-#. language code: kar
-#: zypp/LanguageCode.cc:601
-msgid "Karen"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
 msgstr ""
 
-#. language code: kas ks
-#: zypp/LanguageCode.cc:603
-msgid "Kashmiri"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#. language code: kaw
-#: zypp/LanguageCode.cc:607
-msgid "Kawi"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#. language code: kaz kk
-#: zypp/LanguageCode.cc:609
-msgid "Kazakh"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
 msgstr ""
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
 msgstr ""
 
-#. language code: kha
-#: zypp/LanguageCode.cc:613
-msgid "Khasi"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
 msgstr ""
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
 msgstr ""
 
-#. language code: kho
-#: zypp/LanguageCode.cc:619
-msgid "Khotanese"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
 msgstr ""
 
-#. language code: kik ki
-#: zypp/LanguageCode.cc:621
-msgid "Kikuyu"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
 msgstr ""
 
-#. language code: kin rw
-#: zypp/LanguageCode.cc:623
-msgid "Kinyarwanda"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
 msgstr ""
 
-#. language code: kir ky
-#: zypp/LanguageCode.cc:625
-msgid "Kirghiz"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
 msgstr ""
 
-#. language code: kom kv
-#: zypp/LanguageCode.cc:631
-msgid "Komi"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-#. language code: kon kg
-#: zypp/LanguageCode.cc:633
-msgid "Kongo"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
 msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
 msgstr ""
 
-#. language code: kor ko
-#: zypp/LanguageCode.cc:635
-msgid "Korean"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
 msgstr ""
 
-#. language code: kos
-#: zypp/LanguageCode.cc:637
-msgid "Kosraean"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
 msgstr ""
 
-#. language code: kpe
-#: zypp/LanguageCode.cc:639
-msgid "Kpelle"
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
 msgstr ""
 
-#. language code: kro
-#: zypp/LanguageCode.cc:643
-msgid "Kru"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
 msgstr ""
 
-#. language code: kua kj
-#: zypp/LanguageCode.cc:647
-msgid "Kuanyama"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
 msgstr ""
 
-#. language code: kum
-#: zypp/LanguageCode.cc:649
-msgid "Kumyk"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
 msgstr ""
 
-#. language code: kur ku
-#: zypp/LanguageCode.cc:651
-msgid "Kurdish"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#. language code: kut
-#: zypp/LanguageCode.cc:653
-msgid "Kutenai"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
 msgstr ""
 
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
 msgstr ""
 
-#. language code: lad
-#: zypp/LanguageCode.cc:655
-msgid "Ladino"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
 msgstr ""
 
-#. language code: lah
-#: zypp/LanguageCode.cc:657
-msgid "Lahnda"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
 msgstr ""
 
-#. language code: lam
-#: zypp/LanguageCode.cc:659
-msgid "Lamba"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
 msgstr ""
 
-#. language code: lao lo
-#: zypp/LanguageCode.cc:661
-msgid "Lao"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
 msgstr ""
 
-#. language code: lat la
-#: zypp/LanguageCode.cc:663
-msgid "Latin"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. language code: lav lv
-#: zypp/LanguageCode.cc:665
-msgid "Latvian"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. language code: lez
-#: zypp/LanguageCode.cc:667
-msgid "Lezghian"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
 msgstr ""
 
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
 
-#. language code: lim li
-#: zypp/LanguageCode.cc:669
-msgid "Limburgan"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
 
-#. language code: lin ln
-#: zypp/LanguageCode.cc:671
-msgid "Lingala"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
-msgid "Lithuanian"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
 msgstr ""
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
+#. language code: fil
+#: zypp/LanguageCode.cc:437
+msgid "Filipino"
 msgstr ""
 
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: fin fi
+#: zypp/LanguageCode.cc:439
+msgid "Finnish"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
+#. language code: fiu
+#: zypp/LanguageCode.cc:441
+msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
+#. language code: fon
+#: zypp/LanguageCode.cc:443
+msgid "Fon"
 msgstr ""
 
-#. language code: loz
-#: zypp/LanguageCode.cc:677
-msgid "Lozi"
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
 msgstr ""
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
+#. language code: frm
+#: zypp/LanguageCode.cc:449
+msgid "French, Middle (ca.1400-1600)"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+#. language code: fro
+#: zypp/LanguageCode.cc:451
+msgid "French, Old (842-ca.1400)"
 msgstr ""
 
-#. language code: lui
-#: zypp/LanguageCode.cc:687
-msgid "Luiseno"
+#. language code: fry fy
+#: zypp/LanguageCode.cc:453
+msgid "Frisian"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
 msgstr ""
 
-#. language code: lun
-#: zypp/LanguageCode.cc:689
-msgid "Lunda"
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
 msgstr ""
 
-#. language code: luo
-#: zypp/LanguageCode.cc:691
-msgid "Luo (Kenya and Tanzania)"
+#. language code: gaa
+#: zypp/LanguageCode.cc:459
+msgid "Ga"
 msgstr ""
 
-#. language code: lus
-#: zypp/LanguageCode.cc:693
-msgid "Lushai"
+#. language code: gay
+#: zypp/LanguageCode.cc:461
+msgid "Gayo"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
+#. language code: gba
+#: zypp/LanguageCode.cc:463
+msgid "Gbaya"
 msgstr ""
 
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
 msgstr ""
 
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
 msgstr ""
 
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+msgid "German"
 msgstr ""
 
-#. language code: mac mkd mk
-#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
-msgid "Macedonian"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
 msgstr ""
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
 msgstr ""
 
-#. language code: mad
-#: zypp/LanguageCode.cc:699
-msgid "Madurese"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
 msgstr ""
 
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
 msgstr ""
 
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
 msgstr ""
 
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
 msgstr ""
 
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
+#. language code: gon
+#: zypp/LanguageCode.cc:491
+msgid "Gondi"
 msgstr ""
 
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
+#. language code: gor
+#: zypp/LanguageCode.cc:493
+msgid "Gorontalo"
 msgstr ""
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
+#. language code: got
+#: zypp/LanguageCode.cc:495
+msgid "Gothic"
 msgstr ""
 
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
+#. language code: grb
+#: zypp/LanguageCode.cc:497
+msgid "Grebo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
+#. language code: grc
+#: zypp/LanguageCode.cc:499
+msgid "Greek, Ancient (to 1453)"
 msgstr ""
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
 msgstr ""
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
+#. language code: guj gu
+#: zypp/LanguageCode.cc:507
+msgid "Gujarati"
 msgstr ""
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
+#. language code: gwi
+#: zypp/LanguageCode.cc:509
+msgid "Gwich'in"
 msgstr ""
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
+#. language code: hai
+#: zypp/LanguageCode.cc:511
+msgid "Haida"
 msgstr ""
 
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
+#. language code: hat ht
+#: zypp/LanguageCode.cc:513
+msgid "Haitian"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
+#. language code: hau ha
+#: zypp/LanguageCode.cc:515
+msgid "Hausa"
 msgstr ""
 
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
+#. language code: haw
+#: zypp/LanguageCode.cc:517
+msgid "Hawaiian"
 msgstr ""
 
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
+#. language code: heb he
+#: zypp/LanguageCode.cc:519
+msgid "Hebrew"
 msgstr ""
 
-#. language code: mao mri mi
-#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
-msgid "Maori"
+#. language code: her hz
+#: zypp/LanguageCode.cc:521
+msgid "Herero"
 msgstr ""
 
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
-msgid "Marathi"
+#. language code: hil
+#: zypp/LanguageCode.cc:523
+msgid "Hiligaynon"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
+#. language code: him
+#: zypp/LanguageCode.cc:525
+msgid "Himachali"
 msgstr ""
 
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
+#. language code: hin hi
+#: zypp/LanguageCode.cc:527
+msgid "Hindi"
 msgstr ""
 
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
+#. language code: hit
+#: zypp/LanguageCode.cc:529
+msgid "Hittite"
 msgstr ""
 
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
+#. language code: hmn
+#: zypp/LanguageCode.cc:531
+msgid "Hmong"
 msgstr ""
 
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
 msgstr ""
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
+#. language code: hun hu
+#: zypp/LanguageCode.cc:537
+msgid "Hungarian"
 msgstr ""
 
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
+#. language code: hup
+#: zypp/LanguageCode.cc:539
+msgid "Hupa"
 msgstr ""
 
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
+#. language code: iba
+#: zypp/LanguageCode.cc:541
+msgid "Iban"
 msgstr ""
 
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
+#. language code: ice isl is
+#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
+msgid "Icelandic"
 msgstr ""
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
+#. language code: ido io
+#: zypp/LanguageCode.cc:549
+msgid "Ido"
 msgstr ""
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
 msgstr ""
 
-#. language code: men
-#: zypp/LanguageCode.cc:731
-msgid "Mende"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
 msgstr ""
 
-#. language code: mic
-#: zypp/LanguageCode.cc:735
-msgid "Mi'kmaq"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#. language code: min
-#: zypp/LanguageCode.cc:737
-msgid "Minangkabau"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
 msgstr ""
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
 msgstr ""
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
 msgstr ""
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
+#. language code: iro
+#: zypp/LanguageCode.cc:575
+msgid "Iroquoian Languages"
 msgstr ""
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: ita it
+#: zypp/LanguageCode.cc:577
+msgid "Italian"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
 msgstr ""
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
 msgstr ""
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
 msgstr ""
 
-#. language code: mon mn
-#: zypp/LanguageCode.cc:757
-msgid "Mongolian"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
 msgstr ""
 
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
+#. language code: kab
+#: zypp/LanguageCode.cc:591
+msgid "Kabyle"
 msgstr ""
 
-#. language code: mos
-#: zypp/LanguageCode.cc:759
-msgid "Mossi"
+#. language code: kac
+#: zypp/LanguageCode.cc:593
+msgid "Kachin"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
+#. language code: kal kl
+#: zypp/LanguageCode.cc:595
+msgid "Kalaallisut"
 msgstr ""
 
-#. language code: mul
-#: zypp/LanguageCode.cc:761
-msgid "Multiple Languages"
+#. language code: kam
+#: zypp/LanguageCode.cc:597
+msgid "Kamba"
 msgstr ""
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
+#. language code: kan kn
+#: zypp/LanguageCode.cc:599
+msgid "Kannada"
 msgstr ""
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
+#. language code: kar
+#: zypp/LanguageCode.cc:601
+msgid "Karen"
 msgstr ""
 
-#. language code: nah
-#: zypp/LanguageCode.cc:775
-msgid "Nahuatl"
+#. language code: kas ks
+#: zypp/LanguageCode.cc:603
+msgid "Kashmiri"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
+#. language code: kaw
+#: zypp/LanguageCode.cc:607
+msgid "Kawi"
 msgstr ""
 
-#. language code: nav nv
-#: zypp/LanguageCode.cc:783
-msgid "Navajo"
+#. language code: kaz kk
+#: zypp/LanguageCode.cc:609
+msgid "Kazakh"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
-#. language code: nbl nr
-#: zypp/LanguageCode.cc:785
-msgid "Ndebele, South"
+#. language code: kha
+#: zypp/LanguageCode.cc:613
+msgid "Khasi"
 msgstr ""
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
 msgstr ""
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
+#. language code: kho
+#: zypp/LanguageCode.cc:619
+msgid "Khotanese"
 msgstr ""
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
+#. language code: kik ki
+#: zypp/LanguageCode.cc:621
+msgid "Kikuyu"
 msgstr ""
 
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
+#. language code: kin rw
+#: zypp/LanguageCode.cc:623
+msgid "Kinyarwanda"
 msgstr ""
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
+#. language code: kir ky
+#: zypp/LanguageCode.cc:625
+msgid "Kirghiz"
 msgstr ""
 
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
+#. language code: kom kv
+#: zypp/LanguageCode.cc:631
+msgid "Komi"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: kon kg
+#: zypp/LanguageCode.cc:633
+msgid "Kongo"
 msgstr ""
 
-#. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
+#. language code: kor ko
+#: zypp/LanguageCode.cc:635
+msgid "Korean"
 msgstr ""
-
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
+
+#. language code: kos
+#: zypp/LanguageCode.cc:637
+msgid "Kosraean"
 msgstr ""
 
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
+#. language code: kpe
+#: zypp/LanguageCode.cc:639
+msgid "Kpelle"
 msgstr ""
 
-#. language code: nic
-#: zypp/LanguageCode.cc:799
-msgid "Niger-Kordofanian (Other)"
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
+#. language code: kro
+#: zypp/LanguageCode.cc:643
+msgid "Kru"
 msgstr ""
 
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
 msgstr ""
 
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
+#. language code: kua kj
+#: zypp/LanguageCode.cc:647
+msgid "Kuanyama"
 msgstr ""
 
-#. language code: niu
-#: zypp/LanguageCode.cc:801
-msgid "Niuean"
+#. language code: kum
+#: zypp/LanguageCode.cc:649
+msgid "Kumyk"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
+#. language code: kur ku
+#: zypp/LanguageCode.cc:651
+msgid "Kurdish"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: kut
+#: zypp/LanguageCode.cc:653
+msgid "Kutenai"
 msgstr ""
 
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
+#. language code: lad
+#: zypp/LanguageCode.cc:655
+msgid "Ladino"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
+#. language code: lah
+#: zypp/LanguageCode.cc:657
+msgid "Lahnda"
 msgstr ""
 
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
+#. language code: lam
+#: zypp/LanguageCode.cc:659
+msgid "Lamba"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
+#. language code: lao lo
+#: zypp/LanguageCode.cc:661
+msgid "Lao"
 msgstr ""
 
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
+#. language code: lat la
+#: zypp/LanguageCode.cc:663
+msgid "Latin"
 msgstr ""
 
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
+#. language code: lav lv
+#: zypp/LanguageCode.cc:665
+msgid "Latvian"
 msgstr ""
 
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
+#. language code: lez
+#: zypp/LanguageCode.cc:667
+msgid "Lezghian"
 msgstr ""
 
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
+#. language code: lim li
+#: zypp/LanguageCode.cc:669
+msgid "Limburgan"
 msgstr ""
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
+#. language code: lin ln
+#: zypp/LanguageCode.cc:671
+msgid "Lingala"
 msgstr ""
 
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
+msgid "Lithuanian"
 msgstr ""
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
+#. language code: loz
+#: zypp/LanguageCode.cc:677
+msgid "Lozi"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
 msgstr ""
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
-msgid "Nubian Languages"
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
 msgstr ""
 
-#. language code: nym
-#: zypp/LanguageCode.cc:821
-msgid "Nyamwezi"
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: nyn
-#: zypp/LanguageCode.cc:823
-msgid "Nyankole"
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
 msgstr ""
 
-#. language code: nyo
-#: zypp/LanguageCode.cc:825
-msgid "Nyoro"
+#. language code: lui
+#: zypp/LanguageCode.cc:687
+msgid "Luiseno"
 msgstr ""
 
-#. language code: nzi
-#: zypp/LanguageCode.cc:827
-msgid "Nzima"
+#. language code: lun
+#: zypp/LanguageCode.cc:689
+msgid "Lunda"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
+#. language code: luo
+#: zypp/LanguageCode.cc:691
+msgid "Luo (Kenya and Tanzania)"
 msgstr ""
 
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
+#. language code: lus
+#: zypp/LanguageCode.cc:693
+msgid "Lushai"
 msgstr ""
 
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
+#. language code: mac mkd mk
+#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
+msgid "Macedonian"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
+#. language code: mad
+#: zypp/LanguageCode.cc:699
+msgid "Madurese"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
 msgstr ""
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
 msgstr ""
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
 msgstr ""
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
 msgstr ""
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
-msgid "Osage"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
 msgstr ""
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
 msgstr ""
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
+#. language code: mao mri mi
+#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
+msgid "Maori"
 msgstr ""
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
 msgstr ""
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+msgid "Marathi"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
 msgstr ""
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
 msgstr ""
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
 msgstr ""
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
+#. language code: men
+#: zypp/LanguageCode.cc:731
+msgid "Mende"
 msgstr ""
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
+#. language code: mic
+#: zypp/LanguageCode.cc:735
+msgid "Mi'kmaq"
 msgstr ""
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
+#. language code: min
+#: zypp/LanguageCode.cc:737
+msgid "Minangkabau"
 msgstr ""
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
 msgstr ""
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
 msgstr ""
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
 msgstr ""
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
 msgstr ""
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
 msgstr ""
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
+#. language code: mon mn
+#: zypp/LanguageCode.cc:757
+msgid "Mongolian"
 msgstr ""
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
+#. language code: mos
+#: zypp/LanguageCode.cc:759
+msgid "Mossi"
 msgstr ""
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
+#. language code: mul
+#: zypp/LanguageCode.cc:761
+msgid "Multiple Languages"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
 msgstr ""
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
 msgstr ""
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
 msgstr ""
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
 msgstr ""
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
+#. language code: nah
+#: zypp/LanguageCode.cc:775
+msgid "Nahuatl"
 msgstr ""
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
 msgstr ""
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
+#. language code: nav nv
+#: zypp/LanguageCode.cc:783
+msgid "Navajo"
 msgstr ""
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
+#. language code: nbl nr
+#: zypp/LanguageCode.cc:785
+msgid "Ndebele, South"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
 msgstr ""
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
 msgstr ""
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
+#. language code: nic
+#: zypp/LanguageCode.cc:799
+msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+msgid "Niuean"
 msgstr ""
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
 msgstr ""
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
 msgstr ""
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
 msgstr ""
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
+#. language code: nub
+#: zypp/LanguageCode.cc:815
+msgid "Nubian Languages"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
 msgstr ""
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
+#. language code: nym
+#: zypp/LanguageCode.cc:821
+msgid "Nyamwezi"
 msgstr ""
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
+#. language code: nyn
+#: zypp/LanguageCode.cc:823
+msgid "Nyankole"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
+#. language code: nyo
+#: zypp/LanguageCode.cc:825
+msgid "Nyoro"
 msgstr ""
 
-#: zypp/Dep.cc:98
-msgid "Requires"
+#. language code: nzi
+#: zypp/LanguageCode.cc:827
+msgid "Nzima"
 msgstr ""
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
 msgstr ""
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
 msgstr ""
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
 msgstr ""
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+msgid "Osage"
 msgstr ""
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
 msgstr ""
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
 msgstr ""
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
 msgstr ""
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
 msgstr ""
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
 msgstr ""
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
 msgstr ""
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr ""
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
 msgstr ""
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
 msgstr ""
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
 msgstr ""
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
 msgstr ""
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
 msgstr ""
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
 msgstr ""
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
 msgstr ""
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
 msgstr ""
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
 msgstr ""
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
 msgstr ""
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
 msgstr ""
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
 msgstr ""
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
 msgstr ""
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
 msgstr ""
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
 msgstr ""
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
+
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
 msgstr ""
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
 msgstr ""
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
 msgstr ""
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
 msgstr ""
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
 msgstr ""
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
 msgstr ""
 
 #. language code: sin si
@@ -3717,24 +3723,14 @@ msgstr ""
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr ""
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -3747,98 +3743,79 @@ msgstr ""
 msgid "Slovak"
 msgstr ""
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr ""
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr ""
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr ""
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr ""
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr ""
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
 msgstr ""
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
 msgstr ""
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
 msgstr ""
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
 msgstr ""
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
 msgstr ""
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
 msgstr ""
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
 msgstr ""
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
 msgstr ""
 
 #. language code: spa es
@@ -3846,18 +3823,24 @@ msgstr ""
 msgid "Spanish"
 msgstr ""
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
 msgstr ""
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
 msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
 #. language code: suk
@@ -3865,33 +3848,19 @@ msgstr ""
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr ""
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr ""
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr ""
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
 #. language code: swa sw
@@ -3899,58 +3868,16 @@ msgstr ""
 msgid "Swahili"
 msgstr ""
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr ""
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr ""
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr ""
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr ""
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr ""
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr ""
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr ""
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3961,36 +3888,11 @@ msgstr ""
 msgid "Tai (Other)"
 msgstr ""
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr ""
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr ""
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr ""
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr ""
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4001,6 +3903,11 @@ msgstr ""
 msgid "Telugu"
 msgstr ""
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4011,31 +3918,19 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr ""
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
 msgstr ""
 
 #. language code: tib bod bo
@@ -4053,45 +3948,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4104,15 +3978,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4120,14 +3988,19 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr ""
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr ""
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
 msgstr ""
 
 #. language code: tum
@@ -4135,646 +4008,773 @@ msgstr ""
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr ""
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr ""
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr ""
+
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr ""
+
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr ""
+
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr ""
+
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr ""
+
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr ""
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr ""
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr ""
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr ""
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr ""
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
 msgstr ""
 
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
 msgstr ""
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
 msgstr ""
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
 msgstr ""
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
 msgstr ""
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
 msgstr ""
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
 msgstr ""
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
 msgstr ""
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
 msgstr ""
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
 msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
 msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
 msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
 msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
 msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Failed to mount %s on %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Failed to unmount %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "deinstallation of %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "keep %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
index ea03903..d9ce3ee 100644 (file)
--- a/po/es.po
+++ b/po/es.po
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
-#
+# translation of zypp.po to
+# Ibán josé García Castillo <Iban.Garcia@alufis35.uv.es>, 2000.
+# Javier Moreno <javier.moreno@alufis35.uv.es>, 2000.
+# Jordi Jaen Pallares <jordi@suse.de>, 1999, 2000, 2001.
+# Pablo Iranzo Gómez <Pablo.Iranzo@uv.es>, 2000.
+# Camaleón, 2007.
+# César Sánchez Alonso <csalinux@gmail.com>, 2007.
+# Miguel Angel Alvarez <maacruz@gmail.com>, 2008.
+# Camaleón <noelamac@gmail.com>, 2008.
+# translation of zypp.es.po to
+# Spanish message file for YaST2 (@memory@).
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002, 2003 SuSE Linux AG.
+# Copyright (C) 1999, 2000, 2001 SuSE GmbH.
 msgid ""
 msgstr ""
 "Project-Id-Version: zypp\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 16:57\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2016-05-13 17:55+0000\n"
+"Last-Translator: jc sl <trcs@gmx.com>\n"
+"Language-Team: Spanish <http://l10n.opensuse.org/projects/libzypp/master/es/>"
+"\n"
+"Language: es\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 2.5\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"proveedores no instalables: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Excepción de hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Cadena de consulta URL LDAP no válida"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" Hay un problema con el certificado SSL. Compruebe que la autoridad de "
-"certificación (CA) es correcta para %s."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Parámetro de consulta URL LDAP '%s' no válido"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "No se puede clonar el objeto URL"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Referencia de objeto de URL vacío no válido"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "No se pueden analizar los componentes de URL"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "No es posible iniciar los atributos de mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "No es posible establecer el atributo de mutex recursivo"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "No es posible iniciar mutex recursivo"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "No se puede adquirir el bloqueo de mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "No es posible liberar el bloqueo de mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Proporciona"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Pre requisitos"
+
+# clients/hwinfo.ycp:73
+# clients/hwinfo.ycp:73
+# clients/hwinfo.ycp:73
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Requiere"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Conflictos"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Obsoletos"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Recomendado"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Sugerencias"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Mejoras"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Suplementos"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Tipo dudoso '%s' para el byte %u suma de comprobación '%s'"
 
+# include/nis_server/io.ycp:567
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
 msgstr " ejecutado"
 
 #: zypp/target/TargetImpl.cc:332
 msgid " execution failed"
-msgstr " fallo de ejecución"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " ejecución omitida mientras se aborta"
+msgstr " ejecución fallida"
 
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
@@ -48,1115 +134,831 @@ msgstr " ejecución omitida mientras se aborta"
 #: zypp/target/TargetImpl.cc:449
 #, c-format, boost-format
 msgid "%s already executed as %s)"
-msgstr "%s ya se ha ejecutado como %s)"
+msgstr "%s ya ejecutado como %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s está en conflicto con %s proporcionado por %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " ejecución omitida mientras se aborta"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s no pertenece a un repositorio distupgrade."
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Error al enviar la notificación del mensaje de actualización."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s posee una arquitectura inferior."
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Nuevo mensaje de actualización"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s no es instalable"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "La instalación se ha cancelado siguiendo las indicaciones."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s proviene del sistema y no se puede eliminar"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
+"Lamentablemente esta versión de libzypp fue construida sin soporte para HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s deja obsoleto %s proporcionado por %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext no está conectado"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s requiere %s, pero este requisito no se puede cumplir"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive no se ha iniciado"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(CADUCADO)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume no se ha iniciado"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(no caduca)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "No se puede crear la conexión dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(caduca en las próximas 24 horas)"
-msgstr[1] "(caduca en las próximas 24 horas)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: no es posible crear el contexto libhal"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(caduca en las próximas 24 horas)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: no es posible establecer la conexión dbus"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abjasio"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
+"No se puede iniciar el contexto HAL -- ¿Es posible que hald no se esté "
+"ejecutando?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achinés"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "No es una unidad de CD-ROM"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acholi"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM fallido: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Error al importar la clave pública desde el archivo %s: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Añadiendo el repositorio %s"
+msgid "Failed to remove public key %s: %s"
+msgstr "Error al eliminar la clave pública %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Se necesita un contrato adicional de cliente"
+#
+# modules/Mail.ycp:458
+# modules/Mail.ycp:554
+# modules/Mail.ycp:554
+# modules/Mail.ycp:563
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Modificados los archivos de configuración para %s:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm ha guardado %s como %s, pero no es posible determinar la diferencia"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm ha guardado %s como %s.\n"
+"A continuación se presentan las primeras 25 líneas de diferencia:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm ha creado %s como %s, pero no es posible determinar la diferencia"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm ha creado %s como %s.\n"
+"A continuación se presentan las primeras 25 líneas de diferencia:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
 #: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
 msgid "Additional rpm output"
-msgstr "Salida de rpm adicional"
-
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Circasiano"
+msgstr "Salida adicional del rpm"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+# include/nis_server/io.ycp:582
+# include/backup/ui.ycp:1286
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "creada copia de seguridad %s"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistán"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "La firma es correcta."
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Afrihili"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Tipo de firma desconocido"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikáans"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "La firma no satisface la verificación."
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-asiático (otros)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "La firma es correcta, pero la clave no es de confianza."
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Ainu"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "La clave pública de firma no está disponible."
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Akan"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "El archivo no existe o no es posible comprobar la firma."
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Acadio"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Se realizarán las siguientes acciones:"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Islas Aland"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "No es posible leer el repositorio '%1%': Permiso denegado"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albania"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Error al leer el directorio '%s'"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albanés"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "No es posible leer el archivo de repositorio '%1%': Permiso denegado"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aleutiano"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Alias de repositorio no puede comenzar con punto."
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Argelia"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "El alias de servicio no puede comenzar con punto."
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Lenguas algoquinas"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "No es posible abrir '%s' para escritura."
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaico (otros)"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+"Servicio '%1%' desconocido: Eliminando repositorio de servicio huérfano '%2%'"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Samoa Americana"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "No se han encontrado metadatos válidos en la URL especificada"
+msgstr[1] "No se han encontrado metadatos válidos en las URL especificadas"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amhárico"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "No se puede crear %s"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Para obtener asistencia se necesita un contrato de cliente adicional."
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "No se puede crear el directorio para la cache de metadata."
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Construyendo el caché del repositorio '%s'"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "No se puede crear la cache en %s - no se poseen permisos de escritura."
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguila"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Error al cachear el repositorio (%d)."
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antártida"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Tipo de repositorio desconocido"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua y Barbuda"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Se ha producido un error leer desde '%s'"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Lenguas apache"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Error desconocido leyendo desde '%s'"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Árabe"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Añadiendo el repositorio '%s'"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonés"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Nombre de archivo del repositorio no válido en '%s'"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Arameo"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Eliminado el repositorio '%s'"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapahoe"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Imposible averiguar donde se encuentra almacenado el repositorio."
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Araucano"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "No es posible eliminar '%s'"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Imposible averiguar donde se encuentra almacenado el servicio."
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "El esquema de URL no permite un elemento %s"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenia"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Componente %s no válido '%s'"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armenio"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Componente %s no válido"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Artificial (otros)"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+"El análisis de cadenas de consulta no es compatible con esta dirección URL"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "El esquema de URL es un componente obligatorio"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Asamés"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Esquema '%s' de URL no válido"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Asturiano"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "El esquema de URL no permite un nombre de usuario"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Lenguas atapascanas"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "El esquema de URL no permite una contraseña"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australia"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "El esquema de URL requiere un componente host"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Lenguas australianas"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "El esquema de URL no permite un componente host"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austria"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Componente de host no válido '%s'"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austranesio (otros)"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "El esquema de URL no permite un puerto"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Se requiere autenticación para %s"
+msgid "Invalid port component '%s'"
+msgstr "Componente de puerto no válido '%s'"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Ávaro"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "El esquema URL requiere un nombre de ruta"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Avestano"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "No se permiten rutas relativas si existe una autoridad"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Awetí"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "La cadena codificada incluye un byte NULO"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Aymara"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+"Parámetro de carácter de separación para la división de matrices no válido"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaiyán"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+"Parámetro de carácter de separación para la división de mapas no válido"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Azerbaiyano"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+"Parámetro de carácter de separación para la unión de matrices no válido"
 
-#: zypp/media/MediaException.cc:47
+# include/backup/ui.ycp:1661
+#: zypp/ExternalProgram.cc:258
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Nombre de archivo incorrecto: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Punto de conexión de medio incorrecto"
+msgid "Can't open pty (%s)."
+msgstr "No es posible abrir el pty (%s)."
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "No es posible abrir la tubería (%s)."
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahréin"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "No se puede hacer chroot a '%s' (%s)."
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinés"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "No es posible cambiar el directorio '%s' dentro de '%s' (%s)."
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Báltico (otros)"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "No es posible cambiar al directorio '%s' (%s)."
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Beluchi"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "No se puede ejecutar '%s' (%s)."
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Bambara"
+# clients/printconf_write.ycp:121
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "No se puede hacer fork (%s)."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Lenguas Bamileke"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "El comando terminó con el estado %d."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "La señal %d (%s) mató el comando."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladés"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "El comando terminó con un error desconocido."
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantú (otros)"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(no expira)"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(EXPIRADO)"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(expira en las próximas 24hs)"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bashkir"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, boost-format, c-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(expira en %d día)"
+msgstr[1] "(expira en %d días)"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Vasco"
+# clients/support_registration.ycp:225 include/support/registration.ycp:77
+# clients/support_askkey.ycp:246 include/support/supportio.ycp:79
+#
+# clients/support_askkey.ycp:246 include/support/supportio.ycp:79
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "desconocido"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonesia)"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "no soportado"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Beja"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Nivel 1"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Bielorrusia"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Nivel 2"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Bielorruso"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Nivel 3"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Bélgica"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Se necesita un contrato adicional de usuario"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belice"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "no válido"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Bemba"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "El nivel de soporte no esta especificado"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengalí"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "El fabricante no provee soporte."
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benín"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Determinación del problema, lo que significa soporte técnico designado para "
+"proveer información de compatibilidad, asistencia de instalación, soporte de "
+"uso, mantenimiento sobre la marcha y soluciones básicas. Nivel 1 de soporte "
+"esta pensado para corregir errores por defectos del producto."
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Bereber (otros)"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Aislamiento del problema, lo que significa soporte técnico designado para "
+"duplicar los problemas del cliente, aislar el área problemática y proveer "
+"una solución por problemas no resueltos por el Nivel 1 de soporte."
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Resolución de problemas, significa soporte técnico designado para resolver "
+"problemas complejos al utilizar ingeniería en la resolución de defectos "
+"identificados por el Nivel 2 de soporte."
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Bhojpuri"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "Para obtener soporte se necesita de un contrato adicional."
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bután"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Opción de soporte desconocida. Descripción no disponible"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihari"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "País desconocido: "
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikol"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Sin código"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Bini"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Emiratos Árabes Unidos"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistán"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua y Barbuda"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia y Herzegovina"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguila"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosnio"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albania"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botsuana"
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenia"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Isla Bouvet"
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Antillas Holandesas"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Braj"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasil"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antártida"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretón"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Territorios Británicos del Océano Índico"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Samoa Americana"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Islas Vírgenes Británicas"
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austria"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunéi Darussalam"
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australia"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Bugi"
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Construyendo el caché del repositorio %s"
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Islas Aland"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaria"
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaiyán"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Búlgaro"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnia-Herzegovina"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriato"
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladésh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Bélgica"
 
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
 msgstr "Burkina Faso"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Birmano"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaria"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahréin"
 
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "Burundi"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Cado"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Camboya"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benín"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Camerún"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermudas"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "No es posible crear sat-pool."
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunéi Darussalam"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "No es posible adquirir el bloqueo de mutex"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "No es posible cambiar al directorio %s (%s)."
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasil"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "No es posible cambiar al directorio %s en chroot %s (%s)."
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "No es posible aplicar chroot a %s (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "No es posible crear %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "No es posible crear el caché en %s, no posee permisos de escritura."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "No es posible crear el directorio para el caché de metadatos."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "No es posible suprimir %s"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "No es posible ejecutar %s (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "No es posible determinar dónde está almacenado el repositorio."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "No es posible determinar donde está almacenado el servicio."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "No es posible hacer fork (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "No es posible iniciar los atributos de mutex"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "No es posible iniciar mutex recursivo"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "No es posible abrir el archivo %s para escribir en él."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "No es posible abrir el archivo de bloqueo: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "No es posible abrir el conducto (%s)."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bután"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "No es posible abrir el pty (%s)."
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Isla Bouvet"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "No es posible proporcionar el archivo %s desde el repositorio %s."
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "No es posible liberar el bloqueo de mutex"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Bielorrusia"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "No es posible establecer el atributo de mutex recursivo"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belice"
 
 #. :BLZ:084:
 #: zypp/CountryCode.cc:194
 msgid "Canada"
 msgstr "Canadá"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "No se puede expulsar ningún medio"
-
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "No se puede expulsar el medio %s."
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"No se encuentra ningún dispositivo de bucle disponible para montar el "
-"archivo de imagen desde %s"
-
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "No es posible leer el repositorio %1%: permiso denegado"
-
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "No es posible leer el archivo de repositorio %1%: permiso denegado"
-
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "No es posible escribir el archivo '%s."
-
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Cabo Verde"
-
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "Caribe"
-
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Catalán"
-
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "Caucásico (otros)"
-
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Islas Caimán"
-
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "Cebuano"
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Islas Cocos (Keeling)"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Céltico (otros)"
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo"
 
 #. :COD:180:
 #: zypp/CountryCode.cc:197
 msgid "Central African Republic"
 msgstr "República Centroafricana"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Lenguas amerindias de Centroamérica (otros)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Chad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Lenguas chámicas"
-
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "Chamorro"
-
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Modificados archivos de configuración para %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Checheno"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cheroqui"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyén"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Suiza"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "Chibcha"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Costa de Marfil"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Islas Cook"
 
 #. :COK:184:
 #: zypp/CountryCode.cc:202
 msgid "Chile"
 msgstr "Chile"
 
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Camerún"
+
 #. :CMR:120:
 #: zypp/CountryCode.cc:204
 msgid "China"
 msgstr "China"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Chino"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "Jerga Chinook"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewa"
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "Choktaw"
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Cabo Verde"
 
 #. :CPV:132:
 #: zypp/CountryCode.cc:209
 msgid "Christmas Island"
 msgstr "Isla Christmas"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "Eslavo eclesial"
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukés"
-
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Chuvasio"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Newari clásico"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Islas Cocos (Keeling)"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "El comando ha terminado con el estado %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "El comando ha terminado con un error desconocido."
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "La señal %d (%s) ha interrumpido el comando."
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comoras"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "En conflicto"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo"
-
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Islas Cook"
-
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "Copto"
-
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "Córnico"
-
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "Corso"
-
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Costa de Marfil"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cri"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Criollos y pidgins (otros)"
-
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "Criollos y pidgins basados en el inglés (otros)"
-
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "Criollos y pidgins basados en el francés (otros)"
-
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "Criollos y pidgins basados en el portugués (otros)"
-
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "Tártaro de Crimea"
-
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Croacia"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Croata"
-
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
-
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr "Cusita (otros)"
-
 #. :CXR:162:
 #: zypp/CountryCode.cc:210
 msgid "Cyprus"
 msgstr "Chipre"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "Checo"
-
 #. :CYP:196:
 #: zypp/CountryCode.cc:211
 msgid "Czech Republic"
 msgstr "República Checa"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "Dakota"
-
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "Danés"
-
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr "Dargwa"
-
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr "Dayak"
-
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "Delaware"
-
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Dinamarca"
-
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "Dinka"
-
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "Divehi"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Alemania"
 
 #. :DEU:276:
 #: zypp/CountryCode.cc:213
 msgid "Djibouti"
 msgstr "Yibuti"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "Dogri"
-
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Dinamarca"
 
 #. :DNK:208:
 #: zypp/CountryCode.cc:215
@@ -1168,454 +970,1602 @@ msgstr "Dominica"
 msgid "Dominican Republic"
 msgstr "República Dominicana"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Error de descarga (curl) para %s:\n"
-"Código de error: %s\n"
-"Mensaje de error: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Error de inicio de descarga (curl) para %s"
-
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "Lenguas drávidas (otros)"
-
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "Duala"
-
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Tipo dudoso %1$s para la suma de comprobación %3$s de %2$u bytes."
-
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Neerlandés"
-
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Danés medieval (1050 - 1350)"
-
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr "Dyula"
-
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "Dzongkha"
-
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Timor Oriental"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Argelia"
 
 #. :DZA:012:
 #: zypp/CountryCode.cc:218
 msgid "Ecuador"
 msgstr "Ecuador"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "Efik"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonia"
 
 #. :EST:233:
 #: zypp/CountryCode.cc:220
 msgid "Egypt"
 msgstr "Egipto"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "Egipcio (antiguo)"
-
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "Ekajuk"
-
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Elamita"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Destino vacío en URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Sistema de archivos vacío en URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Nombre de host vacío en URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "La cadena cifrada incluye un byte nulo"
-
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Inglés"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Inglés medio (1100 - 1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Inglés antiguo (450 - 1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Mejora"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Guinea Ecuatorial"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Sáhara Occidental"
 
 #. :ESH:732:
 #: zypp/CountryCode.cc:222
 msgid "Eritrea"
 msgstr "Eritrea"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "Error al definir las opciones de descarga (curl) para %s:"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Error al enviar la notificación del mensaje de actualización"
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Error al intentar leer de %s"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
-
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Esperanto"
-
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonia"
-
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Estonio"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "España"
 
 #. :ESP:724:
 #: zypp/CountryCode.cc:224
 msgid "Ethiopia"
 msgstr "Etiopía"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Ewé"
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Ewondo"
-
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Error al añadir a caché el repositorio (%d)."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Error al suprimir la clave."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Error al importar la clave pública desde el archivo %s: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Error al montar %s en %s."
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"Error al proporcionar el paquete %s. ¿Desea volver a intentar la "
-"recuperación?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Error al leer el directorio %s"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Error al eliminar la clave pública %s: %s"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finlandia"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Error al desmontar %s"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
 
 #. :FJI:242:
 #: zypp/CountryCode.cc:227
 msgid "Falkland Islands (Malvinas)"
 msgstr "Islas Malvinas"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "Fang"
-
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Estados Federados de Micronesia"
 
 #. :FSM:583:
 #: zypp/CountryCode.cc:229
 msgid "Faroe Islands"
 msgstr "Islas Feroe"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Feroe"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Francia"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Estados Federados de Micronesia"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Francia metropolitana"
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabón"
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fiyi"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Reino Unido"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"El archivo %1%\n"
-"  de la instalación de\n"
-"     %2%\n"
-"  tiene un conflicto con el archivo\n"
-"     %3%\n"
-"  de la instalación de\n"
-"     %4%"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Granada"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"El archivo %1%\n"
-"  de la instalación de\n"
-"     %2%\n"
-"  tiene un conflicto con el archivo\n"
-"     %3%\n"
-"  del paquete\n"
-"     %4%"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgia"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"El archivo %1%\n"
-"  de la instalación de\n"
-"     %2%\n"
-"  tiene un conflicto con un archivo de la instalación de\n"
-"     %3%"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Guayana francesa"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Groenlandia"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadalupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Guinea Ecuatorial"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grecia"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Georgia del Sur e Islas Sandwich del Sur"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guayana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Isla Heard e Islas McDonald"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Croacia"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haití"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hungría"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesia"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irlanda"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Isla del Hombre"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Territorios británicos del Océano Índico"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Iraq"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Irán"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islandia"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italia"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordania"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japón"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenia"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirguistán"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Camboya"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comoras"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "San Cristóbal y Nieves"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Corea del Norte"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Corea del Sur"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Islas Caimán"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazajistán"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Laso, República Democrática Popular"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Líbano"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Santa Lucía"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka (Ceilán)"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesoto"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lituania"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxemburgo"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Letonia"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libia"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marruecos"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Mónaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldavia"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Saint Martin"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagascar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Islas Marshall"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedonia"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Birmania"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolia"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Islas Marianas del Norte"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinica"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritania"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauricio"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldivas"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malaui"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "México"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malasia"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambique"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nueva Caledonia"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Níger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Isla Norfolk"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Países Bajos"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Noruega"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauruano"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nueva Zelanda"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Omán"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panamá"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Perú"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Polinesia Francesa"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papúa Nueva Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipinas"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistán"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polonia"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "San Pedro y Miquelón"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Territorios palestinos"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palaos"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunión"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Rumanía"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbia"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Federación Rusa"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Arabia Saudí"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Islas Salomón"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychelles"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudán"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Suecia"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Santa Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Eslovenia"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard y Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Eslovaquia"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leona"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Santo Tomé y Príncipe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Siria"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Suazilandia"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Islas Turcas y Caicos"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Chad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Territorios australes franceses"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tailandia"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tayikistán"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistán"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Túnez"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Tímor Oriental"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turquía"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad y Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalino"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwán"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzania"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ucrania"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Islas menores alejadas de los Estados Unidos de América"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Estados Unidos de América"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistán"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Santa Sede (Ciudad Estado del Vaticano)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "San Vicente y las Granadinas"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Islas Vírgenes Británicas"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Islas Vírgenes, EE.UU."
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis y Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Yemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Sudáfrica"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Idioma desconocido: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abjasio"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achinés"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acholi"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Circasiano"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-asiático (otros)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Afrihili"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikáans"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Ainu"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Akan"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Acadio"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albanés"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aleutiano"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Lenguas algoquinas"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Altai meridional"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amhárico"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Inglés antiguo (450 - 1100)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Lenguas apache"
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Árabe"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Arameo"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonés"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armenio"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Araucano"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapahoe"
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Artificial (otros)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Asamés"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Asturiano (bable)"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Lenguas atapascanas"
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Lenguas australianas"
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Ávaro"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Avestano"
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Awetí"
+
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Aymara"
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Azerbaiyano"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Lenguas Bamileke"
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bashkir"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Beluchi"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Bambara"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinés"
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Vasco (euskera)"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Báltico (otros)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Beja"
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Bielorruso"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Bemba"
+
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengalí"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Bereber (otros)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Bhojpuri"
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Bihari"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikol"
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Bini"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantú (otros)"
+
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosnio"
+
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Braj"
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretón"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonesia)"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriato"
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Bugi"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Búlgaro"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Birmano"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Cado"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Lenguas amerindias de Centroamérica (otros)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "Caribe"
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "Catalán"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "Caucásico (otros)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "Cebuano"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Céltico (otros)"
+
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "Chamorro"
+
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "Chibcha"
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Checheno"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"El archivo %1%\n"
-"  de la instalación de\n"
-"     %2%\n"
-"  tiene un conflicto con un archivo del paquete\n"
-"     %3%"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Chino"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"El archivo %1%\n"
-"  del paquete\n"
-"     %2%\n"
-"  tiene un conflicto con el archivo\n"
-"     %3%\n"
-"  de la instalación de\n"
-"     %4%"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukés"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "Jerga Chinook"
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "Choktaw"
+
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewa"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cheroqui"
+
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Eslavo eclesial"
+
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Chuvasio"
+
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyén"
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Lenguas chámicas"
+
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "Copto"
+
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "Córnico"
+
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "Corso"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr "Criollos y pidgins basados en el inglés (otros)"
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr "Criollos y pidgins basados en el francés (otros)"
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr "Criollos y pidgins basados en el portugués (otros)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cri"
+
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "Tártaro de Crimea"
+
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Criollos y pidgins (otros)"
+
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Casubiano"
+
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr "Cusita (otros)"
+
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "Checo"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "Dakota"
+
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Danés"
+
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr "Dargwa"
+
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr "Dayak"
+
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "Delaware"
+
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Esclavo (atapascano)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
+
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "Dinka"
+
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "Divehi"
+
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "Dogri"
+
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "Lenguas drávidas (otros)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Bajo sorabo"
+
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "Duala"
+
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Danés medieval (1050 - 1350)"
+
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Holandés"
+
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
+msgstr "Dyula"
+
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "Dzongkha"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "Efik"
+
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "Egipcio (antiguo)"
+
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "Ekajuk"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Elamita"
+
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Inglés"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Inglés medio (1100 - 1500)"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"El archivo %1%\n"
-"  del paquete\n"
-"     %2%\n"
-"  tiene un conflicto con el archivo\n"
-"     %3%\n"
-"  del paquete\n"
-"     %4%"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Esperanto"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"El archivo %1%\n"
-"  del paquete\n"
-"     %2%\n"
-"  tiene un conflicto con el archivo de la instalación de\n"
-"     %3%"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Estonio"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"El archivo %1%\n"
-"  del paquete\n"
-"     %2%\n"
-"  tiene un conflicto con un archivo del paquete\n"
-"     %3%"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Ewé"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "No se ha encontrado el archivo %s en el medio %s."
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Ewondo"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "El archivo no existe o no es posible comprobar la firma."
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "Fang"
+
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Feroe"
+
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Fiyi"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finlandia"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1626,40 +2576,16 @@ msgstr "Finés"
 msgid "Finno-Ugrian (Other)"
 msgstr "Fino-ungrio (otros)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Se realizarán las siguientes acciones:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Francia"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Francés"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Guayana francesa"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Polinesia Francesa"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Territorios Australes Franceses"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1675,46 +2601,21 @@ msgstr "Francés antiguo (842 - 1400)"
 msgid "Frisian"
 msgstr "Frisón"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friulano"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fula"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friulano"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabón"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaélico"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Gallego"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1725,15 +2626,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Geez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germánico (otros)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1745,6 +2641,36 @@ msgstr "Georgiano"
 msgid "German"
 msgstr "Alemán"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Geez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertés"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaélico"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irlandés"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Gallego"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1755,30 +2681,6 @@ msgstr "Alto alemán medieval (1050 - 1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Alto alemán antiguo (750 - 1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germánico (otros)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Alemania"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertés"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1799,76 +2701,26 @@ msgstr "Gótico"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grecia"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
-msgid "Greek, Ancient (to 1453)"
-msgstr "Griego antiguo (hasta 1453)"
-
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
-msgstr "Griego moderno (desde 1453)"
-
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Groenlandia"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Granada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadalupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
+msgid "Greek, Ancient (to 1453)"
+msgstr "Griego antiguo (hasta 1453)"
+
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
+msgstr "Griego moderno (desde 1453)"
 
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guaraní"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1879,52 +2731,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haití"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitiano"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Excepción de Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext no está conectado"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive no se ha iniciado"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume no se ha iniciado"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "¿Ha habilitado todos los repositorios solicitados?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaiano"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Isla Heard e Islas McDonald"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1950,16 +2771,6 @@ msgstr "Himachali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Historial:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1970,31 +2781,21 @@ msgstr "Hitita"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Santa Sede (Ciudad Estado del Vaticano)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Alto sorabo"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Húngaro"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hungría"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2005,10 +2806,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islandia"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2020,250 +2821,108 @@ msgstr "Islandés"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Yi de Sichuan"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingua"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Ilocano"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Sami inari"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (International Auxiliary Language Association)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Índico (otros)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indoeuropeo (otros)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesia"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Bahasa"
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "Ingusio"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "La instalación se ha cancelado siguiendo las indicaciones."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (International Auxiliary Language Association)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingua"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "Inupiaq"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Componente %s incorrecto"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Componente %s incorrecto %s"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Parámetro de consulta URL LDAP %s incorrecto."
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Cadena de consulta URL LDAP incorrecta"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Esquema de URL incorrecto %s."
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Referencia de objeto URL vacía incorrecta"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Componente host incorrecto %s"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Carácter separador de unión de conjunto de parámetros incorrecto"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Carácter separador de división de conjunto de parámetros incorrecto"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Carácter separador de división de asignación de parámetros incorrecto"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Componente de puerto incorrecto %s"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Expresión regular '%s' no válida"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Expresión regular %s no válida: regcomp ha devuelto %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Nombre de archivo de repositorio no válido %s"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Irán"
-
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
-msgstr "Iraní (otros)"
-
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Iraq"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irlanda"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irlandés"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indoeuropeo (otros)"
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Irlandés medieval (900 - 1200)"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "Ingusio"
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Irlandés antiguo (hasta 900)"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "Inupiaq"
+
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
+msgstr "Iraní (otros)"
 
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Lenguas iroquesas"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Isla de Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italiano"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italia"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javanés"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japón"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japonés"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javanés"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordania"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Judeo-persa"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Judeo-árabe"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Judeo-persa"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Cherkeso"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2280,11 +2939,6 @@ msgstr "Kachin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Calmico"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2295,21 +2949,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Canurio"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karachái-Balcar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2320,10 +2959,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Cachemir"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Casubiano"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Canurio"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2335,31 +2974,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Kazaco"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazajistán"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenia"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Cherkeso"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Jasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Jemer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Joisán (otros)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Jemer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2370,11 +3004,6 @@ msgstr "Jotanés"
 msgid "Kikuyu"
 msgstr "Kikuyo"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2383,17 +3012,17 @@ msgstr "Kinyarruandés"
 #. language code: kir ky
 #: zypp/LanguageCode.cc:625
 msgid "Kirghiz"
-msgstr "Kirguiso"
+msgstr "Kirguizo"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2405,11 +3034,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Congo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2425,11 +3049,21 @@ msgstr "Kosrae"
 msgid "Kpelle"
 msgstr "Kpellé"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karachái-Balcar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2445,30 +3079,15 @@ msgstr "Kumico"
 msgid "Kurdish"
 msgstr "Kurdo"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirguistán"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
-msgstr "Ladino"
+msgstr "Ladino (sefardí)"
 
 #. language code: lah
 #: zypp/LanguageCode.cc:657
@@ -2485,68 +3104,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Laso, República Democrática Popular"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latín"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Letonia"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Letón"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Líbano"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesoto"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Nivel 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Nivel 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Nivel 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezgino"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libia"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2554,64 +3126,49 @@ msgstr "Limburgués"
 
 #. language code: lin ln
 #: zypp/LanguageCode.cc:671
-msgid "Lingala"
-msgstr "Lingala"
-
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lituania"
-
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
-msgid "Lithuanian"
-msgstr "Lituano"
-
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "La ubicación '%s' está momentáneamente inaccesible."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Bajo alemán"
+msgid "Lingala"
+msgstr "Lingala"
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Bajo sorabo"
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
+msgid "Lithuanian"
+msgstr "Lituano"
+
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburgués"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Sami lule"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2627,35 +3184,11 @@ msgstr "Luo (Kenia y Tanzania)"
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxemburgo"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburgués"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Macedonio"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagascar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2666,6 +3199,11 @@ msgstr "Madurés"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshalés"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2676,178 +3214,60 @@ msgstr "Maithili"
 msgid "Makasar"
 msgstr "Macasar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malgache"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malaui"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malayo"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malayamés"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malasia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldivas"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "URI de formato incorrecto"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltés"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchú"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandinga"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Lenguas manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maorí"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austranesio (otros)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Islas Marshall"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshalés"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinica"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritania"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauricio"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Lenguas mayas"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "El origen de medios %s no incluye el medio deseado"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "El medio %s está en uso en otra instancia"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malayo"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Medio no conectado"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "No se ha abierto el medio al intentar realizar la acción %s."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mendé"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Francia metropolitana"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "México"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Irlandés medieval (900 - 1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2859,86 +3279,61 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandés"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
-msgstr "Lenguas misceláneas"
+msgstr "Varios idiomas"
+
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Jemer (otros)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malgache"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltés"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manchú"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Lenguas manobo"
 
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohicano"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldavo"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldavia"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Jemer (otros)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Mónaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolia"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongol"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marruecos"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambique"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2949,210 +3344,141 @@ msgstr "Varios idiomas"
 msgid "Munda languages"
 msgstr "Lenguas munda"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Birmania"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandés"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Lenguas mayas"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Lenguas amerindias"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauruano"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Napolitano"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele septentrional"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele meridional"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele septentrional"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Napolitano"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepal Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Bajo alemán"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepalés"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Países Bajos"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Antillas Neerlandesas"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nueva Caledonia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nueva Zelanda"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Mensaje de actualización nuevo"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepal Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Níger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Niger-cordofano (otros)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-sahariano (otros)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niue"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Sin código"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Noruego nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "No hay ninguna URL en el repositorio."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Noruego bokmal"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogáy"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Isla Norfolk"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Noruego antiguo"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Lenguas amerindias de Norteamérica"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Corea del Norte"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Islas Marianas del Norte"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Sami septentrional"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Sotho septentrional"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Noruega"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Noruego"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Noruego bokmal"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Noruego nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "No es una unidad de CD-ROM"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Sotho septentrional"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Lenguas nubias"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Newari clásico"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3170,12 +3496,8 @@ msgstr "Nyoro"
 
 #. language code: nzi
 #: zypp/LanguageCode.cc:827
-msgid "Nzima"
-msgstr "Nzima"
-
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Obsoletos"
+msgid "Nzima"
+msgstr "Nzima"
 
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
@@ -3187,20 +3509,6 @@ msgstr "Occitano (posterior a 1500)"
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Omán"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Se requieren uno o ambos de los atributos %s o %s."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "El medio no admite la operación"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3221,1653 +3529,1991 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Osetio"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turco otomano (1500 - 1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Lenguas otomanas"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Parece que el paquete %s se ha dañado durante la transferencia. ¿Desea "
-"volver a intentar la recuperación?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papú (otros)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Panganisano"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Pahlevi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistán"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "Pampanga"
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palaos"
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "Panjabi"
+
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "Papiamento"
+
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauano"
+
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
+msgstr "Persa antiguo (600 - 400 a.C.)"
+
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persa"
+
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
+msgstr "Filipino (otros)"
+
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
+msgstr "Fenicio"
+
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
+
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
+msgstr "Polaco"
+
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Ponapeano"
+
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
+msgstr "Portugués"
+
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
+msgstr "Lenguas prácritas"
+
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
+msgstr "Provenzal antiguo (hasta 1500)"
+
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
+msgstr "Pushto"
+
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
+msgstr "Quechua"
+
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
+msgstr "Rajastaní"
+
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
+msgstr "Rapanui"
+
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
+msgstr "Rarotongano"
+
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
+msgstr "Romance (otros)"
+
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Raeto-romance"
+
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "Romaní"
+
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumano"
+
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundi"
+
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Ruso"
+
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandawe"
+
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango"
+
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Yakuto"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Lenguas amerindias de Sudamérica (otros)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Lenguas salish"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Arameo samaritano"
+
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
+msgstr "Sánscrito"
+
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "Santali"
+
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbio"
+
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Siciliano"
+
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "Escocés"
+
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Croata"
+
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "Selkup"
+
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "Judaicos (otros)"
+
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Irlandés antiguo (hasta 900)"
+
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Lenguas de signos"
+
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "Shan"
+
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "Sidamo"
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauano"
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr "Sinhala"
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Territorios palestinos"
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+msgid "Siouan Languages"
+msgstr "Lenguas siouan"
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-tibetano (otros)"
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "Pampanga"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
+msgstr "Eslavo (otros)"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panamá"
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "Eslovaco"
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Panganisano"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Esloveno"
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "Panjabi"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Sami meridional"
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "Papiamento"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Sami septentrional"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papúa Nueva Guinea"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Lenguas sami (otros)"
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papú (otros)"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Sami lule"
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Sami inari"
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "La vía %s del medio %s no es un directorio."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoano"
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "La vía %s del medio %s no es un archivo."
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Sami skolt"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Se ha denegado el permiso para acceder a %s."
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persa"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindi"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr "Persa antiguo (600 - 400 a.C.)"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninké"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Perú"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "Sogdiano"
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
-msgstr "Filipino (otros)"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Somalí"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipinas"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "Songay"
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
-msgstr "Fenicio"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "Sotho meridional"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
+#. language code: spa es
+#: zypp/LanguageCode.cc:989
+msgid "Spanish"
+msgstr "Español (castellano)"
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Instale primero el paquete lsof."
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardo"
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Ponapeano"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polonia"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-sahariano (otros)"
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
-msgstr "Polaco"
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Sisuati"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: suk
+#: zypp/LanguageCode.cc:999
+msgid "Sukuma"
+msgstr "Sukuma"
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
-msgstr "Portugués"
+#. language code: sun su
+#: zypp/LanguageCode.cc:1001
+msgid "Sundanese"
+msgstr "Sundanés"
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
-msgstr "Lenguas prácritas"
+#. language code: sus
+#: zypp/LanguageCode.cc:1003
+msgid "Susu"
+msgstr "Susu"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Requisitos previos"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumerio"
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Determinación de problemas, lo que significa asistencia técnica diseñada "
-"para proporcionar información de compatibilidad, asistencia para la "
-"instalación, compatibilidad de uso, mantenimiento continuo y resolución "
-"básica de problemas. La asistencia de nivel 1 está pensada para corregir "
-"errores por defectos del producto."
+#. language code: swa sw
+#: zypp/LanguageCode.cc:1007
+msgid "Swahili"
+msgstr "Suajili"
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Aislamiento de problemas, lo que significa asistencia técnica diseñada para "
-"reproducir los problemas del cliente, aislar el área problemática y "
-"proporcionar soluciones para los problemas que no se resuelven mediante la "
-"asistencia de nivel 1."
+#. language code: swe sv
+#: zypp/LanguageCode.cc:1009
+msgid "Swedish"
+msgstr "Sueco"
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Resolución de problemas, lo que significa asistencia técnica diseñada para "
-"resolver problemas complejos utilizando la ingeniería en la resolución de "
-"los defectos de los productos identificados en la asistencia de nivel 2."
+#. language code: syr
+#: zypp/LanguageCode.cc:1011
+msgid "Syriac"
+msgstr "Siríaco"
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
-msgstr "Provenzal antiguo (hasta 1500)"
+#. language code: tah ty
+#: zypp/LanguageCode.cc:1013
+msgid "Tahitian"
+msgstr "Tahitiano"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Proporciona"
+#. language code: tai
+#: zypp/LanguageCode.cc:1015
+msgid "Tai (Other)"
+msgstr "Tai (otros)"
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+#. language code: tam ta
+#: zypp/LanguageCode.cc:1017
+msgid "Tamil"
+msgstr "Tamil"
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
-msgstr "Pushto"
+#. language code: tat tt
+#: zypp/LanguageCode.cc:1019
+msgid "Tatar"
+msgstr "Tártaro"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
+#. language code: tel te
+#: zypp/LanguageCode.cc:1021
+msgid "Telugu"
+msgstr "Telegu"
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
-msgstr "Quechua"
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-"El análisis de cadenas de consulta no es compatible con esta dirección URL"
+#. language code: ter
+#: zypp/LanguageCode.cc:1025
+msgid "Tereno"
+msgstr "Tereno"
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM fallido: "
+#. language code: tet
+#: zypp/LanguageCode.cc:1027
+msgid "Tetum"
+msgstr "Tetum"
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Raeto-romance"
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tayiko"
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
-msgstr "Rajastaní"
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalo"
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
-msgstr "Rapanui"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "Tai"
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr "Rarotongano"
+#. language code: tib bod bo
+#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
+msgid "Tibetan"
+msgstr "Tibetano"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Recomienda"
+#. language code: tig
+#: zypp/LanguageCode.cc:1039
+msgid "Tigre"
+msgstr "Tigré"
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "No se permiten vías relativas si existe una autoridad"
+#. language code: tir ti
+#: zypp/LanguageCode.cc:1041
+msgid "Tigrinya"
+msgstr "Tigriña"
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Eliminado el repositorio %s"
+#. language code: tiv
+#: zypp/LanguageCode.cc:1043
+msgid "Tiv"
+msgstr "Tiv"
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "El alias del repositorio no puede comenzar con un punto."
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Falta el atributo requerido %s."
+#. language code: tli
+#: zypp/LanguageCode.cc:1049
+msgid "Tlingit"
+msgstr "Tlingit"
 
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Requiere"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamasheq"
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunión"
+#. language code: tog
+#: zypp/LanguageCode.cc:1053
+msgid "Tonga (Nyasa)"
+msgstr "Tonga (Nyasa)"
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "Romance (otros)"
+#. language code: ton to
+#: zypp/LanguageCode.cc:1055
+msgid "Tonga (Tonga Islands)"
+msgstr "Tonga (islas Tonga)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Rumanía"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumano"
+#. language code: tsi
+#: zypp/LanguageCode.cc:1059
+msgid "Tsimshian"
+msgstr "Tsimshián"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "Romaní"
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tsuana"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundi"
+#. language code: tso ts
+#: zypp/LanguageCode.cc:1063
+msgid "Tsonga"
+msgstr "Tsonga"
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Ruso"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turcomano"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Federación Rusa"
+#. language code: tum
+#: zypp/LanguageCode.cc:1067
+msgid "Tumbuka"
+msgstr "Tumbuka"
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
+#. language code: tup
+#: zypp/LanguageCode.cc:1069
+msgid "Tupi Languages"
+msgstr "Lenguas Tupi"
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Santa Helena"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "Turco"
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "San Cristóbal y Nieves"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaico (otros)"
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Santa Lucía"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "San Martín"
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "Tuvano"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "San Pedro y Miquelón"
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "Udmurto"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "San Vicente y las Granadinas"
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "Ugarítico"
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Lenguas salish"
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "Uigur"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Arameo samaritano"
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "Ucraniano"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Lenguas sami (otros)"
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "Umbundu"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Indeterminado"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoano"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Urdu"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Uzbeco"
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandawe"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vai"
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sango"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Venda"
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
-msgstr "Sánscrito"
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnamita"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "Santali"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Volapuk"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Santo Tomé y Príncipe"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Votiaco"
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardo"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "Lenguas wakashan"
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Walamo"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Arabia Saudí"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Waray"
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "Escocés"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Washo"
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "Selkup"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Galés"
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "Semítico (otros)"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Lenguas sórabas"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Valón"
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbia"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolof"
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbio"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Calmico"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xosa"
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "El alias del servicio no puede comenzar con un punto."
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yao"
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "El complemento del servicio no admite el cambio de un atributo."
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yapés"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelles"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Yiddish"
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "Shan"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Yoruba"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Lenguas Yupik"
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Yi de Sichuan"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapoteca"
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Siciliano"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "Sidamo"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Chuang"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leona"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Lenguas de signos"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulú"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "La firma no satisface la verificación."
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuñi"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Intentó importar clave no existente %s en el anillo de claves %s"
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Error al borrar clave."
 
 #: zypp/KeyRing.cc:575
 #, c-format, boost-format
 msgid "Signature file %s not found"
-msgstr "No se ha encontrado el archivo de firma %s."
+msgstr "No se ha encontrado el archivo de firma %s"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "La firma es correcta."
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "No es posible proporcionar el archivo '%s' desde el repositorio '%s'"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "La firma es correcta, pero la clave no es de confianza."
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "No hay ninguna dirección url en el repositorio."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "El agregado de servicio no soporta cambios en sus atributos"
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"El paquete %s parece haberse dañado durante la transferencia. ¿Desea volver "
+"a intentar obtenerlo?"
 
 #: zypp/repo/PackageProvider.cc:216
 msgid "Signature verification failed"
 msgstr "Error de verificación de firma"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "La clave pública de firma no está disponible."
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
+"No se ha podido proporcionar el paquete %s. ¿Desea volver a intentar "
+"obtenerlo?"
 
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
-msgstr "Sinhala"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "Ha fallado la comprobación de applydeltarpm."
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-tibetano (otros)"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "Error de applydeltarpm."
 
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-msgid "Siouan Languages"
-msgstr "Lenguas siouan"
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"La gestión del sistema está bloqueada por la aplicación con pid %d (%s).\n"
+"Cierre esa aplicación antes de intentarlo nuevamente."
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Sami skolt"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s no pertence al repositorio distupgrade"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Esclavo (atapascano)"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s posee una arquitectura inferior"
 
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr "Eslavo (otros)"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "se ha producido un problema con el paquete instalado %s"
 
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "Eslovaco"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "peticiones conflictivas"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Eslovaquia"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "algunos problemas de dependencias"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Eslovenia"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "no hay nada que proporcione el solicitado %s"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Esloveno"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "¿Habilitó todos los repositorios solicitados?"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "Sogdiano"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "el paquete %s no existe"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Islas Salomón"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "petición no soportada"
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Somalí"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s no puede removerse por es proporcionado por el sistema"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s no es instalable"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "Songay"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "no hay nada que proporcione %s y que lo necesita %s"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninké"
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "no se puede instalar ambos %s y %s"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Lenguas sórabas"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s está en conflicto con %s proporcionado por %s"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-"Lamentablemente esta versión de libzypp se ha construido sin compatibilidad "
-"con HAL."
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s deja obsoleto a %s proporcionado por %s"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "Sotho meridional"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s instalado, deja obsoleto a %s proporcionado por %s"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Sudáfrica"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "la solución %s tiene conflictos con %s proveida por esta misma"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Lenguas amerindias de Sudamérica (otros)"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s requiere %s, pero este requisito no puede cumplirse"
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Georgia del Sur e Islas Sandwich del Sur"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "proveedores eliminados: "
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Corea del Sur"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"proveedores no instalables: "
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Altai meridional"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "proveedores no instalables: "
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Sami meridional"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "eliminar bloqueo para permitir la desinstalación de %s"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "España"
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "no instalar %s"
 
-#. language code: spa es
-#: zypp/LanguageCode.cc:989
-msgid "Spanish"
-msgstr "Español"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "mantener %s"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "eliminar bloqueo para permitir la instalación de %s"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudán"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "¡Esta solicitud averiará su sistema!"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Sugiere"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ignorar la advertencia de sistema averiado"
 
-#. language code: suk
-#: zypp/LanguageCode.cc:999
-msgid "Sukuma"
-msgstr "Sukuma"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "no preguntar si se instala algún elemento que proporciona %s"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumerio"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "no preguntar si se eliminan todos los elementos que proporcionan %s"
 
-#. language code: sun su
-#: zypp/LanguageCode.cc:1001
-msgid "Sundanese"
-msgstr "Sundanés"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "no instalar la versión mas reciente de %s"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Complementa"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "mantener %s sin importar que sea de una arquitectura inferior"
 
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "instalar %s aunque cambie la arquitectura"
 
-#. language code: sus
-#: zypp/LanguageCode.cc:1003
-msgid "Susu"
-msgstr "Susu"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "mantener el antiguo %s"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard y Jan Mayen"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "instalar %s desde los directorios excluidos"
 
-#. language code: swa sw
-#: zypp/LanguageCode.cc:1007
-msgid "Swahili"
-msgstr "Suajili"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "desactualización de %s a %s"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Sisuati"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "cambio en la arquitectura de %s a %s"
 
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Suazilandia"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"instalar %s (con cambio de proveedor)\n"
+"  %s -->  %s"
 
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Suecia"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "reemplazo de %s con %s"
 
-#. language code: swe sv
-#: zypp/LanguageCode.cc:1009
-msgid "Swedish"
-msgstr "Sueco"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "desinstalación de %s"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Suiza"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "romper %s ignorando algunas de sus dependencias"
 
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Siria"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "generalmente se ignoran algunas dependencias"
 
-#. language code: syr
-#: zypp/LanguageCode.cc:1011
-msgid "Syriac"
-msgstr "Siríaco"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "Falta el atributo requerido '%s'."
 
-#: zypp/media/MediaException.cc:91
+#: zypp/parser/RepoindexFileReader.cc:209
 #, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Excepción de sistema %s en el medio %s."
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Son requeridos uno o ambos de los atributos \"%s\" o \"%s\"."
 
-#: zypp/ZYppFactory.cc:394
+#: zypp/base/InterProcessMutex.cc:83
 #, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"La gestión del sistema está bloqueada por la aplicación con pid %d (%s).\n"
-"Cierre la aplicación antes de volver a intentarlo."
+msgid "Can't open lock file: %s"
+msgstr "No se puede abrir el archivo de bloqueo: %s"
 
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalo"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Esta acción está siendo ejecutada por otro programa."
 
-#. language code: tah ty
-#: zypp/LanguageCode.cc:1013
-msgid "Tahitian"
-msgstr "Tahitiano"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Historial:"
 
-#. language code: tai
-#: zypp/LanguageCode.cc:1015
-msgid "Tai (Other)"
-msgstr "Tai (otros)"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Modo de coincidencias '%s' desconocido"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwán"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Modo de coincidencias '%s' desconocidos para el patrón '%s'."
 
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tayiko"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Expresión regular '%s' no válida: regcomp ha devuelto %d"
 
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tayikistán"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Expresión regular '%s' no válida"
 
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamasheq"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Instale primero el paquete 'lsof'."
 
-#. language code: tam ta
-#: zypp/LanguageCode.cc:1017
-msgid "Tamil"
-msgstr "Tamil"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Se requiere autenticación para '%s'"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzania"
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Error al montar %s en %s"
 
-#. language code: tat tt
-#: zypp/LanguageCode.cc:1019
-msgid "Tatar"
-msgstr "Tártaro"
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Error al desmontar %s"
 
-#. language code: tel te
-#: zypp/LanguageCode.cc:1021
-msgid "Telugu"
-msgstr "Telegu"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Nombre de archivo incorrecto: %s"
 
-#. language code: ter
-#: zypp/LanguageCode.cc:1025
-msgid "Tereno"
-msgstr "Tereno"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "El medio no se ha abierto cuando se intentaba realizar la acción '%s'."
 
-#. language code: tet
-#: zypp/LanguageCode.cc:1027
-msgid "Tetum"
-msgstr "Tetum"
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "No se encuentra el archivo '%s' en el medio '%s'"
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr "Tai"
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "No es posible escribir en el archivo '%s'."
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tailandia"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Medio no insertado"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Punto de inserción de medio incorrecto"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "La inicialización de la descarga (curl) ha fallado para '%s'"
 
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "El nivel de asistencia no se ha especificado."
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr "Excepción del sistema '%s' en el medio '%s'."
 
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "El proveedor no proporciona asistencia."
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "La ruta '%s' en el medio '%s' no es un archivo."
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Esta acción ya está siendo ejecutada por otro programa."
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "La ruta '%s' en el medio '%s' no es un directorio."
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Esta petición dañará su sistema."
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Formato de URI incorrecto"
 
-#. language code: tib bod bo
-#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
-msgid "Tibetan"
-msgstr "Tibetano"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Nombre de host vacío en URI"
 
-#. language code: tig
-#: zypp/LanguageCode.cc:1039
-msgid "Tigre"
-msgstr "Tigré"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Sistema de archivos vacío en URI"
 
-#. language code: tir ti
-#: zypp/LanguageCode.cc:1041
-msgid "Tigrinya"
-msgstr "Tigriña"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Destino vacío en URI"
 
-#: zypp/media/MediaException.cc:207
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Se ha sobrepasado el tiempo límite al acceder a '%s'."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Esquema de URL no soportado en '%s'."
 
-#. language code: tiv
-#: zypp/LanguageCode.cc:1043
-msgid "Tiv"
-msgstr "Tiv"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operación no admitida por el medio"
 
-#. language code: tli
-#: zypp/LanguageCode.cc:1049
-msgid "Tlingit"
-msgstr "Tlingit"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Error en la descarga (curl) de '%s':\n"
+"Código de error: %s\n"
+"Mensaje de error: %s\n"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"Se ha producido un error al establecer las opciones de descarga (curl) para "
+"'%s':"
 
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "El medio fuente '%s' no contiene el medio deseado"
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "El medio '%s' está en uso por otra instancia"
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "No es posible expulsar ningún medio"
 
-#. language code: tog
-#: zypp/LanguageCode.cc:1053
-msgid "Tonga (Nyasa)"
-msgstr "Tonga (Nyasa)"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
+msgstr "No es posible expulsar el medio '%s'"
 
-#. language code: ton to
-#: zypp/LanguageCode.cc:1055
-msgid "Tonga (Tonga Islands)"
-msgstr "Tonga (islas Tonga)"
+#: zypp/media/MediaException.cc:199
+#, c-format, boost-format
+msgid "Permission to access '%s' denied."
+msgstr "Permiso de acceso a '%s' denegado."
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-"Se intentó importar una clave que no existe (%s) al almacén de claves %s"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Se excedió el tiempo de espera mientras se accedía a '%s'"
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad y Tobago"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "La ubicación '%s' está momentaneamente inaccesible."
 
-#. language code: tsi
-#: zypp/LanguageCode.cc:1059
-msgid "Tsimshian"
-msgstr "Tsimshián"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" Hay un problema con el certificado SSL, compruebe que la autoridad de "
+"certificación (CA) es correcta para '%s'."
 
-#. language code: tso ts
-#: zypp/LanguageCode.cc:1063
-msgid "Tsonga"
-msgstr "Tsonga"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"No es posible encontrar un dispositivo loop disponible para montar la imagen "
+"desde '%s'"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tsuana"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Método de autenticación HTTP no soportado '%s'"
 
-#. language code: tum
-#: zypp/LanguageCode.cc:1067
-msgid "Tumbuka"
-msgstr "Tumbuka"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Visite el Centro de atención al cliente de Novell para verificar si su "
+"registración es válida y no expiró"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Túnez"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "No es posible crear el 'sat-pool'."
 
-#. language code: tup
-#: zypp/LanguageCode.cc:1069
-msgid "Tupi Languages"
-msgstr "Lenguas Tupi"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"El archivo %1%\n"
+"  del paquete\n"
+"     %2%\n"
+"  se encuentra en conflicto con el proporcionado por\n"
+"     %3%"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turquía"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"El archivo %1%\n"
+"  del paquete\n"
+"     %2%\n"
+"  se encuentra en conflicto con el proporcionado por\n"
+"     %3%"
 
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "Turco"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"El archivo %1%\n"
+"  a instalar de\n"
+"     %2%\n"
+"  se encuentra en conflicto con el proporcionado por\n"
+"     %3%"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turco otomano (1500 - 1928)"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"El archivo %1%\n"
+"  a instalar de\n"
+"     %2%\n"
+"  se encuentra en conflicto con el proporcionado por\n"
+"     %3%"
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turcomano"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"El archivo %1%\n"
+"  del paquete\n"
+"     %2%\n"
+"  se encuentra en conflicto con\n"
+"     %3%\n"
+"  proporcionado por\n"
+"     %4%"
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistán"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"El archivo %1%\n"
+"  del paquete\n"
+"     %2%\n"
+"  se encuentra en conflicto con\n"
+"     %3%\n"
+"  proporcionado por\n"
+"     %4%"
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Islas Turcas y Caicos"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"El archivo %1%\n"
+"  a instalar de\n"
+"     %2%\n"
+"  se encuentra en conflicto con\n"
+"     %3%\n"
+"  proporcionado por\n"
+"     %4%"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalino"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"El archivo %1%\n"
+"  a instalar de\n"
+"     %2%\n"
+"  se encuentra en conflicto con\n"
+"     %3%\n"
+"  proporcionado por\n"
+"     %4%"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "Tuvano"
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "generalmente ignorar algunas dependencias"
+
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+#~ msgid "do not forbid installation of %s"
+#~ msgstr "no prohibir la instalación de %s"
+
+#~ msgid "do not keep %s installed"
+#~ msgstr "no mantener instalado %s"
+
+#, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "تعذر حل التبعيات"
+
+#~ msgid ""
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "لا يحتوي الملف %s على مجموع اختباري.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الملف %s باستخدام المفتاح التالي:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير صالح.\n"
+#~ "متوقع %s، تم العثور على %s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير معروف %s.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "لم يتم توقيع الملف %s.\n"
+#~ "هل تريد استخدامه على أي حال؟"
+
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "تم توقيع الملف %s باستخدام مفتاح غير معروف:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "تم العثور على مفتاح غير موثوق:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد الوثوق بالمفتاح؟"
+
+#~ msgid "%s remove failed"
+#~ msgstr "فشلت إزالة %s"
+
+#, fuzzy
+#~ msgid "Invalid user name or password."
+#~ msgstr "كلمة السر CA غير صالحة."
+
+#~ msgid "rpm output:"
+#~ msgstr "مخرجات rpm:"
+
+#~ msgid "%s install failed"
+#~ msgstr "فشل تثبيت %s"
+
+#~ msgid "%s installed ok"
+#~ msgstr "تم تثبيت %s بنجاح"
+
+#~ msgid "%s remove ok"
+#~ msgstr "تمت إزالة %s بنجاح"
+
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
+
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
+
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "تجاهل %s القديم في %s"
+
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "تجاهل تعارض %s هذا"
+
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "تجاهل هذا المتطلب هنا فقط"
+
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
+
+#~ msgid "Install missing resolvables"
+#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
+
+#~ msgid "Keep resolvables"
+#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
+
+#~ msgid "Unlock these resolvables"
+#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
+
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
+
+#~ msgid "install %s"
+#~ msgstr "تثبيت %s"
+
+#~ msgid "unlock %s"
+#~ msgstr "إلغاء قفل %s"
+
+#~ msgid "unlock all resolvables"
+#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
+
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "تعذر فتح الملف %1."
+
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "تعذرت قراءة القطاع %u."
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "Udmurto"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
+#~ msgid "Software management is already running."
+#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "Ugarítico"
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "Uigur"
+#~ msgid "%s replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ucrania"
+#, fuzzy
+#~ msgid "%s will be deleted by the user.\n"
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "Ucraniano"
+#, fuzzy
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "Umbundu"
+#~ msgid "Invalid information"
+#~ msgstr "المعلومات غير صالحة"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "No es posible clonar el objeto URL"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "No es posible crear la conexión dbus"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s مطلوب بواسطة\n"
+#~ "%s"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-"No es posible iniciar el contexto HAL -- ¿Es posible que hald no se esté "
-"ejecutando?"
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "No es posible analizar los componentes de URL"
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s يتعارض مع:\n"
+#~ "%s"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Indeterminado"
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Tipo de repositorio no gestionado"
+#~ msgid "%s obsoletes:%s"
+#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Emiratos Árabes Unidos"
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Reino Unido"
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Estados Unidos"
+#~ msgid "%s depends on %s"
+#~ msgstr "%s يعتمد على %s"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Islas menores alejadas de los Estados Unidos"
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s يعتمد على:%s"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "País desconocido:"
+#~ msgid "Child of"
+#~ msgstr "عنصر فرعي لـ"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Error desconocido al leer de %s"
+#, fuzzy
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Idioma desconocido:"
+#, fuzzy
+#~ msgid ""
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Modo de coincidencias '%s' desconocido"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
 
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Modo de coincidencias '%s' desconocido para el patrón '%s'"
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-"Servicio desconocido %1%: se va a eliminar el repositorio de servicios "
-"huérfano %2%"
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "لم يتم استيفاء متطلبات %s"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Opción de asistencia desconocida. Descripción no disponible."
+#~ msgid "%s has missing dependencies"
+#~ msgstr "تم فقد تبعيات %s"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Tipo de firma desconocido"
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Método de autenticación HTTP no compatible %s."
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
 
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Esquema de URI no admitido en %s."
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Alto sorabo"
+#~ msgid "No need to install %s"
+#~ msgstr "لا داعي لتثبيت %s"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Urdu"
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "El esquema de URL no permite un elemento %s"
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "El esquema de URL no permite un componente host"
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "El esquema de URL no permite una contraseña"
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "El esquema de URL no permite un puerto"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "تعذر تثبيت %s لأنه متعارض"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "El esquema de URL no permite un nombre de usuario"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "El esquema de url es un componente obligatorio"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "El esquema de URL requiere un componente host"
+#, fuzzy
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s يفتقد المتطلب %s"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "El esquema URL requiere un nombre de vía"
+#~ msgid ", Action: "
+#~ msgstr "، الإجراء:"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
+#~ msgid ", Trigger: "
+#~ msgstr "، تشغيل:"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Uzbeco"
+#~ msgid "package"
+#~ msgstr "الحزمة"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistán"
+#~ msgid "selection"
+#~ msgstr "التحديد"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vai"
+#~ msgid "pattern"
+#~ msgstr "النمط"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#~ msgid "product"
+#~ msgstr "المنتج"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#~ msgid "patch"
+#~ msgstr "التصحيح"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Venda"
+#~ msgid "script"
+#~ msgstr "البرنامج النصي"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
+#~ msgid "message"
+#~ msgstr "الرسالة"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
+#~ msgid "atom"
+#~ msgstr "الذرة"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnamita"
+#~ msgid "system"
+#~ msgstr "النظام"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Islas Vírgenes, EE.UU."
+#~ msgid "Resolvable"
+#~ msgstr "التبعية القابلة للتحليل"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Visite el Centro de servicios al cliente de Novell para comprobar si el "
-"registro es válido y no ha caducado."
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Volapuk"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Votiaco"
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "Lenguas wakashan"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
+
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Walamo"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis y Futuna"
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Valón"
+#~ msgid "Establishing %s"
+#~ msgstr "تأسيس %s"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Waray"
+#~ msgid "Installing %s"
+#~ msgstr "تثبيت %s"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Washo"
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Galés"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "تخطي %s: تم التثبيت بالفعل"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Sáhara Occidental"
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolof"
+#~ msgid "for %s"
+#~ msgstr "لـ %s"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xosa"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Yakuto"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yao"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Yapés"
+#~ msgid ""
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
+#~ msgstr ""
+#~ "%s يوفر %s، لكنه قابل لإلغاء التثبيت.  حاول تثبيته للحصول على مزيد من "
+#~ "التفاصيل."
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Yemen"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s يوفر %s، لكنه مقفل."
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Yiddish"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Yoruba"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Lenguas Yupik"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapoteca"
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Chuang"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabue"
+#~ msgid "from %s"
+#~ msgstr "من %s"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulú"
+#~ msgid " Error!"
+#~ msgstr "خطأ!"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuñi"
+#~ msgid " Important!"
+#~ msgstr "هام!"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "Comprobación de applydeltarpm incorrecta."
+#~ msgid "%s depended on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "Error de applydeltarpm."
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1325
-#, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "cambio en la arquitectura de %s a %s"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "romper %s ignorando algunas de sus dependencias"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#: zypp/solver/detail/SATResolver.cc:1017
-#, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "no se puede instalar ambos elementos: %s y %s"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "peticiones en conflicto"
+#~ msgid "%s part of %s"
+#~ msgstr "%s جزء من %s"
 
-#: zypp/target/rpm/RpmDb.cc:2344
-#, c-format, boost-format
-msgid "created backup %s"
-msgstr "creada copia de seguridad %s"
+#, fuzzy
+#~ msgid "Double timeout"
+#~ msgstr "موعد الاستحقاق: %1"
 
-#: zypp/solver/detail/SATResolver.cc:1354
-#, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "desinstalación de %s"
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "proveedores suprimidos: "
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "تعذر تحليل سلطة Url"
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr ""
-"no preguntar si se deben suprimir todas las soluciones que proporcionan %s"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "no preguntar si se debe instalar una solución que proporciona %s"
+#~ msgid ""
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
+#~ "الارتباط."
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, c-format, boost-format
-msgid "do not install %s"
-msgstr "no instalar %s"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "no instalar la versión más reciente de %s"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "تعذرت استعادة كافة المصادر."
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "restablecer versión anterior de %s a %s"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "generalmente se ignoran algunas dependencias"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ignorar la advertencia de daño del sistema"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"instalar %s (con cambio de proveedor)\n"
-"  %s  -->  %s"
+#~ msgid "Reading index files"
+#~ msgstr "قراءة ملفات الفهرس"
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "instalar %s a pesar de la arquitectura inferior"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "instalar %s desde el repositorio excluido"
+#~ msgid "Reading product from %s"
+#~ msgstr "قراءة المنتج من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s instalado, deja obsoleto a %s proporcionado por %s"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "قراءة قائمة الملفات من %s"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "no válido"
+#~ msgid "Reading packages from %s"
+#~ msgstr "قراءة الحزم من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "mantener %s"
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "mantener %s a pesar de la arquitectura inferior"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "mantener el antiguo %s"
+#~ msgid "Reading patches index %s"
+#~ msgstr "قراءة فهرس التصحيحات %s"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: no es posible crear el contexto libhal"
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: no es posible establecer la conexión dbus"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "no hay nada que proporcione %s, necesario para %s"
+#~ msgid "Reading packages file"
+#~ msgstr "قراءة ملف الحزم"
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "no hay nada que proporcione el elemento %s solicitado"
+#~ msgid "Reading translation: %s"
+#~ msgstr "قراءة الترجمة: %s"
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "el paquete %s no existe"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
+#~ "التثبيت؟"
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "se ha producido un problema con el paquete instalado %s"
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "eliminar bloqueo para permitir la instalación de %s"
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "eliminar bloqueo para permitir la desinstalación de %s"
+#~ msgid "Downloading %s"
+#~ msgstr "إنزال %s"
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "reemplazo de %s con %s"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr ""
+#~ "No se puede crear la clave pública %s del anillo de claves %s al archivo "
+#~ "%s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr ""
-"rpm ha creado %s como %s, pero no se ha podido determinar la diferencia"
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr ""
+#~ "Se intentó importar la clave inexistente %s en el anillo de claves %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"rpm creado %s como %s.\n"
-"A continuación se presentan las primeras 25 líneas de diferencia:\n"
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "No se puede cambiar de directorio a '/' dentro del chroot (%s)."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr ""
-"rpm ha guardado %s como %s, pero no se ha podido determinar la diferencia"
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr ""
+#~ "La inicialización de la descarga (Metalink curl) ha fallado para '%s'"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
-msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"rpm guardado %s como %s.\n"
-"A continuación se presentan las primeras 25 líneas de diferencia:\n"
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "Error en la descarga (metalink curl) de '%s':\n"
+#~ "Código de error: %s\n"
+#~ "Mensaje de error: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "La solución %s está en conflicto con %s, proporcionada por ella misma"
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "Descarga interrumpida en %d%%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "algún problema de dependencia"
+#~ msgid "Download interrupted by user"
+#~ msgstr "Descarga interrumpida por el usuario"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "proveedores no instalables: "
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr ""
+#~ "Se ha producido un error al establecer las opciones de descarga (metalink "
+#~ "curl) para '%s':"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "desconocido"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Error al descargar %s desde %s"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "no compatible"
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Serbia y Montenegro"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "petición no admitida"
+#~ msgid "Unknown Distribution"
+#~ msgstr "Distribución desconocida"
+
+#~ msgid "Timeout exceeded when access '%s'."
+#~ msgstr "Se ha sobrepasado el tiempo de espera al acceder a '%s'."
index 04aba52..1128d09 100644 (file)
--- a/po/et.po
+++ b/po/et.po
@@ -19,21 +19,97 @@ msgstr ""
 "Plural-Forms:  nplurals=2; plural=(n != 1);\n"
 "X-Generator: KBabel 1.11.4\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal erand"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
-"\n"
-"kättesaamatud varustajad: "
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr ""
+
+#: zypp/Url.cc:300
+#, fuzzy
+msgid "Unable to clone Url object"
+msgstr "Kõiki allikaid pole võimalik taastada."
+
+#: zypp/Url.cc:313
+#, fuzzy
+msgid "Invalid empty Url object reference"
+msgstr "Vigane eelistus"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+#, fuzzy
+msgid "Unable to parse Url components"
+msgstr "Kõiki allikaid pole võimalik taastada."
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr ""
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Varustab"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Vajab"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "On vastuolus"
+
+#: zypp/Dep.cc:100
+#, fuzzy
+msgid "Obsoletes"
+msgstr "Muudab aegunuks"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Soovitab"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
-" SSL-i probleem sertifikaadiga, kontolli, et SK sertifikaat sobiks '%s' "
-"jaoks."
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -43,10 +119,6 @@ msgstr " käivitatud"
 msgid " execution failed"
 msgstr " käivitamine nurjus"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " käivitamine jäeti katkestamise käigus vahele"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -55,92 +127,117 @@ msgstr " käivitamine jäeti katkestamise käigus vahele"
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " käivitamine jäeti katkestamise käigus vahele"
+
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+#, fuzzy
+msgid "Error sending update message notification."
+msgstr "Viga võtme krüptimisel."
+
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s pole paigaldatav"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext pole ühendatud"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive pole initsialiseeritud"
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume pole initsialiseeritud"
+
+#: zypp/target/hal/HalContext.cc:229
+#, fuzzy
+msgid "Unable to create dbus connection"
+msgstr "Ainult minu loodud ühenduse korral"
+
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Pole CDROM-seade"
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
 #, fuzzy
-msgid "(does not expire)"
-msgstr "'%1' pole olemas."
+msgid "RPM failed: "
+msgstr "ebaõnnestus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abhaasi"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Avaliku võtme %s eemaldamine nurjus: %s"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Atšehi"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Akoli"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
 #. report additional rpm output in finish
@@ -149,680 +246,1974 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "Täiendav rpm-i väljund"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adõgee"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afari"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "Hoidlat %s ei leitud."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "Hoidlat %s ei leitud."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "Hoidlat %s ei leitud."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Sooritatakse järgmised tegevused:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Kataloogi '%s' lugemine nurjus."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+#, fuzzy
+msgid "Repository alias cannot start with dot."
+msgstr "Hoidlat %s ei leitud."
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Faili '%s' avamine kirjutamiseks nurjus."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Pole võimalik luua %s: %m\n"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "Ei saa luua katalooogi %1: %2"
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Hoidla puhverdamine nurjus (%d)."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Viga lugemisel asukohast '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Tundmatu käsk '%s'"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Vigane ekspordifaili nimi."
+
+#: zypp/RepoManager.cc:1740
+#, fuzzy, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Hoidla '%s' lisamine."
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Ei suuda tuvastada, kus hoidla asub."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Faili '%s' ei saa kustutada."
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Ei suuda tuvastada, kus teenus asub."
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:173
+#, fuzzy, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Vigane komponendi URI: "
+
+#: zypp/url/UrlBase.cc:180
+#, fuzzy, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Vigane komponendi URI: "
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:830
+#, fuzzy, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "vigane teenuse nimi '%1'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1049
+#, fuzzy, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Vigane komponendi URI: "
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1081
+#, fuzzy, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Vigane komponendi URI: "
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Ei saanud avada faili: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Ei saa avada faili %1."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Ei saa käivitada '%s' (%s)."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Ei saa käivitada '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+#, fuzzy
+msgid "(does not expire)"
+msgstr "'%1' pole olemas."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "tundmatu"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Tase 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Tase 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Tase 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "vigane"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Tundmatu riik "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Kood puudub"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Araabia Ühendemiraadid"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistan"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua ja Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albaania"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armeenia"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Hollandi Antillid"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktika"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Ameerika Samoa"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austria"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Austraalia"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Ahvenamaa"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Aserbaidžaan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnia ja Hertsegoviina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgia"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaaria"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrein"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Boliivia"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasiilia"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahama"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvet' saar"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Valgevene"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Kookosesaared"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Kesk-Aafrika Vabariik"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Šveits"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Elevandiluurannik"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cooki saared"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Tšiili"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Hiina"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Roheneemesaared"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Jõulusaar"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Küpros"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Tšehhi"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Saksamaa"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Taani"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikaani Vabariik"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Alžeeria"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Eesti"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egiptus"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Lääne-Sahara"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Hispaania"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etioopia"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Soome"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidži"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falklandi saared (Malviinid)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Mikroneesia Föderatsioon"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Fääri saared"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Prantsusmaa"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Prantsuse emamaa"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Suurbritannia"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Gruusia"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Prantsuse Guajaana"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Saksamaa"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Gröönimaa"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Ekvatoriaal-Guinea"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Kreeka"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Lõuna-Georgia ja Lõuna-Sandwichi saared"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hongkong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heardi saar ja McDonaldi saared"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Horvaatia"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Ungari"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indoneesia"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Iirimaa"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Iisrael"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Briti India ookeani ala"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Iraak"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iraan"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Island"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Itaalia"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordaania"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Jaapan"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kõrgõzstan"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodža"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Komoorid"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts ja Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Põhja-Korea"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Lõuna-Korea"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuveit"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Kaimanisaared"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kasahstan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Laos"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Liibanon"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Libeeria"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Leedu"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luksemburg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Läti"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Liibüa"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Maroko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "Mongo"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "San Marino"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshalli saared"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedoonia"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Birma"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongoolia"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Põhja-Mariaani saared"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritaania"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldiivid"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistan"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Afrihili"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mehhiko"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikaani"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaisia"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afroaasia (muu)"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mosambiik"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Ainu"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namiibia"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Akani"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Uus-Kaledoonia"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Akadi"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Ahvenamaa"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolki saar"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albaania"
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeeria"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albaania"
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aleuudi"
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Holland"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Alžeeria"
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norra"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Algonkini keeled"
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altai (muu)"
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Ameerika Samoa"
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amhaari"
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Uus-Meremaa"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Omaan"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peruu"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Prantsuse Polüneesia"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Paapua Uus-Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipiinid"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Poola"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint Pierre ja Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestiina haldusterritoorium"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Belau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Katar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Réunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Rumeenia"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "Serbia"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Venemaa Föderatsioon"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudi Araabia"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Saalomoni saared"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seišellid"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudaan"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Rootsi"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Saint Helena"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Sloveenia"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktika"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard ja Jan Mayen"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua ja Barbuda"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovakkia"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Apatši keeled"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Araabia"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragoni"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Aramea"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somaalia"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Araukaani"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome ja Principe"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawaki"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Süüria"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armeenia"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Svaasimaa"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armeenia"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks ja Caicos"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Tehis (muu)"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Tšaad"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Prantsuse Lõunaalad"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Assami"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Astuuria"
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tai"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Atapaski keeled"
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadžikistan"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Austraalia"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Austraalia keeled"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Türkmenistan"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austria"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tuneesia"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr ""
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Ida-Timor"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Avaari"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Türgi"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Avesta"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad ja Tobago"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Avadhi"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Aimaraa"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Aserbaidžaan"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tansaania"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Aserbaidžaani"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraina"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Ühendriikide hajasaared"
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahama"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Ameerika Ühendriigid"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrein"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Bali"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Usbekistan"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Balti (muu)"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Püha Tool (Vatikan)"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Belutši"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Saint Vincent ja Grenadiinid"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Bambara"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-#, fuzzy
-msgid "Bamileke Languages"
-msgstr "Mitu keelt"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Briti Neitsisaared"
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "USA Neitsisaared"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (muu)"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis ja Futuna"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Baškiiri"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jeemen"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baski"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Bataki (Indoneesia)"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Lõuna-Aafrika Vabariik"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Bedža"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Sambia"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Valgevene"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Valgevene"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Tundmatu keel: "
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgia"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afari"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abhaasi"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Bemba"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Atšehi"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengaali"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Akoli"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Berberi (muu)"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adõgee"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afroaasia (muu)"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Bhodžpuri"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Afrihili"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikaani"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihaari"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Ainu"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikoli"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Akani"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Edo"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Akadi"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albaania"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blini"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aleuudi"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Boliivia"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Algonkini keeled"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia ja Hertsegoviina"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Altai"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosnia"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amhaari"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Vanainglise (ca. 450-1100)"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvet' saar"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Apatši keeled"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Bradži"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Araabia"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasiilia"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Aramea"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretooni"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragoni"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Briti India ookeani ala"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armeenia"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Briti Neitsisaared"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Araukaani"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Bugi"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Tehis (muu)"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawaki"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaaria"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Assami"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgaaria"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Astuuria"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Burjaadi"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Atapaski keeled"
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Austraalia keeled"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Birma"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Avaari"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Avesta"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Kado"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Avadhi"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodža"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Aimaraa"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Aserbaidžaani"
 
-#: zypp/sat/detail/PoolImpl.cc:184
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
 #, fuzzy
-msgid "Can not create sat-pool."
-msgstr "Faili ei sa luua."
+msgid "Bamileke Languages"
+msgstr "Mitu keelt"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr ""
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Baškiiri"
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Ei saa käivitada '%s' (%s)."
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Belutši"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Bambara"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Bali"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Pole võimalik luua %s: %m\n"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Baski"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Balti (muu)"
 
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "Ei saa luua katalooogi %1: %2"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Bedža"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Faili '%s' ei saa kustutada."
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Valgevene"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Ei saa käivitada '%s' (%s)."
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Bemba"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Ei suuda tuvastada, kus hoidla asub."
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengaali"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Ei suuda tuvastada, kus teenus asub."
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Berberi (muu)"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr ""
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Bhodžpuri"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr ""
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Bihaari"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr ""
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikoli"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Faili '%s' avamine kirjutamiseks nurjus."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Edo"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Ei saa avada lukustusfaili: %s"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Ei saa avada faili %1."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Ei saanud avada faili: %s."
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (muu)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr ""
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosnia"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr ""
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Bradži"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr ""
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretooni"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Bataki (Indoneesia)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Burjaadi"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Ei saa avada faili '%1'."
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Bugi"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgaaria"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Birma"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blini"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Faili '%s' ei saa kirjutada."
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Kado"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Roheneemesaared"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Kesk-Ameerika indiaani (muu)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -839,11 +2230,6 @@ msgstr "Katalaani"
 msgid "Caucasian (Other)"
 msgstr "Kaukaasia (muu)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Kaimanisaared"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -854,167 +2240,81 @@ msgstr "Sebu"
 msgid "Celtic (Other)"
 msgstr "Keldi (muu)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Kesk-Aafrika Vabariik"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Kesk-Ameerika indiaani (muu)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Tšaad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Tšagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-#, fuzzy
-msgid "Chamic Languages"
-msgstr "Apatši keeled"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Tšamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr ""
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Tšetšeeni"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Tšerokii"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Šaieeni"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Tšibtša"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Njandža"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Tšiili"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Tšetšeeni"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Hiina"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Tšagatai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Hiina"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Tšuugi"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Tšinuki žargoon"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Tšipevai"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Tšokto"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Jõulusaar"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Tšipevai"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Tšerokii"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "Kirikuslaavi"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Tšuugi"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "Tšuvaši"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Klassikaline nevari"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Kookosesaared"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Komoorid"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "On vastuolus"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Šaieeni"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cooki saared"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+#, fuzzy
+msgid "Chamic Languages"
+msgstr "Apatši keeled"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1031,32 +2331,6 @@ msgstr "Korni"
 msgid "Corsican"
 msgstr "Korsika"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Elevandiluurannik"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Krii"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Maskogi"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-#, fuzzy
-msgid "Creoles and Pidgins (Other)"
-msgstr "Kesk-Ameerika indiaani (muu)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1072,46 +2346,37 @@ msgstr ""
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Krii"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Krimmitatari"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Horvaatia"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Horvaadi"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+#, fuzzy
+msgid "Creoles and Pidgins (Other)"
+msgstr "Kesk-Ameerika indiaani (muu)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kašuubi"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Küpros"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Tšehhi"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Tšehhi"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1137,10 +2402,15 @@ msgstr "Dajaki"
 msgid "Delaware"
 msgstr "Delavari"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Taani"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Orjaindiaani (atapaski)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Koeraribi-Karujärve"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1152,71 +2422,36 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Maldiivi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Koeraribi-Karujärve"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikaani Vabariik"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr ""
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Alamsorbi"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Keskhollandi (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Hollandi"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Keskhollandi (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1227,26 +2462,11 @@ msgstr "Djula"
 msgid "Dzongkha"
 msgstr "Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Ida-Timor"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Ibibio"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egiptus"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1257,31 +2477,10 @@ msgstr "Vanaegiptuse"
 msgid "Ekajuk"
 msgstr "Ekadžuki"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Eelami"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Tühi masina nimi URI-s"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr ""
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Eelami"
 
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
@@ -1293,74 +2492,16 @@ msgstr "Inglise"
 msgid "English, Middle (1100-1500)"
 msgstr "Keskinglise (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Vanainglise (ca. 450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Ekvatoriaal-Guinea"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-#, fuzzy
-msgid "Error sending update message notification."
-msgstr "Viga võtme krüptimisel."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Viga lugemisel asukohast '%s'"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Ersa"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Eesti"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Eesti"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etioopia"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1371,208 +2512,31 @@ msgstr "Eve"
 msgid "Ewondo"
 msgstr "Jaunde"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Hoidla puhverdamine nurjus (%d)."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Võtme kustutamine nurjus."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "%s - %s ei saa avada\n"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Kataloogi '%s' lugemine nurjus."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Avaliku võtme %s eemaldamine nurjus: %s"
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Mooduli \"%s\" laadimine ebaõnnestus."
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandi saared (Malviinid)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Fangi"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Fääri saared"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "Fääri"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Mikroneesia Föderatsioon"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidži"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "Fidži"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Faili ei leitud: %1."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipiini"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Soome"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1580,43 +2544,19 @@ msgstr "Soome"
 
 #. language code: fiu
 #: zypp/LanguageCode.cc:441
-msgid "Finno-Ugrian (Other)"
-msgstr "Soomeugri (muu)"
-
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Sooritatakse järgmised tegevused:"
+msgid "Finno-Ugrian (Other)"
+msgstr "Soomeugri (muu)"
 
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Foni"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Prantsusmaa"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Prantsuse"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Prantsuse Guajaana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Prantsuse Polüneesia"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Prantsuse Lõunaalad"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1632,46 +2572,21 @@ msgstr "Vanaprantsuse (842-ca.1400)"
 msgid "Frisian"
 msgstr "Friisi"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friuuli"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fulbe"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friuuli"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Gaa"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaeli"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galeegi"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1682,15 +2597,10 @@ msgstr "Gajo"
 msgid "Gbaya"
 msgstr "Gbaja"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Etioopia"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Gruusia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germaani (muu)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1702,6 +2612,36 @@ msgstr "Gruusia"
 msgid "German"
 msgstr "Saksa"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Etioopia"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilberti"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaeli"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Iiri"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galeegi"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Mänksi"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1712,30 +2652,6 @@ msgstr "Keskülemsaksa (ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Vanaülemsaksa (ca.750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germaani (muu)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Saksamaa"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilberti"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1756,11 +2672,6 @@ msgstr "Gooti"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Kreeka"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1771,62 +2682,16 @@ msgstr "Vanakreeka (kuni 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Kreeka, tänapäevane (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Gröönimaa"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guaranii"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Saksamaa"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gudžarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1837,52 +2702,21 @@ msgstr "Gvitšini"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haiiti"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal erand"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext pole ühendatud"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive pole initsialiseeritud"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume pole initsialiseeritud"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Havai"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heardi saar ja McDonaldi saared"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1908,16 +2742,6 @@ msgstr "Himatšali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Ajalugu:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1928,31 +2752,21 @@ msgstr "Heti"
 msgid "Hmong"
 msgstr "Hmongi"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Püha Tool (Vatikan)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hongkong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Ülemsorbi"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Ungari"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Ungari"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1963,10 +2777,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Ibani"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Island"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Ibo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1976,253 +2790,107 @@ msgstr "Islandi"
 #. language code: ido io
 #: zypp/LanguageCode.cc:549
 msgid "Ido"
-msgstr "Ido"
-
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Ibo"
+msgstr "Ido"
+
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuani jii"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Idžo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktituti"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue (oktsidentaal)"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Inari saami"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "India (muu)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indoeuroopa (muu)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indoneesia"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indoneesia"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indoeuroopa (muu)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Inguši"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue (oktsidentaal)"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktituti"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Injupiaki"
 
-#: zypp/url/UrlBase.cc:180
-#, fuzzy, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Vigane komponendi URI: "
-
-#: zypp/url/UrlBase.cc:173
-#, fuzzy, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Vigane komponendi URI: "
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:830
-#, fuzzy, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "vigane teenuse nimi '%1'"
-
-#: zypp/Url.cc:313
-#, fuzzy
-msgid "Invalid empty Url object reference"
-msgstr "Vigane eelistus"
-
-#: zypp/url/UrlBase.cc:1049
-#, fuzzy, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Vigane komponendi URI: "
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, fuzzy, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Vigane komponendi URI: "
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr " pole korrektne regulaaravaldis: \""
-
-#: zypp/base/StrMatcher.cc:157
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr " pole korrektne regulaaravaldis: \""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Vigane ekspordifaili nimi."
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iraan"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Iraani (muu)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Iraak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Iirimaa"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Iiri"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Keskiiri (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Vanaiiri (kuni 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Irokeesi keeled"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Iisrael"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Itaalia"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Itaalia"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
-
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Jaapan"
-
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
-msgstr "Jaapani"
-
 #. language code: jav jv
 #: zypp/LanguageCode.cc:579
 msgid "Javanese"
 msgstr "Jaava"
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordaania"
-
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
-msgstr "Juudiaraabia"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
+msgstr "Jaapani"
 
 #. language code: jpr
 #: zypp/LanguageCode.cc:585
 msgid "Judeo-Persian"
 msgstr "Juudipärsia"
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardi-tšerkessi"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
+msgstr "Juudiaraabia"
+
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Karakalpaki"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2239,11 +2907,6 @@ msgstr "Katšini"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmõki"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2254,21 +2917,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Karakalpaki"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karatšai-balkaari"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2279,10 +2927,10 @@ msgstr "Kareni"
 msgid "Kashmiri"
 msgstr "Kašmiiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kašuubi"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2292,33 +2940,28 @@ msgstr "Kaavi"
 #. language code: kaz kk
 #: zypp/LanguageCode.cc:609
 msgid "Kazakh"
-msgstr "Kasahhi"
-
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kasahstan"
+msgstr "Kasahhi"
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardi-tšerkessi"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmeri"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr ""
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmeri"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2329,11 +2972,6 @@ msgstr "Saki"
 msgid "Kikuyu"
 msgstr "Kikuju"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Mbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2344,15 +2982,15 @@ msgstr "Ruanda"
 msgid "Kirghiz"
 msgstr "Kirgiisi"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Mbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingoni"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2364,11 +3002,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2384,11 +3017,21 @@ msgstr "Kosrae"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karatšai-balkaari"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kruu"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Oraoni"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2404,26 +3047,11 @@ msgstr "Kumõki"
 msgid "Kurdish"
 msgstr "Kurdi"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Oraoni"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuveit"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kõrgõzstan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2444,68 +3072,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Laos"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Ladina"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Läti"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Läti"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Liibanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Tase 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Tase 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Tase 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lesgi"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Libeeria"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Liibüa"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2516,61 +3097,46 @@ msgstr "Limburgi"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Leedu"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Leedu"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr ""
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Alamsaksa"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Alamsorbi"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Letseburgi"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luisenjo"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lule saami"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2586,35 +3152,11 @@ msgstr "Luo (Kenya ja Tansaania)"
 msgid "Lushai"
 msgstr "Lušei"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luksemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Letseburgi"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedoonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Makedoonia"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2625,188 +3167,75 @@ msgstr "Madura"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Maršalli"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
 msgstr "Maithili"
 
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr "Makassari"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malagassi"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malai"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "Malajalami"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaisia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldiivid"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Malta"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Mandžu"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandari"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
+msgstr "Makassari"
+
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "Malajalami"
 
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Manobo keeled"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Mänksi"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maoori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshalli saared"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Maršalli"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marvari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritaania"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Maaja keeled"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malai"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Mokša"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandari"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Prantsuse emamaa"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mehhiko"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Keskiiri (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2818,87 +3247,61 @@ msgstr "Mikmaki"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Miranda"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Mitmesugused keeled"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr ""
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malagassi"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Malta"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Mandžu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Manobo keeled"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohoogi"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Mokša"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldova"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr ""
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongoolia"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongoli"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "Mongo"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Maroko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mosambiik"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2909,89 +3312,79 @@ msgstr "Mitu keelt"
 msgid "Munda languages"
 msgstr "Munda keeled"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Birma"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Maskogi"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Miranda"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marvari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Maaja keeled"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Ersa"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahua"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namiibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Põhja-Ameerika indiaani"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Naapoli"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
-msgstr "Navaho"
-
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Põhjandebele"
+msgstr "Navaho"
 
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Lõunandebele"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Põhjandebele"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Naapoli"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr ""
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Alamsaksa"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepali"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Holland"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Hollandi Antillid"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Uus-Kaledoonia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Uus-Meremaa"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
 #. language code: nia
@@ -2999,121 +3392,61 @@ msgstr ""
 msgid "Nias"
 msgstr "Niasi"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Niiluse-Sahara (muu)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niue"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Kood puudub"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Uusnorra"
 
-#: zypp/repo/RepoProvideFile.cc:265
-#, fuzzy
-msgid "No url in repository."
-msgstr "Probleem hoidla andmete parsimisel."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Norra (bokmål)"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolki saar"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Vanapõhjala"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Põhja-Ameerika indiaani"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Põhja-Korea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Põhja-Mariaani saared"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Põhjasaami"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Põhjasotho"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norra"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norra"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Norra (bokmål)"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Uusnorra"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Pole CDROM-seade"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Põhjasotho"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Nuubia keeled"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Klassikaline nevari"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Njandža"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3134,11 +3467,6 @@ msgstr "Njoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "Muudab aegunuks"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3149,21 +3477,6 @@ msgstr "Provansi (pärast 1500)"
 msgid "Ojibwa"
 msgstr "Odžibvei"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Omaan"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-#, fuzzy
-msgid "Operation not supported by medium"
-msgstr "Profiili versioon ei ole Apparmori mooduli poolt toetatud\n"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3184,163 +3497,86 @@ msgstr "Oseidži"
 msgid "Ossetian"
 msgstr "Osseedi"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Osmanitürgi (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 #, fuzzy
 msgid "Otomian Languages"
 msgstr "Nuubia keeled"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr "Pahlavi"
-
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Belau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Belau"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestiina haldusterritoorium"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Paali"
-
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "Pampanga"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Paapua (muu)"
 
 #. language code: pag
 #: zypp/LanguageCode.cc:847
 msgid "Pangasinan"
 msgstr "Pangasinani"
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "Pandžabi"
-
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "Papiamento"
-
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Paapua Uus-Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Paapua (muu)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr "Pahlavi"
 
-#: zypp/media/MediaException.cc:106
-#, fuzzy, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "%1 pole kataloog."
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "Pampanga"
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "Pandžabi"
 
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Ligipääs on keelatud"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "Papiamento"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Pärsia"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Belau"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Vanapärsia (u. 600-400 eKr.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peruu"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Pärsia"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Filipiini (muu)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipiinid"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Foiniikia"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Poonpei"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Poola"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Paali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Poola"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Poonpei"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3352,78 +3588,21 @@ msgstr "Portugali"
 msgid "Prakrit Languages"
 msgstr "Praakriti keeled"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Vanaprovansi (kuni 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Varustab"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Puštu"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Katar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Ketšua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "ebaõnnestus"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Retoromaani"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3439,137 +3618,35 @@ msgstr "Rapanui"
 msgid "Rarotongan"
 msgstr "Rarotonga"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Soovitab"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, fuzzy, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Hoidla '%s' lisamine."
-
-#: zypp/RepoManager.cc:338
-#, fuzzy
-msgid "Repository alias cannot start with dot."
-msgstr "Hoidlat %s ei leitud."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Vajab"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Réunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Romaani (muu)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Rumeenia"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumeenia"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Retoromaani"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Mustlaskeel"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundi"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Vene"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Venemaa Föderatsioon"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Saint Helena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts ja Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
-
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "San Marino"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre ja Miquelon"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent ja Grenadiinid"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-#, fuzzy
-msgid "Salishan Languages"
-msgstr "Siuu keeled"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Samaaria aramea"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Saami keeled (muu)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoa"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumeenia"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundi"
+
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Vene"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3581,41 +3658,62 @@ msgstr "Sandave"
 msgid "Sango"
 msgstr "Sango"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Jakuudi"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Lõuna-Ameerika indiaani (muu)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+#, fuzzy
+msgid "Salishan Languages"
+msgstr "Siuu keeled"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Samaaria aramea"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskrit"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome ja Principe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardi"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbia"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudi Araabia"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Sitsiilia"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Šoti"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Horvaadi"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3626,147 +3724,40 @@ msgstr "Sölkupi"
 msgid "Semitic (Other)"
 msgstr "Semiidi (muu)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "Serbia"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbia"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Sereri"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Vanaiiri (kuni 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seišellid"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Märgikeeled"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Šani"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Šona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuani jii"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Sitsiilia"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Märgikeeled"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "Hoidlat %s ei leitud."
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Hoidlat %s ei leitud."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "Hoidlat %s ei leitud."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "Hoidlat %s ei leitud."
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr " käivitamine nurjus"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Singali"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Siuu keeled"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Koltasaami"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Orjaindiaani (atapaski)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr ""
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3778,210 +3769,141 @@ msgstr "Slaavi (muu)"
 msgid "Slovak"
 msgstr "Slovaki"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovakkia"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Sloveeni"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Sloveenia"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Lõunasaami"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Põhjasaami"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Saami keeled (muu)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lule saami"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Inari saami"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoa"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Koltasaami"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Šona"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Sloveeni"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "Sogdi"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Saalomoni saared"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Somaali"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somaalia"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "Songai"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Sorbi keeled"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Lõunasotho"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Lõuna-Aafrika Vabariik"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Lõuna-Ameerika indiaani (muu)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Lõuna-Georgia ja Lõuna-Sandwichi saared"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Lõuna-Korea"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Altai"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Lõunasaami"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Hispaania"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Hispaania"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardi"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudaan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Sereri"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr ""
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Niiluse-Sahara (muu)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Svaasi"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumeri"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sunda"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard ja Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumeri"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Suahiili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Svaasi"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Svaasimaa"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Rootsi"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Rootsi"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Šveits"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Süüria"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Assüüria"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalogi"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3992,36 +3914,11 @@ msgstr "Tahiiti"
 msgid "Tai (Other)"
 msgstr "Tai (muu)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tadžiki"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadžikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tuareegi"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamili"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tansaania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4032,6 +3929,11 @@ msgstr "Tatari"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Temne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4042,34 +3944,21 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetumi"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tadžiki"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalogi"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Tai"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tai"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-#, fuzzy
-msgid "This request will break your system!"
-msgstr "Päring on juba olemas."
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4085,46 +3974,25 @@ msgstr "Tigree"
 msgid "Tigrinya"
 msgstr "Tigrinja"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Temne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tivi"
 
-#. language code: tli
-#: zypp/LanguageCode.cc:1049
-msgid "Tlingit"
-msgstr "Tlingiti"
-
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Uusmelaneesia"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingoni"
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tli
+#: zypp/LanguageCode.cc:1049
+msgid "Tlingit"
+msgstr "Tlingiti"
+
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tuareegi"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4136,103 +4004,66 @@ msgstr "Tonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Tonga saarestik)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad ja Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Uusmelaneesia"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tsvaana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tsvaana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Türkmeeni"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tuneesia"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Tupi keeled"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Türgi"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Türgi"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Osmanitürgi (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Türkmeeni"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Türkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks ja Caicos"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altai (muu)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Tvii"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "Tuva"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Tvii"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Udmurdi"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4243,11 +4074,6 @@ msgstr "Ugariti"
 msgid "Uighur"
 msgstr "Uiguuri"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraina"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4258,211 +4084,36 @@ msgstr "Ukraina"
 msgid "Umbundu"
 msgstr "Umbundu"
 
-#: zypp/Url.cc:300
-#, fuzzy
-msgid "Unable to clone Url object"
-msgstr "Kõiki allikaid pole võimalik taastada."
-
-#: zypp/target/hal/HalContext.cc:229
-#, fuzzy
-msgid "Unable to create dbus connection"
-msgstr "Ainult minu loodud ühenduse korral"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-#, fuzzy
-msgid "Unable to parse Url components"
-msgstr "Kõiki allikaid pole võimalik taastada."
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Määramata"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr ""
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Araabia Ühendemiraadid"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Suurbritannia"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Ameerika Ühendriigid"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Ühendriikide hajasaared"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Tundmatu riik "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Tundmatu käsk '%s'"
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Tundmatu keel: "
-
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Tundmatu käsk '%s'"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr ""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr ""
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr ""
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Ülemsorbi"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "Urdu"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr ""
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "Usbeki"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Usbekistan"
-
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vai"
-
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vai"
 
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "Venda"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "Vietnami"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "USA Neitsisaared"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4484,16 +4135,6 @@ msgstr "Atapaski keeled"
 msgid "Walamo"
 msgstr "Volamo"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis ja Futuna"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Vallooni"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4509,102 +4150,324 @@ msgstr "Vašo"
 msgid "Welsh"
 msgstr "Kõmri"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Lääne-Sahara"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Sorbi keeled"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Vallooni"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "Volofi"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmõki"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "Koosa"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Jakuudi"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Jao"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Japi"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Jidiš"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Joruba"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Jupiki keeled"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Sapoteegi"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Tšuangi"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Suulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Võtme kustutamine nurjus."
+
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Hoidlat %s ei leitud."
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr ""
+
+#: zypp/repo/RepoProvideFile.cc:265
+#, fuzzy
+msgid "No url in repository."
+msgstr "Probleem hoidla andmete parsimisel."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr ""
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr " käivitamine nurjus"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr ""
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr ""
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "Paigaldatud pakettide lugemine"
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "vastuolulised päringud"
+
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "mingi sõltuvuse probleem"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "varukoopiat pole olemas"
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s pole paigaldatav"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Jao"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"kättesaamatud varustajad: "
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Japi"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "kättesaamatud varustajad: "
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jeemen"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Jidiš"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Joruba"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Jupiki keeled"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "Käivita paigaldus või süsteem"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Sambia"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+#, fuzzy
+msgid "This request will break your system!"
+msgstr "Päring on juba olemas."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Sapoteegi"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Tšuangi"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Suulu"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "Muudab aegunuks"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
 #: zypp/solver/detail/SATResolver.cc:1325
@@ -4612,211 +4475,352 @@ msgstr ""
 msgid "architecture change of %s to %s"
 msgstr ""
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Paigaldamine"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, fuzzy, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "Sõltuvuste kontrollimine"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "Sõltuvuste kontrollimine"
+
+#: zypp/parser/RepoindexFileReader.cc:197
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "vastuolulised päringud"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/base/InterProcessMutex.cc:83
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Can't open lock file: %s"
+msgstr "Ei saa avada lukustusfaili: %s"
+
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Ajalugu:"
+
+#: zypp/base/StrMatcher.cc:152
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Paigaldamine"
+msgid "Unknown match mode '%s'"
+msgstr "Tundmatu käsk '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/base/StrMatcher.cc:157
+#, fuzzy, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr " pole korrektne regulaaravaldis: \""
+
+#: zypp/base/StrMatcher.cc:158
+#, fuzzy, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr " pole korrektne regulaaravaldis: \""
+
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:31
+#, fuzzy, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "%s - %s ei saa avada\n"
+
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Mooduli \"%s\" laadimine ebaõnnestus."
+
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
+
+#: zypp/media/MediaException.cc:60
+#, fuzzy, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "Faili ei leitud: %1."
+
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Faili '%s' ei saa kirjutada."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "Sõltuvuste kontrollimine"
+#: zypp/media/MediaException.cc:106
+#, fuzzy, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "%1 pole kataloog."
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Tühi masina nimi URI-s"
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "vigane"
+#: zypp/media/MediaException.cc:145
+#, fuzzy
+msgid "Operation not supported by medium"
+msgstr "Profiili versioon ei ole Apparmori mooduli poolt toetatud\n"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "keep %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1293
-#, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "Muudab aegunuks"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, c-format, boost-format
-msgid "nothing provides requested %s"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "varukoopiat pole olemas"
+msgid "Cannot eject media '%s'"
+msgstr "Ei saa avada faili '%1'."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:199
 #, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "Paigaldatud pakettide lugemine"
+msgid "Permission to access '%s' denied."
+msgstr "Ligipääs on keelatud"
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "Käivita paigaldus või süsteem"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
+" SSL-i probleem sertifikaadiga, kontolli, et SK sertifikaat sobiks '%s' "
+"jaoks."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
+
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "Faili ei sa luua."
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "mingi sõltuvuse probleem"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "kättesaamatud varustajad: "
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "tundmatu"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
 #, fuzzy
+#~ msgid "do not keep %s installed"
+#~ msgstr "paigaldamata"
+
+#, fuzzy
 #~ msgid "Failed to download %s from %s"
 #~ msgstr "%s - %s ei saa avada\n"
 
@@ -4826,7 +4830,3 @@ msgstr ""
 #, fuzzy
 #~ msgid "Unknown Distribution"
 #~ msgstr "Tundmatu nimekirja säte"
-
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "paigaldamata"
index f95f830..656a8fd 100644 (file)
--- a/po/eu.po
+++ b/po/eu.po
@@ -15,831 +15,811 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-msgid " execution failed"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:99
+msgid "Conflicts"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
+#: zypp/target/TargetImpl.cc:332
+msgid " execution failed"
 msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
 msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
 msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
 msgstr ""
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
 msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
 msgstr ""
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
 msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
 msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
 msgstr ""
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
 msgstr ""
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
 msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
 msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
 msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr ""
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
 msgstr ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
 msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
 msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/RepoManager.cc:1366
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
+msgid "Failed to cache repo (%d)."
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
 msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
 msgstr ""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
 msgstr ""
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
 msgstr ""
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
 msgstr ""
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
 msgstr ""
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
 msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
 msgstr ""
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
 msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
 msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
 msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
 msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
 msgstr ""
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
 msgstr ""
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
 msgstr ""
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
 msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
 msgstr ""
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
 msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
 msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
 msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
 msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
 msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr ""
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
 msgstr ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
 msgstr ""
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
 msgstr ""
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
 msgstr ""
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
 msgstr ""
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
 msgstr ""
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
 msgstr ""
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
 msgstr ""
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
 msgstr ""
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
 msgstr ""
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
 msgstr ""
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
 msgstr ""
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
 msgstr ""
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
 msgstr ""
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
 msgstr ""
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
 msgstr ""
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
 msgstr ""
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
 msgstr ""
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr ""
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
 msgstr ""
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
 msgstr ""
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
 msgstr ""
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
 msgstr ""
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
 msgstr ""
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
 msgstr ""
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
 msgstr ""
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
 msgstr ""
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
 msgstr ""
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
 msgstr ""
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
 msgstr ""
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
 msgstr ""
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
 msgstr ""
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
 msgstr ""
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
 msgstr ""
 
 #. :COD:180:
@@ -847,2869 +827,2895 @@ msgstr ""
 msgid "Central African Republic"
 msgstr ""
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
 msgstr ""
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
 msgstr ""
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
 msgstr ""
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
 msgstr ""
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
 msgstr ""
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
 msgstr ""
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
 msgstr ""
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
 msgstr ""
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
 msgstr ""
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
 msgstr ""
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
 msgstr ""
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
 msgstr ""
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
 msgstr ""
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
 msgstr ""
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
 msgstr ""
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
 msgstr ""
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
 msgstr ""
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
 msgstr ""
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
 msgstr ""
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
 msgstr ""
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
 msgstr ""
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
 msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
 msgstr ""
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
 msgstr ""
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
 msgstr ""
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
 msgstr ""
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
 msgstr ""
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
 msgstr ""
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
 msgstr ""
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
 msgstr ""
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
 msgstr ""
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
 msgstr ""
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
 msgstr ""
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
 msgstr ""
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
 msgstr ""
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
 msgstr ""
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
 msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
 msgstr ""
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
 msgstr ""
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
 msgstr ""
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
 msgstr ""
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
 msgstr ""
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
 msgstr ""
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
 msgstr ""
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
 msgstr ""
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
 msgstr ""
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
 msgstr ""
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
 msgstr ""
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
 msgstr ""
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
 msgstr ""
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
 msgstr ""
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
+#: zypp/CountryCode.cc:261
+msgid "India"
 msgstr ""
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
 msgstr ""
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
 msgstr ""
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
 msgstr ""
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
 msgstr ""
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
 msgstr ""
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
 msgstr ""
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
 msgstr ""
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
 msgstr ""
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
 msgstr ""
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
 msgstr ""
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
 msgstr ""
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
 msgstr ""
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
 msgstr ""
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
 msgstr ""
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
 msgstr ""
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
 msgstr ""
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
 msgstr ""
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
 msgstr ""
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
 msgstr ""
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
 msgstr ""
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
 msgstr ""
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
 msgstr ""
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
 msgstr ""
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
 msgstr ""
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
 msgstr ""
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
 msgstr ""
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
 msgstr ""
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
 msgstr ""
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
 msgstr ""
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
 msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
 msgstr ""
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
 msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
 msgstr ""
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
 msgstr ""
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
 msgstr ""
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
 msgstr ""
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr ""
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr ""
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr ""
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr ""
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr ""
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr ""
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr ""
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr ""
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr ""
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr ""
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr ""
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr ""
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr ""
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr ""
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
 msgstr ""
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
 msgstr ""
 
-#. language code: fil
-#: zypp/LanguageCode.cc:437
-msgid "Filipino"
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
 msgstr ""
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
 msgstr ""
 
-#. language code: fin fi
-#: zypp/LanguageCode.cc:439
-msgid "Finnish"
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
 msgstr ""
 
-#. language code: fiu
-#: zypp/LanguageCode.cc:441
-msgid "Finno-Ugrian (Other)"
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
 msgstr ""
 
-#. language code: fon
-#: zypp/LanguageCode.cc:443
-msgid "Fon"
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
 msgstr ""
 
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
 msgstr ""
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
 msgstr ""
 
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
 msgstr ""
 
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
 msgstr ""
 
-#. language code: frm
-#: zypp/LanguageCode.cc:449
-msgid "French, Middle (ca.1400-1600)"
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
 msgstr ""
 
-#. language code: fro
-#: zypp/LanguageCode.cc:451
-msgid "French, Old (842-ca.1400)"
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
 msgstr ""
 
-#. language code: fry fy
-#: zypp/LanguageCode.cc:453
-msgid "Frisian"
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
 msgstr ""
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
 msgstr ""
 
-#. language code: gaa
-#: zypp/LanguageCode.cc:459
-msgid "Ga"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
 msgstr ""
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
 msgstr ""
 
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
 msgstr ""
 
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
 msgstr ""
 
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
 msgstr ""
 
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
 msgstr ""
 
-#. language code: gay
-#: zypp/LanguageCode.cc:461
-msgid "Gayo"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
 msgstr ""
 
-#. language code: gba
-#: zypp/LanguageCode.cc:463
-msgid "Gbaya"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
 msgstr ""
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
 msgstr ""
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
 msgstr ""
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-msgid "German"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
 msgstr ""
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
 msgstr ""
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
 msgstr ""
 
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
 msgstr ""
 
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr ""
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr ""
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
 msgstr ""
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
 msgstr ""
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
 msgstr ""
 
-#. language code: gon
-#: zypp/LanguageCode.cc:491
-msgid "Gondi"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
 msgstr ""
 
-#. language code: gor
-#: zypp/LanguageCode.cc:493
-msgid "Gorontalo"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
 msgstr ""
 
-#. language code: got
-#: zypp/LanguageCode.cc:495
-msgid "Gothic"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
 msgstr ""
 
-#. language code: grb
-#: zypp/LanguageCode.cc:497
-msgid "Grebo"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
 msgstr ""
 
-#. language code: grc
-#: zypp/LanguageCode.cc:499
-msgid "Greek, Ancient (to 1453)"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
 msgstr ""
 
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
 msgstr ""
 
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
 msgstr ""
 
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
 msgstr ""
 
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
 msgstr ""
 
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
 msgstr ""
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
 msgstr ""
 
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
 msgstr ""
 
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
 msgstr ""
 
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
 msgstr ""
 
-#. language code: guj gu
-#: zypp/LanguageCode.cc:507
-msgid "Gujarati"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
 msgstr ""
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
 msgstr ""
 
-#. language code: gwi
-#: zypp/LanguageCode.cc:509
-msgid "Gwich'in"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
 msgstr ""
 
-#. language code: hai
-#: zypp/LanguageCode.cc:511
-msgid "Haida"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
 msgstr ""
 
-#. language code: hat ht
-#: zypp/LanguageCode.cc:513
-msgid "Haitian"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
 msgstr ""
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
 msgstr ""
 
-#. language code: hau ha
-#: zypp/LanguageCode.cc:515
-msgid "Hausa"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
 msgstr ""
 
-#. language code: haw
-#: zypp/LanguageCode.cc:517
-msgid "Hawaiian"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#. language code: heb he
-#: zypp/LanguageCode.cc:519
-msgid "Hebrew"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#. language code: her hz
-#: zypp/LanguageCode.cc:521
-msgid "Herero"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
 msgstr ""
 
-#. language code: hil
-#: zypp/LanguageCode.cc:523
-msgid "Hiligaynon"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. language code: him
-#: zypp/LanguageCode.cc:525
-msgid "Himachali"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. language code: hin hi
-#: zypp/LanguageCode.cc:527
-msgid "Hindi"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
 msgstr ""
 
-#. language code: hit
-#: zypp/LanguageCode.cc:529
-msgid "Hittite"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
 msgstr ""
 
-#. language code: hmn
-#: zypp/LanguageCode.cc:531
-msgid "Hmong"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
 msgstr ""
 
-#. language code: hun hu
-#: zypp/LanguageCode.cc:537
-msgid "Hungarian"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
 msgstr ""
 
-#. language code: hup
-#: zypp/LanguageCode.cc:539
-msgid "Hupa"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
 msgstr ""
 
-#. language code: iba
-#: zypp/LanguageCode.cc:541
-msgid "Iban"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
 msgstr ""
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#. language code: ice isl is
-#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
-msgid "Icelandic"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
 msgstr ""
 
-#. language code: ido io
-#: zypp/LanguageCode.cc:549
-msgid "Ido"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
 msgstr ""
 
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
 msgstr ""
 
-#: zypp/CountryCode.cc:261
-msgid "India"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
 msgstr ""
 
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
 msgstr ""
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
 msgstr ""
 
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
 msgstr ""
 
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
 msgstr ""
 
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
 msgstr ""
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
 msgstr ""
 
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
 msgstr ""
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
 msgstr ""
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
 msgstr ""
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. language code: iro
-#: zypp/LanguageCode.cc:575
-msgid "Iroquoian Languages"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
 msgstr ""
 
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#. language code: ita it
-#: zypp/LanguageCode.cc:577
-msgid "Italian"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
 msgstr ""
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
 msgstr ""
 
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
 msgstr ""
 
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
 msgstr ""
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
 msgstr ""
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
 msgstr ""
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
 msgstr ""
 
-#. language code: kab
-#: zypp/LanguageCode.cc:591
-msgid "Kabyle"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. language code: kac
-#: zypp/LanguageCode.cc:593
-msgid "Kachin"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
 msgstr ""
 
-#. language code: kal kl
-#: zypp/LanguageCode.cc:595
-msgid "Kalaallisut"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#. language code: kam
-#: zypp/LanguageCode.cc:597
-msgid "Kamba"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
 msgstr ""
 
-#. language code: kan kn
-#: zypp/LanguageCode.cc:599
-msgid "Kannada"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
 msgstr ""
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
 msgstr ""
 
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
 msgstr ""
 
-#. language code: kar
-#: zypp/LanguageCode.cc:601
-msgid "Karen"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
 msgstr ""
 
-#. language code: kas ks
-#: zypp/LanguageCode.cc:603
-msgid "Kashmiri"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#. language code: kaw
-#: zypp/LanguageCode.cc:607
-msgid "Kawi"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#. language code: kaz kk
-#: zypp/LanguageCode.cc:609
-msgid "Kazakh"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
 msgstr ""
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
 msgstr ""
 
-#. language code: kha
-#: zypp/LanguageCode.cc:613
-msgid "Khasi"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
 msgstr ""
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
 msgstr ""
 
-#. language code: kho
-#: zypp/LanguageCode.cc:619
-msgid "Khotanese"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
 msgstr ""
 
-#. language code: kik ki
-#: zypp/LanguageCode.cc:621
-msgid "Kikuyu"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
 msgstr ""
 
-#. language code: kin rw
-#: zypp/LanguageCode.cc:623
-msgid "Kinyarwanda"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
 msgstr ""
 
-#. language code: kir ky
-#: zypp/LanguageCode.cc:625
-msgid "Kirghiz"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
 msgstr ""
 
-#. language code: kom kv
-#: zypp/LanguageCode.cc:631
-msgid "Komi"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-#. language code: kon kg
-#: zypp/LanguageCode.cc:633
-msgid "Kongo"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
 msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
 msgstr ""
 
-#. language code: kor ko
-#: zypp/LanguageCode.cc:635
-msgid "Korean"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
 msgstr ""
 
-#. language code: kos
-#: zypp/LanguageCode.cc:637
-msgid "Kosraean"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
 msgstr ""
 
-#. language code: kpe
-#: zypp/LanguageCode.cc:639
-msgid "Kpelle"
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
 msgstr ""
 
-#. language code: kro
-#: zypp/LanguageCode.cc:643
-msgid "Kru"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
 msgstr ""
 
-#. language code: kua kj
-#: zypp/LanguageCode.cc:647
-msgid "Kuanyama"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
 msgstr ""
 
-#. language code: kum
-#: zypp/LanguageCode.cc:649
-msgid "Kumyk"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
 msgstr ""
 
-#. language code: kur ku
-#: zypp/LanguageCode.cc:651
-msgid "Kurdish"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#. language code: kut
-#: zypp/LanguageCode.cc:653
-msgid "Kutenai"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
 msgstr ""
 
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
 msgstr ""
 
-#. language code: lad
-#: zypp/LanguageCode.cc:655
-msgid "Ladino"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
 msgstr ""
 
-#. language code: lah
-#: zypp/LanguageCode.cc:657
-msgid "Lahnda"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
 msgstr ""
 
-#. language code: lam
-#: zypp/LanguageCode.cc:659
-msgid "Lamba"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
 msgstr ""
 
-#. language code: lao lo
-#: zypp/LanguageCode.cc:661
-msgid "Lao"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
 msgstr ""
 
-#. language code: lat la
-#: zypp/LanguageCode.cc:663
-msgid "Latin"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. language code: lav lv
-#: zypp/LanguageCode.cc:665
-msgid "Latvian"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. language code: lez
-#: zypp/LanguageCode.cc:667
-msgid "Lezghian"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
 msgstr ""
 
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
 
-#. language code: lim li
-#: zypp/LanguageCode.cc:669
-msgid "Limburgan"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
 
-#. language code: lin ln
-#: zypp/LanguageCode.cc:671
-msgid "Lingala"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
-msgid "Lithuanian"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
 msgstr ""
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
+#. language code: fil
+#: zypp/LanguageCode.cc:437
+msgid "Filipino"
 msgstr ""
 
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: fin fi
+#: zypp/LanguageCode.cc:439
+msgid "Finnish"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
+#. language code: fiu
+#: zypp/LanguageCode.cc:441
+msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
+#. language code: fon
+#: zypp/LanguageCode.cc:443
+msgid "Fon"
 msgstr ""
 
-#. language code: loz
-#: zypp/LanguageCode.cc:677
-msgid "Lozi"
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
 msgstr ""
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
+#. language code: frm
+#: zypp/LanguageCode.cc:449
+msgid "French, Middle (ca.1400-1600)"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+#. language code: fro
+#: zypp/LanguageCode.cc:451
+msgid "French, Old (842-ca.1400)"
 msgstr ""
 
-#. language code: lui
-#: zypp/LanguageCode.cc:687
-msgid "Luiseno"
+#. language code: fry fy
+#: zypp/LanguageCode.cc:453
+msgid "Frisian"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
 msgstr ""
 
-#. language code: lun
-#: zypp/LanguageCode.cc:689
-msgid "Lunda"
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
 msgstr ""
 
-#. language code: luo
-#: zypp/LanguageCode.cc:691
-msgid "Luo (Kenya and Tanzania)"
+#. language code: gaa
+#: zypp/LanguageCode.cc:459
+msgid "Ga"
 msgstr ""
 
-#. language code: lus
-#: zypp/LanguageCode.cc:693
-msgid "Lushai"
+#. language code: gay
+#: zypp/LanguageCode.cc:461
+msgid "Gayo"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
+#. language code: gba
+#: zypp/LanguageCode.cc:463
+msgid "Gbaya"
 msgstr ""
 
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
 msgstr ""
 
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
 msgstr ""
 
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+msgid "German"
 msgstr ""
 
-#. language code: mac mkd mk
-#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
-msgid "Macedonian"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
 msgstr ""
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
 msgstr ""
 
-#. language code: mad
-#: zypp/LanguageCode.cc:699
-msgid "Madurese"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
 msgstr ""
 
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
 msgstr ""
 
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
 msgstr ""
 
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
 msgstr ""
 
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
+#. language code: gon
+#: zypp/LanguageCode.cc:491
+msgid "Gondi"
 msgstr ""
 
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
+#. language code: gor
+#: zypp/LanguageCode.cc:493
+msgid "Gorontalo"
 msgstr ""
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
+#. language code: got
+#: zypp/LanguageCode.cc:495
+msgid "Gothic"
 msgstr ""
 
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
+#. language code: grb
+#: zypp/LanguageCode.cc:497
+msgid "Grebo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
+#. language code: grc
+#: zypp/LanguageCode.cc:499
+msgid "Greek, Ancient (to 1453)"
 msgstr ""
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
 msgstr ""
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
+#. language code: guj gu
+#: zypp/LanguageCode.cc:507
+msgid "Gujarati"
 msgstr ""
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
+#. language code: gwi
+#: zypp/LanguageCode.cc:509
+msgid "Gwich'in"
 msgstr ""
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
+#. language code: hai
+#: zypp/LanguageCode.cc:511
+msgid "Haida"
 msgstr ""
 
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
+#. language code: hat ht
+#: zypp/LanguageCode.cc:513
+msgid "Haitian"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
+#. language code: hau ha
+#: zypp/LanguageCode.cc:515
+msgid "Hausa"
 msgstr ""
 
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
+#. language code: haw
+#: zypp/LanguageCode.cc:517
+msgid "Hawaiian"
 msgstr ""
 
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
+#. language code: heb he
+#: zypp/LanguageCode.cc:519
+msgid "Hebrew"
 msgstr ""
 
-#. language code: mao mri mi
-#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
-msgid "Maori"
+#. language code: her hz
+#: zypp/LanguageCode.cc:521
+msgid "Herero"
 msgstr ""
 
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
-msgid "Marathi"
+#. language code: hil
+#: zypp/LanguageCode.cc:523
+msgid "Hiligaynon"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
+#. language code: him
+#: zypp/LanguageCode.cc:525
+msgid "Himachali"
 msgstr ""
 
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
+#. language code: hin hi
+#: zypp/LanguageCode.cc:527
+msgid "Hindi"
 msgstr ""
 
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
+#. language code: hit
+#: zypp/LanguageCode.cc:529
+msgid "Hittite"
 msgstr ""
 
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
+#. language code: hmn
+#: zypp/LanguageCode.cc:531
+msgid "Hmong"
 msgstr ""
 
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
 msgstr ""
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
+#. language code: hun hu
+#: zypp/LanguageCode.cc:537
+msgid "Hungarian"
 msgstr ""
 
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
+#. language code: hup
+#: zypp/LanguageCode.cc:539
+msgid "Hupa"
 msgstr ""
 
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
+#. language code: iba
+#: zypp/LanguageCode.cc:541
+msgid "Iban"
 msgstr ""
 
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
+#. language code: ice isl is
+#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
+msgid "Icelandic"
 msgstr ""
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
+#. language code: ido io
+#: zypp/LanguageCode.cc:549
+msgid "Ido"
 msgstr ""
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
 msgstr ""
 
-#. language code: men
-#: zypp/LanguageCode.cc:731
-msgid "Mende"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
 msgstr ""
 
-#. language code: mic
-#: zypp/LanguageCode.cc:735
-msgid "Mi'kmaq"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#. language code: min
-#: zypp/LanguageCode.cc:737
-msgid "Minangkabau"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
 msgstr ""
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
 msgstr ""
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
 msgstr ""
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
+#. language code: iro
+#: zypp/LanguageCode.cc:575
+msgid "Iroquoian Languages"
 msgstr ""
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: ita it
+#: zypp/LanguageCode.cc:577
+msgid "Italian"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
 msgstr ""
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
 msgstr ""
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
 msgstr ""
 
-#. language code: mon mn
-#: zypp/LanguageCode.cc:757
-msgid "Mongolian"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
 msgstr ""
 
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
+#. language code: kab
+#: zypp/LanguageCode.cc:591
+msgid "Kabyle"
 msgstr ""
 
-#. language code: mos
-#: zypp/LanguageCode.cc:759
-msgid "Mossi"
+#. language code: kac
+#: zypp/LanguageCode.cc:593
+msgid "Kachin"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
+#. language code: kal kl
+#: zypp/LanguageCode.cc:595
+msgid "Kalaallisut"
 msgstr ""
 
-#. language code: mul
-#: zypp/LanguageCode.cc:761
-msgid "Multiple Languages"
+#. language code: kam
+#: zypp/LanguageCode.cc:597
+msgid "Kamba"
 msgstr ""
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
+#. language code: kan kn
+#: zypp/LanguageCode.cc:599
+msgid "Kannada"
 msgstr ""
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
+#. language code: kar
+#: zypp/LanguageCode.cc:601
+msgid "Karen"
 msgstr ""
 
-#. language code: nah
-#: zypp/LanguageCode.cc:775
-msgid "Nahuatl"
+#. language code: kas ks
+#: zypp/LanguageCode.cc:603
+msgid "Kashmiri"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
+#. language code: kaw
+#: zypp/LanguageCode.cc:607
+msgid "Kawi"
 msgstr ""
 
-#. language code: nav nv
-#: zypp/LanguageCode.cc:783
-msgid "Navajo"
+#. language code: kaz kk
+#: zypp/LanguageCode.cc:609
+msgid "Kazakh"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
-#. language code: nbl nr
-#: zypp/LanguageCode.cc:785
-msgid "Ndebele, South"
+#. language code: kha
+#: zypp/LanguageCode.cc:613
+msgid "Khasi"
 msgstr ""
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
 msgstr ""
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
+#. language code: kho
+#: zypp/LanguageCode.cc:619
+msgid "Khotanese"
 msgstr ""
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
+#. language code: kik ki
+#: zypp/LanguageCode.cc:621
+msgid "Kikuyu"
 msgstr ""
 
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
+#. language code: kin rw
+#: zypp/LanguageCode.cc:623
+msgid "Kinyarwanda"
 msgstr ""
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
+#. language code: kir ky
+#: zypp/LanguageCode.cc:625
+msgid "Kirghiz"
 msgstr ""
 
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
+#. language code: kom kv
+#: zypp/LanguageCode.cc:631
+msgid "Komi"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: kon kg
+#: zypp/LanguageCode.cc:633
+msgid "Kongo"
 msgstr ""
 
-#. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
+#. language code: kor ko
+#: zypp/LanguageCode.cc:635
+msgid "Korean"
 msgstr ""
-
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
+
+#. language code: kos
+#: zypp/LanguageCode.cc:637
+msgid "Kosraean"
 msgstr ""
 
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
+#. language code: kpe
+#: zypp/LanguageCode.cc:639
+msgid "Kpelle"
 msgstr ""
 
-#. language code: nic
-#: zypp/LanguageCode.cc:799
-msgid "Niger-Kordofanian (Other)"
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
+#. language code: kro
+#: zypp/LanguageCode.cc:643
+msgid "Kru"
 msgstr ""
 
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
 msgstr ""
 
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
+#. language code: kua kj
+#: zypp/LanguageCode.cc:647
+msgid "Kuanyama"
 msgstr ""
 
-#. language code: niu
-#: zypp/LanguageCode.cc:801
-msgid "Niuean"
+#. language code: kum
+#: zypp/LanguageCode.cc:649
+msgid "Kumyk"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
+#. language code: kur ku
+#: zypp/LanguageCode.cc:651
+msgid "Kurdish"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: kut
+#: zypp/LanguageCode.cc:653
+msgid "Kutenai"
 msgstr ""
 
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
+#. language code: lad
+#: zypp/LanguageCode.cc:655
+msgid "Ladino"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
+#. language code: lah
+#: zypp/LanguageCode.cc:657
+msgid "Lahnda"
 msgstr ""
 
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
+#. language code: lam
+#: zypp/LanguageCode.cc:659
+msgid "Lamba"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
+#. language code: lao lo
+#: zypp/LanguageCode.cc:661
+msgid "Lao"
 msgstr ""
 
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
+#. language code: lat la
+#: zypp/LanguageCode.cc:663
+msgid "Latin"
 msgstr ""
 
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
+#. language code: lav lv
+#: zypp/LanguageCode.cc:665
+msgid "Latvian"
 msgstr ""
 
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
+#. language code: lez
+#: zypp/LanguageCode.cc:667
+msgid "Lezghian"
 msgstr ""
 
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
+#. language code: lim li
+#: zypp/LanguageCode.cc:669
+msgid "Limburgan"
 msgstr ""
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
+#. language code: lin ln
+#: zypp/LanguageCode.cc:671
+msgid "Lingala"
 msgstr ""
 
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
+msgid "Lithuanian"
 msgstr ""
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
+#. language code: loz
+#: zypp/LanguageCode.cc:677
+msgid "Lozi"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
 msgstr ""
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
-msgid "Nubian Languages"
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
 msgstr ""
 
-#. language code: nym
-#: zypp/LanguageCode.cc:821
-msgid "Nyamwezi"
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: nyn
-#: zypp/LanguageCode.cc:823
-msgid "Nyankole"
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
 msgstr ""
 
-#. language code: nyo
-#: zypp/LanguageCode.cc:825
-msgid "Nyoro"
+#. language code: lui
+#: zypp/LanguageCode.cc:687
+msgid "Luiseno"
 msgstr ""
 
-#. language code: nzi
-#: zypp/LanguageCode.cc:827
-msgid "Nzima"
+#. language code: lun
+#: zypp/LanguageCode.cc:689
+msgid "Lunda"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
+#. language code: luo
+#: zypp/LanguageCode.cc:691
+msgid "Luo (Kenya and Tanzania)"
 msgstr ""
 
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
+#. language code: lus
+#: zypp/LanguageCode.cc:693
+msgid "Lushai"
 msgstr ""
 
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
+#. language code: mac mkd mk
+#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
+msgid "Macedonian"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
+#. language code: mad
+#: zypp/LanguageCode.cc:699
+msgid "Madurese"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
 msgstr ""
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
 msgstr ""
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
 msgstr ""
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
 msgstr ""
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
-msgid "Osage"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
 msgstr ""
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
 msgstr ""
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
+#. language code: mao mri mi
+#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
+msgid "Maori"
 msgstr ""
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
 msgstr ""
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+msgid "Marathi"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
 msgstr ""
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
 msgstr ""
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
 msgstr ""
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
+#. language code: men
+#: zypp/LanguageCode.cc:731
+msgid "Mende"
 msgstr ""
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
+#. language code: mic
+#: zypp/LanguageCode.cc:735
+msgid "Mi'kmaq"
 msgstr ""
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
+#. language code: min
+#: zypp/LanguageCode.cc:737
+msgid "Minangkabau"
 msgstr ""
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
 msgstr ""
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
 msgstr ""
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
 msgstr ""
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
 msgstr ""
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
 msgstr ""
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
+#. language code: mon mn
+#: zypp/LanguageCode.cc:757
+msgid "Mongolian"
 msgstr ""
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
+#. language code: mos
+#: zypp/LanguageCode.cc:759
+msgid "Mossi"
 msgstr ""
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
+#. language code: mul
+#: zypp/LanguageCode.cc:761
+msgid "Multiple Languages"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
 msgstr ""
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
 msgstr ""
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
 msgstr ""
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
 msgstr ""
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
+#. language code: nah
+#: zypp/LanguageCode.cc:775
+msgid "Nahuatl"
 msgstr ""
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
 msgstr ""
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
+#. language code: nav nv
+#: zypp/LanguageCode.cc:783
+msgid "Navajo"
 msgstr ""
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
+#. language code: nbl nr
+#: zypp/LanguageCode.cc:785
+msgid "Ndebele, South"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
 msgstr ""
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
 msgstr ""
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
+#. language code: nic
+#: zypp/LanguageCode.cc:799
+msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+msgid "Niuean"
 msgstr ""
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
 msgstr ""
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
 msgstr ""
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
 msgstr ""
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
+#. language code: nub
+#: zypp/LanguageCode.cc:815
+msgid "Nubian Languages"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
 msgstr ""
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
+#. language code: nym
+#: zypp/LanguageCode.cc:821
+msgid "Nyamwezi"
 msgstr ""
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
+#. language code: nyn
+#: zypp/LanguageCode.cc:823
+msgid "Nyankole"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
+#. language code: nyo
+#: zypp/LanguageCode.cc:825
+msgid "Nyoro"
 msgstr ""
 
-#: zypp/Dep.cc:98
-msgid "Requires"
+#. language code: nzi
+#: zypp/LanguageCode.cc:827
+msgid "Nzima"
 msgstr ""
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
 msgstr ""
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
 msgstr ""
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
 msgstr ""
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+msgid "Osage"
 msgstr ""
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
 msgstr ""
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
 msgstr ""
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
 msgstr ""
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
 msgstr ""
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
 msgstr ""
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
 msgstr ""
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr ""
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
 msgstr ""
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
 msgstr ""
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
 msgstr ""
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
 msgstr ""
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
 msgstr ""
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
 msgstr ""
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
 msgstr ""
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
 msgstr ""
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
 msgstr ""
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
 msgstr ""
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
 msgstr ""
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
 msgstr ""
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
 msgstr ""
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
 msgstr ""
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
 msgstr ""
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
+
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
 msgstr ""
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
 msgstr ""
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
 msgstr ""
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
 msgstr ""
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
 msgstr ""
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
 msgstr ""
 
 #. language code: sin si
@@ -3717,24 +3723,14 @@ msgstr ""
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr ""
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -3747,98 +3743,79 @@ msgstr ""
 msgid "Slovak"
 msgstr ""
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr ""
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr ""
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr ""
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr ""
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr ""
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
 msgstr ""
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
 msgstr ""
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
 msgstr ""
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
 msgstr ""
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
 msgstr ""
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
 msgstr ""
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
 msgstr ""
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
 msgstr ""
 
 #. language code: spa es
@@ -3846,18 +3823,24 @@ msgstr ""
 msgid "Spanish"
 msgstr ""
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
 msgstr ""
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
 msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
 #. language code: suk
@@ -3865,33 +3848,19 @@ msgstr ""
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr ""
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr ""
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr ""
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
 #. language code: swa sw
@@ -3899,58 +3868,16 @@ msgstr ""
 msgid "Swahili"
 msgstr ""
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr ""
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr ""
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr ""
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr ""
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr ""
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr ""
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr ""
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3961,36 +3888,11 @@ msgstr ""
 msgid "Tai (Other)"
 msgstr ""
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr ""
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr ""
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr ""
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr ""
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4001,6 +3903,11 @@ msgstr ""
 msgid "Telugu"
 msgstr ""
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4011,31 +3918,19 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr ""
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
 msgstr ""
 
 #. language code: tib bod bo
@@ -4053,45 +3948,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4104,15 +3978,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4120,14 +3988,19 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr ""
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr ""
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
 msgstr ""
 
 #. language code: tum
@@ -4135,646 +4008,773 @@ msgstr ""
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr ""
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr ""
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr ""
+
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr ""
+
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr ""
+
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr ""
+
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr ""
+
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr ""
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr ""
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr ""
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr ""
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr ""
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
 msgstr ""
 
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
 msgstr ""
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
 msgstr ""
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
 msgstr ""
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
 msgstr ""
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
 msgstr ""
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
 msgstr ""
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
 msgstr ""
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
 msgstr ""
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
 msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
 msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
 msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
 msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
 msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Failed to mount %s on %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Failed to unmount %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "deinstallation of %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "keep %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
index fa65d92..4ae6889 100644 (file)
--- a/po/fa.po
+++ b/po/fa.po
@@ -15,832 +15,813 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-msgid " execution failed"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:99
+msgid "Conflicts"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#: zypp/target/TargetImpl.cc:332
+msgid " execution failed"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
 msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
 msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
 msgstr ""
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
 msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
 msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
 msgstr ""
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
 msgstr ""
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
 msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
 msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
 msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
 msgstr ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr ""
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
 msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
 msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/RepoManager.cc:1302
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
+msgid "Can't create cache at %s - no writing permissions."
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
 msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
 msgstr ""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
 msgstr ""
 
-#: zypp/media/MediaException.cc:47
+#: zypp/RepoManager.cc:1740
 #, c-format, boost-format
-msgid "Bad file name: %s"
+msgid "Removing repository '%s'"
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
 msgstr ""
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
 msgstr ""
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
 msgstr ""
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
 msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
 msgstr ""
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
 msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
 msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
 msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
 msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
 msgstr ""
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
 msgstr ""
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
 msgstr ""
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
 msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
 msgstr ""
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
 msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
 msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
 msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
 msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
 msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
 msgstr ""
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr ""
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
 msgstr ""
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
 msgstr ""
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
 msgstr ""
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
 msgstr ""
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
 msgstr ""
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
 msgstr ""
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
 msgstr ""
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
 msgstr ""
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
 msgstr ""
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
 msgstr ""
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
 msgstr ""
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
 msgstr ""
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
 msgstr ""
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
 msgstr ""
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
 msgstr ""
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
 msgstr ""
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
 msgstr ""
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
 msgstr ""
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
 msgstr ""
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
 msgstr ""
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
 msgstr ""
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
 msgstr ""
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
 msgstr ""
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
 msgstr ""
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
 msgstr ""
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
 msgstr ""
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
 msgstr ""
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
 msgstr ""
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
 msgstr ""
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
 msgstr ""
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
 msgstr ""
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
 msgstr ""
 
 #. :COD:180:
@@ -848,2869 +829,2895 @@ msgstr ""
 msgid "Central African Republic"
 msgstr ""
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
 msgstr ""
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
 msgstr ""
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
 msgstr ""
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
 msgstr ""
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
 msgstr ""
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
 msgstr ""
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
 msgstr ""
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
 msgstr ""
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
 msgstr ""
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
 msgstr ""
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
 msgstr ""
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
 msgstr ""
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
 msgstr ""
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
 msgstr ""
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
 msgstr ""
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
 msgstr ""
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
 msgstr ""
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
 msgstr ""
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
 msgstr ""
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
 msgstr ""
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
 msgstr ""
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
 msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
 msgstr ""
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
 msgstr ""
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
 msgstr ""
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
 msgstr ""
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
 msgstr ""
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
 msgstr ""
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
 msgstr ""
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
 msgstr ""
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
 msgstr ""
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
 msgstr ""
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
 msgstr ""
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
 msgstr ""
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
 msgstr ""
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
 msgstr ""
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
 msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
 msgstr ""
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
 msgstr ""
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
 msgstr ""
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
 msgstr ""
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
 msgstr ""
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
 msgstr ""
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
 msgstr ""
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
 msgstr ""
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
 msgstr ""
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
 msgstr ""
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
 msgstr ""
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
 msgstr ""
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
 msgstr ""
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
 msgstr ""
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
+#: zypp/CountryCode.cc:261
+msgid "India"
 msgstr ""
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
 msgstr ""
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
 msgstr ""
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
 msgstr ""
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
 msgstr ""
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
 msgstr ""
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
 msgstr ""
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
 msgstr ""
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
 msgstr ""
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
 msgstr ""
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
 msgstr ""
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
 msgstr ""
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
 msgstr ""
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
 msgstr ""
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
 msgstr ""
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
 msgstr ""
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
 msgstr ""
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
 msgstr ""
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
 msgstr ""
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
 msgstr ""
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
 msgstr ""
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
 msgstr ""
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
 msgstr ""
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
 msgstr ""
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
 msgstr ""
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
 msgstr ""
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
 msgstr ""
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
 msgstr ""
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
 msgstr ""
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
 msgstr ""
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
 msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
 msgstr ""
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
 msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
 msgstr ""
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
 msgstr ""
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
 msgstr ""
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
 msgstr ""
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr ""
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr ""
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr ""
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr ""
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr ""
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr ""
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr ""
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr ""
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr ""
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr ""
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr ""
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr ""
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
 msgstr ""
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
 msgstr ""
 
-#. language code: fil
-#: zypp/LanguageCode.cc:437
-msgid "Filipino"
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
 msgstr ""
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
 msgstr ""
 
-#. language code: fin fi
-#: zypp/LanguageCode.cc:439
-msgid "Finnish"
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
 msgstr ""
 
-#. language code: fiu
-#: zypp/LanguageCode.cc:441
-msgid "Finno-Ugrian (Other)"
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
 msgstr ""
 
-#. language code: fon
-#: zypp/LanguageCode.cc:443
-msgid "Fon"
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
 msgstr ""
 
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
 msgstr ""
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
 msgstr ""
 
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
 msgstr ""
 
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
 msgstr ""
 
-#. language code: frm
-#: zypp/LanguageCode.cc:449
-msgid "French, Middle (ca.1400-1600)"
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
 msgstr ""
 
-#. language code: fro
-#: zypp/LanguageCode.cc:451
-msgid "French, Old (842-ca.1400)"
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
 msgstr ""
 
-#. language code: fry fy
-#: zypp/LanguageCode.cc:453
-msgid "Frisian"
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
 msgstr ""
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
 msgstr ""
 
-#. language code: gaa
-#: zypp/LanguageCode.cc:459
-msgid "Ga"
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
 msgstr ""
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
 msgstr ""
 
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
 msgstr ""
 
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
 msgstr ""
 
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
 msgstr ""
 
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
 msgstr ""
 
-#. language code: gay
-#: zypp/LanguageCode.cc:461
-msgid "Gayo"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
 msgstr ""
 
-#. language code: gba
-#: zypp/LanguageCode.cc:463
-msgid "Gbaya"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
 msgstr ""
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
 msgstr ""
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
 msgstr ""
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-msgid "German"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
 msgstr ""
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
 msgstr ""
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
 msgstr ""
 
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
 msgstr ""
 
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
 msgstr ""
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
 msgstr ""
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr ""
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr ""
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr ""
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
 msgstr ""
 
-#. language code: gon
-#: zypp/LanguageCode.cc:491
-msgid "Gondi"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
 msgstr ""
 
-#. language code: gor
-#: zypp/LanguageCode.cc:493
-msgid "Gorontalo"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
 msgstr ""
 
-#. language code: got
-#: zypp/LanguageCode.cc:495
-msgid "Gothic"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
 msgstr ""
 
-#. language code: grb
-#: zypp/LanguageCode.cc:497
-msgid "Grebo"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
 msgstr ""
 
-#. language code: grc
-#: zypp/LanguageCode.cc:499
-msgid "Greek, Ancient (to 1453)"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
 msgstr ""
 
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
 msgstr ""
 
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
 msgstr ""
 
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
 msgstr ""
 
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
 msgstr ""
 
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
 msgstr ""
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
 msgstr ""
 
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
 msgstr ""
 
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
 msgstr ""
 
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
 msgstr ""
 
-#. language code: guj gu
-#: zypp/LanguageCode.cc:507
-msgid "Gujarati"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
 msgstr ""
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
 msgstr ""
 
-#. language code: gwi
-#: zypp/LanguageCode.cc:509
-msgid "Gwich'in"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
 msgstr ""
 
-#. language code: hai
-#: zypp/LanguageCode.cc:511
-msgid "Haida"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
 msgstr ""
 
-#. language code: hat ht
-#: zypp/LanguageCode.cc:513
-msgid "Haitian"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
 msgstr ""
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-#. language code: hau ha
-#: zypp/LanguageCode.cc:515
-msgid "Hausa"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
 msgstr ""
 
-#. language code: haw
-#: zypp/LanguageCode.cc:517
-msgid "Hawaiian"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-#. language code: heb he
-#: zypp/LanguageCode.cc:519
-msgid "Hebrew"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#. language code: her hz
-#: zypp/LanguageCode.cc:521
-msgid "Herero"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#. language code: hil
-#: zypp/LanguageCode.cc:523
-msgid "Hiligaynon"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
 msgstr ""
 
-#. language code: him
-#: zypp/LanguageCode.cc:525
-msgid "Himachali"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. language code: hin hi
-#: zypp/LanguageCode.cc:527
-msgid "Hindi"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. language code: hit
-#: zypp/LanguageCode.cc:529
-msgid "Hittite"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
 msgstr ""
 
-#. language code: hmn
-#: zypp/LanguageCode.cc:531
-msgid "Hmong"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
 msgstr ""
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#. language code: hun hu
-#: zypp/LanguageCode.cc:537
-msgid "Hungarian"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
 msgstr ""
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#. language code: hup
-#: zypp/LanguageCode.cc:539
-msgid "Hupa"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
 msgstr ""
 
-#. language code: iba
-#: zypp/LanguageCode.cc:541
-msgid "Iban"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
 msgstr ""
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
 msgstr ""
 
-#. language code: ice isl is
-#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
-msgid "Icelandic"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#. language code: ido io
-#: zypp/LanguageCode.cc:549
-msgid "Ido"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
 msgstr ""
 
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
 msgstr ""
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
 msgstr ""
 
-#: zypp/CountryCode.cc:261
-msgid "India"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
 msgstr ""
 
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
 msgstr ""
 
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
 msgstr ""
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
 msgstr ""
 
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
 msgstr ""
 
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
 msgstr ""
 
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
 msgstr ""
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
 msgstr ""
 
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
 msgstr ""
 
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
 msgstr ""
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
 msgstr ""
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#. language code: iro
-#: zypp/LanguageCode.cc:575
-msgid "Iroquoian Languages"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
 msgstr ""
 
-#. language code: ita it
-#: zypp/LanguageCode.cc:577
-msgid "Italian"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
 msgstr ""
 
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
 msgstr ""
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
 msgstr ""
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
 msgstr ""
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
 msgstr ""
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
 msgstr ""
 
-#. language code: kab
-#: zypp/LanguageCode.cc:591
-msgid "Kabyle"
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
 msgstr ""
 
-#. language code: kac
-#: zypp/LanguageCode.cc:593
-msgid "Kachin"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. language code: kal kl
-#: zypp/LanguageCode.cc:595
-msgid "Kalaallisut"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
 msgstr ""
 
-#. language code: kam
-#: zypp/LanguageCode.cc:597
-msgid "Kamba"
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#. language code: kan kn
-#: zypp/LanguageCode.cc:599
-msgid "Kannada"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
 msgstr ""
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
 msgstr ""
 
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
 msgstr ""
 
-#. language code: kar
-#: zypp/LanguageCode.cc:601
-msgid "Karen"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
 msgstr ""
 
-#. language code: kas ks
-#: zypp/LanguageCode.cc:603
-msgid "Kashmiri"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. language code: kaw
-#: zypp/LanguageCode.cc:607
-msgid "Kawi"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#. language code: kaz kk
-#: zypp/LanguageCode.cc:609
-msgid "Kazakh"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
 msgstr ""
 
-#. language code: kha
-#: zypp/LanguageCode.cc:613
-msgid "Khasi"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
 msgstr ""
 
-#. language code: kho
-#: zypp/LanguageCode.cc:619
-msgid "Khotanese"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
 msgstr ""
 
-#. language code: kik ki
-#: zypp/LanguageCode.cc:621
-msgid "Kikuyu"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
 msgstr ""
 
-#. language code: kin rw
-#: zypp/LanguageCode.cc:623
-msgid "Kinyarwanda"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
 msgstr ""
 
-#. language code: kir ky
-#: zypp/LanguageCode.cc:625
-msgid "Kirghiz"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
 
-#. language code: kom kv
-#: zypp/LanguageCode.cc:631
-msgid "Komi"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
 msgstr ""
 
-#. language code: kon kg
-#: zypp/LanguageCode.cc:633
-msgid "Kongo"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
 msgstr ""
 
-#. language code: kor ko
-#: zypp/LanguageCode.cc:635
-msgid "Korean"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
 msgstr ""
 
-#. language code: kos
-#: zypp/LanguageCode.cc:637
-msgid "Kosraean"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
 msgstr ""
 
-#. language code: kpe
-#: zypp/LanguageCode.cc:639
-msgid "Kpelle"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
 msgstr ""
 
-#. language code: kro
-#: zypp/LanguageCode.cc:643
-msgid "Kru"
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
 msgstr ""
 
-#. language code: kua kj
-#: zypp/LanguageCode.cc:647
-msgid "Kuanyama"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
 msgstr ""
 
-#. language code: kum
-#: zypp/LanguageCode.cc:649
-msgid "Kumyk"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
 msgstr ""
 
-#. language code: kur ku
-#: zypp/LanguageCode.cc:651
-msgid "Kurdish"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
 msgstr ""
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#. language code: kut
-#: zypp/LanguageCode.cc:653
-msgid "Kutenai"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
 msgstr ""
 
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
 msgstr ""
 
-#. language code: lad
-#: zypp/LanguageCode.cc:655
-msgid "Ladino"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
 msgstr ""
 
-#. language code: lah
-#: zypp/LanguageCode.cc:657
-msgid "Lahnda"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
 msgstr ""
 
-#. language code: lam
-#: zypp/LanguageCode.cc:659
-msgid "Lamba"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
 msgstr ""
 
-#. language code: lao lo
-#: zypp/LanguageCode.cc:661
-msgid "Lao"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
 msgstr ""
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
-#. language code: lat la
-#: zypp/LanguageCode.cc:663
-msgid "Latin"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
 msgstr ""
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
 
-#. language code: lav lv
-#: zypp/LanguageCode.cc:665
-msgid "Latvian"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
 msgstr ""
 
-#. language code: lez
-#: zypp/LanguageCode.cc:667
-msgid "Lezghian"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
 msgstr ""
 
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
 msgstr ""
 
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. language code: lim li
-#: zypp/LanguageCode.cc:669
-msgid "Limburgan"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
 
-#. language code: lin ln
-#: zypp/LanguageCode.cc:671
-msgid "Lingala"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
 msgstr ""
 
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
-msgid "Lithuanian"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
 msgstr ""
 
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: fil
+#: zypp/LanguageCode.cc:437
+msgid "Filipino"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
+#. language code: fin fi
+#: zypp/LanguageCode.cc:439
+msgid "Finnish"
 msgstr ""
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
+#. language code: fiu
+#: zypp/LanguageCode.cc:441
+msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#. language code: loz
-#: zypp/LanguageCode.cc:677
-msgid "Lozi"
+#. language code: fon
+#: zypp/LanguageCode.cc:443
+msgid "Fon"
 msgstr ""
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+#. language code: frm
+#: zypp/LanguageCode.cc:449
+msgid "French, Middle (ca.1400-1600)"
 msgstr ""
 
-#. language code: lui
-#: zypp/LanguageCode.cc:687
-msgid "Luiseno"
+#. language code: fro
+#: zypp/LanguageCode.cc:451
+msgid "French, Old (842-ca.1400)"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
+#. language code: fry fy
+#: zypp/LanguageCode.cc:453
+msgid "Frisian"
 msgstr ""
 
-#. language code: lun
-#: zypp/LanguageCode.cc:689
-msgid "Lunda"
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
 msgstr ""
 
-#. language code: luo
-#: zypp/LanguageCode.cc:691
-msgid "Luo (Kenya and Tanzania)"
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
 msgstr ""
 
-#. language code: lus
-#: zypp/LanguageCode.cc:693
-msgid "Lushai"
+#. language code: gaa
+#: zypp/LanguageCode.cc:459
+msgid "Ga"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
+#. language code: gay
+#: zypp/LanguageCode.cc:461
+msgid "Gayo"
 msgstr ""
 
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
+#. language code: gba
+#: zypp/LanguageCode.cc:463
+msgid "Gbaya"
 msgstr ""
 
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
 msgstr ""
 
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
 msgstr ""
 
-#. language code: mac mkd mk
-#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
-msgid "Macedonian"
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+msgid "German"
 msgstr ""
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
 msgstr ""
 
-#. language code: mad
-#: zypp/LanguageCode.cc:699
-msgid "Madurese"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
 msgstr ""
 
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
 msgstr ""
 
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
 msgstr ""
 
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
 msgstr ""
 
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
 msgstr ""
 
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
+#. language code: gon
+#: zypp/LanguageCode.cc:491
+msgid "Gondi"
 msgstr ""
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
+#. language code: gor
+#: zypp/LanguageCode.cc:493
+msgid "Gorontalo"
 msgstr ""
 
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
+#. language code: got
+#: zypp/LanguageCode.cc:495
+msgid "Gothic"
 msgstr ""
 
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
+#. language code: grb
+#: zypp/LanguageCode.cc:497
+msgid "Grebo"
 msgstr ""
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
+#. language code: grc
+#: zypp/LanguageCode.cc:499
+msgid "Greek, Ancient (to 1453)"
 msgstr ""
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
 msgstr ""
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
+#. language code: guj gu
+#: zypp/LanguageCode.cc:507
+msgid "Gujarati"
 msgstr ""
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
+#. language code: gwi
+#: zypp/LanguageCode.cc:509
+msgid "Gwich'in"
 msgstr ""
 
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
+#. language code: hai
+#: zypp/LanguageCode.cc:511
+msgid "Haida"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
+#. language code: hat ht
+#: zypp/LanguageCode.cc:513
+msgid "Haitian"
 msgstr ""
 
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
+#. language code: hau ha
+#: zypp/LanguageCode.cc:515
+msgid "Hausa"
 msgstr ""
 
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
+#. language code: haw
+#: zypp/LanguageCode.cc:517
+msgid "Hawaiian"
 msgstr ""
 
-#. language code: mao mri mi
-#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
-msgid "Maori"
+#. language code: heb he
+#: zypp/LanguageCode.cc:519
+msgid "Hebrew"
 msgstr ""
 
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
-msgid "Marathi"
+#. language code: her hz
+#: zypp/LanguageCode.cc:521
+msgid "Herero"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
+#. language code: hil
+#: zypp/LanguageCode.cc:523
+msgid "Hiligaynon"
 msgstr ""
 
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
+#. language code: him
+#: zypp/LanguageCode.cc:525
+msgid "Himachali"
 msgstr ""
 
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
+#. language code: hin hi
+#: zypp/LanguageCode.cc:527
+msgid "Hindi"
 msgstr ""
 
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
+#. language code: hit
+#: zypp/LanguageCode.cc:529
+msgid "Hittite"
 msgstr ""
 
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
+#. language code: hmn
+#: zypp/LanguageCode.cc:531
+msgid "Hmong"
 msgstr ""
 
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
 msgstr ""
 
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
+#. language code: hun hu
+#: zypp/LanguageCode.cc:537
+msgid "Hungarian"
 msgstr ""
 
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
+#. language code: hup
+#: zypp/LanguageCode.cc:539
+msgid "Hupa"
 msgstr ""
 
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
+#. language code: iba
+#: zypp/LanguageCode.cc:541
+msgid "Iban"
 msgstr ""
 
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
+#. language code: ice isl is
+#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
+msgid "Icelandic"
 msgstr ""
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: ido io
+#: zypp/LanguageCode.cc:549
+msgid "Ido"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
 msgstr ""
 
-#. language code: men
-#: zypp/LanguageCode.cc:731
-msgid "Mende"
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
 msgstr ""
 
-#. language code: mic
-#: zypp/LanguageCode.cc:735
-msgid "Mi'kmaq"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
 msgstr ""
 
-#. language code: min
-#: zypp/LanguageCode.cc:737
-msgid "Minangkabau"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
 msgstr ""
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
 msgstr ""
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
 msgstr ""
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
 msgstr ""
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
 msgstr ""
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: iro
+#: zypp/LanguageCode.cc:575
+msgid "Iroquoian Languages"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
+#. language code: ita it
+#: zypp/LanguageCode.cc:577
+msgid "Italian"
 msgstr ""
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
 msgstr ""
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
 msgstr ""
 
-#. language code: mon mn
-#: zypp/LanguageCode.cc:757
-msgid "Mongolian"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
 msgstr ""
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
 msgstr ""
 
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
-#. language code: mos
-#: zypp/LanguageCode.cc:759
-msgid "Mossi"
+#. language code: kab
+#: zypp/LanguageCode.cc:591
+msgid "Kabyle"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
+#. language code: kac
+#: zypp/LanguageCode.cc:593
+msgid "Kachin"
 msgstr ""
 
-#. language code: mul
-#: zypp/LanguageCode.cc:761
-msgid "Multiple Languages"
+#. language code: kal kl
+#: zypp/LanguageCode.cc:595
+msgid "Kalaallisut"
 msgstr ""
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
+#. language code: kam
+#: zypp/LanguageCode.cc:597
+msgid "Kamba"
 msgstr ""
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
+#. language code: kan kn
+#: zypp/LanguageCode.cc:599
+msgid "Kannada"
 msgstr ""
 
-#. language code: nah
-#: zypp/LanguageCode.cc:775
-msgid "Nahuatl"
+#. language code: kar
+#: zypp/LanguageCode.cc:601
+msgid "Karen"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
+#. language code: kas ks
+#: zypp/LanguageCode.cc:603
+msgid "Kashmiri"
 msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
-#. language code: nav nv
-#: zypp/LanguageCode.cc:783
-msgid "Navajo"
+#. language code: kaw
+#: zypp/LanguageCode.cc:607
+msgid "Kawi"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
+#. language code: kaz kk
+#: zypp/LanguageCode.cc:609
+msgid "Kazakh"
 msgstr ""
 
-#. language code: nbl nr
-#: zypp/LanguageCode.cc:785
-msgid "Ndebele, South"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
+#. language code: kha
+#: zypp/LanguageCode.cc:613
+msgid "Khasi"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
 msgstr ""
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
 msgstr ""
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
+#. language code: kho
+#: zypp/LanguageCode.cc:619
+msgid "Khotanese"
 msgstr ""
 
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
+#. language code: kik ki
+#: zypp/LanguageCode.cc:621
+msgid "Kikuyu"
 msgstr ""
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
+#. language code: kin rw
+#: zypp/LanguageCode.cc:623
+msgid "Kinyarwanda"
 msgstr ""
 
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
+#. language code: kir ky
+#: zypp/LanguageCode.cc:625
+msgid "Kirghiz"
 msgstr ""
 
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: kom kv
+#: zypp/LanguageCode.cc:631
+msgid "Komi"
 msgstr ""
 
-#. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
+#. language code: kon kg
+#: zypp/LanguageCode.cc:633
+msgid "Kongo"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
+#. language code: kor ko
+#: zypp/LanguageCode.cc:635
+msgid "Korean"
 msgstr ""
 
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
+#. language code: kos
+#: zypp/LanguageCode.cc:637
+msgid "Kosraean"
 msgstr ""
-
-#. language code: nic
-#: zypp/LanguageCode.cc:799
-msgid "Niger-Kordofanian (Other)"
+
+#. language code: kpe
+#: zypp/LanguageCode.cc:639
+msgid "Kpelle"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
 msgstr ""
 
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
+#. language code: kro
+#: zypp/LanguageCode.cc:643
+msgid "Kru"
 msgstr ""
 
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
 msgstr ""
 
-#. language code: niu
-#: zypp/LanguageCode.cc:801
-msgid "Niuean"
+#. language code: kua kj
+#: zypp/LanguageCode.cc:647
+msgid "Kuanyama"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
+#. language code: kum
+#: zypp/LanguageCode.cc:649
+msgid "Kumyk"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: kur ku
+#: zypp/LanguageCode.cc:651
+msgid "Kurdish"
 msgstr ""
 
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
+#. language code: kut
+#: zypp/LanguageCode.cc:653
+msgid "Kutenai"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
+#. language code: lad
+#: zypp/LanguageCode.cc:655
+msgid "Ladino"
 msgstr ""
 
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
+#. language code: lah
+#: zypp/LanguageCode.cc:657
+msgid "Lahnda"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
+#. language code: lam
+#: zypp/LanguageCode.cc:659
+msgid "Lamba"
 msgstr ""
 
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
+#. language code: lao lo
+#: zypp/LanguageCode.cc:661
+msgid "Lao"
 msgstr ""
 
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
+#. language code: lat la
+#: zypp/LanguageCode.cc:663
+msgid "Latin"
 msgstr ""
 
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
+#. language code: lav lv
+#: zypp/LanguageCode.cc:665
+msgid "Latvian"
 msgstr ""
 
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
+#. language code: lez
+#: zypp/LanguageCode.cc:667
+msgid "Lezghian"
 msgstr ""
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
+#. language code: lim li
+#: zypp/LanguageCode.cc:669
+msgid "Limburgan"
 msgstr ""
 
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
+#. language code: lin ln
+#: zypp/LanguageCode.cc:671
+msgid "Lingala"
 msgstr ""
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
+msgid "Lithuanian"
 msgstr ""
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: loz
+#: zypp/LanguageCode.cc:677
+msgid "Lozi"
 msgstr ""
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
-msgid "Nubian Languages"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
 msgstr ""
 
-#. language code: nym
-#: zypp/LanguageCode.cc:821
-msgid "Nyamwezi"
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
 msgstr ""
 
-#. language code: nyn
-#: zypp/LanguageCode.cc:823
-msgid "Nyankole"
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: nyo
-#: zypp/LanguageCode.cc:825
-msgid "Nyoro"
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
 msgstr ""
 
-#. language code: nzi
-#: zypp/LanguageCode.cc:827
-msgid "Nzima"
+#. language code: lui
+#: zypp/LanguageCode.cc:687
+msgid "Luiseno"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
+#. language code: lun
+#: zypp/LanguageCode.cc:689
+msgid "Lunda"
 msgstr ""
 
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
+#. language code: luo
+#: zypp/LanguageCode.cc:691
+msgid "Luo (Kenya and Tanzania)"
 msgstr ""
 
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
+#. language code: lus
+#: zypp/LanguageCode.cc:693
+msgid "Lushai"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
+#. language code: mac mkd mk
+#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
+msgid "Macedonian"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
+#. language code: mad
+#: zypp/LanguageCode.cc:699
+msgid "Madurese"
 msgstr ""
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
 msgstr ""
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
 msgstr ""
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
 msgstr ""
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
-msgid "Osage"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
 msgstr ""
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
 msgstr ""
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
 msgstr ""
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: mao mri mi
+#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
+msgid "Maori"
 msgstr ""
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+msgid "Marathi"
 msgstr ""
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
 msgstr ""
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
 msgstr ""
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
 msgstr ""
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
+#. language code: men
+#: zypp/LanguageCode.cc:731
+msgid "Mende"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
+#. language code: mic
+#: zypp/LanguageCode.cc:735
+msgid "Mi'kmaq"
 msgstr ""
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
+#. language code: min
+#: zypp/LanguageCode.cc:737
+msgid "Minangkabau"
 msgstr ""
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
 msgstr ""
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
 msgstr ""
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
 msgstr ""
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
 msgstr ""
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
 msgstr ""
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
 msgstr ""
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
+#. language code: mon mn
+#: zypp/LanguageCode.cc:757
+msgid "Mongolian"
 msgstr ""
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
+#. language code: mos
+#: zypp/LanguageCode.cc:759
+msgid "Mossi"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
+#. language code: mul
+#: zypp/LanguageCode.cc:761
+msgid "Multiple Languages"
 msgstr ""
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
 msgstr ""
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
 msgstr ""
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
 msgstr ""
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
 msgstr ""
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
+#. language code: nah
+#: zypp/LanguageCode.cc:775
+msgid "Nahuatl"
 msgstr ""
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
 msgstr ""
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
+#. language code: nav nv
+#: zypp/LanguageCode.cc:783
+msgid "Navajo"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
+#. language code: nbl nr
+#: zypp/LanguageCode.cc:785
+msgid "Ndebele, South"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
 msgstr ""
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
 msgstr ""
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
 msgstr ""
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
+#. language code: nic
+#: zypp/LanguageCode.cc:799
+msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+msgid "Niuean"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
 msgstr ""
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
 msgstr ""
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
 msgstr ""
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
 msgstr ""
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr ""
+
+#. language code: nub
+#: zypp/LanguageCode.cc:815
+msgid "Nubian Languages"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
 msgstr ""
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
+#. language code: nym
+#: zypp/LanguageCode.cc:821
+msgid "Nyamwezi"
 msgstr ""
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
+#. language code: nyn
+#: zypp/LanguageCode.cc:823
+msgid "Nyankole"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
+#. language code: nyo
+#: zypp/LanguageCode.cc:825
+msgid "Nyoro"
 msgstr ""
 
-#: zypp/Dep.cc:98
-msgid "Requires"
+#. language code: nzi
+#: zypp/LanguageCode.cc:827
+msgid "Nzima"
 msgstr ""
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
 msgstr ""
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
 msgstr ""
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
 msgstr ""
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+msgid "Osage"
 msgstr ""
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
 msgstr ""
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
 msgstr ""
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
 msgstr ""
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
 msgstr ""
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
 msgstr ""
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
 msgstr ""
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr ""
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
 msgstr ""
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
 msgstr ""
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
 msgstr ""
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
 msgstr ""
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
 msgstr ""
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
 msgstr ""
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
 msgstr ""
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
 msgstr ""
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
 msgstr ""
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
 msgstr ""
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
 msgstr ""
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
 msgstr ""
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
 msgstr ""
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
 msgstr ""
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
 msgstr ""
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
 msgstr ""
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
 msgstr ""
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
 msgstr ""
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
 msgstr ""
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
 msgstr ""
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
 msgstr ""
 
 #. language code: sin si
@@ -3718,24 +3725,14 @@ msgstr ""
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr ""
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -3748,98 +3745,79 @@ msgstr ""
 msgid "Slovak"
 msgstr ""
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr ""
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr ""
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr ""
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr ""
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr ""
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
 msgstr ""
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
 msgstr ""
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
 msgstr ""
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
 msgstr ""
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
 msgstr ""
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
 msgstr ""
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
 msgstr ""
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
 msgstr ""
 
 #. language code: spa es
@@ -3847,42 +3825,34 @@ msgstr ""
 msgid "Spanish"
 msgstr ""
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr ""
-
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr ""
-
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
 msgstr ""
 
-#. language code: suk
-#: zypp/LanguageCode.cc:999
-msgid "Sukuma"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
 msgstr ""
 
-#. language code: sun su
-#: zypp/LanguageCode.cc:1001
-msgid "Sundanese"
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
+#. language code: suk
+#: zypp/LanguageCode.cc:999
+msgid "Sukuma"
 msgstr ""
 
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
+#. language code: sun su
+#: zypp/LanguageCode.cc:1001
+msgid "Sundanese"
 msgstr ""
 
 #. language code: sus
@@ -3890,9 +3860,9 @@ msgstr ""
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
 #. language code: swa sw
@@ -3900,58 +3870,16 @@ msgstr ""
 msgid "Swahili"
 msgstr ""
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr ""
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr ""
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr ""
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr ""
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr ""
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr ""
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr ""
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3962,36 +3890,11 @@ msgstr ""
 msgid "Tai (Other)"
 msgstr ""
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr ""
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr ""
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr ""
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr ""
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4002,6 +3905,11 @@ msgstr ""
 msgid "Telugu"
 msgstr ""
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4012,31 +3920,19 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr ""
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
 msgstr ""
 
 #. language code: tib bod bo
@@ -4054,45 +3950,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4105,15 +3980,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4121,14 +3990,19 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr ""
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr ""
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
 msgstr ""
 
 #. language code: tum
@@ -4136,647 +4010,773 @@ msgstr ""
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr ""
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr ""
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr ""
+
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr ""
+
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr ""
+
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr ""
+
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr ""
+
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr ""
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr ""
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr ""
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr ""
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr ""
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
 msgstr ""
 
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
 msgstr ""
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
 msgstr ""
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
 msgstr ""
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
 msgstr ""
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
 msgstr ""
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
 msgstr ""
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
 msgstr ""
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
 msgstr ""
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
 msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
 msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
 msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
 msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
 msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Failed to mount %s on %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Failed to unmount %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "deinstallation of %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "keep %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
index 3aad7a3..a25fc07 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -30,19 +30,93 @@ msgstr ""
 "Plural-Forms:  nplurals=2; plural=n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"Poistettavissa olevat tarjoajat: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal-poikkeus"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Virheellinen LDAP URL -kysely"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr " SSL-ongelma: Tarkista että CA-varmenne kuuluu \"%s\"."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Virheellinen LDAP URL -parametri: \"%s\""
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Verkko-osoite-objektin kahdentaminen ei onnistunut"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Virheellinen viittaus tyhjään URL-objektiin"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Verkko-osoitteen jäsentäminen ei onnistu."
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Mutex-määritteiden alustaminen ei onnistu"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Rekursiivisten mutex-määritteiden asetus ei onnistu"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Rekursiivisten mutex-määritteiden alustaminen ei onnistu"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Mutex-lukitus ei onnistu"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Mutex-lukituksen vapauttaminen ei onnistu"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Tarjoaa"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Edellytykset"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Vaatii"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Ristiriidat"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Vanhentuneet"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Suosittelee"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Ehdottaa"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Parannukset"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Täydentää"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Virheellinen tyyppi \"%s\" tavulle %u, tarkistussumma: \"%s\""
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -52,10 +126,6 @@ msgstr " suoritettu"
 msgid " execution failed"
 msgstr " suoritus epäonnistui"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " suoritus ohitettiin keskeytettäessä"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -64,1055 +134,1049 @@ msgstr " suoritus ohitettiin keskeytettäessä"
 msgid "%s already executed as %s)"
 msgstr "%s on jo suoritettu nimellä %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s on ristiriidassa %s (%s) kanssa"
-
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s ei kuulu jakeluversion päivitysasennuslähteeseen"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " suoritus ohitettiin keskeytettäessä"
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s on alempaa arkkitehtuuria"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Virhe lähetettäessä päivityshuomautusta."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s ei ole asennettavissa"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Uusi päivitysviesti"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s on järjestelmän tarjoama ja sitä ei voi poistaa"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Asennus keskeytettiin."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s vanhentaa %s (%s)"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "Tämä versio libzypp-kirjastosta on käännetty ilman HAL-tukea."
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s tarvitsee %s, mutta sen asentaminen ei onnistu"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "Hal-yhteyden muodostus ei onnistunut"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(VANHENTUNUT)"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "Hal-asemaa ei ole alustettu"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(ei vanhene)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "Hal-taltioa ei alustettu"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(vanhenee 24 tunnin kuluessa)"
-msgstr[1] "(vanhenee 24 tunnin kuluessa)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "dbus-yhteyden luonti epäonnistui"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(vanhenee 24 tunnin kuluessa)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: libhal-yhteyttä ei voitu luoda"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "abhaasi"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: dbus-yhteyden asettaminen ei onnistu"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "aceh"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "HAL-yhteyden alustus ei onnistu. Varmista, että \"hald\" on käynnissä."
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "acoli"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Kohde ei ole CD-asema"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "adangme"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM-virhe: "
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Lisätään asennuslähdettä \"%s\""
-
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Erillinen asiakassopimus tarpeen"
+msgid "Failed to import public key from file %s: %s"
+msgstr "Avaimen tuonti tiedostosta %s epäonnistui: %s"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "rpm-lisätuloste"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Julkisen avaimen %s poisto epäonnistui: %s"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "adyghe"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Muunnettiin paketin %s asetustiedostoja:"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "afar"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm tallensi tiedoston %s niemellä %s. Erojen selvittäminen ei onnistunut."
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistan"
-
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "afrihili"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm tallensi tiedoston %s nimellä %s.\n"
+"Tässä ensimmäiset 25 muuttunutta riviä:\n"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "afrikaans"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm loi tiedoston %s nimellä %s. Erojen selvittäminen ei onnistunut."
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "afroaasialaiset (muut)"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm loi tiedoston %s nimellä %s.\n"
+"Tässä on ensimmäiset 25 vaihtunutta riviä:\n"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "ainu"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "rpm-lisätuloste"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "akan"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "luotiin varmuuskopio %s"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "akkadi"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "Allekirjoitustiedostoa %s ei löydetty"
 
-# FO
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Ahvenanmaa"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albania"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "Allekirjoitustiedostoa %s ei löydetty"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "albania"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "Allekirjoitustiedostoa %s ei löydetty"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "aleutti"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algeria"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "algonkin-kielet"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Tehdään seuraavat toiminnot:"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "altailaiset (muut)"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
 
-# AS
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Amerikan Samoa"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Hakemiston \"%s\" lukeminen ei onnistu"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "amhara"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Tuen saamiseksi edellytetään erillinen asiakassopimus."
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Asennuslähteen alias ei voi alkaa pisteellä."
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Palvelun alias ei voi alkaa pisteellä."
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Tiedostoa \"%s\" ei voida avata kirjoitusta varten."
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr "Tuntematon palvelu '%1%': Poistetaan orpo palvelulähde '%2%'"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktis"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Annetuista verkko-osoitteista ei löytynyt kelpaavia metatietoja"
+msgstr[1] "Annetuista verkko-osoitteista ei löytynyt kelpaavia metatietoja"
 
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua ja Barbuda"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Ei voi luoda %s"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "apaššikielet "
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Metatiedon välimuistihakemistoa ei voi luoda."
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "arabia"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Rakennetaan asennuslähteen \"%s\" välimuistia"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "aragonia"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Välimuistia %s ei voida luoda - ei kirjoitusoikeuksia."
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "aramea"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Virhe asennuslähteen puskuroinnissa (%d)."
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "arapaho"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Virheellinen asennuslähteen tyyppi"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "araukaani"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Virhe luettaessa \"%s\""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "arawak"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Tuntematon virhe luettaessa \"%s\""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentiina"
-
-# AM
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenia"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Lisätään asennuslähdettä \"%s\""
 
-# AM
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "armenia"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Virheellinen asennuslähteen tiedostonimi \"%s\""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "keinotekoiset (muut)"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Poistetaan asennuslähdettä \"%s\""
 
-# CU
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Asennuslähteen sijaintia ei voida päätellä."
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "assami"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "\"%s\" poistaminen ei onnistu"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "asturia"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Palvelun sijaintia ei voida päätellä."
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "athabasca-kielet"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Ei sallittu verkko-osoite: %s"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australia"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Virheellinen %s-komponentti \"%s\""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "australialaiset kielet"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Virheellinen %s-komponentti"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Itävalta"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Tämän verkko-osoitteen jäsentäminen kyselyksi ei ole tuettu"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "austronesialaiset (muut)"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Verkko-osoite on pakollinen"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:830
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "\"%s\" vaatii tunnistautumisen"
+msgid "Invalid Url scheme '%s'"
+msgstr "Virheellinen verkko-osoite: \"%s\""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "avaari"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Verkko-osoite ei salli käyttäjänimeä"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "avesta"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Verkko-osoite ei salli salasanaa"
 
-# SZ
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "awadhi"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Verkko-osoite edellyttää konenimen"
 
-# MM
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "aymara"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Verkko-osoite ei salli konenimeä"
 
-# AZ
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaidzhan"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Virheellinen konenimi: \"%s\""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "azeri"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Verkko-osoite ei salli portin määritystä"
 
-#: zypp/media/MediaException.cc:47
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Virheellinen tiedostonimi: %s"
+msgid "Invalid port component '%s'"
+msgstr "Virheellinen porttimääritys: \"%s\""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Virheellinen liitospiste"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Verkko-osoite edellyttää polun määrittämistä"
 
-# BS
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahama"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+"Suhteellisen polun määrittäminen ei ole sallittua, jos valtuuttaja on "
+"määritetty"
 
-# BH
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Koodattu merkkijono sisältää NUL-tavun"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "bali"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Virheellinen parametritaulukon jaon erotin"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "balttilaiset (muut)"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Virheellinen parametrikartan jaon erotin"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "belutši"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Virheellinen parametritaulukon liitoksen erotin"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "bambara"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "pty:n (%s) avaaminen ei onnistu."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "bamileke-kielet"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Putken (%s) avaaminen ei onnistu."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "banda"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Hakemistorajoitus (chroot) ei onnistu hakemistoon \"%s\" (%s)."
 
-# BD
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "chdir '%s' ei onnistu chroot '%s' sisällä (%s)."
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "bantukielet (muut)"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "chdir  '%s' ei onnistu (%s)."
 
-# BB
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "\"%s\" (%s) suorittaminen ei onnistu."
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "basa"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Haarauttaminen (fork) ei onnistu (%s)."
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "baškiiri"
-
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "baski"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Komento päättyi tilaan %d."
 
-# ID
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "batak"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Komento lopetettiin signaalilla %d (%s)."
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "beja"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Komento päättyi tuntemattomaan virheeseen."
 
-# BY
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Valko-Venäjä"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(ei vanhene)"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "valkovenäjä"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(VANHENTUNUT)"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgia"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(vanhenee 24 tunnin kuluessa)"
 
-# BZ
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(vanhenee 24 tunnin kuluessa)"
+msgstr[1] "(vanhenee 24 tunnin kuluessa)"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "bemba"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "tuntematon"
 
-# BZ
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "bengali"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "ei tuettu"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "1. Taso"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "berberikielet (muut)"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "2. Taso"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "3. Taso"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "bhojpuri"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Erillinen asiakassopimus tarpeen"
 
-# BH
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "virheellinen"
 
-# BH
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "bihari"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Tuen tasoa ei ole määritetty"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "bikol"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Myyjä ei tarjoa tukea."
 
-# IN
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "bini"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Ongelman määrittäminen, mikä tarkoittaa teknistä tukea, joka tarjoaa "
+"yhteensopivuustietoja, asennustukea, käyttötukea, huoltoa ja perustason "
+"ongelmanratkaisua. 1. tason tukea ei ole tarkoitettu korjaamaan tuotteen "
+"puutteista johtuvia virheitä."
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "bislama"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Ongelman eristäminen, mikä tarkoittaa teknistä tukea, joka tähtää asiakkaan "
+"ongelmien toistamiseen, ongelma-alueen eristämiseen ja tarjoaa ratkaisuja "
+"ongelmille, joita 1. tason tuki ei ratkaissut."
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "blin"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Ongelman ratkaiseminen, mikä tarkoittaa monimutkaisten ongelmien "
+"ratkaisemiseen tarkoitettua teknistä tukea. Insinöörit korjaavat tuotteen "
+"vikoja, jotka 2. tason tuki on tunnistanut."
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "Tuen saamiseksi edellytetään erillinen asiakassopimus."
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia ja Hertsegovina"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Tuntematon tukivaihtoehto. Kuvausta ei ole saatavilla."
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "bosnia"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Tuntematon maa: "
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Ei koodia"
 
-# FO
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvetinsaari"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
 
-# BR
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "braj"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Arabiemiirikunnat"
 
-# BR
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasilia"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistan"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "bretoni"
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua ja Barbuda"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Brittiläinen Intian valtameren alue"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
 
-# VI
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Brittiläiset Neitsytsaaret"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albania"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei"
+# AM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenia"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "bugi"
+# AN
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Alankomaiden Antillit"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Rakennetaan asennuslähteen \"%s\" välimuistia"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaria"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktis"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "bulgaria"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentiina"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "burjaatti"
+# AS
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Amerikan Samoa"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Itävalta"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australia"
+
+# CU
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+# FO
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Ahvenanmaa"
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaidzhan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnia ja Hertsegovina"
+
+# BB
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+# BD
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgia"
 
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
 msgstr "Burkina Faso"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "burma"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaria"
+
+# BH
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
 
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "Burundi"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "caddo"
-
-# KH
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodzha"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Sat-varaston luonti ei onnistu."
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Mutex-lukitus ei onnistu"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "chdir  '%s' ei onnistu (%s)."
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasilia"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "chdir '%s' ei onnistu chroot '%s' sisällä (%s)."
+# BS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahama"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Hakemistorajoitus (chroot) ei onnistu hakemistoon \"%s\" (%s)."
+# BH
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Ei voi luoda %s"
+# FO
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvetinsaari"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Välimuistia %s ei voida luoda - ei kirjoitusoikeuksia."
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Metatiedon välimuistihakemistoa ei voi luoda."
+# BY
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Valko-Venäjä"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "\"%s\" poistaminen ei onnistu"
+# BZ
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "\"%s\" (%s) suorittaminen ei onnistu."
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Asennuslähteen sijaintia ei voida päätellä."
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Kookossaaret"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Palvelun sijaintia ei voida päätellä."
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Haarauttaminen (fork) ei onnistu (%s)."
+# CF
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Keski-Afrikan tasavalta"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Mutex-määritteiden alustaminen ei onnistu"
+# CH
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Sveitsi"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Rekursiivisten mutex-määritteiden alustaminen ei onnistu"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Tiedostoa \"%s\" ei voida avata kirjoitusta varten."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Lukitustiedoston avaaminen ei onnistu: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Putken (%s) avaaminen ei onnistu."
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "pty:n (%s) avaaminen ei onnistu."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Tiedoston \"%s\" nouto asennuslähteestä \"%s\" ei onnistu"
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Mutex-lukituksen vapauttaminen ei onnistu"
-
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Rekursiivisten mutex-määritteiden asetus ei onnistu"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Norsunluurannikko"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+# FO
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cookinsaaret"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Tietovälineiden irrottaminen ei onnistu"
+# CL
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Tietovälineen \"%s\" irrottaminen ei onnistu"
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Levykuvatiedoston \"%s\" liitämiseen tarvittavaa loop-laitetta ei löydy"
+# CN
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Kiina"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+# CO
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolumbia"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Tiedostoon \"%s\" kirjoittaminen ei onnistu."
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuuba"
 
 #. :CUB:192:
 #: zypp/CountryCode.cc:208
 msgid "Cape Verde"
 msgstr "Kap Verde"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "karibi"
-
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "katalaani"
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Joulusaari"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "kaukasialaiset (muut)"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Kypros"
 
-# FO
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Caymansaaret"
+# CZ
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Tšekki"
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "cebuano"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Saksa"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "kelttiläiset (muut)"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
 
-# CF
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Keski-Afrikan tasavalta"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Tanska"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Keski-Amerikan intiaanikielet (muut)"
+# DM
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
 
-# TD
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Tshad"
+# DO
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikaaninen tasavalta"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "tšagatai"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algeria"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "cham-kielet"
+# EC
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "chamorro"
+# EE
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Viro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Muunnettiin paketin %s asetustiedostoja:"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egypti"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "tšetšeeni"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Länsi-Sahara"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "cherokee"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "cheyenne"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Espanja"
 
-# CN
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "chibcha"
+# ET
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopia"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "nyanja"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Suomi"
 
-# CL
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
-
-# CN
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Kiina"
-
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "kiina"
-
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "chinook jargon"
-
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "chipewyan"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidži"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "choctaw"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falklandinsaaret"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Joulusaari"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Mikronesia"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "kirkkoslaavi"
+# FO
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Färsaaret"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "chuuk"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Ranska"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "tšuvassi"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Metropolitan France"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "klassinen newari"
+# GH
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Kookossaaret"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Iso-Britannia"
 
-# CO
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolumbia"
+# GD
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Komento päättyi tilaan %d."
+# GE
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgia"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Komento päättyi tuntemattomaan virheeseen."
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Ranskan Guayana"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Komento lopetettiin signaalilla %d (%s)."
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Komorit"
+# GH
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Ristiriidat"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+# GL
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grönlanti"
 
-# FO
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cookinsaaret"
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "kopti"
+# GU
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "korni"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "korsika"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Päiväntasaajan Guinea"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Kreikka"
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Norsunluurannikko"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Etelä-Georgia ja Eteläiset Sandwichsaaret"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "cree"
+# GT
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "creek"
+# GU
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "kreolit ja pidginit (muut)"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "kreolit ja pidginit, englantiin perustuvat (muut)"
+# GH
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "kreolit ja pidginit, ranskaan perustuvat (muut)"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "kreolit ja pidginit, portugaliin perustuvat (muut)"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heard ja McDonaldinsaaret"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "krimintataari"
+# HN
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
 
 # HR
 #. :HND:340:
@@ -1120,557 +1184,1505 @@ msgstr "krimintataari"
 msgid "Croatia"
 msgstr "Kroatia"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "kroatia"
-
-# CU
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuuba"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr "kuušilaiset (muut)"
+# HU
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Unkari"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Kypros"
+# ID
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesia"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "tšekki"
+# IE
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irlanti"
 
-# CZ
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Tšekki"
+# IL
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "dakota"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Mansaari"
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "tanska"
+# IN
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Intia"
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr "dargva"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Brittiläinen Intian valtameren alue"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr "dayak"
+# IQ
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "delaware"
+# IR
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Tanska"
+# IS
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islanti"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "dinka"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italia"
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "divehi"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
+# JM
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaika"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "dogri"
+# JO
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordania"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "dogrib"
+# JP
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japani"
 
-# DM
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenia"
 
-# DO
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikaaninen tasavalta"
+# KZ
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgisia"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Latausvirhe (curl) %s:\n"
-"Virhekoodi: %s\n"
-"viesti: %s\n"
+# KH
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodzha"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Lataajan (curl) alustus osoitteelle \"%s\" epäonnistui"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "dravidakielet (muut)"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Komorit"
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "duala"
+# KN
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts ja Nevis"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Virheellinen tyyppi \"%s\" tavulle %u, tarkistussumma: \"%s\""
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Pohjois-Korea"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "hollanti"
+# ZA
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Etelä-Korea"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "hollanti, keski- (noin 1050 - 1350)"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr "dyula"
+# FO
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Caymansaaret"
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "dzongkha"
+# KZ
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazakstan"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Itä-Timor"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Laos"
 
-# EC
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "efik"
+# LC
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egypti"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "muinaisegypti"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "ekajuk"
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
 
-# SV
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "elam"
+# LT
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Liettua"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Tyhjä kohde URI-osoitteessa"
+# LU
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxemburg"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Tyhjä tiedostojärjestelmä URI-osoitteessa"
+# LV
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latvia"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Tyhjä konenimi URI-osoitteessa"
+# LR
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libya"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Koodattu merkkijono sisältää NUL-tavun"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marokko"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "englanti"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "englanti, keski- (1100 - 1500)"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "englanti, muinais- (noin 450 - 1100)"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Parannukset"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Saint Martin"
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Päiväntasaajan Guinea"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
+# FO
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshallinsaaret"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "Virhe asetettaessa lataajan (curl) valintoja osoitteelle \"%s\"."
+# MK
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonia"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Virhe lähetettäessä päivityshuomautusta."
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Virhe luettaessa \"%s\""
+# MM
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
 
-# SY
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "ersä"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolia"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "esperanto"
+# MO
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
 
-# EE
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Viro"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Pohjois-Mariaanit"
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "viro"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
 
-# ET
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopia"
+# MR
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritania"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "ewe"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "ewondo"
+# MT
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Virhe asennuslähteen puskuroinnissa (%d)."
+# MU
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Avaimen poisto epäonnistui."
+# MV
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Malediivit"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Avaimen tuonti tiedostosta %s epäonnistui: %s"
+# MW
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+# MX
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Meksiko"
+
+# MY
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malesia"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mosambik"
+
+# GM
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+# NC
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Uusi-Kaledonia"
+
+# NG
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+# FO
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolkinsaari"
+
+# NG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+# NI
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+# NL
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Alankomaat"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norja"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+# NZ
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Uusi-Seelanti"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+# PA
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+# PE
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Ranskan Polynesia"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua-Uusi-Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filippiinit"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+# PL
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Puola"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint-Pierre ja Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestiina"
+
+# PT
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugali"
+
+# PW
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+# PY
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+# QA
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Réunion"
+
+# RO
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romania"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "serbia"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Venäjä"
+
+# RW
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudi-Arabia"
+
+# FO
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Salomonsaaret"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychellit"
+
+# SD
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Ruotsi"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapore"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Saint Helena"
+
+# SI
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenia"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Huippuvuoret ja Jan Mayen"
+
+# SK
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovakia"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+# SO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
+
+# SY
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "São Tomé ja Príncipe"
+
+# SV
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+# SY
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Syyria"
+
+# SZ
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swazimaa"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks- ja Caicossaaret"
+
+# TD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Tshad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Ranskan eteläiset alueet"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+# TH
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thaimaa"
+
+# TJ
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadzhikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "tokelau"
+
+# TJ
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+# TN
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisia"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Itä-Timor"
+
+# TR
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turkki"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad ja Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "tuvalu"
+
+# TW
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tansania"
+
+# UA
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraina"
+
+# UG
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+# UM
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Yhdysvaltain pienet erillissaaret"
+
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Yhdysvallat"
+
+# UY
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Pyhä istuin (Vatikaani)"
+
+# VC
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Saint Vincent ja Grenadiinit"
+
+# VE
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+# VI
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Brittiläiset Neitsytsaaret"
+
+# VI
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Yhdysvaltain Neitsytsaaret"
+
+# VN
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis ja Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+# ZA
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Etelä-Afrikka"
+
+# ZM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Sambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Tuntematon kieli: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "afar"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "abhaasi"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "aceh"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "adyghe"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "afroaasialaiset (muut)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "afrihili"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "afrikaans"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "ainu"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "akan"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "akkadi"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "albania"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "aleutti"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "algonkin-kielet"
+
+# ZA
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "altai, etelä-"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "amhara"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "englanti, muinais- (noin 450 - 1100)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "apaššikielet "
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "arabia"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "aramea"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "aragonia"
+
+# AM
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "armenia"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "araukaani"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "arapaho"
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "keinotekoiset (muut)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "arawak"
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "assami"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "asturia"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "athabasca-kielet"
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "australialaiset kielet"
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "avaari"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "avesta"
+
+# SZ
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "awadhi"
+
+# MM
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "aymara"
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "azeri"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "banda"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "bamileke-kielet"
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "baškiiri"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "belutši"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "bambara"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "bali"
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "baski"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "balttilaiset (muut)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "beja"
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "valkovenäjä"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "bemba"
+
+# BZ
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "bengali"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "berberikielet (muut)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "bhojpuri"
+
+# BH
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "bihari"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "bikol"
+
+# IN
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "bini"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "bislama"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "mustajalka"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "bantukielet (muut)"
+
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "bosnia"
+
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "braj"
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "bretoni"
+
+# ID
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "batak"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "burjaatti"
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "bugi"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "bulgaria"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "burma"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "blin"
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "caddo"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Keski-Amerikan intiaanikielet (muut)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "karibi"
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "katalaani"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "kaukasialaiset (muut)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "cebuano"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "kelttiläiset (muut)"
+
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "chamorro"
+
+# CN
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "chibcha"
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "tšetšeeni"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "tšagatai"
+
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "kiina"
+
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "chuuk"
+
+# ML
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "mari"
+
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "chinook jargon"
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "choctaw"
+
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "chipewyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "cherokee"
+
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "kirkkoslaavi"
+
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "tšuvassi"
+
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "cheyenne"
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "cham-kielet"
+
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "kopti"
+
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "korni"
+
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "korsika"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr "kreolit ja pidginit, englantiin perustuvat (muut)"
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr "kreolit ja pidginit, ranskaan perustuvat (muut)"
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr "kreolit ja pidginit, portugaliin perustuvat (muut)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "cree"
+
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "krimintataari"
+
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "kreolit ja pidginit (muut)"
+
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "kašubi"
+
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr "kuušilaiset (muut)"
+
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "tšekki"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "dakota"
+
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "tanska"
+
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr "dargva"
+
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr "dayak"
+
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "delaware"
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "%s liittäminen liitospisteeseen %s epäonnistui"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "slave"
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Virhe noudettaessa pakettia %s. Yritetäänkö uudelleen?"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "dogrib"
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Hakemiston \"%s\" lukeminen ei onnistu"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "dinka"
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Julkisen avaimen %s poisto epäonnistui: %s"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "divehi"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Virhe irrotettaessa %s"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "dogri"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandinsaaret"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "dravidakielet (muut)"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "fang"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "alasorbi"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "fanti"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "duala"
 
-# FO
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Färsaaret"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "hollanti, keski- (noin 1050 - 1350)"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "fääri"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "hollanti"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Mikronesia"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
+msgstr "dyula"
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidži"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "dzongkha"
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "fidži"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "efik"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Tiedosto %1%\n"
-"  asennuksesta\n"
-"     %2%\n"
-"  on ristiriidassa tiedoston\n"
-"     %3%\n"
-"  asennuksesta\n"
-"     %4%"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "muinaisegypti"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Tiedosto %1%\n"
-"  asennuksesta\n"
-"     %2%\n"
-"  on ristiriidassa tiedoston\n"
-"      %3%\n"
-"  paketista\n"
-"     %4%"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "ekajuk"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Tiedosto %1%\n"
-"  asennuksesta\n"
-"    %2%\n"
-"  on ristiriidassa tiedoston asennuksesta\n"
-"    %3%"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "elam"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Tiedosto %1%\n"
-"  asennuksesta\n"
-"    %2%\n"
-"  on ristiriidassa tiedoston kanssa joka kuuluu pakettiin\n"
-"    %3%"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "englanti"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Tiedosto %1%\n"
-"  paketista\n"
-"     %2%\n"
-"  on ristiriidassa tiedoston\n"
-"     %3%\n"
-"  asennettavasta paketista\n"
-"     %4%"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "englanti, keski- (1100 - 1500)"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Tiedosto %1%\n"
-"  paketista\n"
-"     %2%\n"
-"  on ristriidassa tiedoston\n"
-"     %3%\n"
-"  paketista\n"
-"     %4%"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "esperanto"
+
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "viro"
+
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "ewe"
+
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "ewondo"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Tiedosto %1%\n"
-"  paketista\n"
-"     %2%\n"
-"  on ristiriidassa tiedoston kanssa joka kuuluu asennukseen\n"
-"      %3%"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "fang"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Tiedosto %1%\n"
-"  paketista\n"
-"     %2%\n"
-"  on ristiriidassa tiedoston kanssa joka kuuluu pakettiin\n"
-"     %3%"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "fääri"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Tiedostoa \"%s\" ei löydy tietovälineeltä \"%s\""
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "fanti"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "fidži"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "filippiini"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Suomi"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1681,40 +2693,16 @@ msgstr "suomi"
 msgid "Finno-Ugrian (Other)"
 msgstr "suomalais-ugrilaiset (muut)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Tehdään seuraavat toiminnot:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Ranska"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "ranska"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Ranskan Guayana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Ranskan Polynesia"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Ranskan eteläiset alueet"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1731,52 +2719,23 @@ msgstr "ranska, muinais- (842 - 1400)"
 msgid "Frisian"
 msgstr "friisi"
 
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
+msgstr "fulani"
+
 # FR
 #. language code: fur
 #: zypp/LanguageCode.cc:457
 msgid "Friulian"
 msgstr "friuli"
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
-msgstr "fulani"
-
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "gã"
 
 # GH
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-# ML
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "gaeli"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "galicia"
-
-# GM
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-# GH
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "ganda"
-
-# GH
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1787,16 +2746,10 @@ msgstr "gayo"
 msgid "Gbaya"
 msgstr "gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "ge'ez"
-
-# GE
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "germaaniset (muut)"
 
 # GE
 #. language code: geo kat ka
@@ -1809,6 +2762,37 @@ msgstr "georgia"
 msgid "German"
 msgstr "saksa"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "ge'ez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "kiribati"
+
+# ML
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "gaeli"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "iiri"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "galicia"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1819,31 +2803,6 @@ msgstr "saksa, keskiylä- (noin 1050 - 1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "saksa, muinaisylä- (noin 750 - 1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "germaaniset (muut)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Saksa"
-
-# GH
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "kiribati"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1864,11 +2823,6 @@ msgstr "gootti"
 msgid "Grebo"
 msgstr "grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Kreikka"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1879,67 +2833,16 @@ msgstr "kreikka, muinais- (ennen 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "kreikka (jälkeen 1453)"
 
-# GL
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grönlanti"
-
-# GD
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-# GU
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "guarani"
 
-# GT
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-# GU
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "gujarati"
 
-# GH
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1947,55 +2850,24 @@ msgstr "gwich'in"
 
 #. language code: hai
 #: zypp/LanguageCode.cc:511
-msgid "Haida"
-msgstr "haida"
-
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
+msgid "Haida"
+msgstr "haida"
 
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "haiti"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal-poikkeus"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "Hal-yhteyden muodostus ei onnistunut"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "Hal-asemaa ei ole alustettu"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "Hal-taltioa ei alustettu"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Oletko ottanut käyttöön kaikki pyydetyt asennuslähteet?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "havaiji"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heard ja McDonaldinsaaret"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -2022,16 +2894,6 @@ msgstr "himachali"
 msgid "Hindi"
 msgstr "hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "hiri-motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Historia:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -2042,33 +2904,21 @@ msgstr "heetti"
 msgid "Hmong"
 msgstr "hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Pyhä istuin (Vatikaani)"
-
-# HN
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "hiri-motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "yläsorbi"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "unkari"
 
-# HU
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Unkari"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2080,11 +2930,10 @@ msgstr "hupa"
 msgid "Iban"
 msgstr "iban"
 
-# IS
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islanti"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2096,261 +2945,107 @@ msgstr "islanti"
 msgid "Ido"
 msgstr "ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "igbo"
+# LT
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "sichuanin-yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "saame, inarin-"
-
-# IN
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Intia"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "interlingua"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "indoarjalaiset (muut)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "indoeurooppalaiset (muut)"
-
-# ID
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesia"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "indonesia"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "indoeurooppalaiset (muut)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "inguuši"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Asennus keskeytettiin."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "interlingua"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "inuktitut"
-
 # IN
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "iñupiak"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Virheellinen %s-komponentti"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Virheellinen %s-komponentti \"%s\""
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Virheellinen LDAP URL -parametri: \"%s\""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Virheellinen LDAP URL -kysely"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Virheellinen verkko-osoite: \"%s\""
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Virheellinen viittaus tyhjään URL-objektiin"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Virheellinen konenimi: \"%s\""
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Virheellinen parametritaulukon liitoksen erotin"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Virheellinen parametritaulukon jaon erotin"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Virheellinen parametrikartan jaon erotin"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Virheellinen porttimääritys: \"%s\""
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Virhe säännöllisessä lausekkeessa \"%s\""
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Virhe säännöllisessä lausekkeessa \"%s\": regcomp palautti %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Virheellinen asennuslähteen tiedostonimi \"%s\""
-
-# IR
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "iranilaiset (muut)"
 
-# IQ
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-# IE
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irlanti"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "iiri"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "iiri, keski- (900 - 1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "iiri, muinais- (ennen 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
-msgid "Iroquoian Languages"
-msgstr "irokeesikielet"
-
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Mansaari"
-
-# IL
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
+msgid "Iroquoian Languages"
+msgstr "irokeesikielet"
 
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "italia"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italia"
-
-# JM
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaika"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "jaava"
 
-# JP
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japani"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "japani"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "jaava"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-# JO
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordania"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "juutalaispersia"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "juutalaisarabia"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "juutalaispersia"
-
-# MR
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "kabardi"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "karakalpakki"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2367,11 +3062,6 @@ msgstr "kachin"
 msgid "Kalaallisut"
 msgstr "kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "kalmukki"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2383,21 +3073,6 @@ msgstr "kamba"
 msgid "Kannada"
 msgstr "kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "karakalpakki"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "karatšai-balkaari"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2408,10 +3083,10 @@ msgstr "karen"
 msgid "Kashmiri"
 msgstr "kashmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "kašubi"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2424,32 +3099,27 @@ msgstr "kavi"
 msgid "Kazakh"
 msgstr "kazakki"
 
-# KZ
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazakstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenia"
+# MR
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "kabardi"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "khoisan-kielet (muut)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2460,11 +3130,6 @@ msgstr "khotani"
 msgid "Kikuyu"
 msgstr "kikuju"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2475,15 +3140,15 @@ msgstr "ruanda"
 msgid "Kirghiz"
 msgstr "kirgiisi"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2495,11 +3160,6 @@ msgstr "komi"
 msgid "Kongo"
 msgstr "kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2515,11 +3175,21 @@ msgstr "kosrae"
 msgid "Kpelle"
 msgstr "kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "karatšai-balkaari"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "kru-kielet"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "kurukh"
+
 # PA
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
@@ -2536,27 +3206,11 @@ msgstr "kumykki"
 msgid "Kurdish"
 msgstr "kurdi"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-# KZ
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgisia"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2577,71 +3231,21 @@ msgstr "lamba"
 msgid "Lao"
 msgstr "lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Laos"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "latina"
 
-# LV
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latvia"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "latvia"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "1. Taso"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "2. Taso"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "3. Taso"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "lezgi"
 
-# LR
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-# LR
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libya"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2652,63 +3256,48 @@ msgstr "limburg"
 msgid "Lingala"
 msgstr "lingala"
 
-# LT
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Liettua"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "liettua"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "\"%s\" ei ole hetkellisesti saatavilla."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "alasaksa"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "alasorbi"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "luba (Katanga)"
+# LU
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "luxemburg"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "luba (Lulua)"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "luba (Katanga)"
+
+# GH
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "luiseño"
 
-# ES
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "saame, luulajan-"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2724,39 +3313,11 @@ msgstr "luo (Kenia ja Tansania)"
 msgid "Lushai"
 msgstr "lushai"
 
-# LU
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxemburg"
-
-# LU
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "luxemburg"
-
-# MO
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-# MK
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "makedonia"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2768,6 +3329,11 @@ msgstr "madura"
 msgid "Magahi"
 msgstr "magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "marshall"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2779,197 +3345,65 @@ msgid "Makasar"
 msgstr "makassar"
 
 # MY
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "malagassi"
-
-# MW
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-# MT
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "malaiji"
-
-# MY
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "malayalam"
 
-# MY
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malesia"
-
-# MV
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Malediivit"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Virheellisesti muotoiltu URI-osoite"
-
-# ML
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-# MT
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-# MV
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "malta"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "mantšu"
-
-# MM
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "mandar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "mandingo"
 
 # ML
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "manobo-kielet"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "manx"
-
-# ML
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "austronesialaiset (muut)"
+
 # MU
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "marathi"
 
-# ML
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "mari"
-
-# FO
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshallinsaaret"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "marshall"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-# MU
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "marwari"
-
 # MW
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "maasai"
 
-# MR
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritania"
-
-# MU
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "maya-kielet"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "\"%s\" ei sisällä haluttua tietolähdettä"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Tietolähde \"%s\" on varattu"
+# MT
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "malaiji"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Tietolähdettä ei ole liitetty"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "mokša"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Tietolähdettä ei avattu suoritettaessa \"%s\"."
+# MM
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Metropolitan France"
-
-# MX
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Meksiko"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "iiri, keski- (900 - 1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2981,87 +3415,64 @@ msgstr "micmac"
 msgid "Minangkabau"
 msgstr "minangkabau"
 
-# MV
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "mirandi"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "luokittelemattomat kielet"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "mon-khmer-kielet (muut)"
+
+# MY
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "malagassi"
+
+# MV
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "malta"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "mantšu"
+
+# ML
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "manobo-kielet"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "mokša"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "moldavia"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "mon-khmer-kielet (muut)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolia"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "mongoli"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marokko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mosambik"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -3072,64 +3483,75 @@ msgstr "monia kieliä"
 msgid "Munda languages"
 msgstr "mundakielet"
 
-# MM
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "creek"
+
+# MV
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "mirandi"
+
+# MU
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "maya-kielet"
+
+# SY
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "ersä"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "nahuatl"
 
-# GM
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+# ZA
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Pohjois-Amerikan intiaanikielet"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "nauru"
+# ML
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "napoli"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "ndebele, pohjois-"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "ndebele, etelä-"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "ndebele, pohjois-"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "ndonga"
 
-# ML
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "napoli"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "newari"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "alasaksa"
 
 # ML
 #. language code: nep ne
@@ -3137,158 +3559,71 @@ msgstr "newari"
 msgid "Nepali"
 msgstr "nepali"
 
-# NL
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Alankomaat"
-
-# AN
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Alankomaiden Antillit"
-
-# NC
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Uusi-Kaledonia"
-
-# NZ
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Uusi-Seelanti"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Uusi päivitysviesti"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "newari"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "nias"
 
-# NI
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-# NG
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "nigeriläis-kongolaiset (Muut)"
 
-# NG
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "niililäis-saharalaiset (muut)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
-#. language code: niu
-#: zypp/LanguageCode.cc:801
-msgid "Niuean"
-msgstr "niue"
-
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Ei koodia"
-
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Asennuslähteen verkko-osoite puuttuu."
-
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
-msgstr "nogai"
-
-# FO
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolkinsaari"
-
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
-msgstr "norja, muinais-"
-
-# ZA
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Pohjois-Amerikan intiaanikielet"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Pohjois-Korea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Pohjois-Mariaanit"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "saame, pohjois-"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "sotho, pohjois-"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norja"
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+msgid "Niuean"
+msgstr "niue"
 
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
-msgstr "norja"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "norja (uusnorja)"
 
 #. language code: nob nb
 #: zypp/LanguageCode.cc:805
 msgid "Norwegian Bokmal"
 msgstr "norja (kirjanorja)"
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "norja (uusnorja)"
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
+msgstr "nogai"
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Kohde ei ole CD-asema"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
+msgstr "norja, muinais-"
+
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
+msgstr "norja"
+
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "sotho, pohjois-"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "nubialaiset kielet"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "klassinen newari"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "nyanja"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3309,10 +3644,6 @@ msgstr "nyoro"
 msgid "Nzima"
 msgstr "nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Vanhentuneet"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3323,20 +3654,6 @@ msgstr "oksitaani"
 msgid "Ojibwa"
 msgstr "ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Tarvitaan joko %s tai %s -attribuutti."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Tietoväline ei tue toimintoa"
-
 # SY
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
@@ -3358,18 +3675,25 @@ msgstr "osage"
 msgid "Ossetian"
 msgstr "osseetti"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "osmani"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "otomi-kielet"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr "Paketti %s näyttää vioittuneen siirron aikana. Yritetäänkö uudelleen?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "papualaiset (muut)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "pangasinan"
 
 # ML
 #. language code: pal
@@ -3377,34 +3701,6 @@ msgstr "Paketti %s näyttää vioittuneen siirron aikana. Yritetäänkö uudelle
 msgid "Pahlavi"
 msgstr "pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-# PW
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-# PW
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "palau"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestiina"
-
-# ML
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "paali"
-
 # PY
 #. language code: pam
 #: zypp/LanguageCode.cc:851
@@ -3412,17 +3708,6 @@ msgid "Pampanga"
 msgstr "pampanga"
 
 # PA
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "pangasinan"
-
-# PA
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3433,191 +3718,73 @@ msgstr "panjabi"
 msgid "Papiamento"
 msgstr "papiamentu"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua-Uusi-Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "papualaiset (muut)"
-
-# PY
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Polku \"%s\" tietovälineellä \"%s\" ei ole hakemisto."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Polku \"%s\" tietovälineellä \"%s\" ei ole tiedosto."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Pääsy evätty kohteeseen \"%s\"."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "farsi"
+# PW
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "palau"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "persia, muinais- (noin 600 - 400 eKr.)"
 
-# PE
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "farsi"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "filippiiniläiset (muut)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filippiinit"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "foinikia"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Asenna 'lsof' paketti ensiksi."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "pohnpei"
-
-# PL
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Puola"
+# ML
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "paali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "puola"
 
-# PT
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugali"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "pohnpei"
 
 #. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
-msgstr "portugali"
-
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
-msgstr "prakrit-kielet"
-
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Edellytykset"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Ongelman määrittäminen, mikä tarkoittaa teknistä tukea, joka tarjoaa "
-"yhteensopivuustietoja, asennustukea, käyttötukea, huoltoa ja perustason "
-"ongelmanratkaisua. 1. tason tukea ei ole tarkoitettu korjaamaan tuotteen "
-"puutteista johtuvia virheitä."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Ongelman eristäminen, mikä tarkoittaa teknistä tukea, joka tähtää asiakkaan "
-"ongelmien toistamiseen, ongelma-alueen eristämiseen ja tarjoaa ratkaisuja "
-"ongelmille, joita 1. tason tuki ei ratkaissut."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Ongelman ratkaiseminen, mikä tarkoittaa monimutkaisten ongelmien "
-"ratkaisemiseen tarkoitettua teknistä tukea. Insinöörit korjaavat tuotteen "
-"vikoja, jotka 2. tason tuki on tunnistanut."
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
+msgstr "portugali"
+
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
+msgstr "prakrit-kielet"
 
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "provensaali, muinais- (ennen 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Tarjoaa"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "pašto"
 
-# QA
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Tämän verkko-osoitteen jäsentäminen kyselyksi ei ole tuettu"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM-virhe: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "retoromaani"
-
 # KZ
 #. language code: raj
 #: zypp/LanguageCode.cc:885
@@ -3635,54 +3802,15 @@ msgstr "rapanui"
 msgid "Rarotongan"
 msgstr "rarotonga"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Suosittelee"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-"Suhteellisen polun määrittäminen ei ole sallittua, jos valtuuttaja on "
-"määritetty"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Poistetaan asennuslähdettä \"%s\""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Asennuslähteen alias ei voi alkaa pisteellä."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Vaadittu ominaisuus \"%s\" puuttuu."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Vaatii"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Réunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "romaaniset (muut)"
 
-# RO
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romania"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "romania"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "retoromaani"
 
 # RO
 #. language code: rom
@@ -3690,6 +3818,11 @@ msgstr "romania"
 msgid "Romany"
 msgstr "romani"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "romania"
+
 # IN
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
@@ -3701,47 +3834,27 @@ msgstr "rundi"
 msgid "Russian"
 msgstr "venäjä"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Venäjä"
-
-# RW
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Saint Helena"
-
-# KN
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts ja Nevis"
-
-# LC
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+# SD
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "sandawe"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint Martin"
+# SD
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "sango"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint-Pierre ja Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "jakuutti"
 
-# VC
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent ja Grenadiinit"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Etelä-Amerikan intiaanikielet (muut)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3753,226 +3866,85 @@ msgstr "sališilaiset kielet"
 msgid "Samaritan Aramaic"
 msgstr "samarianaramea"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "saamelaiskielet (muut)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "samoa"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-# SD
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "sandawe"
-
-# SD
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "sango"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "sanskrit"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "santali"
-
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "São Tomé ja Príncipe"
-
-# MR
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "sardi"
-
 #. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "sasak"
-
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudi-Arabia"
-
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "skotti"
-
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "selkuppi"
-
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "seemiläiset kielet (muut)"
-
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "serbia"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "serbia"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "serer"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Palvelun alias ei voi alkaa pisteellä."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "Palvelu-lisäosa ei tue ominaisuuksien muutosta."
-
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychellit"
-
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "shan"
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "sasak"
 
-# SI
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "shona"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "santali"
 
-# LT
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "sichuanin-yi"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "serbia"
 
 #. language code: scn
 #: zypp/LanguageCode.cc:927
 msgid "Sicilian"
 msgstr "sisilia"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "sidamo"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "skotti"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "kroatia"
+
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "selkuppi"
+
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "seemiläiset kielet (muut)"
+
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "iiri, muinais- (ennen 900)"
 
 #. language code: sgn
 #: zypp/LanguageCode.cc:941
 msgid "Sign Languages"
 msgstr "viittomakielet"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "Allekirjoitustiedostoa %s ei löydetty"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Allekirjoitustiedostoa %s ei löydetty"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "Allekirjoitustiedostoa %s ei löydetty"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "Allekirjoitustiedostoa %s ei löydetty"
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr " suoritus epäonnistui"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "mustajalka"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "sindhi"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "shan"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapore"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "sidamo"
 
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "sinhali"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "sinotiibetiläiset (muut)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "sioux-kielet"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "saame, koltan-"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "slave"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "sinotiibetiläiset (muut)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3984,163 +3956,131 @@ msgstr "slaavilaiset (muut)"
 msgid "Slovak"
 msgstr "slovakki"
 
-# SK
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovakia"
-
-# SI
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenia"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "sloveeni"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "saame, etelä-"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "saame, pohjois-"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "saamelaiskielet (muut)"
+
+# ES
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "saame, luulajan-"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "saame, inarin-"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "samoa"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "saame, koltan-"
+
+# SI
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "shona"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "sindhi"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "soninke"
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "sogdi"
 
-# FO
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Salomonsaaret"
-
 # SO
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "somali"
 
-# SO
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "songhai"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "sorbin kielet"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Tämä versio libzypp-kirjastosta on käännetty ilman HAL-tukea."
-
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "sotho, etelä-"
-
-# ZA
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Etelä-Afrikka"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Etelä-Amerikan intiaanikielet (muut)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Etelä-Georgia ja Eteläiset Sandwichsaaret"
-
-# ZA
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Etelä-Korea"
-
-# ZA
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "altai, etelä-"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "saame, etelä-"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Espanja"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "sotho, etelä-"
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "espanja"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+# MR
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "sardi"
 
-# SD
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Ehdottaa"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "niililäis-saharalaiset (muut)"
+
+# ES
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "swazi"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "sumeri"
-
 # SD
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "sunda"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Täydentää"
-
-# SY
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Huippuvuoret ja Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "sumeri"
 
 # SZ
 #. language code: swa sw
@@ -4148,65 +4088,17 @@ msgstr "Huippuvuoret ja Jan Mayen"
 msgid "Swahili"
 msgstr "swahili"
 
-# ES
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "swazi"
-
-# SZ
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swazimaa"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Ruotsi"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "ruotsi"
 
-# CH
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Sveitsi"
-
-# SY
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Syyria"
-
 # SY
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "syyria"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Järjestelmäpoikkeus \"%s\" tietovälineellä \"%s\"."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Prosessi %d (%s) on lukinnut järjestelmänhallinnan. \n"
-"Sulje ohjelma ennen uutta yritystä."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4217,39 +4109,11 @@ msgstr "tahiti"
 msgid "Tai (Other)"
 msgstr "thaikielet (muut)"
 
-# TW
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-# TJ
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "tadžikki"
-
-# TJ
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadzhikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "tamashek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tansania"
-
 # QA
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
@@ -4262,6 +4126,11 @@ msgstr "tataari"
 msgid "Telugu"
 msgstr "telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "temne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4272,34 +4141,22 @@ msgstr "tereno"
 msgid "Tetum"
 msgstr "tetum"
 
+# TJ
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "tadžikki"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "thai"
 
-# TH
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thaimaa"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Tuen tasoa ei ole määritetty"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Myyjä ei tarjoa tukea."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Jokin toinen ohjelma suorittaa tätä toimintoa."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Tämä pyyntö rikkoo järjestelmän!"
-
 # TW
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
@@ -4317,46 +4174,25 @@ msgstr "tigre"
 msgid "Tigrinya"
 msgstr "tigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Aikakatkaisu avattaessa \"%s\"."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "temne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "klingon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "tok-pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4369,18 +4205,10 @@ msgstr "tonga (Malawi)"
 msgid "Tonga (Tonga Islands)"
 msgstr "tonga (Tonga)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-"Yritettiin lisätä avain %s avainrenkaaseen %s, mutta tiedostoa ei löydetty"
-
-# TT
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad ja Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "tok-pisin"
 
 # FR
 #. language code: tsi
@@ -4388,72 +4216,48 @@ msgstr "Trinidad ja Tobago"
 msgid "Tsimshian"
 msgstr "tsimshian"
 
+# TW
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "tswana"
+
 # EE
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "tsonga"
 
-# TW
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "tswana"
+# TR
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "turkmeeni"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "tumbuka"
 
-# TN
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisia"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "tupi-kielet"
 
-# TR
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turkki"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "turkki"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "osmani"
-
-# TR
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "turkmeeni"
-
-# TJ
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks- ja Caicossaaret"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "altailaiset (muut)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "twi"
 
 # TN
 #. language code: tyv
@@ -4461,22 +4265,11 @@ msgstr "tuvalu"
 msgid "Tuvinian"
 msgstr "tuva"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "twi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "udmurtti"
 
-# UG
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4488,12 +4281,6 @@ msgid "Uighur"
 msgstr "uiguuri"
 
 # UA
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraina"
-
-# UA
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4504,217 +4291,36 @@ msgstr "ukraina"
 msgid "Umbundu"
 msgstr "umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Verkko-osoite-objektin kahdentaminen ei onnistunut"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "dbus-yhteyden luonti epäonnistui"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "HAL-yhteyden alustus ei onnistu. Varmista, että \"hald\" on käynnissä."
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Verkko-osoitteen jäsentäminen ei onnistu."
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "määrittämätön"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Virheellinen asennuslähteen tyyppi"
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Arabiemiirikunnat"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Iso-Britannia"
-
-# US
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Yhdysvallat"
-
-# UM
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Yhdysvaltain pienet erillissaaret"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Tuntematon maa: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Tuntematon virhe luettaessa \"%s\""
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Tuntematon kieli: "
-
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Tuntematon tila \"%s\""
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Tuntematon tila \"%s\" hakulauseelle \"%s\""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr "Tuntematon palvelu '%1%': Poistetaan orpo palvelulähde '%2%'"
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Tuntematon tukivaihtoehto. Kuvausta ei ole saatavilla."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "HTTP-tunnistautumistapa \"%s\" ei ole tuettu"
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Virheellinen verkko-osoite: \"%s\"."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "yläsorbi"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "urdu"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Ei sallittu verkko-osoite: %s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Verkko-osoite ei salli konenimeä"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Verkko-osoite ei salli salasanaa"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Verkko-osoite ei salli portin määritystä"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Verkko-osoite ei salli käyttäjänimeä"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Verkko-osoite on pakollinen"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Verkko-osoite edellyttää konenimen"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Verkko-osoite edellyttää polun määrittämistä"
-
-# UY
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "uzbekki"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "vai"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-#, fuzzy
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "Annetuista verkko-osoitteista ei löytynyt kelpaavia metatietoja"
-msgstr[1] "Annetuista verkko-osoitteista ei löytynyt kelpaavia metatietoja"
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "venda"
 
-# VE
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-# VN
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "vietnam"
 
-# VI
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Yhdysvaltain Neitsytsaaret"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Vieraile Novellin asiakaskeskuksessa tarkastamassa onko rekisteröintisi "
-"voimassa ja ettei se ole vanhentunut."
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4735,16 +4341,6 @@ msgstr "wakash-kielet"
 msgid "Walamo"
 msgstr "walamo"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis ja Futuna"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "valloni"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4760,26 +4356,31 @@ msgstr "washo"
 msgid "Welsh"
 msgstr "kymri"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Länsi-Sahara"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "sorbin kielet"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "valloni"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "wolof"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "kalmukki"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "xhosa"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "jakuutti"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4790,11 +4391,6 @@ msgstr "yao"
 msgid "Yapese"
 msgstr "yap"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
-
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
 msgid "Yiddish"
@@ -4811,17 +4407,6 @@ msgstr "joruba"
 msgid "Yupik Languages"
 msgstr "jupikkikielet"
 
-# ZM
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Sambia"
-
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "zande"
-
 #. language code: zap
 #: zypp/LanguageCode.cc:1139
 msgid "Zapotec"
@@ -4833,249 +4418,667 @@ msgstr "sapoteekki"
 msgid "Zenaga"
 msgstr "zenaga"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "zhuang"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "zhuang"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "zande"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "zuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+"Yritettiin lisätä avain %s avainrenkaaseen %s, mutta tiedostoa ei löydetty"
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Avaimen poisto epäonnistui."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Allekirjoitustiedostoa %s ei löydetty"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Tiedoston \"%s\" nouto asennuslähteestä \"%s\" ei onnistu"
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Asennuslähteen verkko-osoite puuttuu."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "Palvelu-lisäosa ei tue ominaisuuksien muutosta."
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr "Paketti %s näyttää vioittuneen siirron aikana. Yritetäänkö uudelleen?"
+
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr " suoritus epäonnistui"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Virhe noudettaessa pakettia %s. Yritetäänkö uudelleen?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm-tarkistus epäonnistui."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm epäonnistui."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"Prosessi %d (%s) on lukinnut järjestelmänhallinnan. \n"
+"Sulje ohjelma ennen uutta yritystä."
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s ei kuulu jakeluversion päivitysasennuslähteeseen"
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s on alempaa arkkitehtuuria"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "virhe asennettaessa pakettia %s"
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "ristiriitaiset kyselyt"
+
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "jokin riippuvuusongelma"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "Mikään ei tarjoa pyydettyä %s"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Oletko ottanut käyttöön kaikki pyydetyt asennuslähteet?"
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "pakettia %s ei ole olemassa"
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "pyyntöä ei tueta"
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s on järjestelmän tarjoama ja sitä ei voi poistaa"
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s ei ole asennettavissa"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "mikään ei tarjoa %s, jota %s tarvitsee"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Ei voida asentaa molempia %s ja %s"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s on ristiriidassa %s (%s) kanssa"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s vanhentaa %s (%s)"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "asennettu %s vanhentaa %s (%s)"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s on ristiriidassa itsensä kanssa (%s)"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s tarvitsee %s, mutta sen asentaminen ei onnistu"
+
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "poistetut tarjoajat: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"Poistettavissa olevat tarjoajat: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "poistetut tarjoajat: "
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "älä asenna %s"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "pidä %s"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "Älä estä %s asentamista"
+
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Tämä pyyntö rikkoo järjestelmän!"
+
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ohita varoitus rikkinäisestä järjestelmästä"
+
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "älä kysy asennettaessa paketteja, jotka tuo %s"
+
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "älä kysy poistettaessa paketteja, jotka tuo %s"
+
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "älä asenna uusinta %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "Pidä %s vaikka se on alempaa arkkitehtuuria"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "zulu"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "asenna %s vaikka se on alempaa arkkitehtuuria"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "zuni"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "pidä vanhentunut %s"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm-tarkistus epäonnistui."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "Asennetaan %s poisjätetystä asennuslähteestä"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm epäonnistui."
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "päivitetään vanhempaan %s -> %s"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr "arkkitehtuurin vaihto %s -> %s"
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"asenna %s (vaihtaa tarjoajaa)\n"
+"  %s --> %s"
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "Korvataan %s -> %s"
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "poista %s"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "jätä %s riippuvuuksia huomioimatta"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "jätä joitakin vaatimuksia huomiotta"
+
+#: zypp/parser/RepoindexFileReader.cc:197
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Ei voida asentaa molempia %s ja %s"
+msgid "Required attribute '%s' is missing."
+msgstr "Vaadittu ominaisuus \"%s\" puuttuu."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "ristiriitaiset kyselyt"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Tarvitaan joko %s tai %s -attribuutti."
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/base/InterProcessMutex.cc:83
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "luotiin varmuuskopio %s"
+msgid "Can't open lock file: %s"
+msgstr "Lukitustiedoston avaaminen ei onnistu: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Jokin toinen ohjelma suorittaa tätä toimintoa."
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Historia:"
+
+#: zypp/base/StrMatcher.cc:152
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "poista %s"
+msgid "Unknown match mode '%s'"
+msgstr "Tuntematon tila \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "poistetut tarjoajat: "
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Tuntematon tila \"%s\" hakulauseelle \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "älä kysy poistettaessa paketteja, jotka tuo %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Virhe säännöllisessä lausekkeessa \"%s\": regcomp palautti %d"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "älä kysy asennettaessa paketteja, jotka tuo %s"
+msgid "Invalid regular expression '%s'"
+msgstr "Virhe säännöllisessä lausekkeessa \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Asenna 'lsof' paketti ensiksi."
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "älä asenna %s"
+msgid "Authentication required for '%s'"
+msgstr "\"%s\" vaatii tunnistautumisen"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "älä asenna uusinta %s"
+msgid "Failed to mount %s on %s"
+msgstr "%s liittäminen liitospisteeseen %s epäonnistui"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "päivitetään vanhempaan %s -> %s"
+msgid "Failed to unmount %s"
+msgstr "Virhe irrotettaessa %s"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "jätä joitakin vaatimuksia huomiotta"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Virheellinen tiedostonimi: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ohita varoitus rikkinäisestä järjestelmästä"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Tietolähdettä ei avattu suoritettaessa \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"asenna %s (vaihtaa tarjoajaa)\n"
-"  %s --> %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Tiedostoa \"%s\" ei löydy tietovälineeltä \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "asenna %s vaikka se on alempaa arkkitehtuuria"
+msgid "Cannot write file '%s'."
+msgstr "Tiedostoon \"%s\" kirjoittaminen ei onnistu."
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Tietolähdettä ei ole liitetty"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Virheellinen liitospiste"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "Asennetaan %s poisjätetystä asennuslähteestä"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Lataajan (curl) alustus osoitteelle \"%s\" epäonnistui"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "asennettu %s vanhentaa %s (%s)"
+msgid "System exception '%s' on medium '%s'."
+msgstr "Järjestelmäpoikkeus \"%s\" tietovälineellä \"%s\"."
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "virheellinen"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Polku \"%s\" tietovälineellä \"%s\" ei ole tiedosto."
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "pidä %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Polku \"%s\" tietovälineellä \"%s\" ei ole hakemisto."
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Virheellisesti muotoiltu URI-osoite"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Tyhjä konenimi URI-osoitteessa"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Tyhjä tiedostojärjestelmä URI-osoitteessa"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Tyhjä kohde URI-osoitteessa"
+
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "Pidä %s vaikka se on alempaa arkkitehtuuria"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Virheellinen verkko-osoite: \"%s\"."
+
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Tietoväline ei tue toimintoa"
+
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Latausvirhe (curl) %s:\n"
+"Virhekoodi: %s\n"
+"viesti: %s\n"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "Virhe asetettaessa lataajan (curl) valintoja osoitteelle \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "pidä vanhentunut %s"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "\"%s\" ei sisällä haluttua tietolähdettä"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: libhal-yhteyttä ei voitu luoda"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "Tietolähde \"%s\" on varattu"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: dbus-yhteyden asettaminen ei onnistu"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Tietovälineiden irrottaminen ei onnistu"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "mikään ei tarjoa %s, jota %s tarvitsee"
+msgid "Cannot eject media '%s'"
+msgstr "Tietovälineen \"%s\" irrottaminen ei onnistu"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "Mikään ei tarjoa pyydettyä %s"
+msgid "Permission to access '%s' denied."
+msgstr "Pääsy evätty kohteeseen \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "pakettia %s ei ole olemassa"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Aikakatkaisu avattaessa \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "virhe asennettaessa pakettia %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "\"%s\" ei ole hetkellisesti saatavilla."
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "Älä estä %s asentamista"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr " SSL-ongelma: Tarkista että CA-varmenne kuuluu \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
+"Levykuvatiedoston \"%s\" liitämiseen tarvittavaa loop-laitetta ei löydy"
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "Korvataan %s -> %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "HTTP-tunnistautumistapa \"%s\" ei ole tuettu"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm loi tiedoston %s nimellä %s. Erojen selvittäminen ei onnistunut."
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Vieraile Novellin asiakaskeskuksessa tarkastamassa onko rekisteröintisi "
+"voimassa ja ettei se ole vanhentunut."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Sat-varaston luonti ei onnistu."
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm loi tiedoston %s nimellä %s.\n"
-"Tässä on ensimmäiset 25 vaihtunutta riviä:\n"
+"Tiedosto %1%\n"
+"  paketista\n"
+"     %2%\n"
+"  on ristiriidassa tiedoston kanssa joka kuuluu pakettiin\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"rpm tallensi tiedoston %s niemellä %s. Erojen selvittäminen ei onnistunut."
+"Tiedosto %1%\n"
+"  paketista\n"
+"     %2%\n"
+"  on ristiriidassa tiedoston kanssa joka kuuluu asennukseen\n"
+"      %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm tallensi tiedoston %s nimellä %s.\n"
-"Tässä ensimmäiset 25 muuttunutta riviä:\n"
+"Tiedosto %1%\n"
+"  asennuksesta\n"
+"    %2%\n"
+"  on ristiriidassa tiedoston kanssa joka kuuluu pakettiin\n"
+"    %3%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s on ristiriidassa itsensä kanssa (%s)"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Tiedosto %1%\n"
+"  asennuksesta\n"
+"    %2%\n"
+"  on ristiriidassa tiedoston asennuksesta\n"
+"    %3%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "jokin riippuvuusongelma"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Tiedosto %1%\n"
+"  paketista\n"
+"     %2%\n"
+"  on ristriidassa tiedoston\n"
+"     %3%\n"
+"  paketista\n"
+"     %4%"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "poistetut tarjoajat: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Tiedosto %1%\n"
+"  paketista\n"
+"     %2%\n"
+"  on ristiriidassa tiedoston\n"
+"     %3%\n"
+"  asennettavasta paketista\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "tuntematon"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Tiedosto %1%\n"
+"  asennuksesta\n"
+"     %2%\n"
+"  on ristiriidassa tiedoston\n"
+"      %3%\n"
+"  paketista\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "ei tuettu"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Tiedosto %1%\n"
+"  asennuksesta\n"
+"     %2%\n"
+"  on ristiriidassa tiedoston\n"
+"     %3%\n"
+"  asennuksesta\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "pyyntöä ei tueta"
+#~ msgid "do not keep %s installed"
+#~ msgstr "älä pidä %s asennettuna"
 
 #~ msgid "Cannot create public key %s from %s keyring to file %s"
 #~ msgstr ""
@@ -5109,6 +5112,3 @@ msgstr "pyyntöä ei tueta"
 
 #~ msgid "Serbia and Montenegro"
 #~ msgstr "Serbia ja Montenegro"
-
-#~ msgid "do not keep %s installed"
-#~ msgstr "älä pidä %s asennettuna"
index 6615be5..c07d7f8 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,12 +1,26 @@
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# translation of zypp.fr.po to
+# French message file for YaST2 (@memory@).
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002, 2003 SuSE Linux AG.
+# Copyright (C) 2000, 2001 SuSE GmbH.
+#
+#
+#
+# Patricia Vaz <patricia@suse.de>, 2003.
+# Francoise Lermen <flermen@suse.de>, 2000, 2001, 2002.
+# Karine Nguyen <karine@suse.de>, 2001.
+# Guillaume GARDET <guillaume.gardet@opensuse.org>, 2008, 2009, 2010.
+# Rémy Marquis <remy.marquis@gmail.com>, 2008.
+# Rémy Marquis <remy.marquis@opensuse.org>, 2008.
+# Guillaume GARDET <guillaume.gardet@opensuse.org>, 2011, 2013, 2014, 2015.
+# Antoine Belvire <antoine.belvire@laposte.net>, 2015.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: zypp\n"
+"Project-Id-Version: zypp.fr\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2016-05-03 17:05+0000\n"
+"PO-Revision-Date: 2016-05-21 16:44+0000\n"
 "Last-Translator: Benoît Monin <benoit.monin@gmx.fr>\n"
 "Language-Team: French <http://l10n.opensuse.org/projects/libzypp/master/fr/>"
 "\n"
@@ -15,23 +29,97 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 2.5\n"
+"X-Generator: Weblate 2.6\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"fournisseurs non  installables : "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Exception Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Chaîne de requête d'URL LDAP non valide"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" Problème de certificat SSL, vérifiez que le certificat CA est OK pour '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Paramètre de requête d'URL LDAP '%s' non valide"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Impossible de cloner l'objet d'Url"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Référence d'objet d'Url vide non valide"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Impossible d'analyser les composants de l'Url"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Impossible d'initialiser les attributs mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Impossible de définir l'attribut mutex récursif"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Impossible d'initialiser l'attribut mutex récursif"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Impossible d'acquérir le verrouillage mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Impossible de libérer le verrouillage mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Fournit"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Pré-requiert"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Nécessite"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Conflits"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Obsolètes"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Recommande"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Suggère"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Améliore"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Complémente"
 
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Type '%s' douteux pour %u byte de la somme de contrôle '%s'"
+
+# TLABEL online_update_2002_01_04_0147__113
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
 msgstr " exécuté"
@@ -40,10 +128,6 @@ msgstr " exécuté"
 msgid " execution failed"
 msgstr " échec de l'exécution"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " exécution annulée lors de l'abandon"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -52,1577 +136,2434 @@ msgstr " exécution annulée lors de l'abandon"
 msgid "%s already executed as %s)"
 msgstr "%s déjà exécuté en tant que %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s est en conflit avec %s fournit par %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " exécution annulée lors de l'abandon"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s n'appartient à aucun dépôt de mise à niveau de distribution."
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Erreur lors de l'envoi du message de notification des mises à jour."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s a une architecture inférieure."
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Nouveau message de mise à jour"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s n'est pas installable"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "L'installation a été abandonnée comme indiqué."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s est fourni par le système et ne peut être supprimé"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
+"Désolé mais cette version de libzypp a été construite sans le support HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s rend obsolète %s fourni par %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext non connecté"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s requiert %s, mais cette dépendance ne peut pas être fournie"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive non initialisé"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(EXPIRÉ)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume non initialisé"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(n'expire pas.)"
+# TLABEL linuxrc_2002_03_29_0036__141
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Impossible de créer la connexion dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(expire dans les 24h.)"
-msgstr[1] "(expire dans les 24h.)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new : impossible de créer le contexte libhal"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(expire dans les 24h.)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection : impossible de définir la connexion dbus"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhaze"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Impossible d'initialiser le contexte HAL -- hald fonctionne-t-il ?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Aceh"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Pas un lecteur de CDROM"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "Échec RPM : "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Impossible d'importer la clé publique du fichier %s : %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Ajout du dépôt '%s'"
+msgid "Failed to remove public key %s: %s"
+msgstr "Impossible de supprimer la clé publique %s : %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Contrat client additionnel nécessaire"
+# TLABEL sw_single_2002_01_04_0147__11
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Fichiers de configuration modifiés pour %s :"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm a enregistré %s sous le nom de %s mais il a été impossible de déterminer "
+"la différence"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm a enregistré %s sous %s.\n"
+"Voici les 25 premières lignes qui diffèrent :\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm a créé %s sous le nom de %s, mais il a été impossible de déterminer la "
+"différence"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm a créé %s sous le nom de %s.\n"
+"Dans les 25 premières lignes, la différence se présente comme suit :\n"
 
+# TLABEL firewall_2002_03_14_2340__51
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
 #: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
 msgid "Additional rpm output"
 msgstr "Sortie rpm supplémentaire"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adygué"
+# TLABEL backup_2002_03_14_2340__102
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "sauvegarde %s créée"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "La signature est correcte"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Type de signature inconnu"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Afrihili"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "La signature n'est pas vérifiée"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikaans"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "La signature est correcte mais la clé n'est pas de confiance"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-asiatiques (autres langues)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "La clé publique des signatures n'est pas disponible"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Ainou"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "Le fichier n'existe pas ou la signature ne peut être vérifiée"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Akan"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Les actions suivantes seront exécutées :"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Akkadien"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "Impossible de lire le répertoire de dépôt '%1%' : permission refusée"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Îles Alandes"
+# TLABEL restore_2002_08_07_0216__88
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Impossible de lire le dossier '%s'"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albanie"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "Impossible de lire le fichier de dépôt '%1%' : permission refusée"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albanais"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "L'alias d'un dépôt ne peut pas commencer par un point."
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aléute"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "L'alias d'un service ne peut pas commencer par un point."
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algérie"
+# TLABEL kinternet_2002_02_20_2255__39
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Impossible d'ouvrir le fichier '%s' en écriture."
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Langues algonquines"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr "Service '%1%' inconnu : suppression du dépôt de service orphelin '%2%'"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaïques (autres langues)"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Aucune métadonnée valide trouvée à l'URL spécifiée"
+msgstr[1] "Aucune métadonnée valide trouvée aux URL spécifiées"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Samoa américaines"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Impossible de créer %s"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amharic"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Impossible de créer le répertoire de cache des métadonnées."
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Un contrat client additionel est nécessaire pour obtenir du support."
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Construction du cache du dépôt '%s'"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorre"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Impossible de créer le cache dans %s - pas d'autorisation en écriture."
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+# TLABEL restore_2002_08_07_0216__88
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Échec de la mise en cache du dépôt (%d)."
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Type de dépôt non pris en charge"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarctique"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Erreur lors de la tentative de lecture depuis '%s'"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua-et-Barbuda"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Erreur de lecture depuis '%s' inconnue"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Langues apaches"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Ajout du dépôt '%s'"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Arabe"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Nom de fichier de dépôt invalide sur '%s'"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonais"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Suppression du dépôt '%s'"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Aramaïn"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Impossible de savoir où le dépôt est stocké."
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Impossible de supprimer '%s'"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Araucan"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Impossible de savoir où le service est stocké."
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Le modèle de l'Url n'autorise pas de %s"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentine"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Composant '%s' non valide '%s'"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Arménie"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Composant %s non valide"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Arménien"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Analyse de la chaîne de requête non prise en charge pour cette URL"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Artificielles (autres langues)"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Le modèle URL est un composant requis"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
-
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Assamais"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Schéma d'Url '%s' non valide"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Asturien"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Le modèle de l'Url n'autorise pas de nom d'utilisateur"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Langues athapascanes"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Le modèle de l'Url n'autorise pas de mot de passe"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australie"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Le modèle de l'Url nécessite un composant d'hôte"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Langues australiennes"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Le modèle de l'Url n'autorise pas de composant d'hôte"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Autriche"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Composant d'hôte non valide '%s'"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Malayo-polynésiennes (autres langues)"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Le modèle de l'Url n'autorise pas de port"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Authentification requise pour '%s'"
+msgid "Invalid port component '%s'"
+msgstr "Composant de port non valide '%s'"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Avar"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Le modèle de l'Url requiert un nom de chemin"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Avestique"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Chemin relatif non autorisé en présence d'une autorité"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Awadhi"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "La chaîne codée contient un octet NUL"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Aymara"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+"Caractère séparateur de division non valide pour l'ensemble de paramètres"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaïdjan"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+"Caractère séparateur de division non valide pour le mappage de paramètres"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Azéri"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+"Caractère séparateur de tableau d'union non valide pour l'ensemble de "
+"paramètres"
 
-#: zypp/media/MediaException.cc:47
+# TLABEL backup_2002_03_14_2340__125
+#: zypp/ExternalProgram.cc:258
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Nom de fichier incorrect : %s"
+msgid "Can't open pty (%s)."
+msgstr "Impossible d'ouvrir pty (%s)."
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Point de connexion des supports incorrect"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Impossible d'ouvrir le pipe (%s)."
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Impossible de chrooter dans '%s' (%s)."
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahreïn"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "Impossible de chdir vers '%s' dans le chroot '%s' ('%s)."
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinais"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Impossible de chdir vers '%s' (%s)."
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltiques (autres langues)"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Impossible d'exécuter '%s' (%s)."
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Baloutchi"
+# TLABEL printconf_2002_03_14_2340__110
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Impossible de forker (%s)."
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Bambara"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "La commande s'est terminée avec le status %d."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Langues bamileke"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "La commande a été tuée par le signal %d (%s)."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "La commande s'est terminée à cause d'une erreur inconnue."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(n'expire pas)"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantoues (autres langues)"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(EXPIRÉ)"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbade"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(expire dans les 24h)"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(expire dans %d jour)"
+msgstr[1] "(expire dans %d jours)"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bachkir"
+# TLABEL printer_2002_08_07_0216__54
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "inconnu"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Basque"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "non pris en charge"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonésie)"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Niveau 1"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Bedja"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Niveau 2"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Biélorussie"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Niveau 3"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Biélorusse"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Contrat client additionnel nécessaire"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgique"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "invalide"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Le niveau du support n'est pas spécifié"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Bemba"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Le fournisseur ne fournit pas de support."
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengali"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"La détermination d'un problème, ce qui signifie un appui technique visant à "
+"fournir les informations de compatibilité, l'assistance à l'installation, le "
+"soutient à l'utilisation, la maintenance et le dépannage de base. Le Support "
+"de Niveau 1 ne vise pas à corriger les erreurs et défauts du produit."
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Bénin"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"L'isolation de problème, ce qui signifie un appui technique visant à "
+"reproduire les problèmes du client, isoler le problème et fournir une "
+"résolution pour les problèmes non résolus par le Support de Niveau 1."
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Berbères (autres langues)"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"La résolution de problème, ce qui signifie un appui technique visant à "
+"résoudre des problèmes complexes en engageant des l'ingénierie dans la "
+"résolution des défauts du produit qui ont été identifiés par le Support de "
+"Niveau 2."
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermudes"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "Un contrat client additionel est nécessaire pour obtenir du support."
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Bhojpuri"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Option de support inconnue. La description n'est pas disponible"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhoutan"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Pays inconnu : "
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihari"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Pas de code"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikol"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorre"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Bini"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Émirats arabes unis"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bichlamar"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afghanistan"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua-et-Barbuda"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivie"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnie-Herzégovine"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albanie"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosniaque"
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Arménie"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Antilles néerlandaises"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Île de Bouvet"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Braj"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarctique"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brésil"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentine"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Breton"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Samoa américaines"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Territoire britannique de l'océan Indien"
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Autriche"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Îles Vierges britanniques"
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australie"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei"
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Bugi"
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Îles Alandes"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Construction du cache du dépôt '%s'"
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaïdjan"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgarie"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnie-Herzégovine"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgare"
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbade"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Bouriate"
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgique"
 
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
 msgstr "Burkina Faso"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Birman"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgarie"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahreïn"
 
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "Burundi"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Caddo"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Cambodge"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Cameroun"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Impossible de créer la réserve sat."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Impossible d'acquérir le verrouillage mutex"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Impossible d'appliquer la commande chdir vers '%s' (%s)."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-"Impossible d'appliquer la commande chdir vers '%s' dans le chroot '%s' ('%s)."
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Impossible d'effectuer chroot vers '%s' (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Impossible de créer %s"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Bénin"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-"Il est impossible de créer le cache dans %s car il n'existe aucune "
-"autorisation en écriture."
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermudes"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Impossible de créer le répertoire de cache des métadonnées."
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Impossible de supprimer '%s'"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivie"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Impossible d'exécuter '%s' (%s)."
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brésil"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Impossible de savoir où se trouve le fichier dépôt."
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Impossible de savoir où se trouve le service."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhoutan"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Impossible d'effectuer fork (%s)."
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Île de Bouvet"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Impossible d'initialiser les attributs mutex"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Impossible d'initialiser l'attribut mutex récursif"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Biélorussie"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Impossible d'ouvrir le fichier '%s' en écriture."
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Impossible d'ouvrir le fichier verrouillé : %s"
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canada"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Impossible d'ouvrir le pipe (%s)."
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Îles Cocos (Keeling)"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Impossible d'ouvrir pty (%s)."
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Impossible de fournir '%s' à partir du dépôt '%s'"
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "République centrafricaine"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Impossible de libérer le verrouillage mutex"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Suisse"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Impossible de définir l'attribut mutex récursif"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Cote d'Ivoire"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canada"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Îles Cook"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Impossible d'éjecter un support"
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chili"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Impossible d'éjecter les supports '%s'"
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Cameroun"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Impossible de trouver un périphérique de boucle pour monter l'image depuis "
-"'%s'"
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Chine"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "Impossible de lire le répertoire de dépôt '%1%' : permission refusée"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombie"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "Impossible de lire le fichier de dépôt '%1%' : permission refusée"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Impossible d'écrire dans le fichier '%s'."
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
 
 #. :CUB:192:
 #: zypp/CountryCode.cc:208
 msgid "Cape Verde"
 msgstr "Cap Vert"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "Caribe"
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Île Christmas"
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Catalan"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Chypre"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "Caucasiennes (autres langues)"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "République Tchèque"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Îles Caïmans"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Allemagne"
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "Cebuano"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Celtiques (autres langues)"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danemark"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "République centrafricaine"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominique"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Indiennes d'Amérique centrale (autres langues)"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "République Dominicaine"
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Tchad"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algérie"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Djaghatai"
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Équateur"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Langues chames"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonie"
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "Chamorro"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Égypte"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Fichiers de configuration modifiés pour %s :"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Sahara Occidental"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Tchétchène"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Erythrée"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Espagne"
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne"
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Éthiopie"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "Chibcha"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finlande"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidji"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chili"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Îles Malouines (Falkland)"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Chine"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "États fédérés de Micronésie"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Chinois"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Îles Féroé"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "Jargon chinook"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "France"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyan"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "France métropolitaine"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "Choctaw"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Île Christmas"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Royaume-Uni"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "Slavon liturgique"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenade"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukais"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Géorgie"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Tchouvache"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Guyane française"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Newari classique"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernesey"
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Îles Cocos (Keeling)"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombie"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "La commande s'est terminée avec le status %d."
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Groenland"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "La commande s'est terminée à cause d'une erreur inconnue."
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambie"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "La command a été tuée par le signal %d (%s)."
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinée"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comores"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Conflits"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Guinée équatoriale"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grèce"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Îles Cook"
-
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "Copte"
-
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "Cornique"
-
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "Corse"
-
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Cote d'Ivoire"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Géorgie du Sud et Îles Sandwich"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Muskogee"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Créoles et pidgins divers"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinée Bissau"
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "Créoles et pidgins anglais (autres)"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "Créoles et pidgins français (autres)"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong-Kong"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "Créoles et pidgins portugais (autres)"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Îles Heard et Mcdonald"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "Tatar de Crimée"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
 
 #. :HND:340:
 #: zypp/CountryCode.cc:254
 msgid "Croatia"
 msgstr "Croatie"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Croate"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haïti"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hongrie"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr "Couchitiques (autres langues)"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonésie"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Chypre"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irlande"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "Tchèque"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israël"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "République Tchèque"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Île de Man"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "Dakota"
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Inde"
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "Danois"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Territoire britannique de l'océan Indien"
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr "Dargwa"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr "Dayak"
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "Delaware"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islande"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danemark"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italie"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "Dinka"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "Maldivien"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaïque"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordanie"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "Dogri"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japon"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominique"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirghizistan"
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "République Dominicaine"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Cambodge"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Erreur de téléchargement (curl) pour '%s' :\n"
-"Code d'erreur : %s\n"
-"Message d'erreur : %s\n"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "L'initialisation du téléchargement (curl) pour '%s' a échoué"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comores"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "Dravidiennes (autres langues)"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint-Kitts-et-Nevis"
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "Douala"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Corée du Nord"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Type '%s' douteux pour %u byte du contrôle de cohérence '%s'"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Corée du sud"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Hollandais"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Koweït"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Néerlandais moyen (vers 1050-1350)"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Îles Caïmans"
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr "Dioula"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazakhstan"
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "Dzongkha"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "République démocratique populaire du Laos"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Timor oriental"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Liban"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Équateur"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Sainte-Lucie"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "Efik"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Égypte"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "Égyptien (ancien)"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "Ekajuk"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lituanie"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Élamite"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxembourg"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Destination vide dans l'URI"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Lettonie"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Système de fichiers vide dans l'URI"
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libye"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Nom d'hôte vide dans l'URI"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Maroc"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "La chaîne codée contient un octet NUL"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Anglais"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldavie"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Anglais moyen (1100-1500)"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Monténégro"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Anglo-saxon (vers 450-1100)"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Saint-Martin"
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Améliore"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagascar"
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Guinée équatoriale"
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Îles Marshall"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Erythrée"
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macédoine"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"Une erreur s'est produite lors de la configuration des options de "
-"téléchargement (curl) pour '%s':"
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Erreur lors de l'envoi du message de notification de mise à jour."
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Birmanie"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Erreur lors de la tentative de lecture de '%s'"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolie"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erza"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Espéranto"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Îles Marianne du nord"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonie"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Estonien"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritanie"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Éthiopie"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malte"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Île Maurice"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldives"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexique"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaisie"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambique"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibie"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nouvelle Calédonie"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Île Norfolk"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Pays-Bas"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norvège"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Népal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauruan"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nouvelle Zélande"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Pérou"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Polynésie française"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papouasie Nouvelle Guinée"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Philippines"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Pologne"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint-Pierre-et-Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Porto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Territoire palestinien"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palaos"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Réunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Roumanie"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbie"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Fédération de Russie"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Arabie Saoudite"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Îles Salomon"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychelles"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Soudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Suède"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapour"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Sainte-Hélène"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovénie"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard-et-an Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovaquie"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "Saint-Marin"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Sénégal"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalie"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tomé-et-Principe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Syrie"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swaziland"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Îles Turks-et-Caicos"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Tchad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Terres australes et antarctiques françaises"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thaïlande"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadjikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkménistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisie"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Timor oriental"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turquie"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinité-et-Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzanie"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraine"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Ouganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Petites Îles Situées Près Des États-Unis"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "États-Unis"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Ouzbékistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Saint-Siège (État de la Cité du Vatican)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Saint-Vincent-et-les Grenadines"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Îles Vierges britanniques"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Îles Vierges américaines"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Viêt Nam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis et Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Yémen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Afrique du Sud"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambie"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Langue inconnue : "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abkhaze"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Aceh"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adygué"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-asiatiques (autres langues)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Afrihili"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikaans"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Ainou"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Akan"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Akkadien"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albanais"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aléute"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Langues algonquines"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Altaï du Sud"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amharic"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Anglo-saxon (vers 450-1100)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Langues apaches"
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Arabe"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Aramaïn"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonais"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Arménien"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Araucan"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Artificielles (autres langues)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Assamais"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Asturien"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Langues athapascanes"
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Langues australiennes"
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Avar"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Avestique"
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Awadhi"
+
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Aymara"
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Azéri"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Langues bamileke"
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bachkir"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Baloutchi"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Bambara"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinais"
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Basque"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltiques (autres langues)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Bedja"
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Biélorusse"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Bemba"
+
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengali"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Berbères (autres langues)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Bhojpuri"
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Bihari"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikol"
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Bini"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bichlamar"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Pied-noir"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantoues (autres langues)"
+
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosniaque"
+
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Braj"
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Breton"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonésie)"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Bouriate"
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Bugi"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgare"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Birman"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Caddo"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Indiennes d'Amérique centrale (autres langues)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "Caribe"
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "Catalan"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "Caucasiennes (autres langues)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "Cebuano"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Celtiques (autres langues)"
+
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "Chamorro"
+
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "Chibcha"
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Tchétchène"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Djaghatai"
+
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Chinois"
+
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukais"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "Jargon chinook"
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "Choctaw"
+
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee"
+
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Slavon liturgique"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Éwe"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Tchouvache"
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Éwondo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Échec de la mise en cache du fichier dépôt (%d)."
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Langues chames"
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Impossible de supprimer la clé."
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "Copte"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Impossible d'importer la clé publique du fichier %s : %s"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "Cornique"
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Impossible de monter %s sur %s"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "Corse"
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"Impossible de fournir le paquetage %s. Voulez-vous essayer à nouveau de le "
-"récupérer ?"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr "Créoles et pidgins anglais (autres)"
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Échec de la lecture du répertoire '%s'"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr "Créoles et pidgins français (autres)"
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Impossible de supprimer la clé publique %s : %s"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr "Créoles et pidgins portugais (autres)"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Impossible de démonter %s"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Îles Malouines (Falkland)"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "Tatar de Crimée"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "Fang"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Créoles et pidgins divers"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kachoube"
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Îles Féroé"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr "Couchitiques (autres langues)"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Féroien"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "Tchèque"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "États fédérés de Micronésie"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "Dakota"
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidji"
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Danois"
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fidjien"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr "Dargwa"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Le fichier %1%\n"
-"  de l'installation de\n"
-"     %2%\n"
-"  est en conflit avec le fichier\n"
-"     %3%\n"
-"  de l'installation de\n"
-"     %4%"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr "Dayak"
+
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "Delaware"
+
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Esclave (athapascan)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
+
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "Dinka"
+
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "Maldivien"
+
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "Dogri"
+
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "Dravidiennes (autres langues)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Bas-sorabe"
+
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "Douala"
+
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Néerlandais moyen (vers 1050-1350)"
+
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Hollandais"
+
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
+msgstr "Dioula"
+
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "Dzongkha"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "Efik"
+
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "Égyptien (ancien)"
+
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "Ekajuk"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Élamite"
+
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Anglais"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Le fichier %1%\n"
-"  de l'installation de\n"
-"     %2%\n"
-"  est en conflit avec le fichier\n"
-"     %3%\n"
-"  du paquetage\n"
-"     %4%"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Anglais moyen (1100-1500)"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Le fichier %1%\n"
-"  de l'installation de\n"
-"     %2%\n"
-"  est en conflit avec le fichier de l'installation de\n"
-"     %3%"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Espéranto"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Le fichier %1%\n"
-"  de l'installation de\n"
-"     %2%\n"
-"  est en conflit avec le fichier du paquetage\n"
-"     %3%"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Estonien"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Le fichier %1%\n"
-"  du paquetage\n"
-"     %2%\n"
-"  est en conflit avec le fichier\n"
-"     %3%\n"
-"  de l'installation de\n"
-"     %4%"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Éwe"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Le fichier %1%\n"
-"  du paquetage\n"
-"     %2%\n"
-"  est en conflit avec le fichier\n"
-"     %3%\n"
-"  du paquetage\n"
-"     %4%"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Éwondo"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Le fichier %1%\n"
-"  du paquetage\n"
-"     %2%\n"
-"  est en conflit avec le fichier de l'installation de\n"
-"     %3%"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "Fang"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Le fichier %1%\n"
-"  du paquetage\n"
-"     %2%\n"
-"  est en conflit avec le fichier du paquetage\n"
-"     %3%"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Féroien"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Fichier '%s' introuvable sur le support '%s'"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "Le fichier n'existe pas ou la signature ne peut pas être vérifiée."
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Fidjien"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Philippin"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finlande"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1633,40 +2574,16 @@ msgstr "Finnois"
 msgid "Finno-Ugrian (Other)"
 msgstr "Finno-ougriennes (autres langues)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Les actions suivantes seront exécutées :"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "France"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Français"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Guyane française"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Polynésie française"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Terres australes et antarctiques françaises"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1682,46 +2599,21 @@ msgstr "Français ancien (842-vers 1400)"
 msgid "Frisian"
 msgstr "Frison"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Frioulan"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Peul"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Frioulan"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaélique"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galicien"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambie"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1732,25 +2624,50 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germaniques (autres langues)"
+
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
+msgstr "Géorgien"
+
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+msgid "German"
+msgstr "Allemand"
+
 #. language code: gez
 #: zypp/LanguageCode.cc:475
 msgid "Geez"
 msgstr "Guèze"
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Géorgie"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Kiribati"
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
-msgstr "Géorgien"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaélique"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irlandais"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galicien"
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-msgid "German"
-msgstr "Allemand"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
 
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
@@ -1762,30 +2679,6 @@ msgstr "Allemand, moyen haut (vers 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Allemand, ancien haut (vers 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germaniques (autres langues)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Allemagne"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Kiribati"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1806,11 +2699,6 @@ msgstr "Gothique"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grèce"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1821,61 +2709,16 @@ msgstr "Grec ancien (jusqu'à 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Grec moderne (après 1453)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Groenland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenade"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernesey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinée"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinée Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Goudjrati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1886,52 +2729,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haïti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haïtien"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Exception Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext non connecté"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive non initialisé"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume non initialisé"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Haoussa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Avez-vous activé tous les dépôts requis ?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaïen"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Îles Heard et Mcdonald"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1957,16 +2769,6 @@ msgstr "Himachali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Historique :"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1977,31 +2779,21 @@ msgstr "Hittite"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Saint-Siège (État de la Cité du Vatican)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong-Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Haut-sorabe"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Hongrois"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hongrie"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2012,10 +2804,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islande"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2027,252 +2819,106 @@ msgstr "Islandais"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
-
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
-msgstr "Ijo"
-
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr "Ilocano"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Sami d'Inari"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Inde"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr "Indo-aryennes (autres langues)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indo-europénnnes (autres langues)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonésie"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "Indonésien"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "Ingouche"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "L'installation a été abandonnée comme indiqué."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (Association pour une langue auxiliaire internationale)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "Inupiaq"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Composant %s non valide"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Composant '%s' non valide %s"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Paramètre de requête d'URL LDAP '%s' non valide"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Chaîne de requête d'URL LDAP non valide"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Schéma d'URL '%s' non valide"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Yi de Sichuan"
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Référence de l'objet d'Url vide non valide"
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
+msgstr "Ijo"
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Composant d'hôte non valide '%s'"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Caractère séparateur d'union non valide pour l'ensemble de paramètres"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-"Caractère séparateur de division non valide pour l'ensemble de paramètres"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr "Ilocano"
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-"Caractère séparateur de division non valide pour l'assignation de paramètres"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (Association pour une langue auxiliaire internationale)"
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Composant de port non valide '%s'"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr "Indo-aryennes (autres langues)"
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Expression régulière '%s' non valide"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "Indonésien"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Expression régulière '%s' invalide : regcomp a retourné %d"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indo-europénnnes (autres langues)"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Nom du fichier dépôt non valide sur '%s'"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "Ingouche"
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "Inupiaq"
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Iraniennes (autres langues)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Iraq"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irlande"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irlandais"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Irlandais moyen (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Irlandais ancien (jusqu'à 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Langues iroquoises"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Île de Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israël"
-
+# TLABEL partitioning_2002_01_04_0147__180
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italien"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italie"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaïque"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javanais"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japon"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japonais"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javanais"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordanie"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Judéo-persan"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Judéo-arabe"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Judéo-persan"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardien"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Karakalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2289,11 +2935,6 @@ msgstr "Kachin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmouk"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2304,21 +2945,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanouri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Karakalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karatchai balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2329,10 +2955,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kashmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kachoube"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanouri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2344,31 +2970,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Kazakh"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardien"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Khoisan (autres langues)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2379,11 +3000,6 @@ msgstr "Khotanais"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2394,15 +3010,15 @@ msgstr "Rwanda"
 msgid "Kirghiz"
 msgstr "Kirghize"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2414,11 +3030,6 @@ msgstr "Kom"
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2434,11 +3045,21 @@ msgstr "Kosrae"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karatchai balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Krou"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2449,31 +3070,16 @@ msgstr "Ovambo"
 msgid "Kumyk"
 msgstr "Koumyk"
 
-#. language code: kur ku
-#: zypp/LanguageCode.cc:651
-msgid "Kurdish"
-msgstr "Kurde"
-
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
+#. language code: kur ku
+#: zypp/LanguageCode.cc:651
+msgid "Kurdish"
+msgstr "Kurde"
 
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Koweït"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirghizistan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2494,68 +3100,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "République démocratique populaire du Laos"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latin"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Lettonie"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Letton"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Liban"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Niveau 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Niveau 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Niveau 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezghien"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libye"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2566,60 +3125,45 @@ msgstr "Limbourgeois"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lituanie"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Lituanien"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "L'emplacement '%s' est temporairement inaccessible."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Allemand, bas"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Bas-sorabe"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxembourgeois"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
-msgstr "Luiseno"
-
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Sami de Lule"
+msgstr "Luiseño"
 
 #. language code: lun
 #: zypp/LanguageCode.cc:689
@@ -2636,35 +3180,11 @@ msgstr "Luo (Kenya et Tanzanie)"
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxembourg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxembourgeois"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macédoine"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Macédonien"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagascar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2675,6 +3195,11 @@ msgstr "Madourais"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshall"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2682,182 +3207,63 @@ msgstr "Maithili"
 
 #. language code: mak
 #: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr "Makassar"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malgache"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malais"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "Malayalam"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaisie"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldives"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "URI non conforme"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malte"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltais"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Mandchou"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
-msgstr "Mandingue"
-
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Langues Manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
-#. language code: mao mri mi
-#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
-msgid "Maori"
-msgstr "Maori"
-
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
-msgid "Marathi"
-msgstr "Marathe"
-
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Îles Marshall"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshall"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marvari"
+msgid "Makasar"
+msgstr "Makassar"
 
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
-msgstr "Masai"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "Malayalam"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritanie"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
+msgstr "Mandingue"
 
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Île Maurice"
+#. language code: mao mri mi
+#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
+msgid "Maori"
+msgstr "Maori"
 
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Langues maya"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Malayo-polynésiennes (autres langues)"
 
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+msgid "Marathi"
+msgstr "Marathe"
 
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "La source de supports '%s' ne contient pas le support désiré"
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
+msgstr "Masaï"
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Le support '%s' est utilisé par une autre instance"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malais"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Support non joint"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksa"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
-"Support non ouvert lors de la tentative d'exécution de l'opération '%s'."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
-msgstr "Mende"
-
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "France métropolitaine"
+msgstr "Mendé"
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexique"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Irlandais moyen (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2869,86 +3275,61 @@ msgstr "Micmac"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandais"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Langues diverses"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-khmer (autres langues)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malgache"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltais"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Mandchou"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Langues Manobo"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksa"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldave"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldavie"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-khmer (autres langues)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolie"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongol"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Monténégro"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Maroc"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambique"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2959,1921 +3340,2178 @@ msgstr "Multilingue"
 msgid "Munda languages"
 msgstr "Langues mounda"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Muskogee"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandais"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marvari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Langues maya"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erza"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibie"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Langues indiennes d'Amérique du Nord"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauruan"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Napolitain"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navaho"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele (Nord)"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele (Sud)"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele (Nord)"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Napolitain"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Népal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepal Bhasa"
-
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
-msgstr "Népalais"
-
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Pays-Bas"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Antilles néerlandaises"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nouvelle Calédonie"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Allemand, bas"
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nouvelle Zélande"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
+msgstr "Népalais"
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Nouveau message de mise à jour"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepalbhasha"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Nigéro-congolaises (autres langues)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-sahariennes (autres langues)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
-msgstr "Niuean"
+msgstr "Niuéen"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Pas de code"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Norvégien nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Pas d'URL dans le dépôt."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Norvégien bokmal"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
-msgstr "Nogai"
-
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Île Norfolk"
+msgstr "Nogaï"
 
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Norrois, ancien"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Langues indiennes d'Amérique du Nord"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Corée du Nord"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Îles Marianne du nord"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Sami du Nord"
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
+msgstr "Norvégien"
 
 #. language code: nso
 #: zypp/LanguageCode.cc:813
 msgid "Northern Sotho"
 msgstr "Sotho du Nord"
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norvège"
+#. language code: nub
+#: zypp/LanguageCode.cc:815
+msgid "Nubian Languages"
+msgstr "Langues nubiennes"
 
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
-msgstr "Norvégien"
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Newari classique"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Norvégien bokmal"
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Norvégien nynorsk"
+#. language code: nym
+#: zypp/LanguageCode.cc:821
+msgid "Nyamwezi"
+msgstr "Nyamwezi"
+
+#. language code: nyn
+#: zypp/LanguageCode.cc:823
+msgid "Nyankole"
+msgstr "Nkore"
+
+#. language code: nyo
+#: zypp/LanguageCode.cc:825
+msgid "Nyoro"
+msgstr "Nyoro"
+
+#. language code: nzi
+#: zypp/LanguageCode.cc:827
+msgid "Nzima"
+msgstr "Nzema"
+
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
+msgstr "Occitan (après 1500)"
+
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
+msgstr "Ojibwé"
+
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
+msgstr "Oriya"
+
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
+msgstr "Galla"
+
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+msgid "Osage"
+msgstr "Osage"
+
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
+msgstr "Ossète"
+
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turc ottoman (1500-1928)"
+
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
+msgstr "Langues otomangues"
+
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papoues (autres langues)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinan"
+
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr "Pahlavi"
+
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "Pampangan"
+
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "Panjabi"
+
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "Papiamento"
+
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauan"
+
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
+msgstr "Perse, ancien (vers 600-400 av. J.-C.)"
+
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persan"
+
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
+msgstr "Philippines (autres langues)"
+
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
+msgstr "Phénicien"
+
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
+
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
+msgstr "Polonais"
+
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpei"
+
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
+msgstr "Portugais"
+
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
+msgstr "Prâkrit"
+
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
+msgstr "Provençal ancien (jusqu'à 1500)"
+
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
+msgstr "Pachto"
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Pas un lecteur de CDROM"
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
+msgstr "Quechua"
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
-msgid "Nubian Languages"
-msgstr "Langues nubiennes"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
+msgstr "Rajasthani"
 
-#. language code: nym
-#: zypp/LanguageCode.cc:821
-msgid "Nyamwezi"
-msgstr "Nyamwezi"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
+msgstr "Rapanui"
 
-#. language code: nyn
-#: zypp/LanguageCode.cc:823
-msgid "Nyankole"
-msgstr "Nyankole"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
+msgstr "Rarotonga"
 
-#. language code: nyo
-#: zypp/LanguageCode.cc:825
-msgid "Nyoro"
-msgstr "Nyoro"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
+msgstr "Romanes (autres langues)"
 
-#. language code: nzi
-#: zypp/LanguageCode.cc:827
-msgid "Nzima"
-msgstr "Nzema"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Rhéto-roman"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Obsolètes"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "Tsigane"
 
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
-msgstr "Occitan (après 1500)"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Roumain"
 
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
-msgstr "Ojibwa"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundi"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Russe"
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Au moins un des attributs '%s' ou '%s' est requis."
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandawe"
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Opération non prise en charge par le support"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango"
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
-msgstr "Oriya"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Iakoute"
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
-msgstr "Galla"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Indiennes d'Amérique du Sud (autres langues)"
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
-msgid "Osage"
-msgstr "Osage"
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Langues salish"
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
-msgstr "Ossète"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Samaritain"
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
-msgstr "Langues otomangues"
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
+msgstr "Sanskrit"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Le paquetage %s semble avoir été corrompu pendant le transfert. Voulez-vous "
-"essayer à nouveau de le récupérer ?"
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr "Pahlavi"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "Santal"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbe"
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palaos"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Sicilien"
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauan"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "Écossais"
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Territoire palestinien"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Croate"
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "Selkoupe"
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "Pampangan"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "Sémitiques (autres langues)"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Irlandais ancien (jusqu'à 900)"
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinan"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Langues des signes"
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "Panjabi"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "Chan"
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "Papiamento"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "Sidamo"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papouasie Nouvelle Guinée"
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr "Singhalais"
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papoues (autres langues)"
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+msgid "Siouan Languages"
+msgstr "Langues sioux"
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-tibétaines (autres langues)"
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Le chemin '%s' sur le support '%s' n'est pas un répertoire."
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
+msgstr "Slaves (autres langues)"
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Le chemin '%s' sur le support '%s' n'est pas un fichier."
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "Slovaque"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Autorisation d'accès à '%s' refusée."
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Slovène"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persan"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Sami du Sud"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr "Perse, ancien (vers 600-400 av. J.-C.)"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Sami du Nord"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Pérou"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Sami, autres langues"
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
-msgstr "Philippines (autres langues)"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Sami de Lule"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Philippines"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Sami d'Inari"
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
-msgstr "Phénicien"
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoan"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Sami skolt"
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Veuillez d'abord installer le paquet 'lsof'."
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpei"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Pologne"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
-msgstr "Polonais"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "Sogdien"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Somali"
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
-msgstr "Portugais"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "Songhai"
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
-msgstr "Prâkrit"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "Sotho du Sud"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Nécessite au préalable"
+#. language code: spa es
+#: zypp/LanguageCode.cc:989
+msgid "Spanish"
+msgstr "Espagnol"
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"La détermination d'un problème, ce qui signifie un appui technique visant à "
-"fournir les informations de compatibilité, l'assistance à l'installation, le "
-"soutient à l'utilisation, la maintenance et le dépannage de base. Le Support "
-"de Niveau 1 ne vise pas à corriger les erreurs et défauts du produit."
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sarde"
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"L'isolation de problème, ce qui signifie un appui technique visant à "
-"reproduire les problèmes du client, isoler le problème et fournir une "
-"résolution pour les problèmes non résolus par le Support de Niveau 1."
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Sérère"
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"La résolution de problème, ce qui signifie un appui technique visant à "
-"résoudre des problèmes complexes en engageant des l'ingénierie dans la "
-"résolution des défauts du produit qui ont été identifiés par le Support de "
-"Niveau 2."
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-sahariennes (autres langues)"
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
-msgstr "Provençal ancien (jusqu'à 1500)"
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swati"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Trouvé(es)"
+#. language code: suk
+#: zypp/LanguageCode.cc:999
+msgid "Sukuma"
+msgstr "Sukuma"
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Porto Rico"
+#. language code: sun su
+#: zypp/LanguageCode.cc:1001
+msgid "Sundanese"
+msgstr "Soundanais"
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
-msgstr "Pachto"
+#. language code: sus
+#: zypp/LanguageCode.cc:1003
+msgid "Susu"
+msgstr "Soussou"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumérien"
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
-msgstr "Quechua"
+#. language code: swa sw
+#: zypp/LanguageCode.cc:1007
+msgid "Swahili"
+msgstr "Swahili"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Analyse de la chaîne de requête non prise en charge pour cette URL"
+#. language code: swe sv
+#: zypp/LanguageCode.cc:1009
+msgid "Swedish"
+msgstr "Suédois"
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "Échec RPM : "
+#. language code: syr
+#: zypp/LanguageCode.cc:1011
+msgid "Syriac"
+msgstr "Syriaque"
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Rhéto-roman"
+#. language code: tah ty
+#: zypp/LanguageCode.cc:1013
+msgid "Tahitian"
+msgstr "Tahitien"
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
-msgstr "Rajasthani"
+#. language code: tai
+#: zypp/LanguageCode.cc:1015
+msgid "Tai (Other)"
+msgstr "Thaïts (autres langues)"
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
-msgstr "Rapanui"
+#. language code: tam ta
+#: zypp/LanguageCode.cc:1017
+msgid "Tamil"
+msgstr "Tamoul"
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr "Rarotonga"
+#. language code: tat tt
+#: zypp/LanguageCode.cc:1019
+msgid "Tatar"
+msgstr "Tatar"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Recommande"
+#. language code: tel te
+#: zypp/LanguageCode.cc:1021
+msgid "Telugu"
+msgstr "Télougou"
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Chemin relatif non autorisé en présence d'une autorité"
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Temne"
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Suppression du dépôt '%s'"
+#. language code: ter
+#: zypp/LanguageCode.cc:1025
+msgid "Tereno"
+msgstr "Tereno"
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "L'alias du dépôt ne peut pas commencer par un point."
+#. language code: tet
+#: zypp/LanguageCode.cc:1027
+msgid "Tetum"
+msgstr "Tetum"
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "L'attribut requis '%s' est manquant."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tadjik"
 
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Requiert"
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Réunion"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "Thaï"
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "Romanes (autres langues)"
+#. language code: tib bod bo
+#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
+msgid "Tibetan"
+msgstr "Tibétain"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Roumanie"
+#. language code: tig
+#: zypp/LanguageCode.cc:1039
+msgid "Tigre"
+msgstr "Tigre"
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Roumain"
+#. language code: tir ti
+#: zypp/LanguageCode.cc:1041
+msgid "Tigrinya"
+msgstr "Tigrigna"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "Tsigane"
+#. language code: tiv
+#: zypp/LanguageCode.cc:1043
+msgid "Tiv"
+msgstr "Tiv"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundi"
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Russe"
+#. language code: tli
+#: zypp/LanguageCode.cc:1049
+msgid "Tlingit"
+msgstr "Tlingit"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Fédération de Russie"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamacheq"
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
+#. language code: tog
+#: zypp/LanguageCode.cc:1053
+msgid "Tonga (Nyasa)"
+msgstr "Tonga (Nyasa)"
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Sainte-Hélène"
+#. language code: ton to
+#: zypp/LanguageCode.cc:1055
+msgid "Tonga (Tonga Islands)"
+msgstr "Tongan (îles Tonga)"
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint-Kitts-et-Nevis"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok pisin"
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Sainte-Lucie"
+#. language code: tsi
+#: zypp/LanguageCode.cc:1059
+msgid "Tsimshian"
+msgstr "Tsimshian"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint-Martin"
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint-Pierre-et-Miquelon"
+#. language code: tso ts
+#: zypp/LanguageCode.cc:1063
+msgid "Tsonga"
+msgstr "Tsonga"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint-Vincent-et-les Grenadines"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmène"
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Langues salish"
+#. language code: tum
+#: zypp/LanguageCode.cc:1067
+msgid "Tumbuka"
+msgstr "Tumbuka"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Samaritain"
+#. language code: tup
+#: zypp/LanguageCode.cc:1069
+msgid "Tupi Languages"
+msgstr "Tupi"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Sami, autres langues"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "Turc"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaïques (autres langues)"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoan"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "Saint-Marin"
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "Touva"
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandawe"
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "Oudmourte"
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sango"
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "Ougaritique"
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
-msgstr "Sanskrit"
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "Ouïtour"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "Santal"
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "Ukrainien"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome and Principe"
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "Umbundu"
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sarde"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Indéterminé"
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Ourdou"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Arabie Saoudite"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Ouszbek"
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "Écossais"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vaï"
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "Selkoupe"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Venda"
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "Sémitiques (autres langues)"
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnamien"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Sénégal"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Volapït"
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbie"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Vote"
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbe"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "Langues wakashennes"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Sérère"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Walamo"
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "L'alias du service ne peut pas commencer par un point."
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Waray"
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
-"Le plug-in du service ne prend pas en charge la modification d'un attribut."
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Washo"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelles"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Gallois"
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "Chan"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Langues sorables"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Wallon"
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Yi de Sichuan"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolof"
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Sicilien"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmouk"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "Sidamo"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhosa"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yao"
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Langues des signes"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yapois"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "La signature n'est pas vérifiée."
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Yiddish"
 
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Fichier de signature %s introuvable"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Yoruba"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "La signature est correcte."
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Langues yupik"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "La signature est correcte, mais la clé n'est pas approuvée."
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapotèque"
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "Échec de la vérification de la signature"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "La clé publique des signatures n'est pas disponible."
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Pied-noir"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zoulou"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapour"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
 
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
-msgstr "Singhalais"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Essayé d'importer la clé non existante %s dans le porte-clé %s"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-tibétaines (autres langues)"
+# TLABEL restore_2002_08_07_0216__88
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Impossible de supprimer la clé."
 
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-msgid "Siouan Languages"
-msgstr "Langues sioux"
+# TLABEL linuxrc_2002_03_29_0036__117
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Fichier de signature %s introuvable"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Sami skolt"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Impossible de fournir '%s' à partir du dépôt '%s'"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Esclave (athapascan)"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Pas d'URL dans le dépôt."
 
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr "Slaves (autres langues)"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "Le plugin de service ne supporte pas la modification d'attribut."
 
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "Slovaque"
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Le paquet %s semble avoir été corrompu durant le transfert. Souhaitez-vous "
+"essayer à nouveau de le récupérer ?"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovaquie"
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "Échec de la vérification de la signature"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovénie"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
+"Impossible de fournir le paquet %s. Souhaitez-vous essayer à nouveau de le "
+"récupérer ?"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Slovène"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "La vérification d'applydeltarpm a échoué."
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "Sogdien"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm a échoué."
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Îles Salomon"
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"La gestion du système est verrouillée par l'application avec le pid %d (%s)."
+"\n"
+"Fermez cette application avant de réessayer."
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Somali"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s n'appartient à aucun dépôt de mise à niveau de la distribution"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalie"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s a une architecture inférieure"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "Songhai"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problème avec le paquet installé %s"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
+# TLABEL kinternet_2002_02_20_2255__29
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "requêtes conflictuelles"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Langues sorables"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "Problèmes de dépendance"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Cette version de libzypp a été créée sans prise en charge HAL."
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "rien ne fournit %s qui est requis"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "Sotho du Sud"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Avez-vous activé tous les dépôts requis ?"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Afrique du Sud"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "Le paquet %s n'existe pas"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Indiennes d'Amérique du Sud (autres langues)"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "Requête non supportée"
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Géorgie du Sud et Îles Sandwich"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s est fourni par le système et ne peut être supprimé"
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Corée du sud"
+# TLABEL partitioning_2002_01_04_0147__180
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s n'est pas installable"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Altaï du Sud"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "rien ne fournit %s, qui est requis par %s"
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Sami du Sud"
+# TLABEL partitioning_2002_01_04_0147__180
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "impossible d'installer simultanément %s et %s"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Espagne"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s est en conflit avec %s fourni par %s"
 
-#. language code: spa es
-#: zypp/LanguageCode.cc:989
-msgid "Spanish"
-msgstr "Espagnol"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s rend obsolète %s fourni par %s"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s installé rend obsolète %s fourni par %s"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Soudan"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "L'élément %s est en conflit avec %s fourni par lui même"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Suggère"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s requiert %s, mais cette dépendance ne peut pas être fournie"
 
-#. language code: suk
-#: zypp/LanguageCode.cc:999
-msgid "Sukuma"
-msgstr "Sukuma"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "fournisseurs supprimés : "
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumérien"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"fournisseurs non installables : "
 
-#. language code: sun su
-#: zypp/LanguageCode.cc:1001
-msgid "Sundanese"
-msgstr "Soundanais"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "fournisseurs non installables : "
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Complète"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "enlever le verrou pour permettre la suppression de %s"
 
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
+# TLABEL partitioning_2002_01_04_0147__180
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "ne pas installer %s"
 
-#. language code: sus
-#: zypp/LanguageCode.cc:1003
-msgid "Susu"
-msgstr "Soussou"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "conserver %s"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "enlever le verrou pour permettre l'installation de %s"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard-et-an Mayen"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Cette requête va casser votre système !"
 
-#. language code: swa sw
-#: zypp/LanguageCode.cc:1007
-msgid "Swahili"
-msgstr "Swahili"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ignorer l'avertissement d'un système cassé"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "Ne pas demander d'installer un élément fournissant %s"
 
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "Ne pas demander de supprimer tous les élements fournissant %s"
 
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Suède"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "ne pas installer une version plus récente de %s"
 
-#. language code: swe sv
-#: zypp/LanguageCode.cc:1009
-msgid "Swedish"
-msgstr "Suédois"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "conserver %s en dépit de l'architecture inférieure"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Suisse"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "installer %s en dépit de l'architecture inférieure"
 
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Syrie"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "conserver %s obsolète"
 
-#. language code: syr
-#: zypp/LanguageCode.cc:1011
-msgid "Syriac"
-msgstr "Syriaque"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "installer %s depuis le dépôt exclu"
 
-#: zypp/media/MediaException.cc:91
+#: zypp/solver/detail/SATResolver.cc:1318
 #, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Exception système '%s' sur le support '%s'."
+msgid "downgrade of %s to %s"
+msgstr "installation d'une version moins récente de %s vers %s"
 
-#: zypp/ZYppFactory.cc:394
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "changement de l'architecture %s à %s"
+
+#: zypp/solver/detail/SATResolver.cc:1334
 #, c-format, boost-format
 msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
-"La gestion du système est verrouillée par l'application avec le pid %d "
-"(%s).\n"
-"Fermez cette application avant de réessayer."
+"installer %s (avec changement de fournisseur)\n"
+"  %s  -->  %s"
 
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "remplacement de %s par %s"
 
-#. language code: tah ty
-#: zypp/LanguageCode.cc:1013
-msgid "Tahitian"
-msgstr "Tahitien"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "désinstallation de %s"
 
-#. language code: tai
-#: zypp/LanguageCode.cc:1015
-msgid "Tai (Other)"
-msgstr "Thaïts (autres langues)"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "casser %s en ignorant certaines de ses dépendances"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "Ignorer généralement certaines dépendances"
 
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tadjik"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "L'attribut requis '%s' est manquant."
 
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadjikistan"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Au moins un des attributs '%s' ou '%s' est requis."
 
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamacheq"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Impossible d'ouvrir le fichier verrouillé : %s"
 
-#. language code: tam ta
-#: zypp/LanguageCode.cc:1017
-msgid "Tamil"
-msgstr "Tamoul"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Cette action est actuellement déjà exécutée par un autre programme."
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzanie"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Historique :"
 
-#. language code: tat tt
-#: zypp/LanguageCode.cc:1019
-msgid "Tatar"
-msgstr "Tatar"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Mode de correspondance '%s' inconnu"
 
-#. language code: tel te
-#: zypp/LanguageCode.cc:1021
-msgid "Telugu"
-msgstr "Télougou"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Mode de correspondance '%s' inconnu pour le motif '%s'"
 
-#. language code: ter
-#: zypp/LanguageCode.cc:1025
-msgid "Tereno"
-msgstr "Tereno"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Expression régulière '%s' invalide : regcomp a retourné %d"
 
-#. language code: tet
-#: zypp/LanguageCode.cc:1027
-msgid "Tetum"
-msgstr "Tetum"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Expression régulière '%s' invalide"
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr "Thaï"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Veuillez d'abord installer le paquet 'lsof'."
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thaïlande"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Authentification requise pour '%s'"
 
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Le niveau du support n'est pas spécifié"
+# TLABEL restore_2002_08_07_0216__88
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Impossible de monter %s sur %s"
 
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Le fournisseur ne fournit pas de support."
+# TLABEL linuxrc_2002_03_29_0036__22
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Impossible de démonter %s"
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Cette action est actuellement déjà exécutée par un autre programme."
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Mauvais nom de fichier : %s"
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Cette requête va casser votre système!"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Le medium ne s'est pas ouvert lors de l'action '%s'."
 
-#. language code: tib bod bo
-#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
-msgid "Tibetan"
-msgstr "Tibétain"
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "Fichier '%s' introuvable sur le medium '%s'"
 
-#. language code: tig
-#: zypp/LanguageCode.cc:1039
-msgid "Tigre"
-msgstr "Tigre"
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Impossible d'écrire dans le fichier '%s'."
 
-#. language code: tir ti
-#: zypp/LanguageCode.cc:1041
-msgid "Tigrinya"
-msgstr "Tigrigna"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Le medium n'est pas attaché"
 
-#: zypp/media/MediaException.cc:207
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Mauvais point d'attache du media"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Échec de l'initialisation du téléchargement (curl) pour '%s'"
+
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Le timeout a été dépassé lors de l'accès à '%s'."
+msgid "System exception '%s' on medium '%s'."
+msgstr "Exception système '%s' sur le medium '%s'."
 
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Temne"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Le chemin '%s' sur le medium '%s' n'est pas un fichier."
 
-#. language code: tiv
-#: zypp/LanguageCode.cc:1043
-msgid "Tiv"
-msgstr "Tiv"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Le chemin '%s' sur le medium '%s' n'est pas un répertoire."
 
-#. language code: tli
-#: zypp/LanguageCode.cc:1049
-msgid "Tlingit"
-msgstr "Tlingit"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "URI malformé"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Nom d'hôte vide dans l'URI"
 
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok pisin"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Système de fichiers vide dans l'URI"
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Destination vide dans l'URI"
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Schéma URI non pris en charge dans '%s'."
 
-#. language code: tog
-#: zypp/LanguageCode.cc:1053
-msgid "Tonga (Nyasa)"
-msgstr "Tonga (Nyasa)"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Opération non prise en charge par le medium"
 
-#. language code: ton to
-#: zypp/LanguageCode.cc:1055
-msgid "Tonga (Tonga Islands)"
-msgstr "Tongan (îles Tonga)"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Erreur de téléchargement (curl) pour '%s' :\n"
+"Code d'erreur : %s\n"
+"Message d'erreur : %s\n"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
-"Le système a tenté d'importer la clé non existante %s dans le porte-clés %s"
+"Une erreur s'est produite lors de la configuration des options de "
+"téléchargement (curl) pour '%s' :"
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinité-et-Tobago"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Le media source '%s' ne contient pas le contenu désiré"
 
-#. language code: tsi
-#: zypp/LanguageCode.cc:1059
-msgid "Tsimshian"
-msgstr "Tsimshian"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "Le medium '%s' est utilisé par une autre instance"
 
-#. language code: tso ts
-#: zypp/LanguageCode.cc:1063
-msgid "Tsonga"
-msgstr "Tsonga"
+# TLABEL profile-manager_2002_08_07_0216__9
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Impossible d'éjecter les media"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
+msgstr "Impossible d'éjecter le media '%s'"
 
-#. language code: tum
-#: zypp/LanguageCode.cc:1067
-msgid "Tumbuka"
-msgstr "Tumbuka"
+#: zypp/media/MediaException.cc:199
+#, c-format, boost-format
+msgid "Permission to access '%s' denied."
+msgstr "Autorisation d'accès à '%s' refusée."
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisie"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Temps maximal dépassé lors de l'accès à '%s'."
 
-#. language code: tup
-#: zypp/LanguageCode.cc:1069
-msgid "Tupi Languages"
-msgstr "Tupi"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "L'emplacement '%s' est temporairement inaccessible."
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turquie"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" Problème de certificat SSL, vérifiez que le certificat CA est OK pour '%s'."
 
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "Turc"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Impossible de trouver un périphérique de boucle pour monter le fichier image "
+"depuis '%s'"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turc ottoman (1500-1928)"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Méthode d'authentification HTTP '%s' non prise en charge"
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkmène"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Visitez le Novell Customer Center pour vérifier que votre inscription est "
+"valide et qu'elle n'a pas expiré."
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Impossible de créer le pool-sat."
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Îles Turks-et-Caicos"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Le fichier %1%\n"
+"  du paquet\n"
+"     %2%\n"
+"  est en conflit avec le fichier du paquet\n"
+"     %3%"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Le fichier %1%\n"
+"  du paquet\n"
+"     %2%\n"
+"  est en conflit avec le fichier de l'installation de\n"
+"     %3%"
+
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Le fichier %1%\n"
+"  de l'installation de\n"
+"     %2%\n"
+"  est en conflit avec le fichier du paquet\n"
+"     %3%"
+
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Le fichier %1%\n"
+"  de l'installation de\n"
+"     %2%\n"
+"  est en conflit avec le fichier de l'installation de\n"
+"     %3%"
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Le fichier %1%\n"
+"  du paquet\n"
+"     %2%\n"
+"  est en conflit avec le fichier\n"
+"     %3%\n"
+"  du paquet\n"
+"     %4%"
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Le fichier %1%\n"
+"  du paquet\n"
+"     %2%\n"
+"  est en conflit avec le fichier\n"
+"     %3%\n"
+"  de l'installation de\n"
+"     %4%"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "Touva"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Le fichier %1%\n"
+"  de l'installation de\n"
+"     %2%\n"
+"  est en conflit avec le fichier\n"
+"     %3%\n"
+"  du paquet\n"
+"     %4%"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Le fichier %1%\n"
+"  de l'installation de\n"
+"     %2%\n"
+"  est en conflit avec le fichier\n"
+"     %3%\n"
+"  de l'installation de\n"
+"     %4%"
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "Oudmourte"
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "Ignorer généralement certaines dépendances"
+
+# TLABEL partitioning_2002_01_04_0147__180
+#~ msgid "do not forbid installation of %s"
+#~ msgstr "ne pas interdire l'installation de %s"
+
+# TLABEL partitioning_2002_01_04_0147__180
+#~ msgid "do not keep %s installed"
+#~ msgstr "ne pas laisser %s installé"
+
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "صربيا ومونتنيجرو"
+
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "خيار list غير معروف"
+
+#, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "تعذر حل التبعيات"
+
+#~ msgid ""
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "لا يحتوي الملف %s على مجموع اختباري.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الملف %s باستخدام المفتاح التالي:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير صالح.\n"
+#~ "متوقع %s، تم العثور على %s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير معروف %s.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "لم يتم توقيع الملف %s.\n"
+#~ "هل تريد استخدامه على أي حال؟"
+
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "تم توقيع الملف %s باستخدام مفتاح غير معروف:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "تم العثور على مفتاح غير موثوق:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد الوثوق بالمفتاح؟"
+
+#~ msgid "%s remove failed"
+#~ msgstr "فشلت إزالة %s"
+
+#, fuzzy
+#~ msgid "Invalid user name or password."
+#~ msgstr "كلمة السر CA غير صالحة."
+
+#~ msgid "rpm output:"
+#~ msgstr "مخرجات rpm:"
+
+#~ msgid "%s install failed"
+#~ msgstr "فشل تثبيت %s"
+
+#~ msgid "%s installed ok"
+#~ msgstr "تم تثبيت %s بنجاح"
+
+#~ msgid "%s remove ok"
+#~ msgstr "تمت إزالة %s بنجاح"
+
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
+
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
+
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "تجاهل %s القديم في %s"
+
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "تجاهل تعارض %s هذا"
+
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "تجاهل هذا المتطلب هنا فقط"
+
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
+
+#~ msgid "Install missing resolvables"
+#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
+
+#~ msgid "Keep resolvables"
+#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
+
+#~ msgid "Unlock these resolvables"
+#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
+
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
+
+#~ msgid "install %s"
+#~ msgstr "تثبيت %s"
+
+#~ msgid "unlock %s"
+#~ msgstr "إلغاء قفل %s"
+
+#~ msgid "unlock all resolvables"
+#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
+
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "تعذر فتح الملف %1."
+
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "تعذرت قراءة القطاع %u."
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Ouganda"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "Ougaritique"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "Ouïtour"
+#~ msgid "Software management is already running."
+#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraine"
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "Ukrainien"
+#~ msgid "%s replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "Umbundu"
+#, fuzzy
+#~ msgid "%s will be deleted by the user.\n"
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Impossible de cloner l'objet d'Url"
+#, fuzzy
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Impossible de créer la connexion dbus."
+#~ msgid "Invalid information"
+#~ msgstr "المعلومات غير صالحة"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Impossible d'initialiser le contexte HAL -- hald fonctionne-t-il ?"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Impossible d'analyser les composants de l'Url"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s مطلوب بواسطة\n"
+#~ "%s"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Indéterminé"
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Type de dépôt non pris en charge"
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s يتعارض مع:\n"
+#~ "%s"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Émirats arabes unis"
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Royaume-Uni"
+#~ msgid "%s obsoletes:%s"
+#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "États-Unis"
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Petites Îles Situées Près Des États-Unis"
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Pays inconnu : "
+#~ msgid "%s depends on %s"
+#~ msgstr "%s يعتمد على %s"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Erreur inconnue lors de la lecture de '%s'"
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s يعتمد على:%s"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Langue inconnue : "
+#~ msgid "Child of"
+#~ msgstr "عنصر فرعي لـ"
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Mode de correspondance '%s' inconnu"
+#, fuzzy
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
 
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Mode de correspondance '%s' inconnu pour le modèle '%s'"
+#, fuzzy
+#~ msgid ""
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr "Service '%1%' inconnu : suppression du dépôt de service orphelin '%2%'"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Option de support inconnue. La description n'est pas disponible."
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Type de signature inconnu"
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "لم يتم استيفاء متطلبات %s"
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Méthode d'authentification HTTP '%s' non prise en charge"
+#~ msgid "%s has missing dependencies"
+#~ msgstr "تم فقد تبعيات %s"
 
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Schéma URI non pris en charge dans '%s'."
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Haut-sorabe"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Ourdou"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Le schéma de l'URl n'autorise pas de %s"
+#~ msgid "No need to install %s"
+#~ msgstr "لا داعي لتثبيت %s"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Le schéma de l'URl n'autorise pas de composant d'hôte"
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Le schéma de l'URl n'autorise pas de mot de passe"
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Le schéma de l'URl n'autorise pas de port"
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Le schéma de l'URl n'autorise pas de nom d'utilisateur"
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Le modèle URL est un composant requis"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "تعذر تثبيت %s لأنه متعارض"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Le schéma de l'Url nécessite un composant d'hôte"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Le schéma de l'Url requiert un nom de chemin"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
+#, fuzzy
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s يفتقد المتطلب %s"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Ouszbek"
+#~ msgid ", Action: "
+#~ msgstr "، الإجراء:"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Ouzbékistan"
+#~ msgid ", Trigger: "
+#~ msgstr "، تشغيل:"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vaï"
+#~ msgid "package"
+#~ msgstr "الحزمة"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#~ msgid "selection"
+#~ msgstr "التحديد"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#~ msgid "pattern"
+#~ msgstr "النمط"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Venda"
+#~ msgid "product"
+#~ msgstr "المنتج"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
+#~ msgid "patch"
+#~ msgstr "التصحيح"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Viêt Nam"
+#~ msgid "script"
+#~ msgstr "البرنامج النصي"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnamien"
+#~ msgid "message"
+#~ msgstr "الرسالة"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Îles Vierges américaines"
+#~ msgid "atom"
+#~ msgstr "الذرة"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Visitez le Novell Customer Center pour vérifier que votre inscription est "
-"valide et qu'elle n'a pas expiré."
+#~ msgid "system"
+#~ msgstr "النظام"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Volapït"
+#~ msgid "Resolvable"
+#~ msgstr "التبعية القابلة للتحليل"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Vote"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "Langues wakashennes"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Walamo"
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis et Futuna"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Wallon"
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Waray"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Washo"
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Gallois"
+#~ msgid "Establishing %s"
+#~ msgstr "تأسيس %s"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Sahara Occidental"
+#~ msgid "Installing %s"
+#~ msgstr "تثبيت %s"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolof"
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhosa"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "تخطي %s: تم التثبيت بالفعل"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Iakoute"
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yao"
+#~ msgid "for %s"
+#~ msgstr "لـ %s"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Yapois"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Yémen"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Yiddish"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Yoruba"
+#~ msgid ""
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
+#~ msgstr ""
+#~ "%s يوفر %s، لكنه قابل لإلغاء التثبيت.  حاول تثبيته للحصول على مزيد من "
+#~ "التفاصيل."
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Langues yupik"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s يوفر %s، لكنه مقفل."
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambie"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapotèque"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zoulou"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "La vérification d'applydeltarpm a échoué."
+#~ msgid "from %s"
+#~ msgstr "من %s"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm a échoué."
+#~ msgid " Error!"
+#~ msgstr "خطأ!"
 
-#: zypp/solver/detail/SATResolver.cc:1325
-#, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "changement de l'architecture %s vers %s"
+#~ msgid " Important!"
+#~ msgstr "هام!"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "casser %s en ignorant certaines de ses dépendances"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1017
-#, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "impossible d'installer simultanément %s et %s"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "requêtes conflictuelles"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/target/rpm/RpmDb.cc:2344
-#, c-format, boost-format
-msgid "created backup %s"
-msgstr "- sauvegarde %s créée"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
-#, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "désinstallation de %s"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "fournisseurs supprimés : "
+#~ msgid "%s part of %s"
+#~ msgstr "%s جزء من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr ""
-"ne pas demander de supprimer tous les éléments résolubles fournissant %s"
+#, fuzzy
+#~ msgid "Double timeout"
+#~ msgstr "موعد الاستحقاق: %1"
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "ne pas demander d'installer un élément résoluble fournissant %s"
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, c-format, boost-format
-msgid "do not install %s"
-msgstr "ne pas installer %s"
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "تعذر تحليل سلطة Url"
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "ne pas installer une version plus récente de %s"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "installation d'une version moins récente de %s vers %s"
+#~ msgid ""
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
+#~ "الارتباط."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "ignorer généralement certaines dépendances"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ignorer l'avertissement d'un système cassé"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "تعذرت استعادة كافة المصادر."
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"installer %s (avec changement de fournisseur)\n"
-"  %s  -->  %s"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "installer %s en dépit de l'architecture inférieure"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "installer %s à partir du dépôt exclu"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s installé rend obsolète %s fourni par %s."
+#~ msgid "Reading index files"
+#~ msgstr "قراءة ملفات الفهرس"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "non valide"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "conserver %s"
+#~ msgid "Reading product from %s"
+#~ msgstr "قراءة المنتج من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "conserver %s en dépit de l'architecture inférieure"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "قراءة قائمة الملفات من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "conserver %s obsolète"
+#~ msgid "Reading packages from %s"
+#~ msgstr "قراءة الحزم من %s"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new : impossible de créer le contexte libhal"
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection : impossible de définir la connexion dbus"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "rien ne fournit %s, qui est requis par %s"
+#~ msgid "Reading patches index %s"
+#~ msgstr "قراءة فهرس التصحيحات %s"
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "rien ne fournit %s qui est requis"
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "Le paquet %s n'existe pas"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problème avec le paquetage installé %s"
+#~ msgid "Reading packages file"
+#~ msgstr "قراءة ملف الحزم"
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "enlever le verrou pour permettre l'installation de %s"
+#~ msgid "Reading translation: %s"
+#~ msgstr "قراءة الترجمة: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "enlever le verrou pour permettre la suppression de %s"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
+#~ "التثبيت؟"
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "remplacement de %s par %s"
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr ""
-"rpm a créé %s sous le nom de %s, mais il a été impossible de déterminer la "
-"différence"
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"rpm a créé %s sous le nom de %s.\n"
-"Dans les 25 premières lignes, la différence se présente comme suit :\n"
+#~ msgid "Downloading %s"
+#~ msgstr "إنزال %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr ""
-"rpm a enregistré %s sous le nom de %s mais il a été impossible de déterminer "
-"la différence"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr ""
+#~ "Impossible de créer la clé publiqe %s du porteclé %s dans le fichier %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
-msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"rpm a enregistré %s sous le nom de %s.\n"
-"Dans les 25 premières lignes, la différence se présente comme suit :\n"
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr "Essayé d'importer la clé non existante %s dans le porteclé %s"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "L'élément %s résoluble est en conflit avec %s fournit par lui même"
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "Impossible de chdir à '/' dans un chroot (%s)."
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "problèmes de dépendance"
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr ""
+#~ "Échec de l'initialisation du téléchagement (Metalink curl) pour '%s'"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "fournisseurs non installables : "
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "Erreur de téléchargement (metalink curl) pour '%s':\n"
+#~ "Code erreur: %s\n"
+#~ "Message erreur: %s\n"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "inconnu"
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "Téléchargement interrompu à %d%%"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "non pris en charge"
+#~ msgid "Download interrupted by user"
+#~ msgstr "Téléchargement interrompu par l'utilisateur"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "Requête non supportée"
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr ""
+#~ "Erreur survenue pendant la définition des options de téléchargement "
+#~ "(metalink curl) pour '%s':"
+
+# TLABEL restore_2002_08_07_0216__88
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Impossible de télécharger %s depuis %s"
+
+#~ msgid "Valid metadata not found at specified URL(s)"
+#~ msgstr "Meta-donnée valide non trouvée à l'URL spécifiée"
index ccb72c7..ea4d159 100644 (file)
--- a/po/gl.po
+++ b/po/gl.po
@@ -25,21 +25,93 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 "X-Generator: Lokalize 1.4\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"provedores non instalables: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Excepción de Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Cadea de consulta URL LDAP incorrecta"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Parámetro de consulta URL LDAP '%s' incorrecto"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Non se pode clonar o obxecto URL"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Referencia de obxecto de URL baleiro incorrecto"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Non se poden analizar os compoñentes de URL"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Non é posible iniciar os atributos de mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Non se pode establecer o atributo de mutex recursivo"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Non é posible iniciar mutex recursivo"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Non se pode adquirir o bloqueo de mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Non se pode liberar o bloqueo de mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Proporciona"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
-" Problema no certificado SSL, comprobe se a certificación CA é correcta para "
-"'%s'."
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Require"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Conflitos"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Desactualiza"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Recomenda"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Suxire"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Mellora"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Suple"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Tipo dubidoso '%s' para o byte %u suma de verificación '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -49,10 +121,6 @@ msgstr " executado"
 msgid " execution failed"
 msgstr " fallou a execución"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " ignorada a execución ao abortar"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -61,829 +129,2302 @@ msgstr " ignorada a execución ao abortar"
 msgid "%s already executed as %s)"
 msgstr "%s xa executado como %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s ten un conflito con %s, fornecido por %s"
-
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s non pertence ao repositorio de actualización da distribución"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " ignorada a execución ao abortar"
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s ten unha arquitectura inferior"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Erro ao enviar a notificación da mensaxe de actualización."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s non é instalable"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Nova mensaxe de actualización"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr ""
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Abortouse a instalación seguindo as indicacións."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s está obsoleto %s fornecido por %s"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "Esta versión de libzypp foi compilada sen soporte para HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s require %s, pero este requerimento non pode ser fornecido"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext non conectado"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(CADUCADO)"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive non inicializado"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(non caduca)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume non inicializado"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(caduca dentro de 24h)"
-msgstr[1] "(caduca dentro de 24h)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Non foi posible crear a conexión co dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(caduca dentro de 24h)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: non foi posible crear o contexto libhal"
 
-# AZ
-# fuzzy
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abxasio "
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: non se puido definir a conexión con dbus"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achinés"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Non foi posible iniciar o contexto HAL - hald non está en execución?"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Non é un dispositivo CDROM"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "Fallou RPM: "
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Engadindo o repositorio '%s'"
-
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Contrato adicional de cliente necesario"
+msgid "Failed to import public key from file %s: %s"
+msgstr "Erro ao importar a chave pública desde o ficheiro %s: %s"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "Saída rpm adicional"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Erro ao eliminar a chave pública %s: %s"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adyghe"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Modificados os ficheiros de configuración para %s:"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm gardou %s como %s, pero non se pode determinar a diferenza"
 
-#. :ARE:784:
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm gardou %s como %s.\n"
+"A continuación amósanse as primeiras 25 líñas de diferenza:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm creou %s como %s, pero no se pode determinar a diferenza"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm creou %s como %s.\n"
+"A continuación amósanse as primeiras 25 líñas de diferenza:\n"
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "Saída rpm adicional"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "copia de seguridade %s creada"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Realizaranse as seguintes accións:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Erro ao ler o directorio '%s'."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "O alias do repositorio non pode comezar cun punto."
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "O alias do servizo non pode comezar cun punto."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Non se puido abrir '%s' para escribir."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Metadatos válidos non atopados no(s) URL(s) especificado(s)"
+msgstr[1] "Metadatos válidos non atopados no(s) URL(s) especificado(s)"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Non se pode crear '%s'"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Non se pode crear o directorio da caché de metadatos."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Construíndo a caché do repositorio '%s'"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Non se pode crear a caché en %s - non hai permisos de escritura."
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Fallo na caché do repositorio (%d)."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Repositorio"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Erro ao ler desde '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Erro descoñecido ao ler desde '%s'"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Engadindo o repositorio '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Nome de ficheiro do repositorio incorrecto en '%s'"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Eliminando o repositorio '%s'"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Non se pode saber onde se atopa almacenado o repositorio."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Non se pode borrar '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Non se pode saber onde se atopa almacenado o servizo."
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "O esquema de Url non permite un elemento %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Compoñente '%s' incorrecto %s"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Compoñente %s incorrecto"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "A análise de cadeas de consulta non é compatible con este enderezo URL"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "O esquema de Url é un compoñente obrigatorio"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Esquema '%s' de URL incorrecto"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "O esquema de Url non permite un nome de usuario"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "O esquema de Url non permite un contrasinal"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "O esquema de Url require un compoñente de host"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "O esquema de Url non permite un compoñente host"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Compoñente de host incorrecto '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "O esquema de Url non permite un porto"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Compoñente de porto incorrecto '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "O esquema de Url require un nome de ruta"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Non se permiten rutas alternativas se existe unha autoridade"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "A cadea codificada inclúe un byte NULO"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+"Parámetro de carácter de separación para a división de matrices incorrecto"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+"Parámetro de carácter de separación para a división de mapas incorrecto"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+"Parámetro de carácter de separación para a unión de matrices incorrecto"
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Non se pode abrir pty (%s)."
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Non se pode abrir a canlización (%s)."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Non se pode facer chroot a '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr ""
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Non se pode executar  '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "No se pode facer fork (%s)."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "A orde rematou co estado %d."
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "O sinal %d (%s) matou a orde."
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "A orde rematou cun erro descoñecido."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(non caduca)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(CADUCADO)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(caduca dentro de 24h)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(caduca dentro de 24h)"
+msgstr[1] "(caduca dentro de 24h)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "descoñecido"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "non soportado"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Nivel 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Nivel 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Nivel 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Contrato adicional de cliente necesario"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "incorrecto"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "O nivel de soporte non está especificado"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "O fabricante non fornece soporte."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Determinación do problema, o que significa soporte técnico designado para "
+"prover información de compatibilidade, asistencia de instalación, soporte de "
+"uso, mantemento sobre a marcha e solucións básicas. Nivel 1 de soporte está "
+"pensado para corrixir erros por defectos do produto."
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Illamento do problema, o que significa soporte técnico designado para "
+"duplicar os problemas do cliente, illar a área problemática e prover unha "
+"solución por problemas non resoltos polo Nivel 1 de soporte."
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Resolución de problemas, significa soporte técnico designado para resolver "
+"problemas complexos ao utilizar enxeñaría na resolución de produtos "
+"defectuosos identificados polo Nivel 2 de soporte."
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "Un contrato adicional co cliente é necesario para recibir soporte."
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Opción de soporte descoñecida. Descrición non dispoñible"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "País descoñecido: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Sen código"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+# US
+# fuzzy
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Emiratos Árabes Unidos"
+
+#. :ARE:784:
 #: zypp/CountryCode.cc:160
 msgid "Afghanistan"
 msgstr "Afganistán"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Afrihili"
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antiga e Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguila"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albania"
+
+# AM
+# fuzzy
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenia"
+
+# AN
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Antillas Neerlandesas"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antártida"
+
+# AR
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Arxentina"
+
+# AS
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Samoa Americana"
+
+# AT
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austria"
+
+# AU
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australia"
+
+# CU
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+# FO
+# fuzzy
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Illas Aland"
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Acerbaixán"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnia e Hercegovina"
+
+# BB
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+# BD
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+# BE
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Bélxica"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+# BG
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaria"
+
+# BH
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benín"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermudas"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei"
+
+# BO
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
+
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasil"
+
+# BS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
+
+# BH
+# fuzzy
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bután"
+
+# FO
+# fuzzy
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Illa Bouvet"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+# BY
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Bielorrusia"
+
+# BZ
+# fuzzy
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Bélxica"
+
+# CA
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canadá"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Illas de Cocos"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo"
+
+# CF
+# fuzzy
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "República Centroafricana"
+
+# CH
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Suíza"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Costa de Marfil"
+
+# FO
+# fuzzy
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Illas Cook"
+
+# CL
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Camerún"
+
+# CN
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "China"
+
+# CO
+# fuzzy
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Cabo Verde"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Illa de Nadal"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Chipre"
+
+# CZ
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "República Checa"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Alemaña"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Xibutí"
+
+# DK
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Dinamarca"
+
+# DM
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+# DO
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "República Dominicana"
+
+# DZ
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Alxeria"
+
+# EC
+# fuzzy
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
+
+# EE
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonia"
+
+# EG
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Exipto"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Sáhara Occidental"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+# ES
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "España"
+
+# ET
+# fuzzy
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Estonia"
+
+# FI
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finlandia"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fixi"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Illas Falkland (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Estados Federados de Micronesia"
+
+# FO
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "IIllas Feroe"
+
+# FR
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Francia"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Francia Metropolitana"
+
+# GH
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabón"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Reino Unido"
+
+# GD
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Granada"
+
+# GE
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Xeorxia"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Güiana Francesa"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+# GH
+# fuzzy
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "China"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Xibraltar"
+
+# GL
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grenlandia"
+
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+# GU
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadalupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Guinea Ecuatorial"
+
+# GR
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grecia"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Illas Xeorxia do Sur e Sandwich do Sur"
+
+# GT
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+# GU
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea Bissau"
+
+# GH
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Güiana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Illa Heard e Illas McDonald"
+
+# HN
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+# HR
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Croacia"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haití"
+
+# HU
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hungría"
+
+# ID
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesia"
+
+# IE
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irlanda"
+
+# IL
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Illa de Man"
+
+# IN
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Territorios británicos no Océano Índico"
+
+# IQ
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Iraq"
+
+# IR
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Irán"
+
+# IS
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islandia"
+
+# IT
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italia"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+# JM
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Xamaica"
+
+# JO
+# fuzzy
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Xordania"
+
+# JP
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Xapón"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
+
+# KZ
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirguisistán"
+
+# KH
+# fuzzy
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Camboxa"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comores"
+
+# KN
+# fuzzy
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts e Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Corea do Norte"
+
+# ZA
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Corea do Sur"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+# FO
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Illas Caimán"
+
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Casaquistán"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "República Popular Democrática de Laos"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Líbano"
+
+# LC
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Santa Lucía"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesoto"
+
+# LT
+# fuzzy
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lituania"
+
+# LU
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxemburgo"
+
+# LV
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Letonia"
+
+# LR
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libia"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marrocos"
+
+# MO
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Mónaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldavia"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "San Martín"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagascar"
+
+# FO
+# fuzzy
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Illas Marshall"
+
+# MK
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedonia"
+
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Malí"
+
+# MM
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Birmania"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolia"
+
+# MO
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macau"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Illas Marianas do Norte"
+
+# MU
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinica"
+
+# MR
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritania"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+# MT
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+# MU
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauricio"
+
+# MV
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldivas"
+
+# MW
+# fuzzy
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Kanu"
+
+# MX
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "México"
+
+# MY
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaisia"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambique"
+
+# GM
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+# NC
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nova Caledonia"
+
+# NG
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Níxer"
+
+# FO
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Illa de Norfolk"
+
+# NG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nixeria"
+
+# NI
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+# NL
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Países Baixos"
+
+# NO
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Noruega"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+# NZ
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nova Celandia"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Omán"
+
+# PA
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panamá"
+
+# PE
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Perú"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Polinesia Francesa"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papúa-Nova Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipinas"
+
+# TJ
+# fuzzy
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Paquistán"
+
+# PL
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polonia"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "San Pedro e Miguelón"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikaans"
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "PPitcairn"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-asiáticas (outras)"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Porto Rico"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Ainu"
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Territorios Palestinos"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Akan "
+# PT
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Akkadian"
+# PW
+# fuzzy
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Paraguai"
 
-# FO
+# PY
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguai"
+
+# QA
 # fuzzy
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Illas Aland"
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albania"
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunión"
 
-# AZ
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albanés"
+# RO
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romanía"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aleutiano"
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbia"
 
-# DZ
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Alxeria"
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Federación Rusa"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Linguas Algonquinas"
+# RW
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaicas (Outras)"
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Arabia Saudita"
 
-# AS
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Samoa Americana"
+# FO
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Illas Salomón"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amhárico"
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seicheles"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Un contrato adicional co cliente é necesario para recibir soporte."
+# SD
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudán"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
+# SE
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Suecia"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguila"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Santa Helena"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antártida"
+# SI
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Eslovenia"
 
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antiga e Barbuda"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard e Jan Mayen"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Linguas Apache"
+# SK
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Eslovaquia"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Árabe"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Serra Leona"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonés"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Arameo"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+# SO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
 
-# MR
+# SY
 # fuzzy
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Araucano"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "San Tomé e Príncipe"
+
+# SV
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "O Salvador"
 
-# AR
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Arxentina"
+# SY
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Siria"
 
-# AM
+# SZ
 # fuzzy
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenia"
-
-# AM
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armenio"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Suacilandia"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Artificiais (outras)"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Illas Turcos e Caicos"
 
-# CU
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+# TD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Chad"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Asamés "
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Territorios Franceses do Sur"
 
-# AT
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Asturiano"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
 
-# AU
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Linguas athapascanas"
+# TH
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tailandia"
 
-# AU
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australia"
+# TJ
+# fuzzy
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Taiwán"
 
-# AU
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Linguas australianas"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Toquelau"
 
-# AT
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austria"
+# TJ
+# fuzzy
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistán"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronésicas (Outras)"
+# TN
+# fuzzy
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Rusia"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Autenticación necesaria para '%s'"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Avaric"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Timor Leste"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Avestan "
+# TR
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turquía"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Awadhi"
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trindade e Tobago"
 
-# MM
-# fuzzy
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Aimará"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
 
-# AZ
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Acerbaixán"
+# TW
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwán"
 
-# AZ
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Acerí"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzania"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Nome de ficheiro danado: %s"
+# UA
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ucraína"
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Punto de inserción de medio incorrecto"
+# UG
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
 
-# BS
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
+# UM
+# fuzzy
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Estados Unidos de América"
 
-# BH
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Estados Unidos de América"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinés "
+# UY
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguai"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Bálticas (Outras)"
+# TJ
+# fuzzy
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Usbekistán"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Baluchi"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Santa Sede (Cidade Estado do Vaticano)"
 
-# GM
+# VC
 # fuzzy
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Bambara "
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "San Vicente e Granadinas"
+
+# VE
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Linguas Bamileke"
+# VI
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Illas Virxes Británicas"
 
-# CA
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Illas Virxes Estadounidenses"
 
-# BD
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
+# VN
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantú (Outras)"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
 
-# BB
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis e Futuna"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
+# KH
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bashkirés "
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Iemen"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Éuscaro"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
 
-# ID
-# fuzzy
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonesia)"
+# ZA
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Sudáfrica"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Beja "
+# ZM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
 
-# BY
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Bielorrusia"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Cimbabue"
 
-# BY
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Bielorruso"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Lingua descoñecida: "
 
-# BE
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Bélxica"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
 
-# BZ
+# AZ
 # fuzzy
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Bélxica"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abxasio "
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Bemba"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achinés"
 
-# BZ
-# fuzzy
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengalí"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benín"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Bereber (Outras )"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adyghe"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermudas"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-asiáticas (outras)"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Bhojpuri "
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Afrihili"
 
-# BH
-# fuzzy
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bután"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikaans"
 
-# BH
-# fuzzy
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Biharí "
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Ainu"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikol"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Akan "
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Bini"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Akkadian"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama "
+# AZ
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albanés"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aleutiano"
 
-# BO
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Linguas Algonquinas"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia e Hercegovina"
+# ZA
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Altai do Sur"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amhárico"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosnio"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Anglo-Saxón (450-110 d.c)"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Linguas Apache"
 
-# FO
-# fuzzy
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Illa Bouvet"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Árabe"
 
-# BR
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Braj"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Arameo"
 
-# BR
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasil"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonés"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretón"
+# AM
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armenio"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Territorios británicos no Océano Índico"
+# MR
+# fuzzy
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Araucano"
 
-# VI
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Illas Virxes Británicas"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Artificiais (outras)"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Buginés "
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Construíndo a caché do repositorio '%s'"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Asamés "
 
-# BG
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaria"
+# AT
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Asturiano"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Búlgaro"
+# AU
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Linguas athapascanas"
 
-# BG
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriat"
+# AU
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Linguas australianas"
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Avaric"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Birmano"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Avestan "
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Awadhi"
 
-# TD
+# MM
 # fuzzy
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Caddo"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Aimará"
 
-# KH
-# fuzzy
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Camboxa"
+# AZ
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Acerí"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Camerún"
+# CA
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Non se pode crear sat-pool."
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Linguas Bamileke"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Non se pode adquirir o bloqueo de mutex"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bashkirés "
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr ""
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Baluchi"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+# GM
+# fuzzy
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Bambara "
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Non se pode facer chroot a '%s' (%s)."
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinés "
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Non se pode crear '%s'"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Éuscaro"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Non se pode crear a caché en %s - non hai permisos de escritura."
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Non se pode crear o directorio da caché de metadatos."
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Bálticas (Outras)"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Non se pode borrar '%s'"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Beja "
+
+# BY
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Bielorruso"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Non se pode executar  '%s' (%s)."
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Bemba"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Non se pode saber onde se atopa almacenado o repositorio."
+# BZ
+# fuzzy
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengalí"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Non se pode saber onde se atopa almacenado o servizo."
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Bereber (Outras )"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "No se pode facer fork (%s)."
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Bhojpuri "
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Non é posible iniciar os atributos de mutex"
+# BH
+# fuzzy
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Biharí "
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Non é posible iniciar mutex recursivo"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikol"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Non se puido abrir '%s' para escribir."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Bini"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Non se pode abrir o ficheiro de bloqueo: %s"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama "
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Non se pode abrir a canlización (%s)."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Non se pode abrir pty (%s)."
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantú (Outras)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Non se pode fornecer o ficheiro '%s' desde o repositorio '%s'"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosnio"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Non se pode liberar o bloqueo de mutex"
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Braj"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Non se pode establecer o atributo de mutex recursivo"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretón"
 
-# CA
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canadá"
+# ID
+# fuzzy
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonesia)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Non é posible expulsar ningún medio"
+# BG
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriat"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Non se puido expulsar o soporte '%s'"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Buginés "
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Non é posible atopar un dispositivo bucle dispoñible para montar a imaxe "
-"desde '%s'"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Búlgaro"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Birmano"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Non se puido escribir o ficheiro '%s'."
+# TD
+# fuzzy
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Caddo"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Cabo Verde"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Indíxenas Centroamericanas (Outras)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -900,12 +2441,6 @@ msgstr "Catalán"
 msgid "Caucasian (Other)"
 msgstr "Caucásicas (Outras)"
 
-# FO
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Illas Caimán"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -916,177 +2451,81 @@ msgstr "Cebuano"
 msgid "Celtic (Other)"
 msgstr "Celtas (Outras)"
 
-# CF
-# fuzzy
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "República Centroafricana"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Indíxenas Centroamericanas (Outras)"
-
-# TD
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Chad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Linguas Chamic"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Modificados os ficheiros de configuración para %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Checheno"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee "
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheién"
-
 # CN
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Chibcha"
 
-# CL
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa "
-
-# CL
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Checheno"
 
-# CN
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "China"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Chinés"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukese"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Xerga Chinook "
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyan"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Choctaw"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Illa de Nadal"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee "
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "Eslavo eclesiástico "
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukese"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "Chuvash "
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Newarí Clásico"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Illas de Cocos"
-
-# CO
-# fuzzy
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "A orde rematou co estado %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "A orde rematou cun erro descoñecido."
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "O sinal %d (%s) matou a orde."
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comores"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Conflitos"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheién"
 
-# FO
-# fuzzy
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Illas Cook"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Linguas Chamic"
 
 # HR
 #. language code: cop
@@ -1104,31 +2543,6 @@ msgstr "Córnico "
 msgid "Corsican"
 msgstr "Corso"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Costa de Marfil"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree "
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Creoles e Pidgin (Outras)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1144,49 +2558,36 @@ msgstr "Creoles e Pidgin, baseadas no Francés (Outras)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Creoles e Pidgin, baseadas no Portugués (Other)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree "
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Tártaro da Crimea "
 
-# HR
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Croacia"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Croata"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Creoles e Pidgin (Outras)"
 
-# CU
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Casubio"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Cushiticas (Outras)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Chipre"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Checo"
 
-# CZ
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "República Checa"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1212,11 +2613,15 @@ msgstr "Dayak"
 msgid "Delaware"
 msgstr "Delaware "
 
-# DK
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Dinamarca"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slave (Athapascan)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
 # DM
 # fuzzy
@@ -1230,55 +2635,21 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Divehi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Xibutí"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
-
-# DM
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-# DO
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "República Dominicana"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Erro na descarga (curl) de '%s':\n"
-"Código de erro: %s\n"
-"Mensaxe de erro: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "O inicio da descarga (curl) fallou para '%s'"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Dravidicas (Outras)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Baixo Sorbio"
+
 # PW
 # fuzzy
 #. language code: dua
@@ -1286,22 +2657,16 @@ msgstr "Dravidicas (Outras)"
 msgid "Duala"
 msgstr "Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Tipo dubidoso '%s' para o byte %u suma de verificación '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Neerlandés Medio (1050-1350 d.c)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Holandés"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Neerlandés Medio (1050-1350 d.c)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1312,29 +2677,11 @@ msgstr "Dyula"
 msgid "Dzongkha"
 msgstr "Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Timor Leste"
-
-# EC
-# fuzzy
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-# EG
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Exipto"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1343,35 +2690,13 @@ msgstr "Exipto (Antigo)"
 #. language code: eka
 #: zypp/LanguageCode.cc:413
 msgid "Ekajuk"
-msgstr "Baixo Sorbio"
-
-# SV
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "O Salvador"
+msgstr "Baixo Sorbio"
 
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "Elamite"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Destino baleiro en URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Sistema de ficheiros baleiro en URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Nome de host baleiro en URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "A cadea codificada inclúe un byte NULO"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1382,76 +2707,16 @@ msgstr "Inglés"
 msgid "English, Middle (1100-1500)"
 msgstr "Anglo Saxón Medio (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Anglo-Saxón (450-110 d.c)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Mellora"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Guinea Ecuatorial"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "Ocorreu un erro ao establecer as opcións de descarga (curl) para '%s':"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Erro ao enviar a notificación da mensaxe de actualización."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Erro ao ler desde '%s'"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-# EE
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonia"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estonio"
 
-# ET
-# fuzzy
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Estonia"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1462,211 +2727,32 @@ msgstr "Ewe "
 msgid "Ewondo"
 msgstr "Ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Fallo na caché do repositorio (%d)."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Fallo ao eliminar a chave."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Erro ao importar a chave pública desde o ficheiro %s: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Fallo ao montar %s en %s"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Non se puido fornecer o paquete %s. Quéreo volver obter?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Erro ao ler o directorio '%s'."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Erro ao eliminar a chave pública %s: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Fallo ao desmontar %s"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Illas Falkland (Malvinas)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Fang"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-# FO
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "IIllas Feroe"
-
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Feroés"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Estados Federados de Micronesia"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fixi"
-
-# FI
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fixiano"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Non se atopa o ficheiro '%s' no medio '%s'"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Feroés"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
+
+# FI
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Fixiano"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipino"
 
-# FI
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finlandia"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1677,41 +2763,16 @@ msgstr "Finlandés"
 msgid "Finno-Ugrian (Other)"
 msgstr "Fino-Húngaras (outras)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Realizaranse as seguintes accións:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-# FR
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Francia"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Francés"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Güiana Francesa"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Polinesia Francesa"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Territorios Franceses do Sur"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1728,17 +2789,17 @@ msgstr "Francés Antigo (842-1400 d.c)"
 msgid "Frisian"
 msgstr "Frisio"
 
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
+msgstr "Fulah  "
+
 # FI
 #. language code: fur
 #: zypp/LanguageCode.cc:457
 msgid "Friulian"
 msgstr "Friuliano"
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
-msgstr "Fulah  "
-
 # GU
 # fuzzy
 #. language code: gaa
@@ -1746,36 +2807,6 @@ msgstr "Fulah  "
 msgid "Ga"
 msgstr "Ga"
 
-# GH
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabón"
-
-# ML
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaélico"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galego"
-
-# GM
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-# GH
-# fuzzy
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1788,16 +2819,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Geez"
-
-# GE
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Xeorxia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Xermánicas (Outras)"
 
 # GE
 #. language code: geo kat ka
@@ -1810,6 +2835,37 @@ msgstr "Xeorxiano"
 msgid "German"
 msgstr "Alemán"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Geez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertés"
+
+# ML
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaélico"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irlandés"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galego"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1820,32 +2876,6 @@ msgstr "Alemán, Medio Alto (1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Alemán, Antigo Alto (750-1500)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Xermánicas (Outras)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Alemaña"
-
-# GH
-# fuzzy
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "China"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Xibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertés"
-
 # IN
 # fuzzy
 #. language code: gon
@@ -1868,12 +2898,6 @@ msgstr "Gótico"
 msgid "Grebo"
 msgstr "Grebo"
 
-# GR
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grecia"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1884,67 +2908,16 @@ msgstr "Grego Antigo (ata 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Grego Moderno (1453-)"
 
-# GL
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grenlandia"
-
-# GD
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Granada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadalupe"
-
-# GU
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guaraní"
 
-# GT
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-# GU
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Guxarati"
 
-# GH
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Güiana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1955,51 +2928,20 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haití"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitiano"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Excepción de Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext non conectado"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive non inicializado"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume non inicializado"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa "
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Activou todos os repositorios solicitados?"
-
-#. language code: haw
-#: zypp/LanguageCode.cc:517
-msgid "Hawaiian"
-msgstr "Hawaiiano"
-
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Illa Heard e Illas McDonald"
+#. language code: haw
+#: zypp/LanguageCode.cc:517
+msgid "Hawaiian"
+msgstr "Hawaiiano"
 
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
@@ -2027,16 +2969,6 @@ msgstr "Himachali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu "
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Historial:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -2047,33 +2979,21 @@ msgstr "Hittite"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Santa Sede (Cidade Estado do Vaticano)"
-
-# HN
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu "
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Alto Sórabo "
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Húngaro"
 
-# HU
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hungría"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2086,11 +3006,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-# IS
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islandia"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo "
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2102,79 +3021,59 @@ msgstr "Islandés"
 msgid "Ido"
 msgstr "Ido "
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo "
+# LT
+# fuzzy
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut "
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingua"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Sami Inari"
-
-# IN
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (Asociación por unha Lingua Auxiliar Internacional)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Índicas (Outras)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indo-Europeas (Outras)"
-
-# ID
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesia"
-
 # ID
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonesio"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indo-Europeas (Outras)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Ingush"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Abortouse a instalación seguindo as indicacións."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (Asociación por unha Lingua Auxiliar Internacional)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingua"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut "
-
 # IN
 # fuzzy
 #. language code: ipk ik
@@ -2182,187 +3081,50 @@ msgstr "Inuktitut "
 msgid "Inupiaq"
 msgstr "Inupiaq "
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Compoñente %s incorrecto"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Compoñente '%s' incorrecto %s"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Parámetro de consulta URL LDAP '%s' incorrecto"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Cadea de consulta URL LDAP incorrecta"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Esquema '%s' de URL incorrecto"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Referencia de obxecto de URL baleiro incorrecto"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Compoñente de host incorrecto '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-"Parámetro de carácter de separación para a unión de matrices incorrecto"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-"Parámetro de carácter de separación para a división de matrices incorrecto"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-"Parámetro de carácter de separación para a división de mapas incorrecto"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Compoñente de porto incorrecto '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Expresión regular '%s' incorrecta"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Expresión regular '%s' incorrecta: regcomp devolveu %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Nome de ficheiro do repositorio incorrecto en '%s'"
-
-# IR
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Irán"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
-msgstr "Iranianas (Outras)"
-
-# IQ
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Iraq"
-
-# IE
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irlanda"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irlandés"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Gaélico Irlandés, Medio (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Gaélico Irlandés Antigo (ata o 900)"
-
-#. language code: iro
-#: zypp/LanguageCode.cc:575
-msgid "Iroquoian Languages"
-msgstr "Linguas Iroquesas"
-
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Illa de Man"
-
-# IL
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
-#. language code: ita it
-#: zypp/LanguageCode.cc:577
-msgid "Italian"
-msgstr "Italiano"
-
-# IT
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italia"
-
-# JM
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Xamaica"
+msgstr "Iranianas (Outras)"
 
-# JP
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Xapón"
+#. language code: iro
+#: zypp/LanguageCode.cc:575
+msgid "Iroquoian Languages"
+msgstr "Linguas Iroquesas"
 
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
-msgstr "Xaponés"
+#. language code: ita it
+#: zypp/LanguageCode.cc:577
+msgid "Italian"
+msgstr "Italiano"
 
 #. language code: jav jv
 #: zypp/LanguageCode.cc:579
 msgid "Javanese"
 msgstr "Xavanés "
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-# JO
-# fuzzy
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Xordania"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
-msgstr "Xudeo-Árabe"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
+msgstr "Xaponés"
 
 #. language code: jpr
 #: zypp/LanguageCode.cc:585
 msgid "Judeo-Persian"
 msgstr "Xudeu-Persas"
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardiano"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
+msgstr "Xudeo-Árabe"
+
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2381,11 +3143,6 @@ msgstr "Kachin  "
 msgid "Kalaallisut"
 msgstr "Groenlandés "
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmyk"
-
 # GM
 # fuzzy
 #. language code: kam
@@ -2399,21 +3156,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kanada "
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri "
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karachay-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2424,10 +3166,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Cachemirés "
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Casubio"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri "
 
 # MW
 # fuzzy
@@ -2443,33 +3185,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Kazaxio "
 
-# KZ
-# fuzzy
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Casaquistán"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardiano"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Khoisan (Outras)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2480,11 +3215,6 @@ msgstr "Khotanese"
 msgid "Kikuyu"
 msgstr "Kikuyu "
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2495,15 +3225,15 @@ msgstr "Kiniarwanda "
 msgid "Kirghiz"
 msgstr "Kirghiz"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2515,11 +3245,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Kongo "
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2535,11 +3260,21 @@ msgstr "Kosraean"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karachay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 # PA
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
@@ -2556,28 +3291,11 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Curdo"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-# KZ
-# fuzzy
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirguisistán"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2602,11 +3320,6 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Lao "
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "República Popular Democrática de Laos"
-
 # LV
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
@@ -2614,61 +3327,16 @@ msgid "Latin"
 msgstr "Latín"
 
 # LV
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Letonia"
-
-# LV
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Letón"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Líbano"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesoto"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Nivel 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Nivel 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Nivel 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezguí"
 
-# LR
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-# LR
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libia"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 # LU
 # fuzzy
 #. language code: lim li
@@ -2681,63 +3349,49 @@ msgstr "Limburgués"
 msgid "Lingala"
 msgstr "Lingala"
 
-# LT
-# fuzzy
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lituania"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Lituano"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "A localización '%s' está neste intre inaccesible."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Baixo Alemán"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Baixo Sorbio"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+# LU
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburgués"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+# GH
+# fuzzy
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Sami Lule"
-
 # SD
 # fuzzy
 #. language code: lun
@@ -2755,39 +3409,11 @@ msgstr "Luo (Kenya e Tanzania)"
 msgid "Lushai"
 msgstr "Lushai"
 
-# LU
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxemburgo"
-
-# LU
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburgués"
-
-# MO
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macau"
-
-# MK
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Macedonio"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagascar"
-
 # MV
 # fuzzy
 #. language code: mad
@@ -2802,6 +3428,11 @@ msgstr "Madurese"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marsellés "
+
 # ML
 # fuzzy
 #. language code: mai
@@ -2817,197 +3448,65 @@ msgid "Makasar"
 msgstr "Makasar"
 
 # MY
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malgaxe"
-
-# MW
-# fuzzy
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Kanu"
-
-# MT
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malaio"
-
-# MY
 # fuzzy
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malayalam "
 
-# MY
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaisia"
-
-# MV
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldivas"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Formato de URI incorrecto"
-
-# ML
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Malí"
-
-# MT
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-# MV
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltés"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchú"
-
-# MM
-# fuzzy
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Linguas Manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maorí"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronésicas (Outras)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-# FO
-# fuzzy
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Illas Marshall"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marsellés "
-
-# MU
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinica"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 # MW
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-# MR
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritania"
-
-# MU
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauricio"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Linguas Maias"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "O medio fonte '%s' non contén o medio desexado"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "O medio '%s' está en uso por outra instancia"
+# MT
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malaio"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Medio non anexado"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "O medio non se abriu cando se tentaba realizar a acción '%s'."
+# MM
+# fuzzy
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende "
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Francia Metropolitana"
-
-# MX
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "México"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Gaélico Irlandés, Medio (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -3019,89 +3518,64 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-# FM
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandés"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Linguas varias"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Khmer (Outras)"
+
+# MY
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malgaxe"
+
+# MV
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltés"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manchú"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Linguas Manobo"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 # BO
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldavo"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldavia"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Khmer (Outras)"
-
-# MO
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Mónaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolia"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongol"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marrocos"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambique"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -3112,63 +3586,71 @@ msgstr "Linguas múltiples"
 msgid "Munda languages"
 msgstr "Linguas Munda"
 
-# MM
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Birmania"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+# FM
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandés"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Linguas Maias"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuátl"
 
-# GM
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Indíxenas Norteamericanas"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Napolitano"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navaxo "
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele, Norte"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele, Sur"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele, Norte"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga "
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Napolitano"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Bhasa Nepalí"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Baixo Alemán"
 
 # ML
 # fuzzy
@@ -3177,160 +3659,74 @@ msgstr "Bhasa Nepalí"
 msgid "Nepali"
 msgstr "Nepalí"
 
-# NL
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Países Baixos"
-
-# AN
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Antillas Neerlandesas"
-
-# NC
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nova Caledonia"
-
-# NZ
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nova Celandia"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Nova mensaxe de actualización"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Bhasa Nepalí"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-# NI
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-# NG
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Níxer"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Niger-Kordofanianas (Outras)"
 
 # NG
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nixeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo- Saharianas (Outras)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
-# NG
 # fuzzy
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niuean"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Sen código"
-
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Non hai ningún enderezo url no repositorio."
-
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
-msgstr "Nogai"
-
-# FO
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Illa de Norfolk"
-
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
-msgstr "Nórdico Antigo"
-
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Indíxenas Norteamericanas"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Corea do Norte"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Illas Marianas do Norte"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Sami Norte"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Sotho Norte"
-
-# NO
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Noruega"
-
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
-msgstr "Noruegués"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Noruegués Nynorsk"
 
 #. language code: nob nb
 #: zypp/LanguageCode.cc:805
 msgid "Norwegian Bokmal"
 msgstr "Noruegués Bokmal"
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Noruegués Nynorsk"
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
+msgstr "Nogai"
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Non é un dispositivo CDROM"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
+msgstr "Nórdico Antigo"
+
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
+msgstr "Noruegués"
+
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Sotho Norte"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Linguas Nubias"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Newarí Clásico"
+
+# CL
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa "
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3351,10 +3747,6 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Desactualiza"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3365,20 +3757,6 @@ msgstr "Occitano (post 1500)"
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Omán"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Necesítanse un ou ambos os dous atributos '%s' ou '%s'"
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Operación non admitida polo medio"
-
 # SY
 # fuzzy
 #. language code: ori or
@@ -3401,20 +3779,25 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Oseto"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turco, Otomano (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Linguas Otomi"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"O paquete %s semella que se danou durante a transferencia. Quéreo volver "
-"obter?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Pupuaenses (Outras)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinan "
 
 # PW
 # fuzzy
@@ -3423,39 +3806,6 @@ msgstr ""
 msgid "Pahlavi"
 msgstr "1Pahlavi"
 
-# TJ
-# fuzzy
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Paquistán"
-
-# PW
-# fuzzy
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Paraguai"
-
-# PW
-# fuzzy
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauan"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Territorios Palestinos"
-
-# ML
-# fuzzy
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali "
-
 # PY
 #. language code: pam
 #: zypp/LanguageCode.cc:851
@@ -3463,17 +3813,6 @@ msgid "Pampanga"
 msgstr "Pampanga "
 
 # PA
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panamá"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinan "
-
-# PA
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3484,98 +3823,49 @@ msgstr "Panjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papúa-Nova Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Pupuaenses (Outras)"
-
-# PY
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguai"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "A ruta '%s' no medio '%s' non é un directorio."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "A ruta '%s' no medio '%s' non é un ficheiro."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Permiso de acceso a '%s' denegado."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persa"
+# PW
+# fuzzy
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauan"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Persa Antigo (ca 600-400 B.C)"
 
-# PE
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Perú"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persa"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Filipinas (Outras)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipinas"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Fenicio"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "PPitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Instale primeiro o paquete 'lsof'."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeian"
-
-# PL
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polonia"
+# ML
+# fuzzy
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali "
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Polaco"
 
-# PT
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeian"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3588,89 +3878,21 @@ msgstr "Portugués"
 msgid "Prakrit Languages"
 msgstr "Linguas Pakrit"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Determinación do problema, o que significa soporte técnico designado para "
-"prover información de compatibilidade, asistencia de instalación, soporte de "
-"uso, mantemento sobre a marcha e solucións básicas. Nivel 1 de soporte está "
-"pensado para corrixir erros por defectos do produto."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Illamento do problema, o que significa soporte técnico designado para "
-"duplicar os problemas do cliente, illar a área problemática e prover unha "
-"solución por problemas non resoltos polo Nivel 1 de soporte."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Resolución de problemas, significa soporte técnico designado para resolver "
-"problemas complexos ao utilizar enxeñaría na resolución de produtos "
-"defectuosos identificados polo Nivel 2 de soporte."
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
-msgstr "Provenzal Antigo (Ata 1500)"
-
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Proporciona"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Porto Rico"
+msgstr "Provenzal Antigo (Ata 1500)"
 
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pushto "
 
-# QA
-# fuzzy
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "A análise de cadeas de consulta non é compatible con este enderezo URL"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "Fallou RPM: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Retorrománico "
-
 # TJ
 # fuzzy
 #. language code: raj
@@ -3689,52 +3911,15 @@ msgstr "Rapanui"
 msgid "Rarotongan"
 msgstr "Rarotongan"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Recomenda"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Non se permiten rutas alternativas se existe unha autoridade"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Eliminando o repositorio '%s'"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "O alias do repositorio non pode comezar cun punto."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Falta o atributo requirido '%s'."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Require"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunión"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Románicas, Outras Linguas"
 
-# RO
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romanía"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Romanés"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Retorrománico "
 
 # RO
 #. language code: rom
@@ -3742,6 +3927,11 @@ msgstr "Romanés"
 msgid "Romany"
 msgstr "Romanés"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Romanés"
+
 # IN
 # fuzzy
 #. language code: run rn
@@ -3754,49 +3944,28 @@ msgstr "Rundi "
 msgid "Russian"
 msgstr "Ruso"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Federación Rusa"
-
-# RW
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Santa Helena"
+# CA
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandawe"
 
-# KN
+# SD
 # fuzzy
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts e Nevis"
-
-# LC
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Santa Lucía"
-
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "San Martín"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango "
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "San Pedro e Miguelón"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Yakut"
 
-# VC
-# fuzzy
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "San Vicente e Granadinas"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Indíxenas Sudamericanas (Outras)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3808,227 +3977,87 @@ msgstr "Linguas Salish"
 msgid "Samaritan Aramaic"
 msgstr "Amárico Samaritano"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Sami, Outras Linguas"
-
-# KH
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoano"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-# CA
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandawe"
-
-# SD
-# fuzzy
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sango "
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sánscrito"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "Santali"
-
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "San Tomé e Príncipe"
-
-# MR
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardo"
-
 #. language code: sas
 #: zypp/LanguageCode.cc:919
 msgid "Sasak"
 msgstr "Sasak"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Arabia Saudita"
-
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "Escocés"
-
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "Selkup"
-
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "Semitas (Outras)"
-
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbia"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbio"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "O alias do servizo non pode comezar cun punto."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
-
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seicheles"
-
-# SD
-# fuzzy
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "Shan  "
-
-# SI
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-# LT
-# fuzzy
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "Santali"
+
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbio"
 
 #. language code: scn
 #: zypp/LanguageCode.cc:927
 msgid "Sicilian"
 msgstr "Siciliano"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "Sidamo"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "Escocés"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Serra Leona"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Croata"
+
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "Selkup"
+
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "Semitas (Outras)"
+
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Gaélico Irlandés Antigo (ata o 900)"
 
 #. language code: sgn
 #: zypp/LanguageCode.cc:941
 msgid "Sign Languages"
 msgstr "Linguas de Signos"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Non se atopou o ficheiro da sinatura %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
+# SD
+# fuzzy
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "Shan  "
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "Sidamo"
 
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Sinhala"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-Tibetanas (Outras)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Linguas Siouan"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Sami Skolt"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-Tibetanas (Outras)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -4040,23 +4069,62 @@ msgstr "Eslavas (Outras)"
 msgid "Slovak"
 msgstr "Eslovaco"
 
-# SK
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Eslovaquia"
-
-# SI
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Eslovenia"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Esloveno"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Sami Sur"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Sami Norte"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Sami, Outras Linguas"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Sami Lule"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Sami Inari"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoano"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Sami Skolt"
+
+# SI
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
+
 # SD
 # fuzzy
 #. language code: sog
@@ -4064,12 +4132,6 @@ msgstr "Esloveno"
 msgid "Sogdian"
 msgstr "Sogdian"
 
-# FO
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Illas Salomón"
-
 # SO
 # fuzzy
 #. language code: som so
@@ -4077,105 +4139,48 @@ msgstr "Illas Salomón"
 msgid "Somali"
 msgstr "Somalí"
 
-# SO
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "Songhai"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Linguas Sorbias"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Esta versión de libzypp foi compilada sen soporte para HAL."
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Sotho do sur "
 
-# ZA
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Sudáfrica"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Indíxenas Sudamericanas (Outras)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Illas Xeorxia do Sur e Sandwich do Sur"
-
-# ZA
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Corea do Sur"
-
-# ZA
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Altai do Sur"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Sami Sur"
-
-# ES
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "España"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Español"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+# MR
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardo"
 
-# SD
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudán"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
+
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo- Saharianas (Outras)"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Suxire"
+# ES
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swati "
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumerio"
-
 # SD
 # fuzzy
 #. language code: sun su
@@ -4183,26 +4188,15 @@ msgstr "Sumerio"
 msgid "Sundanese"
 msgstr "Sundanés "
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Suple"
-
-# SY
-# fuzzy
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard e Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumerio"
 
 # SZ
 # fuzzy
@@ -4211,67 +4205,17 @@ msgstr "Svalbard e Jan Mayen"
 msgid "Swahili"
 msgstr "Suaxili "
 
-# ES
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati "
-
-# SZ
-# fuzzy
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Suacilandia"
-
-# SE
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Suecia"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Sueco"
 
-# CH
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Suíza"
-
-# SY
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Siria"
-
 # SY
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Sirio"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Excepción do sistema '%s' no medio '%s'."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"A xestión do sistema está bloqueada polo aplicativo con pid %d (%s).\n"
-"Peche este aplicativo antes de tentalo de novo."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalo"
-
 # TW
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
@@ -4283,41 +4227,11 @@ msgstr "Tahitiano"
 msgid "Tai (Other)"
 msgstr "Tai (Outras)"
 
-# TW
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwán"
-
-# TJ
-# fuzzy
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Taxiko "
-
-# TJ
-# fuzzy
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Taiwán"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamashek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzania"
-
 # QA
 # fuzzy
 #. language code: tat tt
@@ -4331,6 +4245,11 @@ msgstr "Tártaro "
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4341,34 +4260,23 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+# TJ
+# fuzzy
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Taxiko "
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalo"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Tailandés"
 
-# TH
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tailandia"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "O nivel de soporte non está especificado"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "O fabricante non fornece soporte."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Esta acción xa está a ser executada por outro programa."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Esta solicitude danará o seu sistema!"
-
 # TW
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
@@ -4387,46 +4295,25 @@ msgstr "Tigre"
 msgid "Tigrinya"
 msgstr "Tigrinia"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Tempo de espera excedido ao acceder a '%s'."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Toquelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4438,91 +4325,58 @@ msgstr "Tonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Illas Tonga)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-# TT
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trindade e Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimshian"
 
+# TW
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana "
+
 # EE
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga "
 
-# TW
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana "
+# TR
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turcomano "
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-# TN
-# fuzzy
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Rusia"
-
 #. language code: tup
-#: zypp/LanguageCode.cc:1069
-msgid "Tupi Languages"
-msgstr "Linguas Tupí"
-
-# TR
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turquía"
-
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "Turco"
-
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turco, Otomano (1500-1928)"
-
-# TR
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turcomano "
+#: zypp/LanguageCode.cc:1069
+msgid "Tupi Languages"
+msgstr "Linguas Tupí"
 
-# TJ
-# fuzzy
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistán"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "Turco"
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Illas Turcos e Caicos"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaicas (Outras)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
 # TN
 # fuzzy
@@ -4531,22 +4385,11 @@ msgstr "Tuvalu"
 msgid "Tuvinian"
 msgstr "Tuvinian"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Udmurt"
 
-# UG
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4558,12 +4401,6 @@ msgid "Uighur"
 msgstr "Uigur"
 
 # UA
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ucraína"
-
-# UA
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4574,203 +4411,31 @@ msgstr "Ucraíno"
 msgid "Umbundu"
 msgstr "Umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Non se pode clonar o obxecto URL"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Non foi posible crear a conexión co dbus"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Non foi posible iniciar o contexto HAL - hald non está en execución?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Non se poden analizar os compoñentes de URL"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Non determinado "
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Repositorio"
-
-# US
-# fuzzy
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Emiratos Árabes Unidos"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Reino Unido"
-
-# US
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Estados Unidos de América"
-
-# UM
-# fuzzy
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Estados Unidos de América"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "País descoñecido: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Erro descoñecido ao ler desde '%s'"
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Lingua descoñecida: "
-
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Modo de coincidencias '%s' descoñecido "
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Modo de coincidencias '%s' descoñecido para o patrón '%s'."
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Opción de soporte descoñecida. Descrición non dispoñible"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Método de autenticación HTTP non soportado '%s'"
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Esquema de URL non soportado en '%s'."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Alto Sórabo "
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "Urdu"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "O esquema de Url non permite un elemento %s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "O esquema de Url non permite un compoñente host"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "O esquema de Url non permite un contrasinal"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "O esquema de Url non permite un porto"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "O esquema de Url non permite un nome de usuario"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "O esquema de Url é un compoñente obrigatorio"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "O esquema de Url require un compoñente de host"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "O esquema de Url require un nome de ruta"
-
-# UY
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguai"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "Usbeco"
 
-# TJ
-# fuzzy
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Usbekistán"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "Vai"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-#, fuzzy
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "Metadatos válidos non atopados no(s) URL(s) especificado(s)"
-msgstr[1] "Metadatos válidos non atopados no(s) URL(s) especificado(s)"
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "Venda "
 
-# VE
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-# VN
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
-
 # VN
 # fuzzy
 #. language code: vie vi
@@ -4778,21 +4443,6 @@ msgstr "Vietnam"
 msgid "Vietnamese"
 msgstr "Vietnamita"
 
-# VI
-# fuzzy
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Illas Virxes Estadounidenses"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Visite o Novell Customer Center para verificar se o seu rexistro é válido e "
-"non caducou."
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4813,16 +4463,6 @@ msgstr "Linguas Wakashan"
 msgid "Walamo"
 msgstr "Walamo"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis e Futuna"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Valón"
-
 # PY
 #. language code: war
 #: zypp/LanguageCode.cc:1111
@@ -4839,26 +4479,31 @@ msgstr "Washo"
 msgid "Welsh"
 msgstr "Galés"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Sáhara Occidental"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Linguas Sorbias"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Valón"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "Wolof"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmyk"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "Xhosa"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Yakut"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4869,11 +4514,6 @@ msgstr "Yao"
 msgid "Yapese"
 msgstr "Yapese"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Iemen"
-
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
 msgid "Yiddish"
@@ -4891,17 +4531,6 @@ msgstr "Ioruba "
 msgid "Yupik Languages"
 msgstr "Linguas Yupik"
 
-# ZM
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
-
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
-
 #. language code: zap
 #: zypp/LanguageCode.cc:1139
 msgid "Zapotec"
@@ -4913,339 +4542,784 @@ msgstr "Zapoteca"
 msgid "Zenaga"
 msgstr "Zenaga"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang "
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang "
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulú"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuñi"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Fallo ao eliminar a chave."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Non se atopou o ficheiro da sinatura %s"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Non se pode fornecer o ficheiro '%s' desde o repositorio '%s'"
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Non hai ningún enderezo url no repositorio."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr ""
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"O paquete %s semella que se danou durante a transferencia. Quéreo volver "
+"obter?"
+
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr ""
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Non se puido fornecer o paquete %s. Quéreo volver obter?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "fallou na verificación de applydeltarpm."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "fallou applydeltarpm."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"A xestión do sistema está bloqueada polo aplicativo con pid %d (%s).\n"
+"Peche este aplicativo antes de tentalo de novo."
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s non pertence ao repositorio de actualización da distribución"
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s ten unha arquitectura inferior"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "houbo un problema co paquete instalado %s"
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "peticións en conflito"
+
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "algúns problemas de dependencias"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "no hai nada que forneza o solicitado %s"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Activou todos os repositorios solicitados?"
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s non é instalable"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "no hai nada que forneza %s e que o necesita %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "non se puido instalar %s e %s"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s ten un conflito con %s, fornecido por %s"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s está obsoleto %s fornecido por %s"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s instalado, deixa obsoleto a %s fornecido por %s"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "a solución %s ten conflitos con %s fornecida por esta mesma"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s require %s, pero este requerimento non pode ser fornecido"
+
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "fornecedores eliminados: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"provedores non instalables: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "provedores non instalables: "
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "non instalar %s"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "Manter %s"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Esta solicitude danará o seu sistema!"
+
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ignorar o aviso de sistema danado"
+
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "non preguntar en caso de instalar algún elemento que forneza %s"
+
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "non preguntar en caso de eliminar todos os elementos que fornecen %s"
+
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "non instalar a versión máis recente de %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Cimbabue"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "manter %s sen importar que sexa dunha arquitectura inferior"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulú"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "instalar %s aínda que cambie a arquitectura"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuñi"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "manter o antigo %s"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "fallou na verificación de applydeltarpm."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "instalar %s desde os repositorios excluídos"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "fallou applydeltarpm."
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "desactualizar de %s a %s"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr "modificación de arquitectura de %s para %s"
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"instalar %s (con cambio de provedor)\n"
+"  %s -->  %s"
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "substitución de %s con %s"
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "desinstalación de %s"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "quebrar %s ao ignorar algunhas das dependencias"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr ""
+
+#: zypp/parser/RepoindexFileReader.cc:197
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "non se puido instalar %s e %s"
+msgid "Required attribute '%s' is missing."
+msgstr "Falta o atributo requirido '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "peticións en conflito"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Necesítanse un ou ambos os dous atributos '%s' ou '%s'"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/base/InterProcessMutex.cc:83
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "copia de seguridade %s creada"
+msgid "Can't open lock file: %s"
+msgstr "Non se pode abrir o ficheiro de bloqueo: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Esta acción xa está a ser executada por outro programa."
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Historial:"
+
+#: zypp/base/StrMatcher.cc:152
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "desinstalación de %s"
+msgid "Unknown match mode '%s'"
+msgstr "Modo de coincidencias '%s' descoñecido "
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "fornecedores eliminados: "
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Modo de coincidencias '%s' descoñecido para o patrón '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "non preguntar en caso de eliminar todos os elementos que fornecen %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Expresión regular '%s' incorrecta: regcomp devolveu %d"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "non preguntar en caso de instalar algún elemento que forneza %s"
+msgid "Invalid regular expression '%s'"
+msgstr "Expresión regular '%s' incorrecta"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Instale primeiro o paquete 'lsof'."
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "non instalar %s"
+msgid "Authentication required for '%s'"
+msgstr "Autenticación necesaria para '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "non instalar a versión máis recente de %s"
+msgid "Failed to mount %s on %s"
+msgstr "Fallo ao montar %s en %s"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "desactualizar de %s a %s"
+msgid "Failed to unmount %s"
+msgstr "Fallo ao desmontar %s"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr ""
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Nome de ficheiro danado: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ignorar o aviso de sistema danado"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "O medio non se abriu cando se tentaba realizar a acción '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"instalar %s (con cambio de provedor)\n"
-"  %s -->  %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Non se atopa o ficheiro '%s' no medio '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "instalar %s aínda que cambie a arquitectura"
+msgid "Cannot write file '%s'."
+msgstr "Non se puido escribir o ficheiro '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Medio non anexado"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Punto de inserción de medio incorrecto"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "instalar %s desde os repositorios excluídos"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "O inicio da descarga (curl) fallou para '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s instalado, deixa obsoleto a %s fornecido por %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "Excepción do sistema '%s' no medio '%s'."
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "incorrecto"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "A ruta '%s' no medio '%s' non é un ficheiro."
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "Manter %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "A ruta '%s' no medio '%s' non é un directorio."
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Formato de URI incorrecto"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Nome de host baleiro en URI"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Sistema de ficheiros baleiro en URI"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Destino baleiro en URI"
+
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "manter %s sen importar que sexa dunha arquitectura inferior"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Esquema de URL non soportado en '%s'."
+
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operación non admitida polo medio"
+
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Erro na descarga (curl) de '%s':\n"
+"Código de erro: %s\n"
+"Mensaxe de erro: %s\n"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "Ocorreu un erro ao establecer as opcións de descarga (curl) para '%s':"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "manter o antigo %s"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "O medio fonte '%s' non contén o medio desexado"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: non foi posible crear o contexto libhal"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "O medio '%s' está en uso por outra instancia"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: non se puido definir a conexión con dbus"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Non é posible expulsar ningún medio"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "no hai nada que forneza %s e que o necesita %s"
+msgid "Cannot eject media '%s'"
+msgstr "Non se puido expulsar o soporte '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "no hai nada que forneza o solicitado %s"
+msgid "Permission to access '%s' denied."
+msgstr "Permiso de acceso a '%s' denegado."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr ""
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Tempo de espera excedido ao acceder a '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "houbo un problema co paquete instalado %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "A localización '%s' está neste intre inaccesible."
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
+" Problema no certificado SSL, comprobe se a certificación CA é correcta para "
+"'%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
+"Non é posible atopar un dispositivo bucle dispoñible para montar a imaxe "
+"desde '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "substitución de %s con %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Método de autenticación HTTP non soportado '%s'"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm creou %s como %s, pero no se pode determinar a diferenza"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Visite o Novell Customer Center para verificar se o seu rexistro é válido e "
+"non caducou."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Non se pode crear sat-pool."
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm creou %s como %s.\n"
-"A continuación amósanse as primeiras 25 líñas de diferenza:\n"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm gardou %s como %s, pero non se pode determinar a diferenza"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm gardou %s como %s.\n"
-"A continuación amósanse as primeiras 25 líñas de diferenza:\n"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "a solución %s ten conflitos con %s fornecida por esta mesma"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "algúns problemas de dependencias"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "provedores non instalables: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "xeralmente ignorar algunhas dependencias"
+
+#~ msgid "do not forbid installation of %s"
+#~ msgstr "non prohibir a instalación de %s"
+
+#~ msgid "do not keep %s installed"
+#~ msgstr "non manter instalado %s"
+
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "خيار list غير معروف"
+
+#~ msgid ""
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "لا يحتوي الملف %s على مجموع اختباري.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الملف %s باستخدام المفتاح التالي:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير صالح.\n"
+#~ "متوقع %s، تم العثور على %s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير معروف %s.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "لم يتم توقيع الملف %s.\n"
+#~ "هل تريد استخدامه على أي حال؟"
+
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "تم توقيع الملف %s باستخدام مفتاح غير معروف:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "descoñecido"
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "تم العثور على مفتاح غير موثوق:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد الوثوق بالمفتاح؟"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "non soportado"
+#, fuzzy
+#~ msgid "Invalid user name or password."
+#~ msgstr "كلمة السر CA غير صالحة."
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#~ msgid "rpm output:"
+#~ msgstr "مخرجات rpm:"
 
 #, fuzzy
 #~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
-#~ msgstr ""
-#~ "\n"
-#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
+#, fuzzy
 #~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
-#~ msgstr ""
-#~ "\n"
-#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
-#~ msgid " Error!"
-#~ msgstr "خطأ!"
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
 
-#~ msgid " Important!"
-#~ msgstr "هام!"
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
 
-#~ msgid " fails checksum verification."
-#~ msgstr "فشل التحقق من المجموع الاختباري."
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "تجاهل %s القديم في %s"
 
-#~ msgid " miss checksum."
-#~ msgstr "فقد المجموع الاختباري."
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "تجاهل تعارض %s هذا"
 
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "تعذر ØªØ«Ø¨Ù\8aت %s Ø¨Ø³Ø¨Ø¨ Ø¹Ø¯Ù\85 Ù\88جÙ\88د Ø§Ù\84تبعÙ\8aات"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "تجاÙ\87Ù\84 Ù\87ذا Ø§Ù\84Ù\85تطÙ\84ب Ù\87Ù\86ا Ù\81Ù\82Ø·"
 
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
 
-#~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "%s يتعارض مع:\n"
-#~ "%s"
+#~ msgid "Install missing resolvables"
+#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
 
-#~ msgid "%s depended on %s"
-#~ msgstr "%s اعتمد على %s"
+#~ msgid "Keep resolvables"
+#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
 
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s اعتمد على %s"
+#~ msgid "Unlock these resolvables"
+#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
 
-#~ msgid "%s depends on %s"
-#~ msgstr "%s يعتمد على %s"
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
 
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
+#~ msgid "install %s"
+#~ msgstr "تثبيت %s"
 
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s يعتمد على:%s"
+#~ msgid "unlock %s"
+#~ msgstr "إلغاء قفل %s"
+
+#~ msgid "unlock all resolvables"
+#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
 
 #, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
+#~ msgid "Can't open solv-file: "
+#~ msgstr "تعذر فتح الملف %1."
 
 #, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
+#~ msgid "Error reading solv-file: "
+#~ msgstr "تعذرت قراءة القطاع %u."
 
-#~ msgid "%s has missing dependencies"
-#~ msgstr "تم فقد تبعيات %s"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "لم يتم استيفاء متطلبات %s"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#, fuzzy
-#~ msgid "%s install failed"
-#~ msgstr "Cron executouse con fallas"
+#~ msgid "Software management is already running."
+#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
 
-#, fuzzy
-#~ msgid "%s installed ok"
-#~ msgstr "Non instalado"
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#, fuzzy
-#~ msgid "%s is enhanced by %s"
+#~ msgid "%s replaced by %s"
 #~ msgstr "%s تم استبداله بـ %s"
 
 #, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
+#~ msgid "%s will be deleted by the user.\n"
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s يفتقد المتطلب %s"
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#~ msgid "%s is locked and cannot be uninstalled."
-#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
+#~ msgid "Invalid information"
+#~ msgstr "المعلومات غير صالحة"
 
 #~ msgid "%s is needed by other resolvables"
 #~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
@@ -5257,57 +5331,15 @@ msgstr ""
 #~ "%s مطلوب بواسطة\n"
 #~ "%s"
 
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
-
-#, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
-
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
-#~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
-
-#, fuzzy
-#~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
-#~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
-
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
-#~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
-#~ "الارتباط."
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
 
-#, fuzzy
 #~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
+#~ "%s conflicts with:\n"
+#~ "%s"
 #~ msgstr ""
-#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
-
-#, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
-
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
-
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
-
-#, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
+#~ "%s يتعارض مع:\n"
+#~ "%s"
 
 #~ msgid "%s obsoletes other resolvables"
 #~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
@@ -5315,446 +5347,414 @@ msgstr ""
 #~ msgid "%s obsoletes:%s"
 #~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
-#~ msgid "%s part of %s"
-#~ msgstr "%s جزء من %s"
-
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
 
-#, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
+#~ msgid "%s depends on %s"
+#~ msgstr "%s يعتمد على %s"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s يعتمد على:%s"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s يوفر %s، لكنه مقفل."
+#~ msgid "Child of"
+#~ msgstr "عنصر فرعي لـ"
 
+#, fuzzy
 #~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
 #~ msgstr ""
-#~ "%s يوفر %s، لكنه قابل لإلغاء التثبيت.  حاول تثبيته للحصول على مزيد من "
-#~ "التفاصيل."
+#~ "\n"
+#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
 
 #, fuzzy
 #~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
+
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
+
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "لم يتم استيفاء متطلبات %s"
+
+#~ msgid "%s has missing dependencies"
+#~ msgstr "تم فقد تبعيات %s"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
 
 #, fuzzy
-#~ msgid "%s remove failed"
-#~ msgstr "Eliminar elemento"
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
 
 #, fuzzy
-#~ msgid "%s remove ok"
-#~ msgstr "Eliminar elemento"
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
 
-#~ msgid "%s replaced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
+#~ msgid "No need to install %s"
+#~ msgstr "لا داعي لتثبيت %s"
 
 #, fuzzy
-#~ msgid "%s will be deleted by the user.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#, fuzzy
-#~ msgid "%s will be installed by the user.\n"
-#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
 #, fuzzy
 #~ msgid "%s will not be uninstalled, because it is still required"
 #~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
+
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "تعذر تثبيت %s لأنه متعارض"
+
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
+
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
+
+#, fuzzy
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s يفتقد المتطلب %s"
+
 #~ msgid ", Action: "
 #~ msgstr "، الإجراء:"
 
 #~ msgid ", Trigger: "
 #~ msgstr "، تشغيل:"
 
-#, fuzzy
-#~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
-#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
-
-#~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
-#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
+#~ msgid "package"
+#~ msgstr "الحزمة"
 
-#~ msgid "Can't chdir to '/' inside chroot (%s)."
-#~ msgstr "Non se pode facer chdir a '/' dentro de chroot (%s)."
+#~ msgid "selection"
+#~ msgstr "التحديد"
 
-#, fuzzy
-#~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
-#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
+#~ msgid "pattern"
+#~ msgstr "النمط"
 
-#, fuzzy
-#~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
-#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
+#~ msgid "product"
+#~ msgstr "المنتج"
 
-#, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
+#~ msgid "patch"
+#~ msgstr "التصحيح"
 
-#, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "تعذر فتح الملف %1."
+#~ msgid "script"
+#~ msgstr "البرنامج النصي"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "تعذر Ø§Ø³ØªÙ\8aÙ\81اء Ù\85تطÙ\84ب %s Ù\84Ù\80 %s"
+#~ msgid "message"
+#~ msgstr "اÙ\84رساÙ\84Ø©"
 
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
-#~ msgstr "تعذر ØªØ«Ø¨Ù\8aت %s Ù\84استÙ\8aÙ\81اء ØªØ¨Ø¹Ù\8aات %s"
+#~ msgid "atom"
+#~ msgstr "اÙ\84ذرة"
 
-#~ msgid "Cannot create a file needed to perform update installation."
-#~ msgstr "تعذر Ø¥Ù\86شاء Ø§Ù\84Ù\85Ù\84Ù\81 Ø§Ù\84Ù\85Ø·Ù\84Ù\88ب Ù\84تÙ\86Ù\81Ù\8aØ° Ø¹Ù\85Ù\84Ù\8aØ© ØªØ«Ø¨Ù\8aت Ø§Ù\84تحدÙ\8aØ«."
+#~ msgid "system"
+#~ msgstr "اÙ\84Ù\86ظاÙ\85"
 
-#~ msgid "Cannot create public key %s from %s keyring to file %s"
-#~ msgstr ""
-#~ "Non se pode crear a chave pública %s do anel de chaves %s ao ficheiro %s"
+#~ msgid "Resolvable"
+#~ msgstr "التبعية القابلة للتحليل"
 
-#~ msgid "Cannot install %s to fulfil the dependencies of %s"
-#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
 
-#, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
 
 #, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting"
-#~ msgstr "تعذر تثبيت %s لأنه متعارض"
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
 
 #, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
-
-#~ msgid "Child of"
-#~ msgstr "عنصر فرعي لـ"
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "عدÙ\85 ØªØ«Ø¨Ù\8aت Ø§Ù\84تبعÙ\8aات Ø§Ù\84Ù\82ابÙ\84Ø© Ù\84Ù\84تحÙ\84Ù\8aÙ\84 Ø§Ù\84Ù\85تعÙ\84Ù\82Ø© Ø£Ù\88 Ø­Ø°Ù\81Ù\87ا"
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "تعذر ØªØ«Ø¨Ù\8aت %s Ù\84Ø£Ù\86Ù\87 Ù\84ا Ù\8aÙ\86طبÙ\82 Ø¹Ù\84Ù\89 Ù\87ذا Ø§Ù\84Ù\86ظاÙ\85."
 
 #, fuzzy
-#~ msgid "Double timeout"
-#~ msgstr "موعد الاستحقاق: %1"
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
 
-#~ msgid "Download (Metalink curl) initialization failed for '%s'"
-#~ msgstr "O inicio da descarga (Metalink curl) fallou para '%s'"
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
 
-#~ msgid ""
-#~ "Download (metalink curl) error for '%s':\n"
-#~ "Error code: %s\n"
-#~ "Error message: %s\n"
-#~ msgstr ""
-#~ "Erro na descarga (metalink curl) de '%s':\n"
-#~ "Código de erro: %s\n"
-#~ "Mensaxe de erro: %s\n"
+#~ msgid "Establishing %s"
+#~ msgstr "تأسيس %s"
 
-#~ msgid "Download interrupted at %d%%"
-#~ msgstr "Descarga interrompida en %d%%"
+#~ msgid "Installing %s"
+#~ msgstr "تثبيت %s"
 
-#~ msgid "Download interrupted by user"
-#~ msgstr "Descarga interrompida polo usuario"
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
 
-#~ msgid "Downloading %s"
-#~ msgstr "Ø¥Ù\86زاÙ\84 %s"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "تخطÙ\8a %s: ØªÙ\85 Ø§Ù\84تثبÙ\8aت Ø¨Ø§Ù\84Ù\81عÙ\84"
 
 #, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
 
-#~ msgid ""
-#~ "Error occurred while setting download (metalink curl) options for '%s':"
-#~ msgstr ""
-#~ "Ocorreu un erro ao establecer as opcións de descarga (metalink curl) para "
-#~ "'%s':"
+#~ msgid "for %s"
+#~ msgstr "لـ %s"
 
 #, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "تعذرت قراءة القطاع %u."
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
 
-#~ msgid "Establishing %s"
-#~ msgstr "تأسيس %s"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
 
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Erro ao descargar %s desde %s"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
 
 #~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "لا يحتوي الملف %s على مجموع اختباري.\n"
-#~ "هل تريد استخدام الملف على أي حال؟"
+#~ "%s يوفر %s، لكنه قابل لإلغاء التثبيت.  حاول تثبيته للحصول على مزيد من "
+#~ "التفاصيل."
 
-#~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "فشل التحقق من سلامة الملف %s باستخدام المفتاح التالي:\n"
-#~ "%s|%s|%s\n"
-#~ " هل تريد استخدام الملف على أي حال؟"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s يوفر %s، لكنه مقفل."
 
-#~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "يحتوي الملف %s على مجموع اختباري غير صالح.\n"
-#~ "متوقع %s، تم العثور على %s\n"
-#~ " هل تريد استخدام الملف على أي حال؟"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
+
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
+
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
 #~ msgstr ""
-#~ "يحتوي الملف %s على مجموع اختباري غير معروف %s.\n"
-#~ "هل تريد استخدام الملف على أي حال؟"
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
 #~ msgstr ""
-#~ "لم يتم توقيع الملف %s.\n"
-#~ "هل تريد استخدامه على أي حال؟"
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
+
+#, fuzzy
 #~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "تم توقيع الملف %s باستخدام مفتاح غير معروف:\n"
-#~ "%s|%s|%s\n"
-#~ " هل تريد استخدام الملف على أي حال؟"
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
 
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "تجاÙ\87Ù\84 Ø£Ù\86Ù\87 ØªÙ\85 ØªØ¹Ù\8aÙ\8aÙ\86 %s Ø¨Ø§Ù\84Ù\81عÙ\84 Ù\84تثبÙ\8aتÙ\87"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعÙ\84Ù\8aÙ\85 %s Ø¨Ø§Ø¹ØªØ¨Ø§Ø±Ù\87 Ù\82ابÙ\84 Ù\84Ø¥Ù\84غاء Ø§Ù\84تثبÙ\8aت Ø¨Ø³Ø¨Ø¨ Ù\88جÙ\88د ØªØ¹Ø§Ø±Ø¶Ø§Øª Ø¹Ù\84Ù\89 %s"
 
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "تجاهل %s القديم في %s"
+#~ msgid "from %s"
+#~ msgstr "من %s"
 
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "تجاÙ\87Ù\84 ØªØ¹Ø§Ø±Ø¶ %s Ù\87ذا"
+#~ msgid " Error!"
+#~ msgstr "خطأ!"
 
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
+#~ msgid " Important!"
+#~ msgstr "هام!"
 
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "تجاهل هذا المتطلب هنا فقط"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s اعتمد على %s"
 
 #, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
-
-#~ msgid "Install missing resolvables"
-#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#~ msgid "Installing %s"
-#~ msgstr "تثبيت %s"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#~ msgid "Invalid information"
-#~ msgstr "المعلومات غير صالحة"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
 #, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "كلمة السر CA غير صالحة."
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#~ msgid "Keep resolvables"
-#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
+#~ msgid "%s part of %s"
+#~ msgstr "%s جزء من %s"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
+#, fuzzy
+#~ msgid "Double timeout"
+#~ msgstr "موعد الاستحقاق: %1"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "تعذر تحليل سلطة Url"
 
-#~ msgid "No need to install %s"
-#~ msgstr "لا داعي لتثبيت %s"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
 
-#, fuzzy
 #~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
 #~ msgstr ""
-#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
-#~ "اÙ\84تثبÙ\8aتØ\9f"
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
+#~ "اÙ\84ارتباط."
 
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "تحÙ\84Ù\8aÙ\84 Ù\85عÙ\84Ù\85Ø© Ø§Ù\84Ù\85سار ØºÙ\8aر Ù\85دعÙ\88Ù\85 Ù\84عÙ\86Ù\88اÙ\86 URL Ù\87ذا"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر Ø¥Ù\86شاء Ø§Ù\84Ù\85Ù\84Ù\81 Ø§Ù\84Ù\85Ø·Ù\84Ù\88ب Ù\84تÙ\86Ù\81Ù\8aØ° Ø¹Ù\85Ù\84Ù\8aØ© ØªØ«Ø¨Ù\8aت Ø§Ù\84تحدÙ\8aØ«."
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "تحÙ\84Ù\8aÙ\84 Ù\85عÙ\84Ù\85Ø© Ø§Ù\84Ù\85سار ØºÙ\8aر Ù\85دعÙ\88Ù\85 Ù\84عÙ\86Ù\88اÙ\86 URL Ù\87ذا"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "تعذرت Ø§Ø³ØªØ¹Ø§Ø¯Ø© Ù\83اÙ\81Ø© Ø§Ù\84Ù\85صادر."
 
-#~ msgid "Reading filelist from %s"
-#~ msgstr "قراءة قائمة الملفات من %s"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
+
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
 #~ msgid "Reading index files"
 #~ msgstr "قراءة ملفات الفهرس"
 
-#~ msgid "Reading packages file"
-#~ msgstr "قراءة ملف الحزم"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
+
+#~ msgid "Reading product from %s"
+#~ msgstr "قراءة المنتج من %s"
+
+#~ msgid "Reading filelist from %s"
+#~ msgstr "قراءة قائمة الملفات من %s"
 
 #~ msgid "Reading packages from %s"
 #~ msgstr "قراءة الحزم من %s"
 
-#~ msgid "Reading patch %s"
-#~ msgstr "قراءة التصحيح %s"
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
+
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
 
 #~ msgid "Reading patches index %s"
 #~ msgstr "قراءة فهرس التصحيحات %s"
 
-#~ msgid "Reading pattern from %s"
-#~ msgstr "قراءة النمط من %s"
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
 
-#~ msgid "Reading product from %s"
-#~ msgstr "Ù\82راءة Ø§Ù\84Ù\85Ù\86تج Ù\85Ù\86 %s"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "Ù\81Ø´Ù\84 Ù\85Ù\84Ù\81 Ø§Ù\84برÙ\86اÙ\85ج Ø§Ù\84Ù\86صÙ\8a Ù\81Ù\8a Ø§Ø®ØªØ¨Ø§Ø± Ø§Ù\84Ù\85جÙ\85Ù\88ع Ø§Ù\84اختبارÙ\8a."
 
-#~ msgid "Reading selection from %s"
-#~ msgstr "قراءة التحديد من %s"
+#~ msgid "Reading packages file"
+#~ msgstr "قراءة ملف الحزم"
 
 #~ msgid "Reading translation: %s"
 #~ msgstr "قراءة الترجمة: %s"
 
-#~ msgid "Resolvable"
-#~ msgstr "التبعية القابلة للتحليل"
-
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Serbia e Montenegro"
-
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "تخطي %s: تم التثبيت بالفعل"
-
-#~ msgid "Software management is already running."
-#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
+#~ "التثبيت؟"
 
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
 
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
 
-#, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
+#~ msgid "Downloading %s"
+#~ msgstr "إنزال %s"
 
-#~ msgid "This would invalidate %s."
-#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr ""
+#~ "Non se pode crear a chave pública %s do anel de chaves %s ao ficheiro %s"
 
 #~ msgid "Tried to import not existant key %s into keyring %s"
 #~ msgstr "Tentouse importar a chave inexistente %s no anel de chaves %s"
 
-#~ msgid "Unable to parse Url authority"
-#~ msgstr "تعذر تحليل سلطة Url"
-
-#~ msgid "Unable to restore all sources."
-#~ msgstr "تعذرت استعادة كافة المصادر."
-
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "خيار list غير معروف"
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "Non se pode facer chdir a '/' dentro de chroot (%s)."
 
-#~ msgid "Unlock these resolvables"
-#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "O inicio da descarga (Metalink curl) fallou para '%s'"
 
 #~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
 #~ msgstr ""
-#~ "تم العثور على مفتاح غير موثوق:\n"
-#~ "%s|%s|%s\n"
-#~ " هل تريد الوثوق بالمفتاح؟"
-
-#~ msgid "Updating %s to %s"
-#~ msgstr "تحديث %s إلى %s"
-
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
-
-#~ msgid "atom"
-#~ msgstr "الذرة"
-
-#~ msgid "delete %s"
-#~ msgstr "حذف %s"
-
-#~ msgid "do not forbid installation of %s"
-#~ msgstr "non prohibir a instalación de %s"
+#~ "Erro na descarga (metalink curl) de '%s':\n"
+#~ "Código de erro: %s\n"
+#~ "Mensaxe de erro: %s\n"
 
-#~ msgid "do not keep %s installed"
-#~ msgstr "non manter instalado %s"
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "Descarga interrompida en %d%%"
 
-#~ msgid "for %s"
-#~ msgstr "لـ %s"
+#~ msgid "Download interrupted by user"
+#~ msgstr "Descarga interrompida polo usuario"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "لطلب %s لـ %s عند تحديث %s"
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr ""
+#~ "Ocorreu un erro ao establecer as opcións de descarga (metalink curl) para "
+#~ "'%s':"
 
-#~ msgid "from %s"
-#~ msgstr "من %s"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Erro ao descargar %s desde %s"
 
-#~ msgid "generally ignore of some dependecies"
-#~ msgstr "xeralmente ignorar algunhas dependencias"
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Serbia e Montenegro"
 
 #, fuzzy
 #~ msgid "ignore some dependencies of %s"
 #~ msgstr "Depende de: !dependecies"
 
-#~ msgid "install %s"
-#~ msgstr "تثبيت %s"
-
-#~ msgid "message"
-#~ msgstr "الرسالة"
-
-#~ msgid "package"
-#~ msgstr "الحزمة"
-
-#~ msgid "patch"
-#~ msgstr "التصحيح"
-
-#~ msgid "pattern"
-#~ msgstr "النمط"
-
-#~ msgid "product"
-#~ msgstr "المنتج"
-
-#~ msgid "rpm output:"
-#~ msgstr "مخرجات rpm:"
-
-#~ msgid "script"
-#~ msgstr "البرنامج النصي"
-
-#~ msgid "selection"
-#~ msgstr "التحديد"
+#, fuzzy
+#~ msgid "%s remove failed"
+#~ msgstr "Eliminar elemento"
 
-#~ msgid "system"
-#~ msgstr "النظام"
+#, fuzzy
+#~ msgid "%s install failed"
+#~ msgstr "Cron executouse con fallas"
 
-#~ msgid "unlock %s"
-#~ msgstr "إلغاء قفل %s"
+#, fuzzy
+#~ msgid "%s installed ok"
+#~ msgstr "Non instalado"
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
+#, fuzzy
+#~ msgid "%s remove ok"
+#~ msgstr "Eliminar elemento"
index 51c1f15..b46ca8a 100644 (file)
--- a/po/gu.po
+++ b/po/gu.po
@@ -12,17 +12,93 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.10.2\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "હેલ અપવાદ"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "અમાન્ય LDAP URL ક્વેરિ સ્ટ્રીંગ"
+
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "અમાન્ય LDAP URL ક્વેરિ પારમિતિ '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Url વસ્તુને ક્લોન કરવામાં અક્ષમ"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "અમાન્ય ખાલી Url વસ્તુ સંદર્ભ"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Url ઘટકોને પાર્સ કરવામાં અક્ષમ"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "મ્યૂટેક્ષ ગુણધર્મ શરૂ કરી શકાયો નથી"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "રિકર્સિવ મ્યૂટેક્ષ ગુણધર્મ સેટ કરી શકાયો નથી"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "રિકર્સિવ મ્યૂટેક્ષ શરૂ કરી શકાયો નથી"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "મ્યૂટેક્ષ લોક સંપાદિત કરી શકાયો નથી"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "મ્યૂટેક્ષ લોક છોડી શકાયું નથી"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr ""
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr ""
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
 #, fuzzy
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr "%s ના કોઇ સ્થાપવાનું પૂરું પાડનાર નથી"
+msgid "Obsoletes"
+msgstr "%s અલગ પાડવું : %s"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -35,10 +111,6 @@ msgstr "ચલાવો"
 msgid " execution failed"
 msgstr "DBI Execution failed: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -47,93 +119,121 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s, %s સાથે વિસંગત છે"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+#, fuzzy
+msgid "Error sending update message notification."
+msgstr "કી એન્ક્રીપ્ટશન દરમિયાન ભૂલ."
+
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s, %s પૂરું પાડે છે, પરંતુ તેની પાસે બીજી સંરચના છે."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "સૂચના પ્રમાણે સ્થાપન અટકાવેલું હતું."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "સ્થાપેલ નથી"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s લોક છે અને અસ્થાપિત થઇ શકશે નહીં"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext જોડાયેલ નથી"
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, fuzzy, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s અલગ પાડવું %s"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive નો પ્રારંભ થઇ શક્યો નથી"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume નો પ્રારંભ થઇ શક્યો નથી"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "dbus જોડાણ રચવામાં અક્ષમ"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: libhal સંદર્ભ રચાઇ શક્યું નથી"
+
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: dbus જોડાણ સેટ થઇ શક્યું નથી"
+
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "HAL સંદર્ભ પ્રારંભ કરવામાં અક્ષમ -- હેલ્ડ ચાલતું નથી?"
+
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "સીડીરોમ ડ્રાઇવ નથી"
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
 #, fuzzy
-msgid "(does not expire)"
-msgstr "'%1' અસ્તિત્વ ધરાવતી નથી."
+msgid "RPM failed: "
+msgstr "નિષ્ફળ થયું"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "અબકાઝિયન"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, fuzzy, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "પબ્લીક કી લાવી શકાતી નથી."
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "અચાઈનિઝ"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "%s માટે કન્ફિગ્યુરેશન ફાઈલો બદલાઇ:"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "અકોલી"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, fuzzy, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "%s તરીકે rpm એ %s સાચવ્યું પરંતુ તફાવત જુદો પાડવા તે અશક્ય હતું"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "અડાનગ્મે"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"%s તરીકે rpm એ %s સાચવ્યું.\n"
+"અહીં તફાવતોના પ્રથમ 25 લાઇનો છે: \n"
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
 #, fuzzy, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "સાધનો ઉમેરાય છે"
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "%s તરીકે rpm એ %s રચ્યું પરંતુ તફાવત જુદો પાડવા તેઅશક્ય હતું"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"%s તરીકે rpm એ %s રચ્યું.\n"
+"અહીં તફાવતોના પ્રથમ 25 લાઇનો છે:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -142,20 +242,1671 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "વધારાનું rpm આઉટપુટ:"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "અડ્યાઘે"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "%s નું બેકઅપ રચાયું"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "એન્ટ્રી મળી નહીં."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "એન્ટ્રી મળી નહીં."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "એન્ટ્રી મળી નહીં."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+#, fuzzy
+msgid "Repository alias cannot start with dot."
+msgstr "VM નું નામ આંકડાથી શરૂ થઇ શકે નહીં."
+
+#: zypp/RepoManager.cc:349
+#, fuzzy
+msgid "Service alias cannot start with dot."
+msgstr "VM નું નામ આંકડાથી શરૂ થઇ શકે નહીં."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "લખવા માટે ફાઇલ ખોલી શકાતી નથી."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "%s ડેસ્કટોપ આઈટમ ખોલી શકાશે નહીં"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "ડિરેક્ટરી %1 બનાવી શકાતી નથી: %2."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "ફ્લોપી ડિસ્કમાંથી વાંચવામાં ભૂલ."
+
+#: zypp/RepoManager.cc:1611
+#, fuzzy, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "સાધનો ઉમેરાય છે"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "એક્સપોર્ટ ફાઈલ નું નામ અમાન્ય છે."
+
+#: zypp/RepoManager.cc:1740
+#, fuzzy, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "સાધનો ઉમેરાય છે"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "%s ડેસ્કટોપ આઈટમ ખોલી શકાશે નહીં"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Url યોજના %s ને મંજૂરી આપતી નથી"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "અમાન્ય %s ઘટક '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "અમાન્ય %s ઘટક"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "આ URL માટે ક્વેરિ સ્ટ્રીંગ પાર્સિંગ સહાયિત નથી"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Url યોજનાને ઘટક જરૂરી છે"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "અમાન્ય Url યોજના '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Url યોજના વપરાશકર્તાને મંજૂરી આપતું નથી"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Url યોજના પાસવર્ડને મંજૂરી આપતું નથી"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Url યોજનાને હોસ્ટ ઘટક જરૂરી છે"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Url યોજના હોસ્ટ ઘટકને મંજૂરી આપતું નથી"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "અમાન્ય હોસ્ટ ઘટક '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Url યોજનાને પોર્ટને મંજૂરી આપતું નથી"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "અમાન્ય પોર્ટ ઘટક '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Url યોજનાને માર્ગ નામ જરૂરી છે"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "હો અધિકૃતિ હાજર હોય તો રિલેટિવ માર્ગની મંજૂરી નથી"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "એનકોડેડ સ્ટ્રીંગમાં NUL બાઇટ સમાવિષ્ટ છે"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "અમાન્ય પારમિતિ એરે સ્પ્લિટ સેપરેટર કેરેક્ટર"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "અમાન્ય પારમિતિ મેપ  સ્પ્લિટ સેપરેટર કેરેક્ટર"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "અમાન્ય પારમિતિ એરે જોઇન સ્પ્લિટ સેપરેટર કેરેક્ટર"
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "ફાઈલ ખુલી શકતી નથી: %1."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "ફાઈલ ખુલી શકતી નથી: %1."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "%s શોધાઈ શકતો નથી."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, fuzzy, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "%s શોધાઈ શકતો નથી."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "જોડાય ત્યારે કમાન્ડ અમલમાં મૂકવો"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+#, fuzzy
+msgid "(does not expire)"
+msgstr "'%1' અસ્તિત્વ ધરાવતી નથી."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "અપરિચિત"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+#, fuzzy
+msgid "The vendor does not provide support."
+msgstr "ડિસ્ક અસ્તિત્વ ધરાવતી નથી."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "અજાણ્યો દેશ:"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "કોડ નથી"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "એન્ડોરા"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "યૂનાઇટેડ આરબ એમિરાટ્સ"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "અફઘાનિસ્તાન"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "એન્ટિગુઆ અને બારબુડા"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "એન્ગુઇલા"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "અલ્બાનિયા"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "અર્મેનિયા"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "નેધરલેન્ડ્સ એન્ટિલેસ"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "એન્ગોલા"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "એન્ટાર્કટિકા"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "આર્જેન્ટિના"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "અમેરિકન સામોઆ"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "ઓસ્ટ્રિયા"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "ઓસ્ટ્રેલિયા"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "અરુબા"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "અલાન્ડ આઇલેન્ડ્સ"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "અઝેરબાઇજન"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "બોસ્નિયા અને હર્ઝેગોવિના"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "બાર્બાડોઝ"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "બાંગ્લાદેશ"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "બેલ્જીયમ"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "બર્કિના ફાસો"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "બલ્ગેરિયા"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "બહેરિન"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "બુરુંડી"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "બેનિન"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "બર્મુડા"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "બ્રૂનેઇ દારુસ્સાલમ"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "બોલિવિયા"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "બ્રાઝિલ"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "બહામસ"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "ભૂટાન"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "બૌવેટ આઇલેન્ડ"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "બોટ્સવાના"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "બેલારુસ"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "બેલાઇઝ"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "કેનેડા"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "કોકોસ (કિલિંગ) આઇલેન્ડ્સ"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "કોંગો"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "સેટ્રલ આફ્રિકન રિપબ્લિક"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "સ્વિટઝરલેન્ડ"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "કોટ ડિ'લ્વોઇરે"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "કુક આઇલેન્ડ્સ"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "ચિલિ"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "કેમેરુન"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "ચાઇના"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "કોલોમ્બિયા"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "કોસ્ટા રિકા"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "ક્યુબા"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "કેપ વર્ડે"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "ક્રિસ્ટમસ આઇલેન્ડ"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "સાઇપ્રસ"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "ચેઝ રિપબ્લિક"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "જર્મની"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "ડ્જિબૌટી"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "ડેનમાર્ક"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "ડોમિનિકા"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "ડોમિનિસિયન રિપબ્લિક"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "અલ્જેરિયા"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "એક્વાડોર"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "એસ્ટોનિયા"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "ઇજિપ્ત"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "વેસ્ટર્ન સહારા"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "એરિટરિયા"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "સ્પેન"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "એથિઓપિયા"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "ફિનલેન્ડ"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "ફિજિ"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "ફાલ્કલેન્ડ આઇલેન્ડ (માલ્વિનસ)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "ફેડરેટડ સ્ટેટ્સ ઓફ માઇક્રોનેસિયા"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "ફારોએ આઇલેન્ડ્સ"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "ફ્રાન્સ"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "મેટ્રોપોલિટન ફ્રાન્સ"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "ગબોન"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "યૂનાઇટેડ કિંગડોમ"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "ગ્રેનાડા"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "જ્યોર્જિયા"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "ફેન્ચ ગુઇઆના"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "જર્મની"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "ઘાના"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "જિબ્રાલ્ટર"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "ગ્રીનલેન્ડ"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "ગમ્બિયા"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "ગુનિયા"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "ગૌડેલૌપે"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "એક્વાટોરિયલ ગુનિયા"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "ગ્રીસ"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "સાઉથ જ્યોર્જિયા અને સાઉથ સેન્ડવિચ આઇલેન્ડ્સ"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "ગૌટેમાલા"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "ગુઆમ"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "ગુનિયા-બિસાઉ"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "ગુયાના"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "હોંગ કોંગ"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "હર્ડ આઇલેન્ડ અને મેકડોનાલ્ડ આઇલેન્ડ્સ"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "હોંડુરાસ"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "ક્રોએશિયા"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "હૈતી"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "હંગેરી"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "ઇન્ડોનેશિયા"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "આયર્લેન્ડ"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "ઇઝરાયેલ"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "ઇન્ડિયા"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "બ્રિટિશ ઇન્ડિયન ઓસિયન ટેરિટરી"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "ઇરાક"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "ઇરાન"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "આઇસલેન્ડ"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "ઇટાલિ"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "જમૈકા"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "જોર્ડન"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "જાપાન"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "કેન્યા"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "ક્યરઝેસ્તાન"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "કંબોડિયા"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "કિરિબતી"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "કોમરોસ"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "સેંટ કિટ્સ અને નેવિસ"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "નોર્થ કોરિયા"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "સાઉથ કોરિયા"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "કુવૈત"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "કેયમેન આઇલેન્ડ્સ"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "કઝાક્સ્તાન"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "લાઓ પિપલ્સ ડેમોક્રેટિક રિપબ્લિક"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "લેબેનોન"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "સેંટ લુસિયા"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "લેઇચટેન્સ્ટેઇન"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "શ્રી લંકા"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "લિબેરિયા"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "લેસોથો"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "લિથુઆનિયા"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "લક્ઝેમબર્ગ"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "લેટિવા"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "લિબિયા"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "મોરોક્કો"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "મોનેકો"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "મોલ્ડોવા"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "મોંગો"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "સન મેરિનો"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "મડગાસ્કાર"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "માર્શેલ આઇલેન્ડ્સ"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "માસેડોનિયા"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "માલિ"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "મ્યાનમાર"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "મોંગોલિયા"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "મકાઓ"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "નોર્ધર્ન મારિયાના આઇલેન્ડ્સ"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "માર્ટિનિક"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "મૌરિટાનિયા"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "મોન્ટસેરાટ"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "માલ્ટા"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "મોરેશિયસ"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "માલદિવસ"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "મલાવિ"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "મેક્સિકો"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "મલેસિયા"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "મોઝામ્બિક"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "નામિબિયા"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "ન્યૂ કેલેડોનિયા"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "નાઇજેર"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "નોરફોલ્ક આઇલેન્ડ"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "નાઇજિરિયા"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "નિકારાગુઆ"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "નેધરલેન્ડસ"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "નોર્વે"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "નેપાલ"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "નૌરુ"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "નિયુએ"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "ન્યૂ ઝીલેન્ડ"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "ઓમાન"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "પનામા"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "પેરુ"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "ફ્રેન્ચ પોલિનેસિયા"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "પાપુઆ ન્યૂ ગુનિયા"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "ફિલિપાઇન્સ"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "પાકિસ્તાન"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "પોલેન્ડ"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "સેંટ પિએરે અને મિકેલોન"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "પિટકેઇર્ન"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "પ્યૂએર્ટો રિકો"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "પેલેસ્ટિનિયન ટેરિટરી"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "પોર્ટુગલ"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "પલાઉ"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "પેરાગ્વે"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "કતાર"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "રિયૂનિયન"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "રોમાનિયા"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "સર્બિયન"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "રશિયન ફેડરેશન"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "રવાન્ડા"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "સાઉદી અરેબિયા"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "સોલોમન આઇલેન્ડ્સ"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "શેશેલ્સ"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "સુદાન"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "સ્વિડન"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "સિંગાપોર"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "સેંન્ટ હેલેના"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "સ્લોવેનિયા"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "સ્વાલબર્ડ અને જાન મયેન"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "સ્લોવેકિયા"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "સિયેરા લિયોન"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "સન મેરિનો"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "સેનેગલ"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "સોમાલિયા"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "સુરિનેમ"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "સાઓ ટોમ અને પ્રિન્સિપે"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "એલ સાલ્વાડોર"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "સિરિયા"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "સ્વાઝિલેન્ડ"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "ટર્કસ અને કઇકોસ આઇલેન્ડ"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "ચેડ"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "ફ્રેન્ચ સાઉધર્ન ટેરિટોરિસ"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "ટોગો"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "થાઈલેન્ડ"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "ટાઝિક્સ્તાન"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "તોકેલાઉ"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "ટર્કમેનિસ્તાન"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "ટુનિસિયા"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "ટોંગા"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "ઇસ્ટ ટિમર"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "ટર્કી"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "ત્રિનિદાદ અને ટોબાગો"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "ટુવાલુ"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "તાઇવાન"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "ટાન્ઝાનિયા"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "યુક્રેઇન"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "યુગાન્ડા"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "યૂનાઇટેડ સ્ટેટ્સ માઇનોર આઉટલાઇંગ આઇલેન્ડ્સ"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "યૂનાઇટેડ સ્ટેટ્સ"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "યુરુગ્વે"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "યુઝબેકિસ્તાન"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "હોલિ સી (વેટિકન સીટી સ્ટેટ)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "સેંટ વિન્સેન્ટ અને ધ ગ્રેનાડિનેસ"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "વેનેઝુએલા"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "બ્રિટીશ વર્જિન આઇલેન્ડ્સ"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "વર્જિન આઇલેન્ડ્સ, યુ.એસ."
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "વિયેટનામ"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "વનુઆટુ"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "વોલિસ અને ફુટુના"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "સમોઆ"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "યેમન"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "મયોટે"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "સાઉથ આફ્રિકા"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "ઝામ્બિયા"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "ઝિમ્બાબ્વે"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "અજાણી ભાષા:"
 
 #. language code: aar aa
 #: zypp/LanguageCode.cc:161
 msgid "Afar"
 msgstr "અફર"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "અફઘાનિસ્તાન"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "અબકાઝિયન"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "અચાઈનિઝ"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "અકોલી"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "અડાનગ્મે"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "અડ્યાઘે"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "અફ્રો-એશિયાટીક (અન્ય)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -167,11 +1918,6 @@ msgstr "અફ્રિહિલિ"
 msgid "Afrikaans"
 msgstr "આફ્રિકન્સ"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "અફ્રો-એશિયાટીક (અન્ય)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -187,16 +1933,6 @@ msgstr "અકાન"
 msgid "Akkadian"
 msgstr "અકાડિયન"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "અલાન્ડ આઇલેન્ડ્સ"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "અલ્બાનિયા"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -207,58 +1943,25 @@ msgstr "અલ્બાનિયન"
 msgid "Aleut"
 msgstr "એલુટ"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "અલ્જેરિયા"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "એલ્ગોનક્વિયન ભાષાઓ"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "અલ્ટાઇક (અન્ય)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "અમેરિકન સામોઆ"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "સાઉથર્ન અલટાઇ"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "એમહારિક"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "એન્ડોરા"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "એન્ગોલા"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "એન્ગુઇલા"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "એન્ટાર્કટિકા"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "એન્ટિગુઆ અને બારબુડા"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "અંગ્રેજી, જૂનું (ca.450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -270,55 +1973,40 @@ msgstr "અપાચે ભાષાઓ"
 msgid "Arabic"
 msgstr "અરેબિક"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "આર્ગોનિઝ"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "અરામેઇક"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "અરાપાહો"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "આર્ગોનિઝ"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "આર્મેનિયન"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "અરાઉકેનિયન"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "અરાવક"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "આર્જેન્ટિના"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "અર્મેનિયા"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "આર્મેનિયન"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "અરાપાહો"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "આર્ટિફિસિયલ (અન્ય)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "àª\85રà«\81બા"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "àª\85રાવàª\95"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -335,32 +2023,11 @@ msgstr "ઓસ્ટ્રીયન"
 msgid "Athapascan Languages"
 msgstr "અથાપાસ્કેન ભાષાઓ"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "ઓસ્ટ્રેલિયા"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "ઓસ્ટ્રેલિયન ભાષાઓ"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "ઓસ્ટ્રિયા"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "ઓસ્ટ્રોનેસિયન (અન્ય)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -381,125 +2048,66 @@ msgstr "અવધી"
 msgid "Aymara"
 msgstr "અયમારા"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "અઝેરબાઇજન"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "અઝેરબાઇજાની"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "બહામસ"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "બહેરિન"
-
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "બાલિનેઝ"
-
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "બાલ્ટિક (અન્ય)"
-
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "બલુચિ"
-
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "બમબારા"
-
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "બામિલેકે ભાષાઓ"
-
 #. language code: bad
 #: zypp/LanguageCode.cc:237
 msgid "Banda"
 msgstr "બાન્ડા"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "બાàª\82àª\97à«\8dલાદà«\87શ"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "બામિલà«\87àª\95à«\87 àª­àª¾àª·àª¾àª\93"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "બાનà«\8dàª\9fà«\81 (àª\85નà«\8dય)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "બષà«\8dàª\95િર"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "બારà«\8dબાડà«\8bàª\9d"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "બલà«\81àª\9aિ"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "બાસા"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "બમબારા"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "બષà«\8dàª\95િર"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "બાલિનà«\87àª\9d"
 
 #. language code: baq eus eu
 #: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 msgid "Basque"
 msgstr "બાસ્ક"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "બટક (ઇન્ડોનેશિયા)"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "બાસા"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "બાલ્ટિક (અન્ય)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "બેજા"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "બેલારુસ"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "બેલારુશિયન"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "બેલ્જીયમ"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "બેલાઇઝ"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -510,311 +2118,100 @@ msgstr "બેમ્બા"
 msgid "Bengali"
 msgstr "બેંગાલી"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "બેનિન"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "બેર્બેર (અન્ય)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "બર્મુડા"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "ભોજપૂરી"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "ભૂટાન"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
 msgstr "બિહારી"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "બિકોલ"
-
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "બિનિ"
-
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "બિસલામા"
-
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "બ્લિન"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "બોલિવિયા"
-
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "બોસ્નિયા અને હર્ઝેગોવિના"
-
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "બોસ્નિયન"
-
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "બોટ્સવાના"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "બૌવેટ આઇલેન્ડ"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "બ્રજ"
-
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "બ્રાઝિલ"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "બ્રેટન"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "બ્રિટિશ ઇન્ડિયન ઓસિયન ટેરિટરી"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "બ્રિટીશ વર્જિન આઇલેન્ડ્સ"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "બ્રૂનેઇ દારુસ્સાલમ"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "બુગિનેઝ"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "બલ્ગેરિયા"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "બલ્ગેરિયન"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "બરિયટ"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "બર્કિના ફાસો"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "બરમિઝ"
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "બુરુંડી"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "કેડ્ડો"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "કંબોડિયા"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "કેમેરુન"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "ફાઈલ બનાવી શકાતી નથી."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "મ્યૂટેક્ષ લોક સંપાદિત કરી શકાયો નથી"
-
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "%s શોધાઈ શકતો નથી."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "%s ડેસ્કટોપ આઈટમ ખોલી શકાશે નહીં"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "ડિરેક્ટરી %1 બનાવી શકાતી નથી: %2."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "%s ડેસ્કટોપ આઈટમ ખોલી શકાશે નહીં"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:381
-#, fuzzy, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "%s શોધાઈ શકતો નથી."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "મ્યૂટેક્ષ ગુણધર્મ શરૂ કરી શકાયો નથી"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "રિકર્સિવ મ્યૂટેક્ષ શરૂ કરી શકાયો નથી"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "બિકોલ"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "લખવા માટે ફાઇલ ખોલી શકાતી નથી."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "બિનિ"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "ફાàª\88લ àª\96à«\81લà«\80 àª¶àª\95તà«\80 àª¨àª¥à«\80: %1."
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "બિસલામા"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "ફાàª\88લ àª\96à«\81લà«\80 àª¶àª\95તà«\80 àª¨àª¥à«\80: %1."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "સિàª\95સિàª\95ા"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "ફાàª\88લ àª\96à«\81લà«\80 àª¶àª\95તà«\80 àª¨àª¥à«\80: %1."
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "બાનà«\8dàª\9fà«\81 (àª\85નà«\8dય)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, fuzzy, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "%s માંથી %s પૂરું પાડી શકાતું નથી"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "બોસ્નિયન"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "મ્યૂટેક્ષ લોક છોડી શકાયું નથી"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "બ્રજ"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "રિકર્સિવ મ્યૂટેક્ષ ગુણધર્મ સેટ કરી શકાયો નથી"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "બ્રેટન"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "àª\95à«\87નà«\87ડા"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "બàª\9fàª\95 (àª\87નà«\8dડà«\8bનà«\87શિયા)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "બરિયટ"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "%s ડેસ્કટોપ આઈટમ ખોલી શકાશે નહીં"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "બુગિનેઝ"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "બલ્ગેરિયન"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "બરમિઝ"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "બ્લિન"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "ફાàª\88લ àªªàª° àª²àª\96ાàª\88 àª¶àª\95ાતà«\81àª\82 àª¨àª¥à«\80: %1."
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "àª\95à«\87ડà«\8dડà«\8b"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "àª\95à«\87પ àªµàª°à«\8dડà«\87"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "સà«\87નà«\8dàª\9fલ àª\85મà«\87રિàª\95ન àª\87નà«\8dડિયન (àª\85નà«\8dય)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -831,11 +2228,6 @@ msgstr "કેટાલન"
 msgid "Caucasian (Other)"
 msgstr "કૌકાસિયન (અન્ય)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "કેયમેન આઇલેન્ડ્સ"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -846,167 +2238,80 @@ msgstr "સેબુઆનો"
 msgid "Celtic (Other)"
 msgstr "સેલટિક (અન્ય)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "સેટ્રલ આફ્રિકન રિપબ્લિક"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "સેન્ટલ અમેરિકન ઇન્ડિયન (અન્ય)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "ચેડ"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "ચગાટાઇ"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "ચામિક ભાષાઓ"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "ચામોરો"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "%s માટે કન્ફિગ્યુરેશન ફાઈલો બદલાઇ:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "ચેચન"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "ચેરોકી"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "ચેયન્ને"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "ચિબ્ચા"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "ચિચેવા"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "ચિલિ"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "ચેચન"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "àª\9aાàª\87ના"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "àª\9aàª\97ાàª\9fાàª\87"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "ચાઈનિઝ"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "ચુકેસે"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "મારી"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "ચિનુક જાર્ગન"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "ચિપેવ્યાન"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "ચોક્ટાઓ"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "ક્રિસ્ટમસ આઇલેન્ડ"
-
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "ચર્ચ સ્લાવિક"
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "ચુકેસે"
-
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "ચુવાસ"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "ક્લાસિકલ નેવારી"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "કોકોસ (કિલિંગ) આઇલેન્ડ્સ"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "કોલોમ્બિયા"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "જોડાય ત્યારે કમાન્ડ અમલમાં મૂકવો"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "ચિપેવ્યાન"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "ચેરોકી"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "àª\95à«\8bમરà«\8bસ"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "àª\9aરà«\8dàª\9a àª¸à«\8dલાવિàª\95"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "ચુવાસ"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "કોંગો"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "ચેયન્ને"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "àª\95à«\81àª\95 àª\86àª\87લà«\87નà«\8dડà«\8dસ"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "àª\9aામિàª\95 àª­àª¾àª·àª¾àª\93"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1023,31 +2328,6 @@ msgstr "કોર્નિશ"
 msgid "Corsican"
 msgstr "કોર્શિયન"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "કોસ્ટા રિકા"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "કોટ ડિ'લ્વોઇરે"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "ક્રી"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "ક્રિક"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "ક્રેઓલેસ અને પિડગિન્સ (અન્ય)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1063,46 +2343,36 @@ msgstr "ક્રેઓલેસ અને પિડગિન્સ, ફ્ર
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "ક્રેઓલેસ અને પિડગિન્સ, પોર્ટુગેઝ-આધારિત (અન્ય)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "ક્રી"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "ક્રિમિન ટટાર"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "ક્રોએશિયા"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "ક્રોએશિયન"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "ક્રેઓલેસ અને પિડગિન્સ (અન્ય)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "àª\95à«\8dયà«\81બા"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "àª\95શà«\81બિયન"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "કુશિટિક (અન્ય)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "સાઇપ્રસ"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "ચેઝ"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "ચેઝ રિપબ્લિક"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1128,10 +2398,15 @@ msgstr "ડાયક"
 msgid "Delaware"
 msgstr "ડેલવારે"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "ડેનમાર્ક"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "સ્લેવ (અથાપાસ્કેન)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "ડોગ્રિબ"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1143,71 +2418,36 @@ msgstr "ડિન્કા"
 msgid "Divehi"
 msgstr "ડિવેહી"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "ડ્જિબૌટી"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "ડોગરી"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "ડોગ્રિબ"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "ડોમિનિકા"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "ડોમિનિસિયન રિપબ્લિક"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "ડ્રવિડિયન (અન્ય)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "લોવર સોર્બિયન"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "ડૌલા"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "ડચ, મધ્ય (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "ડચ"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "ડચ, મધ્ય (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1218,26 +2458,11 @@ msgstr "ડ્યુલા"
 msgid "Dzongkha"
 msgstr "ડ્ઝોનઘા"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "ઇસ્ટ ટિમર"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "એક્વાડોર"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "એફિક"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "ઇજિપ્ત"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1245,114 +2470,34 @@ msgstr "ઇજિપ્ટિયન (પ્રાચીન)"
 
 #. language code: eka
 #: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "એકાજુક"
-
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "એલ સાલ્વાડોર"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "એલામાઇટ"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-#, fuzzy
-msgid "Empty host name in URI"
-msgstr "CA નામ ખાલી છે."
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "એનકોડેડ સ્ટ્રીંગમાં NUL બાઇટ સમાવિષ્ટ છે"
-
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "અંગ્રેજી"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "અંગ્રેજી, મધ્ય (1100-1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "અંગ્રેજી, જૂનું (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "એક્વાટોરિયલ ગુનિયા"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "એરિટરિયા"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-#, fuzzy
-msgid "Error sending update message notification."
-msgstr "કી એન્ક્રીપ્ટશન દરમિયાન ભૂલ."
+msgid "Ekajuk"
+msgstr "એકાજુક"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "એલામાઇટ"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "એર્ઝાયા"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "અંગ્રેજી"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "અંગ્રેજી, મધ્ય (1100-1500)"
 
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "એસ્પરાન્ટો"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "એસ્ટોનિયા"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "એસ્ટોનિયન"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "એથિઓપિયા"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1363,211 +2508,31 @@ msgstr "એવ"
 msgid "Ewondo"
 msgstr "એવોન્ડો"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "VM શરૂ કરવામાં નિષ્ફળ."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "ખુલી શક્તું નથી %s - %s\n"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, fuzzy, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"%s પેકેજ પૂર્ણતા ચકાસણીમાં નિષ્ફળ ગઇ છે. તમે તે ફરીથી ડાઉનલોડ કરવાનો પ્રયત્ન કરવા માંગો "
-"છો?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, fuzzy, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "પબ્લીક કી લાવી શકાતી નથી."
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "મોડ્યૂલ \"%s\" લોડ કરવામાં નિષ્ફળ."
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "ફાલ્કલેન્ડ આઇલેન્ડ (માલ્વિનસ)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "ફેંગ"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "ફન્ટિ"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "ફારોએ આઇલેન્ડ્સ"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "ફારોઇઝ"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "ફેડરેટડ સ્ટેટ્સ ઓફ માઇક્રોનેસિયા"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "ફિજિ"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "ફન્ટિ"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "ફિઝિયન"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "રિપોસીટરીમાં ફાઈલ %1 મળી નહીં."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "ફિલિપિનો"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "ફિનલેન્ડ"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1578,39 +2543,15 @@ msgstr "ફિનિશ"
 msgid "Finno-Ugrian (Other)"
 msgstr "ફિન્નો-યુગ્રીયન (અન્ય)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
-#. language code: fon
-#: zypp/LanguageCode.cc:443
-msgid "Fon"
-msgstr "ફોન"
-
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "ફ્રાન્સ"
-
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
-msgstr "ફ્રેન્ચ"
-
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "ફેન્ચ ગુઇઆના"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "ફ્રેન્ચ પોલિનેસિયા"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "ફ્રેન્ચ સાઉધર્ન ટેરિટોરિસ"
+#. language code: fon
+#: zypp/LanguageCode.cc:443
+msgid "Fon"
+msgstr "ફોન"
+
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
+msgstr "ફ્રેન્ચ"
 
 #. language code: frm
 #: zypp/LanguageCode.cc:449
@@ -1627,46 +2568,21 @@ msgstr "ફ્રેન્ચ, જૂનું (842-ca.1400)"
 msgid "Frisian"
 msgstr "ફ્રિસિયન"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "ફ્રિયુલિયન"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "ફુલાહ"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "ફ્રિયુલિયન"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "ગા"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "ગબોન"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "ગાયેલિક"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "ગાલિસિયન"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "ગમ્બિયા"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "ગાન્ડા"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1677,15 +2593,10 @@ msgstr "ગાયો"
 msgid "Gbaya"
 msgstr "ગબાયા"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "ગીઝ"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "જ્યોર્જિયા"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "જર્મેનિક (અન્ય)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1697,6 +2608,36 @@ msgstr "જ્યોર્જિયન"
 msgid "German"
 msgstr "જર્મન"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "ગીઝ"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "ગીલબર્ટેઝ"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "ગાયેલિક"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "આઇરિશ"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "ગાલિસિયન"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "મેંક્ષ"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1707,30 +2648,6 @@ msgstr "જર્મન, મધ્ય ઊંચું (ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "જર્મન, જૂનું ઊંચું (ca.750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "જર્મેનિક (અન્ય)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "જર્મની"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "ઘાના"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "જિબ્રાલ્ટર"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "ગીલબર્ટેઝ"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1751,11 +2668,6 @@ msgstr "ગોથિક"
 msgid "Grebo"
 msgstr "ગ્રેબો"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "ગ્રીસ"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1766,62 +2678,16 @@ msgstr "ગ્રીક, પ્રાચીન (to 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "ગ્રીક, આધુનિક (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "ગ્રીનલેન્ડ"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "ગ્રેનાડા"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "ગૌડેલૌપે"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "ગુઆમ"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "ગૌરાની"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "ગૌટેમાલા"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "જર્મની"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "ગુનિયા"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "ગુનિયા-બિસાઉ"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "ગુજરાતી"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "ગુયાના"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1832,52 +2698,21 @@ msgstr "ગ્વિચ'ઇન"
 msgid "Haida"
 msgstr "હૈડા"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "હૈતી"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "હૈશિયન"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "હેલ અપવાદ"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext જોડાયેલ નથી"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive નો પ્રારંભ થઇ શક્યો નથી"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume નો પ્રારંભ થઇ શક્યો નથી"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "હૌસા"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "હવાઇન"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "હર્ડ આઇલેન્ડ અને મેકડોનાલ્ડ આઇલેન્ડ્સ"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1903,17 +2738,6 @@ msgstr "હિમાચલિ"
 msgid "Hindi"
 msgstr "હિંદી"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "હિરિ મોટુ"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-#, fuzzy
-msgid "History:"
-msgstr "XF86History "
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1924,31 +2748,21 @@ msgstr "હિટીટે"
 msgid "Hmong"
 msgstr "હમોંગ"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "હોલિ સી (વેટિકન સીટી સ્ટેટ)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "હોંડુરાસ"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "હિરિ મોટુ"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "હà«\8bàª\82àª\97 àª\95à«\8bàª\82àª\97"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "àª\85પર àª¸à«\8bરà«\8dબિયન"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "હંગેરિયન"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "હંગેરી"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1959,10 +2773,10 @@ msgstr "હુપા"
 msgid "Iban"
 msgstr "ઇબાન"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "àª\86àª\87સલà«\87નà«\8dડ"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "àª\87àª\97à«\8dબà«\8b"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1974,250 +2788,105 @@ msgstr "આઇસલેન્ડિક"
 msgid "Ido"
 msgstr "ઇડો"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "àª\87àª\97à«\8dબà«\8b"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "સિàª\9aà«\81યન àª¯àª¿"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "ઇજો"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "ઇનુક્ટિટટ"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "ઇન્ટરલિંગ્યુ"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "ઇલોકો"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "ઇનારિ સામિ"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "ઇન્ડિયા"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "ઇન્ટરલિંગ્યુઆ (ઇન્ટરનેશનલ ઓક્ઝિલરી લેંગ્વેજ એસોસિયેશન)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "ઇન્ડિક (અન્ય)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "ઇન્ડો-યુરોપિયન (અન્ય)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "ઇન્ડોનેશિયા"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "ઇન્ડોનેશિયન"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "ઇન્ડો-યુરોપિયન (અન્ય)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "ઇનગ્યુશ"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "સૂચના પ્રમાણે સ્થાપન અટકાવેલું હતું."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "ઇન્ટરલિંગ્યુઆ (ઇન્ટરનેશનલ ઓક્ઝિલરી લેંગ્વેજ એસોસિયેશન)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "ઇન્ટરલિંગ્યુ"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "ઇનુક્ટિટટ"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "ઇનુપિક"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "અમાન્ય %s ઘટક"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "અમાન્ય %s ઘટક '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "અમાન્ય LDAP URL ક્વેરિ પારમિતિ '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "અમાન્ય LDAP URL ક્વેરિ સ્ટ્રીંગ"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "અમાન્ય Url યોજના '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "અમાન્ય ખાલી Url વસ્તુ સંદર્ભ"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "અમાન્ય હોસ્ટ ઘટક '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "અમાન્ય પારમિતિ એરે જોઇન સ્પ્લિટ સેપરેટર કેરેક્ટર"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "અમાન્ય પારમિતિ એરે સ્પ્લિટ સેપરેટર કેરેક્ટર"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "અમાન્ય પારમિતિ મેપ  સ્પ્લિટ સેપરેટર કેરેક્ટર"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "અમાન્ય પોર્ટ ઘટક '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "અમાન્ય Url યોજના '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "એક્સપોર્ટ ફાઈલ નું નામ અમાન્ય છે."
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "ઇરાન"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "ઇરાનિયન (અન્ય)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "ઇરાક"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "આયર્લેન્ડ"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "આઇરિશ"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "આઈરિશ, મધ્ય (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "આઇરિશ, જૂનું (to 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "આઇરોક્વોયન ભાષાઓ"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "ઇઝરાયેલ"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "ઇટાલિયન"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "ઇટાલિ"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "જમૈકા"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "જાવાનિઝ"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "àª\9cાપાન"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "લà«\8bàª\9cબાન"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "જાપાનિઝ"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "જાવાનિઝ"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "જોર્ડન"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "જ્યુડેઓ-પર્સિયન"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "જ્યુડેઓ-અરેબિક"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "જ્યુડેઓ-પર્સિયન"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "કબાર્ડિયન"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "કારા-કલ્પક"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2234,11 +2903,6 @@ msgstr "કચિન"
 msgid "Kalaallisut"
 msgstr "કલાલિસટ"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "કલમ્યક"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2249,21 +2913,6 @@ msgstr "કમ્બા"
 msgid "Kannada"
 msgstr "કન્નડા"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "કનૌરી"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "કારા-કલ્પક"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "કરાચય-બલ્કર"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2274,10 +2923,10 @@ msgstr "કરેન"
 msgid "Kashmiri"
 msgstr "કાશ્મીરી"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "àª\95શà«\81બિયન"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "àª\95નà«\8cરà«\80"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2289,31 +2938,26 @@ msgstr "કાવિ"
 msgid "Kazakh"
 msgstr "કઝાક"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "કઝાક્સ્તાન"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "કેન્યા"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "કબાર્ડિયન"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
-msgstr "ખાસિ"
-
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "ખેમર"
+msgstr "ખાસિ"
 
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "ખોઇસન (અન્ય)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "ખેમર"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2324,11 +2968,6 @@ msgstr "ખોટેનિઝ"
 msgid "Kikuyu"
 msgstr "કિકુયુ"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "કિમબુંડું"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2339,15 +2978,15 @@ msgstr "કિનયરવાન્ડા"
 msgid "Kirghiz"
 msgstr "કિરઝિઝ"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "àª\95િરિબતà«\80"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "àª\95િમબà«\81àª\82ડà«\81àª\82"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "àª\95à«\8dલિàª\82àª\97à«\8bન"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "àª\95à«\8bàª\82àª\95ણà«\80"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2359,11 +2998,6 @@ msgstr "કોમિ"
 msgid "Kongo"
 msgstr "કોંગો"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "કોંકણી"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2379,11 +3013,21 @@ msgstr "કોસ્રેયિન"
 msgid "Kpelle"
 msgstr "ક્પેલે"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "કરાચય-બલ્કર"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "ક્રૂ"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "કુરુખ"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2399,26 +3043,11 @@ msgstr "કુમય્ક"
 msgid "Kurdish"
 msgstr "કુર્દિશ"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "કુરુખ"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "કુટેનાઇ"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "કુવૈત"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "ક્યરઝેસ્તાન"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2439,68 +3068,21 @@ msgstr "લામ્બા"
 msgid "Lao"
 msgstr "લાઑ"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "લાઓ પિપલ્સ ડેમોક્રેટિક રિપબ્લિક"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "લેટિન"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "લેટિવા"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "લેટવિયન"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "લેબેનોન"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "લેસોથો"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "લેઝઘિયન"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "લિબેરિયા"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "લિબિયા"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "લેઇચટેન્સ્ટેઇન"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2511,61 +3093,46 @@ msgstr "લિમ્બર્ગન"
 msgid "Lingala"
 msgstr "લિંગાલા"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "લિથુઆનિયા"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "લિથુઆનિયન"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "લોજબાન"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "લો જર્મન"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "લોવર સોર્બિયન"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "મોંગો"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "લોઝિ"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "લà«\81બા-àª\95àª\9fનàª\97ા"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "લàª\95àª\9dà«\87મબરà«\8dàª\97િશ"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "લુબા-લુલ્યુઆ"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "લુબા-કટનગા"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "ગાન્ડા"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "લ્યુઇસેનો"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "લુલે સામિ"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2581,35 +3148,11 @@ msgstr "લુઓ (કેન્યા અને ટાન્ઝાનિયા)"
 msgid "Lushai"
 msgstr "લુશાઇ"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "લક્ઝેમબર્ગ"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "લકઝેમબર્ગિશ"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "મકાઓ"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "માસેડોનિયા"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "મેસેડોનિયન"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "મડગાસ્કાર"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2620,6 +3163,11 @@ msgstr "મડુરિઝ"
 msgid "Magahi"
 msgstr "મગાહિ"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "માર્શેલિઝ"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2630,178 +3178,60 @@ msgstr "મૈથિલિ"
 msgid "Makasar"
 msgstr "મકાસાર"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "મલાગ્સે"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "મલાવિ"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "મલય"
-
 #. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "મલયાલમ"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "મલેસિયા"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "માલદિવસ"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "માલિ"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "માલ્ટા"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "મોલ્ટિઝ"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "મંચુ"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "મંડર"
-
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
-msgstr "મંડિંગો"
-
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "મનિપુરી"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "મનોબો ભાષાઓ"
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "મલયાલમ"
 
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "મà«\87àª\82àª\95à«\8dષ"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
+msgstr "મàª\82ડિàª\82àª\97à«\8b"
 
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "માઓરી"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "ઓસ્ટ્રોનેસિયન (અન્ય)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "મરાઠી"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "મારી"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "માર્શેલ આઇલેન્ડ્સ"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "માર્શેલિઝ"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "માર્ટિનિક"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "મારવારી"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "મસાઇ"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "મૌરિટાનિયા"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "મોરેશિયસ"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "માયન ભાષાઓ"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "મયોટે"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "મલય"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "મોક્ષા"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "મંડર"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "મેન્ડે"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "મેટ્રોપોલિટન ફ્રાન્સ"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "મેક્સિકો"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "આઈરિશ, મધ્ય (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2813,87 +3243,61 @@ msgstr "મિ-ક્મક"
 msgid "Minangkabau"
 msgstr "મિનંગકબાઉ"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "મિરાંડેઝ"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "મિશ્ર ભાષાઓ"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "મોન-ખેમર (અન્ય)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "મલાગ્સે"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "મોલ્ટિઝ"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "મંચુ"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "મનિપુરી"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "મનોબો ભાષાઓ"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "મોહાક"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "મોક્ષા"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "મોલ્ડાવિયન"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "મોલ્ડોવા"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "મોન-ખેમર (અન્ય)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "મોનેકો"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "મોંગો"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "મોંગોલિયા"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "મોંગોલિયન"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "મોંગો"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "મોન્ટસેરાટ"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "મોરોક્કો"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "મોસિ"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "મોઝામ્બિક"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2904,211 +3308,141 @@ msgstr "બહુવિધ ભાષાઓ"
 msgid "Munda languages"
 msgstr "મુંડા ભાષાઓ"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "મ્યાનમાર"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "ક્રિક"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "મિરાંડેઝ"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "મારવારી"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "માયન ભાષાઓ"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "એર્ઝાયા"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "નહુઆટ્લે"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "નામિબિયા"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "નà«\8bરà«\8dથ àª\85મà«\87રિàª\95ન àª\87નà«\8dડિયન"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "નૌરુ"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "નેપોલિટન"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "નવાજો"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "ન્ડેબેલે, નોર્થ"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "ન્ડેબેલે, સાઉથ"
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
-msgstr "ન્ડોનગા"
-
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "નેપોલિટન"
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "ન્ડેબેલે, નોર્થ"
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "નà«\87પાલ"
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
+msgstr "નà«\8dડà«\8bનàª\97ા"
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "નà«\87પાલ àª­àª¾àª·àª¾"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "લà«\8b àª\9cરà«\8dમન"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "નેપાલી"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "નેધરલેન્ડસ"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "નેધરલેન્ડ્સ એન્ટિલેસ"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "ન્યૂ કેલેડોનિયા"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "ન્યૂ ઝીલેન્ડ"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "નેપાલ ભાષા"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "નિયાસ"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "નિકારાગુઆ"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "નાઇજેર"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "નાઇજર-કોર્ડોફેનિયન (અન્ય)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "નાઇજિરિયા"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "નિલો-સહારન (અન્ય)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "નિયુએ"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "નિયુએન"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "કોડ નથી"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "નોર્વેજિયન ન્યનોર્સ્કે"
 
-#: zypp/repo/RepoProvideFile.cc:265
-#, fuzzy
-msgid "No url in repository."
-msgstr "રિપà«\8bસà«\80àª\9fરà«\80માàª\82 àª«àª¾àª\88લ %1 àª®àª³à«\80 àª¨àª¹à«\80àª\82."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "નà«\8bરà«\8dવà«\87àª\9cિયન àª¬à«\8bàª\95મલ"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "નોગાઈ"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "નોરફોલ્ક આઇલેન્ડ"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "નોર્સે, જૂનું"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "નોર્થ અમેરિકન ઇન્ડિયન"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "નોર્થ કોરિયા"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "નોર્ધર્ન મારિયાના આઇલેન્ડ્સ"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "નોર્ધર્ન સામિ"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "નોર્ધન સોથો"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "નોર્વે"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "નોર્વેજિયન"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "નોર્વેજિયન બોકમલ"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "નોર્વેજિયન ન્યનોર્સ્કે"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "સીડીરોમ ડ્રાઇવ નથી"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "નોર્ધન સોથો"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "ન્યુબિયન ભાષાઓ"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "ક્લાસિકલ નેવારી"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "ચિચેવા"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3129,11 +3463,6 @@ msgstr "ન્યોરો"
 msgid "Nzima"
 msgstr "ન્ઝિમા"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "%s અલગ પાડવું : %s"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3144,20 +3473,6 @@ msgstr "ઓસિટન (પોસ્ટ 1500)"
 msgid "Ojibwa"
 msgstr "ઓજિબ્વા"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "ઓમાન"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3178,164 +3493,85 @@ msgstr "ઓસેજ"
 msgid "Ossetian"
 msgstr "ઓસેટિયઅન"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "ટર્કિસ, ઓટોમન (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "ઓટોમિયન ભાષાઓ"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, fuzzy, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"%s પેકેજ પૂર્ણતા ચકાસણીમાં નિષ્ફળ ગઇ છે. તમે તે ફરીથી ડાઉનલોડ કરવાનો પ્રયત્ન કરવા માંગો "
-"છો?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "પેપુયન (અન્ય)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "પેન્ગાસિનન"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "પહલાવિ"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "પાકિસ્તાન"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "પલાઉ"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "પલાઉન"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "પેલેસ્ટિનિયન ટેરિટરી"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "પાલી"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "પમપાન્ગા"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "પનામા"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "પેન્ગાસિનન"
-
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "પંજાબી"
-
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "પપિયામેન્ટો"
-
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "પાપુઆ ન્યૂ ગુનિયા"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "પેપુયન (અન્ય)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "પેરાગ્વે"
-
-#: zypp/media/MediaException.cc:106
-#, fuzzy, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "%1 ડિરેક્ટરી નથી."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
+msgid "Pampanga"
+msgstr "પમપાન્ગા"
 
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr " મંજૂરીઓ નકારાઇ "
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "પંજાબી"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "પર્સિયન"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "પપિયામેન્ટો"
+
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "પલાઉન"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "પર્સિયન, જૂનું (ca.600-400 B.C.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "પà«\87રà«\81"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "પરà«\8dસિયન"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "ફિલિપાઇન્સ (અન્ય)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "ફિલિપાઇન્સ"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "ફોએનિસિયન"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "પિટકેઇર્ન"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "પોહ્નપેઇયન"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "પોલેન્ડ"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "પાલી"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "પોલિશ"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "પà«\8bરà«\8dàª\9fà«\81àª\97લ"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "પà«\8bહà«\8dનપà«\87àª\87યન"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3347,78 +3583,21 @@ msgstr "પોર્ટુગીઝ"
 msgid "Prakrit Languages"
 msgstr "પ્રક્રિત ભાષાઓ"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "પ્રોવેન્કલ, જૂનું (to 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "પ્યૂએર્ટો રિકો"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "પુશ્તો"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "કતાર"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "ક્વેચુઆ"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "આ URL માટે ક્વેરિ સ્ટ્રીંગ પાર્સિંગ સહાયિત નથી"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "નિષ્ફળ થયું"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "રાએટો-રોમાન્સ"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3434,58 +3613,26 @@ msgstr "રપાનુઇ"
 msgid "Rarotongan"
 msgstr "રારોટોન્ગન"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "હો અધિકૃતિ હાજર હોય તો રિલેટિવ માર્ગની મંજૂરી નથી"
-
-#: zypp/RepoManager.cc:1740
-#, fuzzy, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "સાધનો ઉમેરાય છે"
-
-#: zypp/RepoManager.cc:338
-#, fuzzy
-msgid "Repository alias cannot start with dot."
-msgstr "VM નું નામ આંકડાથી શરૂ થઇ શકે નહીં."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "રિયૂનિયન"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "રોમાન્સ (અન્ય)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "રોમાનિયા"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "રોમાનિયન"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "રાએટો-રોમાન્સ"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "રોમાની"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "રોમાનિયન"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3496,120 +3643,71 @@ msgstr "રુન્ડી"
 msgid "Russian"
 msgstr "રસિયન"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "રશિયન ફેડરેશન"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "રવાન્ડા"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "સેંન્ટ હેલેના"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "સેંટ કિટ્સ અને નેવિસ"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "સેંટ લુસિયા"
-
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "સન મેરિનો"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "સેંટ પિએરે અને મિકેલોન"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "સેંટ વિન્સેન્ટ અને ધ ગ્રેનાડિનેસ"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "સાલિશન ભાષાઓ"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "સમારિટન અરામેઇક"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "સામિ ભાષાઓ (અન્ય)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "સમોઆ"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "સામોઅન"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "સન મેરિનો"
-
 #. language code: sad
 #: zypp/LanguageCode.cc:905
 msgid "Sandawe"
 msgstr "સેન્ડવે"
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "સેન્ગો"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "સેન્ગો"
+
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "યાકુટ"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "સાઉથ અમેરિકન ઇન્ડિયન (અન્ય)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "સાલિશન ભાષાઓ"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "સમારિટન અરામેઇક"
 
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "સંસ્ક્રિત"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "સસક"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "સનતાલિ"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "સાઓ ટોમ અને પ્રિન્સિપે"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "સર્દિનિયન"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "સસક"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "સર્બિયન"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "સાàª\89દà«\80 àª\85રà«\87બિયા"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "સિસિલિયન"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "સ્કોટ્સ"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "ક્રોએશિયન"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3620,149 +3718,40 @@ msgstr "સેલકપ"
 msgid "Semitic (Other)"
 msgstr "સેમિટિક (અન્ય)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "સેનેગલ"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "સર્બિયન"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "સર્બિયન"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "સેરેર"
-
-#: zypp/RepoManager.cc:349
-#, fuzzy
-msgid "Service alias cannot start with dot."
-msgstr "VM નું નામ આંકડાથી શરૂ થઇ શકે નહીં."
-
-#: zypp/repo/RepoException.cc:129
-#, fuzzy
-msgid "Service plugin does not support changing an attribute."
-msgstr "સાધન પ્રકાર VAR1 ફેરફાર-બતાવો ફિચર ને આધાર આપતા નથી"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "આઇરિશ, જૂનું (to 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "શà«\87શà«\87લà«\8dસ"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "સાàª\87ન àª­àª¾àª·àª¾àª\93"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "શાન"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "શોના"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "સિચુયન યિ"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "સિસિલિયન"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "સિદામો"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "સિયેરા લિયોન"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "સાઇન ભાષાઓ"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "એન્ટ્રી મળી નહીં."
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "એન્ટ્રી મળી નહીં."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "એન્ટ્રી મળી નહીં."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "એન્ટ્રી મળી નહીં."
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "સિકસિકા"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "સિંધી"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "સિંગાપોર"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "સિંહાલા"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "સિનો-ટિબેટિયન (અન્ય)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "સિયુઅન ભાષાઓ"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "સ્કોલ્ટ સામિ"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "સ્લેવ (અથાપાસ્કેન)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "સિનો-ટિબેટિયન (અન્ય)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3774,210 +3763,141 @@ msgstr "સ્લેવિક (અન્ય)"
 msgid "Slovak"
 msgstr "સ્લોવેક"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "સ્લોવેકિયા"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "સ્લોવેનિયા"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "સ્લોવેનિયન"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "સાઉધર્ન સામિ"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "નોર્ધર્ન સામિ"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "સામિ ભાષાઓ (અન્ય)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "લુલે સામિ"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "ઇનારિ સામિ"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "સામોઅન"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "સ્કોલ્ટ સામિ"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "શોના"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "સિંધી"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "સોનિનકે"
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "સોગડિયન"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "સોલોમન આઇલેન્ડ્સ"
-
 #. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "સોમાલિ"
-
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "સોમાલિયા"
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "સોમાલિ"
 
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "સોંઘાઈ"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "સોનિનકે"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "સોરાબિયન ભાષાઓ"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "સોથો, સાઉધર્ન"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "સાઉથ આફ્રિકા"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "સાઉથ અમેરિકન ઇન્ડિયન (અન્ય)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "સાઉથ જ્યોર્જિયા અને સાઉથ સેન્ડવિચ આઇલેન્ડ્સ"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "સાઉથ કોરિયા"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "સાઉથર્ન અલટાઇ"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "સાઉધર્ન સામિ"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "સ્પેન"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "સ્પેનિશ"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "શà«\8dરà«\80 àª²àª\82àª\95ા"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "સરà«\8dદિનિયન"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "સà«\81દાન"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "સà«\87રà«\87ર"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr ""
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "નિલો-સહારન (અન્ય)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "સ્વાતિ"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "સુકુમા"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "સુમેરિયન"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "સનડેનેઝ"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "સુરિનેમ"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "સુસુ"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "સà«\8dવાલબરà«\8dડ àª\85નà«\87 àª\9cાન àª®àª¯à«\87ન"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "સà«\81મà«\87રિયન"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "સ્વાહિલિ"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "સ્વાતિ"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "સ્વાઝિલેન્ડ"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "સ્વિડન"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "સ્વેડિશ"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "સ્વિટઝરલેન્ડ"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "સિરિયા"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "સાઇરિએક"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "તાગાલોગ"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3988,36 +3908,11 @@ msgstr "તાહિશિયન"
 msgid "Tai (Other)"
 msgstr "તાઇ (અન્ય)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "તાઇવાન"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "તાજિક"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "ટાઝિક્સ્તાન"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "ટામાશેક"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "તામિલ"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "ટાન્ઝાનિયા"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4028,6 +3923,11 @@ msgstr "તાતાર"
 msgid "Telugu"
 msgstr "તેલુગુ"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "ટિમ્ને"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4038,35 +3938,21 @@ msgstr "ટેરેનો"
 msgid "Tetum"
 msgstr "તેટુમ"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "તાજિક"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "તાગાલોગ"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "થાઇ"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "થાઈલેન્ડ"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-#, fuzzy
-msgid "The vendor does not provide support."
-msgstr "ડિસ્ક અસ્તિત્વ ધરાવતી નથી."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-#, fuzzy
-msgid "This request will break your system!"
-msgstr "રિક્વેસ્ટ અસ્તિત્વમાં છે જ."
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4082,46 +3968,25 @@ msgstr "ટાઇગ્રે"
 msgid "Tigrinya"
 msgstr "ટાઇગ્રીન્યા"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "ટિમ્ને"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "ટિવ"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "ક્લિંગોન"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "ટ્લિનગિટ"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "ટોગો"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "ટોક પિસિન"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "તોકેલાઉ"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "ટોંગા"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "ટામાશેક"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4129,107 +3994,70 @@ msgid "Tonga (Nyasa)"
 msgstr "ટોંગા (ન્યાસા)"
 
 #. language code: ton to
-#: zypp/LanguageCode.cc:1055
-msgid "Tonga (Tonga Islands)"
-msgstr "ટોંગા (ટોંગા આઇસલેન્ડ્સ)"
-
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
+#: zypp/LanguageCode.cc:1055
+msgid "Tonga (Tonga Islands)"
+msgstr "ટોંગા (ટોંગા આઇસલેન્ડ્સ)"
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "તà«\8dરિનિદાદ àª\85નà«\87 àª\9fà«\8bબાàª\97à«\8b"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "àª\9fà«\8bàª\95 àªªàª¿àª¸àª¿àª¨"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "ત્સિમશિયન"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "ત્સ્વાના"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "ત્સોનગા"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "તà«\8dસà«\8dવાના"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "àª\9fરà«\8dàª\95મà«\87ન"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "ટુમબુકા"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "ટુનિસિયા"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "ટુપિ ભાષાઓ"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "ટર્કી"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "ટર્કિશ"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "ટર્કિસ, ઓટોમન (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "ટર્કમેન"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "ટર્કમેનિસ્તાન"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "ટર્કસ અને કઇકોસ આઇલેન્ડ"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "અલ્ટાઇક (અન્ય)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "ટુવાલુ"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "ટ્વિ"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "ટુવિનિયન"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "ટ્વિ"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "ઉડમુર્ટ"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "યુગાન્ડા"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4240,11 +4068,6 @@ msgstr "યુગારિટિક"
 msgid "Uighur"
 msgstr "યુઇઘુર"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "યુક્રેઇન"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4255,207 +4078,35 @@ msgstr "યુક્રેઇનિયન"
 msgid "Umbundu"
 msgstr "ઉમબુન્દુ"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Url વસ્તુને ક્લોન કરવામાં અક્ષમ"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "dbus જોડાણ રચવામાં અક્ષમ"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "HAL સંદર્ભ પ્રારંભ કરવામાં અક્ષમ -- હેલ્ડ ચાલતું નથી?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Url ઘટકોને પાર્સ કરવામાં અક્ષમ"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "અનિશ્ચિત"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr ""
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "યૂનાઇટેડ આરબ એમિરાટ્સ"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "યૂનાઇટેડ કિંગડોમ"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "યૂનાઇટેડ સ્ટેટ્સ"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "યૂનાઇટેડ સ્ટેટ્સ માઇનોર આઉટલાઇંગ આઇલેન્ડ્સ"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "અજાણ્યો દેશ:"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "ફ્લોપી ડિસ્કમાંથી વાંચવામાં ભૂલ."
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "અજાણી ભાષા:"
-
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "અજાણ્યો કમાન્ડ"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr ""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr ""
-
-#: zypp/media/MediaException.cc:140
-#, fuzzy, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "URL સ્કીમ '%1' અમાન્ય"
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "અપર સોર્બિયન"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "ઊર્દૂ"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Url યોજના %s ને મંજૂરી આપતી નથી"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Url યોજના હોસ્ટ ઘટકને મંજૂરી આપતું નથી"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Url યોજના પાસવર્ડને મંજૂરી આપતું નથી"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Url યોજનાને પોર્ટને મંજૂરી આપતું નથી"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Url યોજના વપરાશકર્તાને મંજૂરી આપતું નથી"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Url યોજનાને ઘટક જરૂરી છે"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Url યોજનાને હોસ્ટ ઘટક જરૂરી છે"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Url યોજનાને માર્ગ નામ જરૂરી છે"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "યુરુગ્વે"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "ઉઝબેક"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "યુઝબેકિસ્તાન"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "વાઈ"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "વનુઆટુ"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "વેન્ડા"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "વેનેઝુએલા"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "વિયેટનામ"
-
 #. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "વિએટનામિઝ"
-
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "વર્જિન આઇલેન્ડ્સ, યુ.એસ."
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "વિએટનામિઝ"
 
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
@@ -4477,16 +4128,6 @@ msgstr "વોકાશન ભાષાઓ"
 msgid "Walamo"
 msgstr "વાલામો"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "વોલિસ અને ફુટુના"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "વલુન"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4502,389 +4143,761 @@ msgstr "વાશો"
 msgid "Welsh"
 msgstr "વેલ્શ"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "વેસ્ટર્ન સહારા"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "સોરાબિયન ભાષાઓ"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "વલુન"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "વોલોફ"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "કલમ્યક"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "ક્ઝોસા"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "યાકુટ"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
 msgstr "યોઆ"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "યાપેઝ"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "યાપેઝ"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "યિડ્ડિશ"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "યોરુબા"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "યુપિક ભાષાઓ"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "ઝાપોટેક"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "ઝેનેગા"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "ઝુઆંગ"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "ઝંડે"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "ઝુલુ"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "ઝુનિ"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "VM શરૂ કરવામાં નિષ્ફળ."
+
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "એન્ટ્રી મળી નહીં."
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, fuzzy, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "%s માંથી %s પૂરું પાડી શકાતું નથી"
+
+#: zypp/repo/RepoProvideFile.cc:265
+#, fuzzy
+msgid "No url in repository."
+msgstr "રિપોસીટરીમાં ફાઈલ %1 મળી નહીં."
+
+#: zypp/repo/RepoException.cc:129
+#, fuzzy
+msgid "Service plugin does not support changing an attribute."
+msgstr "સાધન પ્રકાર VAR1 ફેરફાર-બતાવો ફિચર ને આધાર આપતા નથી"
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, fuzzy, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"%s પેકેજ પૂર્ણતા ચકાસણીમાં નિષ્ફળ ગઇ છે. તમે તે ફરીથી ડાઉનલોડ કરવાનો પ્રયત્ન કરવા માંગો "
+"છો?"
+
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, fuzzy, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
+"%s પેકેજ પૂર્ણતા ચકાસણીમાં નિષ્ફળ ગઇ છે. તમે તે ફરીથી ડાઉનલોડ કરવાનો પ્રયત્ન કરવા માંગો "
+"છો?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm ચકાસણી કરવામાં નિષ્ફળ."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm નિષ્ફળ."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s, %s પૂરું પાડે છે, પરંતુ તેની પાસે બીજી સંરચના છે."
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "પેકેજીસનું સ્થાપન દૂર કરવાનો આદેશ"
+
+#: zypp/solver/detail/SATResolver.cc:986
+#, fuzzy
+msgid "conflicting requests"
+msgstr "ને જોડાણ માટે વિનંતી કરો:"
+
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "પરાધિનતા મૂશ્કેલીઓને કારણે %s સ્થાપિ શકાયું નથી"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, fuzzy, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "%s કોઇ આપતું નથી"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "ડિસ્ક અસ્તિત્વ ધરાવતી નથી."
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s લોક છે અને અસ્થાપિત થઇ શકશે નહીં"
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "સ્થાપેલ નથી"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, fuzzy, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s દ્વારા %s જરૂરી હતું"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "%s સ્થાપિ શકાશે નહીં"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s, %s સાથે વિસંગત છે"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, fuzzy, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s અલગ પાડવું %s"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s અલગ પાડવું %s"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s, %s સાથે વિસંગત છે"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1070
+#, fuzzy
+msgid "deleted providers: "
+msgstr "%s કોઇ આપતું નથી"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+#, fuzzy
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr "%s ના કોઇ સ્થાપવાનું પૂરું પાડનાર નથી"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "%s ના કોઇ સ્થાપવાનું પૂરું પાડનાર નથી"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "યેમન"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "યિડ્ડિશ"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "%s સ્થાપશો નહીં"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "યોરુબા"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "%s રાખો"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "યુપિક ભાષાઓ"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "%s સ્થાપશો નહીં"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "ઝામ્બિયા"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+#, fuzzy
+msgid "This request will break your system!"
+msgstr "રિક્વેસ્ટ અસ્તિત્વમાં છે જ."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "ઝંડે"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "ઝાપોટેક"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, fuzzy, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "%s ના કોઇ સ્થાપવાનું પૂરું પાડનાર નથી"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "àª\9dà«\87નà«\87àª\97ા"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "સàª\82બàª\82ધિત àª°àª¿àª\9dà«\8bલà«\8dવà«\87બલà«\8dસ àª¸à«\8dથાપà«\8b àª\95à«\87 àª\95ાઢà«\8b àª¨àª¹à«\80àª\82"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "ઝુઆંગ"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "ઝિમ્બાબ્વે"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, fuzzy, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s, %s પૂરું પાડે છે, પરંતુ તેની પાસે બીજી સંરચના છે."
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "ઝુલુ"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, fuzzy, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "%s સ્થાપો જો કે તે સંરચના બદલી શકે"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "ઝુનિ"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%s અલગ પાડવું %s"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm ચકાસણી કરવામાં નિષ્ફળ."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm નિષ્ફળ."
+#: zypp/solver/detail/SATResolver.cc:1318
+#, fuzzy, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "%s માંથી %s ડાઉનલોડ થયું"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr ""
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "સ્થાપન"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, fuzzy, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "આ જરૂરિયાત અહીં માત્ર અવગણો"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "આ જરૂરિયાત અહીં માત્ર અવગણો"
+
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
+
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
+
+#: zypp/base/InterProcessMutex.cc:83
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "%s સ્થાપિ શકાશે નહીં"
+msgid "Can't open lock file: %s"
+msgstr "ફાઈલ ખુલી શકતી નથી: %1."
 
-#: zypp/solver/detail/SATResolver.cc:986
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
 #, fuzzy
-msgid "conflicting requests"
-msgstr "ને જોડાણ માટે વિનંતી કરો:"
+msgid "History:"
+msgstr "XF86History "
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "અજાણ્યો કમાન્ડ"
+
+#: zypp/base/StrMatcher.cc:153
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "%s નું બેકઅપ રચાયું"
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
+
+#: zypp/base/StrMatcher.cc:158
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "સà«\8dથાપન"
+msgid "Invalid regular expression '%s'"
+msgstr "àª\85માનà«\8dય Url àª¯à«\8bàª\9cના '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-#, fuzzy
-msgid "deleted providers: "
-msgstr "%s કોઇ આપતું નથી"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "સàª\82બàª\82ધિત àª°àª¿àª\9dà«\8bલà«\8dવà«\87બલà«\8dસ àª¸à«\8dથાપà«\8b àª\95à«\87 àª\95ાઢà«\8b àª¨àª¹à«\80àª\82"
+msgid "Failed to mount %s on %s"
+msgstr "àª\96à«\81લà«\80 àª¶àª\95à«\8dતà«\81àª\82 àª¨àª¥à«\80 %s - %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:41
 #, fuzzy, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "%s ના કોઇ સ્થાપવાનું પૂરું પાડનાર નથી"
+msgid "Failed to unmount %s"
+msgstr "મોડ્યૂલ \"%s\" લોડ કરવામાં નિષ્ફળ."
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "%s સ્થાપશો નહીં"
+msgid "Bad file name: %s"
+msgstr ""
+
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
+
+#: zypp/media/MediaException.cc:60
+#, fuzzy, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "રિપોસીટરીમાં ફાઈલ %1 મળી નહીં."
+
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "ફાઈલ પર લખાઈ શકાતું નથી: %1."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, fuzzy, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "%s માંથી %s ડાઉનલોડ થયું"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "%1 ડિરેક્ટરી નથી."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:125
 #, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "આ જરૂરિયાત અહીં માત્ર અવગણો"
+msgid "Empty host name in URI"
+msgstr "CA નામ ખાલી છે."
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:140
 #, fuzzy, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "%s સ્થાપો જો કે તે સંરચના બદલી શકે"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "URL સ્કીમ '%1' અમાન્ય"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr ""
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s અલગ પાડવું %s"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "%s રાખો"
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
+
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s, %s પૂરું પાડે છે, પરંતુ તેની પાસે બીજી સંરચના છે."
+msgid "Cannot eject media '%s'"
+msgstr "%s ડેસ્કટોપ આઈટમ ખોલી શકાશે નહીં"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:199
 #, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%s અલગ પાડવું %s"
+msgid "Permission to access '%s' denied."
+msgstr " મંજૂરીઓ નકારાઇ "
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: libhal સંદર્ભ રચાઇ શક્યું નથી"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: dbus જોડાણ સેટ થઇ શક્યું નથી"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, fuzzy, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s દ્વારા %s જરૂરી હતું"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, fuzzy, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "%s કોઇ આપતું નથી"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "ડિસ્ક અસ્તિત્વ ધરાવતી નથી."
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "પેકેજીસનું સ્થાપન દૂર કરવાનો આદેશ"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "%s સ્થાપશો નહીં"
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "ફાઈલ બનાવી શકાતી નથી."
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, fuzzy, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "%s તરીકે rpm એ %s રચ્યું પરંતુ તફાવત જુદો પાડવા તેઅશક્ય હતું"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"%s તરીકે rpm એ %s રચ્યું.\n"
-"અહીં તફાવતોના પ્રથમ 25 લાઇનો છે:\n"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, fuzzy, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "%s તરીકે rpm એ %s સાચવ્યું પરંતુ તફાવત જુદો પાડવા તે અશક્ય હતું"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
-"%s તરીકે rpm એ %s સાચવ્યું.\n"
-"અહીં તફાવતોના પ્રથમ 25 લાઇનો છે: \n"
-
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s, %s સાથે વિસંગત છે"
 
-#: zypp/solver/detail/SATResolver.cc:989
 #, fuzzy
-msgid "some dependency problem"
-msgstr "પરાધિનતા મૂશ્કેલીઓને કારણે %s સ્થાપિ શકાયું નથી"
+#~ msgid "do not keep %s installed"
+#~ msgstr "સ્થાપેલ નથી"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "uninstallable providers: "
-msgstr "%s ના કોઇ સ્થાપવાનું પૂરું પાડનાર નથી"
-
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "અપરિચિત"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "ખુલી શક્તું નથી %s - %s\n"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr ""
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "સેરબિયા અને મોન્ટેનેગ્રો"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "અજાણ્યી યાદી વિકલ્પ"
 
 #, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "આશ્રિતોને રિઝોલ્વ કરી શકાયા નહીં"
+
 #~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "àª\95à«\8bàª\87 àª¸à«\8dતà«\8dરà«\8bત àªªà«\8dરાપà«\8dય àª¨àª¥à«\80 àª\9cà«\87 àª\86 àª\9cરà«\82રિયાતનà«\87 àª¸àª¹àª¾àª¯ àª\95રà«\87."
+#~ "%s ફાઇલ પાસે ચેકસમ નથી.\n"
+#~ "àª\95à«\8bàª\87 àªªàª£ àª°à«\80તà«\87 àª«àª¾àª\87લ àªµàª¾àªªàª°àªµà«\80 àª\9bà«\87?"
 
 #~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "આ રિઝોલ્વેબલ્સ સિસ્ટમમાંથી કાઢી નાખવામાં આવશે."
-
-#~ msgid " Error!"
-#~ msgstr "ભૂલ!"
-
-#~ msgid " Important!"
-#~ msgstr "અગત્યનું!"
-
-#~ msgid " fails checksum verification."
-#~ msgstr "ચેકસમ ખરાઇમાં નિષ્ફળ"
-
-#~ msgid " miss checksum."
-#~ msgstr "ચેકસમ છૂટી ગયું છે."
-
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "છૂટી ગયેલી પરાધિનતાને કારણે %s સ્થાપિ શકાયું નથી"
-
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "%s, અન્ય રિઝોલ્વેબલ્સ સાથે વિસંગત છે"
+#~ "%s ફાઈલ નીચેની કળ સાથે પૂર્ણતા ચકાસણીમાં નિષ્ફળ ગઇ છે :\n"
+#~ "%s|%s|%s\n"
+#~ "કોઇ પણ રીતે ફાઇલ વાપરવી છે?"
 
 #~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s આની સાથે વિસંગત છે :\n"
-#~ "%s"
-
-#~ msgid "%s depended on %s"
-#~ msgstr "%s, %s પર આધાર રાખ્યો"
-
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s, %s પર આધારિત"
-
-#~ msgid "%s depends on %s"
-#~ msgstr "%s, %s  પર આધાર રાખે છે"
+#~ "%s ફાઇલ પાસે અમાન્ય ચેકસમ છે.\n"
+#~ "%s ની સંભાવના હતી, %s મળી \n"
+#~ "કોઇ પણ રીતે ફાઇલ વાપરવી છે?"
 
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s અન્ય રિઝોલ્વેબલ્સ પર આધાર રાખે છે"
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "%s ફાઇલ પાસે અજાણ્યું %s ચેકસમ છે.\n"
+#~ "કોઇ પણ રીતે ફાઇલ વાપરવી છે?"
 
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s  પર આધાર રાખે છે : %s"
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "%s ફાઈલ સહી કરેલી નથી \n"
+#~ "કોઇ પણ રીતે તે વાપરવી છે?"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "%s, %s ની પરાધિનતા પૂર્ણ કરે છે પરંતુ તે તમારા સિસ્ટમ પર રાખશે"
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "%s અજાણી કળ સાથે સહી કરેલી છે :\n"
+#~ "%s|%s|%s\n"
+#~ "કોઇ પણ રીતે ફાઇલ વાપરવી છે??"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "%s, %s ની પરાધિનતા પૂર્ણ કરે છે પરંતુ તે અસ્થાપિત કરાશે"
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "અવિશ્વસનીય કળ શોધાઇ છે:\n"
+#~ "%s|%s|%s\n"
+#~ "કળ પર વિશ્વાસ કરવો છે?"
 
-#~ msgid "%s has missing dependencies"
-#~ msgstr "%s àªªàª¾àª¸à«\87 àª\9bà«\82àª\9fà«\80 àª\97યà«\87લà«\80 àªªàª°àª¾àª§àª¿àª¨àª¤àª¾ àª\9bà«\87"
+#~ msgid "%s remove failed"
+#~ msgstr "%s àª¨à«\87 àª¦à«\82ર àª\95રવામાàª\82 àª¨àª¿àª·à«\8dફળ"
 
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "%s પાસે અપૂર્ણ જરૂરિયાતો છે"
+#~ msgid "rpm output:"
+#~ msgstr "rpm આઉટપુટ:"
 
 #~ msgid "%s install failed"
 #~ msgstr "%s નું સ્થાપન નિષ્ફળ"
@@ -4892,122 +4905,81 @@ msgstr ""
 #~ msgid "%s installed ok"
 #~ msgstr "%s નું સ્થાપન બરાબર"
 
-#, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s દ્વારા %s ની જગ્યાએ મુકયું"
-
-#, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s દ્વારા %s જરૂરી હતું"
+#~ msgid "%s remove ok"
+#~ msgstr "%s ને દૂર કરવામાં બરાબર"
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s, %s જરૂરિયાત માટે છૂટી ગયેલ છે"
-
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "અન્ય રિઝોલ્વેબલ્સ દ્વારા %s જરૂરી હતું"
-
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "દ્વારા %s જરૂરી હતુ:\n"
-#~ "%s"
-
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "%s સ્થપાયું નથી અને અસ્થાપન તરીકે ચિહિત કર્યું હતું"
-
-#, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s દ્વારા %s જરૂરી હતું"
-
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s દ્વારા %s ની જગ્યાએ મુકયું"
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "%s આ પરાધિનતા પૂરી પાડે છે પરંતુ સ્થાપેલ બાબતનીસંરચના કદાચ બદલી શકે"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
-#~ msgstr "%s, અન્ય સ્થાપિત છે તે રિઝોલ્વેબલ દ્વારા જરૂરી છે, તેથી તે અનલિંક થઇ શકશેનહીં."
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "%s આ પરાધિનતા પૂરી પાડે છે પરંતુ સ્થાપેલ બાબતનીસંરચના કદાચ બદલી શકે"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
-#~ msgstr "%s, અન્ય સ્થાપિત છે તે રિઝોલ્વેબલ દ્વારા જરૂરી છે, તેથી તે અનલિંક થઇ શકશેનહીં."
-
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
-#~ msgstr ""
-#~ "%s, અન્ય સ્થાપિત કરવાનું છે તે રિઝોલ્વેબલ દ્વારા જરૂરી છે, તેથી તે અનલિંક થઇ શકશેનહીં."
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "સંબંધિત રિઝોલ્વેબલ્સ સ્થાપો કે કાઢો નહીં"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr "%s સ્થાપવા માટે નિયત છે, પરંતુ વિસંગત મૂશ્કેલીઓનેકારણે આ શક્ય નથી."
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "પહેલેથી સ્થાપવા સેટ કરેલ તે %s અવગણો"
 
-#, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s દ્વારા %s જરૂરી હતું"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "%s માં અલગ પાડેલા %s ને અવગણો"
 
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s દ્વારા %s જરૂરી હતું"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "%s ની આ વિસંગતતા અવગણો"
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s સાથે વિસંગત હોવાથી %s અસ્થાપિત છે"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "આ જરૂરિયાત અહીં માત્ર અવગણો"
 
 #, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr "%s અલગ પાડવું %s. પરંતુ %s કાઢી શકાશે નહીં કારણકે તે લોક કરેલું છે."
-
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s અન્ય રિઝોલ્વેબલ્સ અલગ પાડે છે"
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "%s સ્થાપો જો કે તે સંરચના બદલી શકે"
 
-#~ msgid "%s part of %s"
-#~ msgstr "%s, %s નો ભાગ છે"
+#~ msgid "Install missing resolvables"
+#~ msgstr "છૂટી ગયેલા રિઝોલ્વેબલ્સ સ્થાપો"
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s, %s પૂરું પાડે છે, પરંતુ તે રાખવા માટે નિયત કરાયેલું છે."
+#~ msgid "Keep resolvables"
+#~ msgstr "રિઝોલ્વેબલ્સ રાખો"
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr "%s, %s પૂરું પાડે છે, પરંતુ તે %s ની અન્ય આવૃતિ પહેલેથી સ્થાપિત છે."
+#~ msgid "Unlock these resolvables"
+#~ msgstr "આ રિઝોલ્વેબલ્સ અનલોક કરો"
 
-#, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s, %s પૂરું પાડે છે, પરંતુ તેની પાસે બીજી સંરચના છે."
+#~ msgid "delete %s"
+#~ msgstr "%s કાઢી નાખો"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s, %s પૂરું પાડે છે, પરંતુ અસ્થાપન માટે નિયત છે."
+#~ msgid "install %s"
+#~ msgstr "%s સ્થાપો"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s, %s પૂરું પાડે છે, પરંતુ તે લોક કરેલું છે."
+#~ msgid "unlock %s"
+#~ msgstr "%s ને અનલોક કરો"
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s, %s પૂરું પાડે છે, પરંતુ તે અસ્થાપિત છે. વધુ વિગતો માટે તે તેના પોતાના પર સ્થાપવાનો "
-#~ "પ્રયત્ન કરો."
+#~ msgid "unlock all resolvables"
+#~ msgstr "બધા રિઝોલ્વેબલ્સ અનલોક કરો"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr "%s આ પરાધિનતા પૂરી પાડે છે પરંતુ સ્થાપેલ બાબતનીસંરચના કદાચ બદલી શકે"
+#~ msgid "Can't open solv-file: "
+#~ msgstr "ફાઈલ ખુલી શકતી નથી: %1."
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr "%s આ પરાધિનતા પૂરી પાડે છે પરંતુ સ્થાપેલ બાબતનીસંરચના કદાચ બદલી શકે"
+#~ msgid "Error reading solv-file: "
+#~ msgstr "%u સેકટર વાંચતી વખતે ભૂલ."
 
-#~ msgid "%s remove failed"
-#~ msgstr "%s ને દૂર કરવામાં નિષ્ફળ"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "આ URL માટે માર્ગ પારમિતિ પાર્સિંગ સહાયિત નથી"
 
-#~ msgid "%s remove ok"
-#~ msgstr "%s ને દૂર કરવામાં બરાબર"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "આ URL માટે માર્ગ પારમિતિ પાર્સિંગ સહાયિત નથી"
+
+#~ msgid "Software management is already running."
+#~ msgstr "સોફ્ટવેર મેનેજમેન્ટ પહેલેથી ચાલુ છે"
+
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s દ્વારા %s ની જગ્યાએ મુકયું"
 
 #~ msgid "%s replaced by %s"
 #~ msgstr "%s દ્વારા %s ની જગ્યાએ મુકાયું"
@@ -5022,347 +4994,375 @@ msgstr ""
 #~ msgid "%s will be installed by the user.\n"
 #~ msgstr "%s અસ્થાપિત થશે નહીં કારણકે તે હજુ જરૂરી છે"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "%s અસ્થાપિત થશે નહીં કારણકે તે હજુ જરૂરી છે"
+#~ msgid "Invalid information"
+#~ msgstr "અમાન્ય માહિતી"
 
-#~ msgid ", Action: "
-#~ msgstr ", કાર્ય :"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "અન્ય રિઝોલ્વેબલ્સ દ્વારા %s જરૂરી હતું"
 
-#~ msgid ", Trigger: "
-#~ msgstr ", ટ્રીગર :"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "દ્વારા %s જરૂરી હતુ:\n"
+#~ "%s"
+
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "%s, અન્ય રિઝોલ્વેબલ્સ સાથે વિસંગત છે"
 
-#, fuzzy
 #~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
-#~ msgstr "%s (%s) ની વિસંગતતા સ્થાપિત કરવાનું છે તે %s ને દૂર કરવાનું જરૂરી બનાવે છે"
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s આની સાથે વિસંગત છે :\n"
+#~ "%s"
+
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s અન્ય રિઝોલ્વેબલ્સ અલગ પાડે છે"
 
 #~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
 #~ msgstr ""
-#~ "ઓછામાં ઓછું એક સ્ત્રોત પહેલેથી નોંધાયેલ છે, સંગ્રહ કરાયેલા સ્ત્રોતો પુનસંગ્રહ થઇ શકતો નથી."
+#~ "\n"
+#~ "આ રિઝોલ્વેબલ્સ સિસ્ટમમાંથી કાઢી નાખવામાં આવશે."
+
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s અન્ય રિઝોલ્વેબલ્સ પર આધાર રાખે છે"
+
+#~ msgid "%s depends on %s"
+#~ msgstr "%s, %s  પર આધાર રાખે છે"
+
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s  પર આધાર રાખે છે : %s"
+
+#~ msgid "Child of"
+#~ msgstr "નું ચાઇલ્ડ"
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
-#~ msgstr "અસ્થાપન માટે જરૂરી છે તે રીતે પહેલેથી ચિહિત છે ત્યાં સુધી %s સ્થાપી શકાશે નહીં"
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "કોઇ સ્ત્રોત પ્રાપ્ય નથી જે આ જરૂરિયાતને સહાય કરે."
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
-#~ msgstr "સ્થાપન માટે જરૂરી છે તે રીતે %s પહેલેથી ચિહિત છે ત્યાં સુધી %s સ્થાપીશકાશે નહીં"
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "આ રિઝોલ્યુશનની ઉપર/નીચે દર્શાવેલ બાકી નિકળતી મૂશ્કેલીઓ બધી પરાધિનતાઓનો ઉકેલલાવી "
+#~ "શકશે નહીં"
 
 #, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "તે આ સિસ્ટમ સાથે લાગુ પડતુ નથી ત્યાં સુધી %s સ્થાપી શકાશે નહીં."
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "%s સ્થાપિ શકાશે નહીં કારણકે તે %s સાથે વિસંગત છે"
+
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "%s સ્થપાયું નથી અને અસ્થાપન તરીકે ચિહિત કર્યું હતું"
+
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "%s પાસે અપૂર્ણ જરૂરિયાતો છે"
+
+#~ msgid "%s has missing dependencies"
+#~ msgstr "%s પાસે છૂટી ગયેલી પરાધિનતા છે"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "છૂટી ગયેલી પરાધિનતાને કારણે %s સ્થાપિ શકાયું નથી"
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "ફાઈલ ખુલી શકતી નથી: %1."
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "%s, %s ની પરાધિનતા પૂર્ણ કરે છે પરંતુ તે અસ્થાપિત કરાશે"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "%s માટે %s જરૂરિયાત સંતુષ્ટ કરી શકતું નથી"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "%s, %s ની પરાધિનતા પૂર્ણ કરે છે પરંતુ તે તમારા સિસ્ટમ પર રાખશે"
 
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
-#~ msgstr "%s àª¨à«\80 àªªàª°àª¾àª§àª¿àª¨àª¤àª¾ àªªà«\82રà«\8dણ àª\95રવા %s àª¸à«\8dથપાàª\87 àª¶àª\95શà«\87 àª¨àª¹à«\80àª\82"
+#~ msgid "No need to install %s"
+#~ msgstr "%s àª¸à«\8dથાપવાનà«\80 àª\9cરà«\82ર àª¨àª¥à«\80"
 
-#~ msgid "Cannot create a file needed to perform update installation."
-#~ msgstr "અદ્યતન સ્થાપન કરવામાં જરૂરી ફાઈલ રચી શકાઇ નથી"
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "%s ની પરાધિનતા પૂર્ણ કરવા %s સ્થાપી શકશે નહીં"
 
 #~ msgid "Cannot install %s to fulfil the dependencies of %s"
 #~ msgstr "%s ની પરાધિનતા પૂર્ણ કરવા %s સ્થાપી શકશે નહીં"
 
 #, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "%s ની પરાધિનતા પૂર્ણ કરવા %s સ્થાપી શકશે નહીં"
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "%s અસ્થાપિત થશે નહીં કારણકે તે હજુ જરૂરી છે"
+
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s અલગ પાડવું %s. પરંતુ %s કાઢી શકાશે નહીં કારણકે તે લોક કરેલું છે."
 
 #, fuzzy
 #~ msgid "Cannot install %s, because it is conflicting"
 #~ msgstr "%s સ્થાપિત કરી શકાશે નહીં કારણકે તે વિસંગત છે"
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "%s સ્થાપિ શકાશે નહીં કારણકે તે %s સાથે વિસંગત છે"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s સાથે વિસંગત હોવાથી %s અસ્થાપિત છે"
 
-#~ msgid "Child of"
-#~ msgstr "નà«\81àª\82 àª\9aાàª\87લà«\8dડ"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "àª\9cà«\8dયારà«\87 %s àª\85દà«\8dયતન àª\95રતા àª¹à«\8bવ àª¤à«\8dયારà«\87 %s àª®àª¾àª\9fà«\87 %s àª\9cરà«\82રà«\80 àª\9bà«\87"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "સંબંધિત રિઝોલ્વેબલ્સ સ્થાપો કે કાઢો નહીં"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s, %s જરૂરિયાત માટે છૂટી ગયેલ છે"
 
-#, fuzzy
-#~ msgid "Double timeout"
-#~ msgstr "<b> ડબલ-ક્લિક ટાઇમઆઉટ </b>"
+#~ msgid ", Action: "
+#~ msgstr ", કાર્ય :"
 
-#~ msgid "Downloading %s"
-#~ msgstr "%s ડાઉનલોડ થઇ રહ્યું છે"
+#~ msgid ", Trigger: "
+#~ msgstr ", ટ્રીગર :"
 
-#, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "આ રિઝોલ્યુશનની ઉપર/નીચે દર્શાવેલ બાકી નિકળતી મૂશ્કેલીઓ બધી પરાધિનતાઓનો ઉકેલલાવી "
-#~ "શકશે નહીં"
+#~ msgid "package"
+#~ msgstr "પેકેજ"
 
-#, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "%u સેકટર વાંચતી વખતે ભૂલ."
+#~ msgid "selection"
+#~ msgstr "પસંદગી"
 
-#~ msgid "Establishing %s"
-#~ msgstr "%s સ્થપાઇ રહ્યું છે"
+#~ msgid "pattern"
+#~ msgstr "પેટર્ન"
 
-#, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "ખુલી શક્તું નથી %s - %s\n"
+#~ msgid "product"
+#~ msgstr "પ્રોડક્ટ"
 
-#~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "%s ફાઇલ પાસે ચેકસમ નથી.\n"
-#~ "કોઇ પણ રીતે ફાઇલ વાપરવી છે?"
+#~ msgid "patch"
+#~ msgstr "પેચ"
 
-#~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "%s ફાઈલ નીચેની કળ સાથે પૂર્ણતા ચકાસણીમાં નિષ્ફળ ગઇ છે :\n"
-#~ "%s|%s|%s\n"
-#~ "કોઇ પણ રીતે ફાઇલ વાપરવી છે?"
+#~ msgid "script"
+#~ msgstr "સ્ક્રિપ્ટ"
 
-#~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "%s ફાઇલ પાસે અમાન્ય ચેકસમ છે.\n"
-#~ "%s ની સંભાવના હતી, %s મળી \n"
-#~ "કોઇ પણ રીતે ફાઇલ વાપરવી છે?"
+#~ msgid "message"
+#~ msgstr "સંદેશ"
 
-#~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "%s ફાઇલ પાસે અજાણ્યું %s ચેકસમ છે.\n"
-#~ "કોઇ પણ રીતે ફાઇલ વાપરવી છે?"
+#~ msgid "atom"
+#~ msgstr "એટમ"
 
-#~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
-#~ msgstr ""
-#~ "%s ફાઈલ સહી કરેલી નથી \n"
-#~ "કોઇ પણ રીતે તે વાપરવી છે?"
+#~ msgid "system"
+#~ msgstr "સિસ્ટમ"
 
-#~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "%s અજાણી કળ સાથે સહી કરેલી છે :\n"
-#~ "%s|%s|%s\n"
-#~ "કોઇ પણ રીતે ફાઇલ વાપરવી છે??"
+#~ msgid "Resolvable"
+#~ msgstr "રિઝોલ્વેબલ્સ"
 
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "પહà«\87લà«\87થà«\80 àª¸à«\8dથાપવા àª¸à«\87àª\9f àª\95રà«\87લ àª¤à«\87 %s àª\85વàª\97ણો"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "àª\86 àª àª°àª¾àªµ àªªà«\8dરયતà«\8dન àª\85માનà«\8dય àª¤àª°à«\80àª\95à«\87 àª\9aિહિત àª\95રો"
 
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "%s àª®àª¾àª\82 àª\85લàª\97 àªªàª¾àª¡à«\87લા %s àª¨à«\87 àª\85વàª\97ણો"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "%s àª°àª¿àª\9dà«\8bલà«\8dવà«\87બલà«\8dસ àª\85સà«\8dથાપિત àª¤àª°à«\80àª\95à«\87 àª\9aિહિત àª\95રો"
 
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "%s ની આ વિસંગતતા અવગણો"
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr "%s સ્થાપવા માટે નિયત છે, પરંતુ વિસંગત મૂશ્કેલીઓનેકારણે આ શક્ય નથી."
 
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "સામાન્ય રીતે આ જરૂરિયાત અવગણો"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "અસ્થાપન માટે જરૂરી છે તે રીતે પહેલેથી ચિહિત છે ત્યાં સુધી %s સ્થાપી શકાશે નહીં"
 
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "આ જરૂરિયાત અહીં માત્ર અવગણો"
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "તે આ સિસ્ટમ સાથે લાગુ પડતુ નથી ત્યાં સુધી %s સ્થાપી શકાશે નહીં."
+
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "સ્થાપન માટે જરૂરી છે તે રીતે %s પહેલેથી ચિહિત છે ત્યાં સુધી %s સ્થાપીશકાશે નહીં"
 
-#, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "%s સ્થાપો જો કે તે સંરચના બદલી શકે"
+#~ msgid "This would invalidate %s."
+#~ msgstr "આ %s ને અપુષ્ટિ કરી શકશે"
 
-#~ msgid "Install missing resolvables"
-#~ msgstr "છૂટી ગયેલા રિઝોલ્વેબલ્સ સ્થાપો"
+#~ msgid "Establishing %s"
+#~ msgstr "%s સ્થપાઇ રહ્યું છે"
 
 #~ msgid "Installing %s"
 #~ msgstr "%s સ્થાપન થઇ રહ્યું છે"
 
-#~ msgid "Invalid information"
-#~ msgstr "અમાન્ય માહિતી"
+#~ msgid "Updating %s to %s"
+#~ msgstr "%s થી %s માં અદ્યતન થઇ રહ્યું છે"
 
-#~ msgid "Keep resolvables"
-#~ msgstr "રિઝોલ્વેબલ્સ રાખો"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "%s છોડાઇ રહ્યું છે : પહેલેથી સ્થાપિત છે"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "%s ની વિસંગતતાના કારણે %s ને અસ્થાપિત તરીકે ચિહિત કરો"
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "%s ના કોઇ વૈકલ્પિક સ્થાપવાનું પૂરું પાડનાર નથી"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "%s àª°àª¿àª\9dà«\8bલà«\8dવà«\87બલà«\8dસ àª\85સà«\8dથાપિત àª¤àª°à«\80àª\95à«\87 àª\9aિહિત àª\95રà«\8b"
+#~ msgid "for %s"
+#~ msgstr "%s àª®àª¾àª\9fà«\87"
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "આ ઠરાવ પ્રયત્ન અમાન્ય તરીકે ચિહિત કરો"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "%s ને અદ્યતન કરવા, %s દૂર કરવાનું ટાળવાનું શક્ય નથી"
 
-#~ msgid "No need to install %s"
-#~ msgstr "%s સ્થાપવાની જરૂર નથી"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s, %s પૂરું પાડે છે, પરંતુ અસ્થાપન માટે નિયત છે."
+
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s, %s પૂરું પાડે છે, પરંતુ તે %s ની અન્ય આવૃતિ પહેલેથી સ્થાપિત છે."
 
-#, fuzzy
 #~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "%s પેકેજ પૂર્ણતા ચકાસણીમાં નિષ્ફળ ગઇ છે. તમે તે ફરીથી ડાઉનલોડ કરવાનો પ્રયત્ન કરવા "
-#~ "માંગો છો.અથવા સ્થાપન અટકાવવું છે?"
-
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "આ URL માટે માર્ગ પારમિતિ પાર્સિંગ સહાયિત નથી"
+#~ "%s, %s પૂરું પાડે છે, પરંતુ તે અસ્થાપિત છે. વધુ વિગતો માટે તે તેના પોતાના પર સ્થાપવાનો "
+#~ "પ્રયત્ન કરો."
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "આ URL માટે માર્ગ પારમિતિ પાર્સિંગ સહાયિત નથી"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s, %s પૂરું પાડે છે, પરંતુ તે લોક કરેલું છે."
 
-#~ msgid "Reading filelist from %s"
-#~ msgstr "%s માંથી ફાઇલયાદી વંચાઇ રહી છે"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s, %s પૂરું પાડે છે, પરંતુ તે રાખવા માટે નિયત કરાયેલું છે."
 
-#~ msgid "Reading index files"
-#~ msgstr "ઇન્ડેક્સ ફાઇલો વંચાઇ રહી છે"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s, %s પૂરું પાડે છે, પરંતુ તેની પાસે બીજી સંરચના છે."
 
-#~ msgid "Reading packages file"
-#~ msgstr "પેકેજીસ ફાઇલ વંચાઇ રહી છે"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "%s માટે %s જરૂરિયાત સંતુષ્ટ કરી શકતું નથી"
 
-#~ msgid "Reading packages from %s"
-#~ msgstr "%s માંથી પેકેજીસ વંચાઇ રહ્યા છે"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr "%s, અન્ય સ્થાપિત છે તે રિઝોલ્વેબલ દ્વારા જરૂરી છે, તેથી તે અનલિંક થઇ શકશેનહીં."
 
-#~ msgid "Reading patch %s"
-#~ msgstr "%s પેચ વંચાઇ રહ્યા છે"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr "%s, અન્ય સ્થાપિત છે તે રિઝોલ્વેબલ દ્વારા જરૂરી છે, તેથી તે અનલિંક થઇ શકશેનહીં."
 
-#~ msgid "Reading patches index %s"
-#~ msgstr "%s માંથી પેચિસ ઇન્ડેક્સ વંચાઇ રહ્યા છે"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "%s (%s) ની વિસંગતતા સ્થાપિત કરવાનું છે તે %s ને દૂર કરવાનું જરૂરી બનાવે છે"
 
-#~ msgid "Reading pattern from %s"
-#~ msgstr "%s àª®àª¾àª\82થà«\80 àªªà«\87àª\9fરà«\8dન àªµàª\82àª\9aાàª\87 àª°àª¹à«\8dયા àª\9bà«\87"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "%s àª¨à«\80 àªµàª¿àª¸àª\82àª\97તતાના àª\95ારણà«\87 %s àª¨à«\87 àª\85સà«\8dથાપિત àª¤àª°à«\80àª\95à«\87 àª\9aિહિત àª\95રà«\8b"
 
-#~ msgid "Reading product from %s"
-#~ msgstr "%s માંથી પ્રોડક્ટ વંચાઇ રહી છે"
+#~ msgid "from %s"
+#~ msgstr "%s માંથી"
 
-#~ msgid "Reading selection from %s"
-#~ msgstr "%s માંથી પસંદગી વંચાઇ રહી છે"
+#~ msgid " Error!"
+#~ msgstr "ભૂલ!"
 
-#~ msgid "Reading translation: %s"
-#~ msgstr "ભાષાàª\82તર àªµàª\82àª\9aાàª\88 àª°àª¹à«\8dયà«\81àª\82 àª\9bà«\87 : %s"
+#~ msgid " Important!"
+#~ msgstr "àª\85àª\97તà«\8dયનà«\81àª\82!"
 
-#~ msgid "Resolvable"
-#~ msgstr "રિઝોલ્વેબલ્સ"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s, %s પર આધાર રાખ્યો"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "સેરબિયા અને મોન્ટેનેગ્રો"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s દ્વારા %s જરૂરી હતું"
 
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "%s છોડાઇ રહ્યું છે : પહેલેથી સ્થાપિત છે"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s દ્વારા %s જરૂરી હતું"
 
-#~ msgid "Software management is already running."
-#~ msgstr "સોફ્ટવેર મેનેજમેન્ટ પહેલેથી ચાલુ છે"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s દ્વારા %s ની જગ્યાએ મુકયું"
 
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "સ્ક્રિપ્ટ ફાઇલ ચેકસમ પરિક્ષણ કરવામાં નિષ્ફળ ગઇ."
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s દ્વારા %s જરૂરી હતું"
 
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr "સહી કરેલી repomd.xml ફાઇલ સહી તપાસવામાં નિષ્ફળ ગઇ."
+#~ msgid "%s part of %s"
+#~ msgstr "%s, %s નો ભાગ છે"
 
 #, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "%s ના કોઇ વૈકલ્પિક સ્થાપવાનું પૂરું પાડનાર નથી"
+#~ msgid "Double timeout"
+#~ msgstr "<b> ડબલ-ક્લિક ટાઇમઆઉટ </b>"
 
-#~ msgid "This would invalidate %s."
-#~ msgstr "આ %s ને અપુષ્ટિ કરી શકશે"
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s દ્વારા %s જરૂરી હતું"
 
 #~ msgid "Unable to parse Url authority"
 #~ msgstr "Url અધિકૃતિ પાર્સ કરવા અક્ષમ"
 
-#~ msgid "Unable to restore all sources."
-#~ msgstr "બધા સ્ત્રોતો પુનસ્થાપન કરવા અક્ષમ"
-
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "અજાણ્યી યાદી વિકલ્પ"
-
-#~ msgid "Unlock these resolvables"
-#~ msgstr "આ રિઝોલ્વેબલ્સ અનલોક કરો"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "સામાન્ય રીતે આ જરૂરિયાત અવગણો"
 
 #~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
 #~ msgstr ""
-#~ "અવિશ્વસનીય કળ શોધાઇ છે:\n"
-#~ "%s|%s|%s\n"
-#~ "કળ પર વિશ્વાસ કરવો છે?"
+#~ "%s, અન્ય સ્થાપિત કરવાનું છે તે રિઝોલ્વેબલ દ્વારા જરૂરી છે, તેથી તે અનલિંક થઇ શકશેનહીં."
 
-#~ msgid "Updating %s to %s"
-#~ msgstr "%s થી %s માં અદ્યતન થઇ રહ્યું છે"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "અદ્યતન સ્થાપન કરવામાં જરૂરી ફાઈલ રચી શકાઇ નથી"
 
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "%s ને અદ્યતન કરવા, %s દૂર કરવાનું ટાળવાનું શક્ય નથી"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "બધા સ્ત્રોતો પુનસ્થાપન કરવા અક્ષમ"
 
-#~ msgid "atom"
-#~ msgstr "એટમ"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr ""
+#~ "ઓછામાં ઓછું એક સ્ત્રોત પહેલેથી નોંધાયેલ છે, સંગ્રહ કરાયેલા સ્ત્રોતો પુનસંગ્રહ થઇ શકતો નથી."
 
-#~ msgid "delete %s"
-#~ msgstr "%s àª\95ાઢà«\80 àª¨àª¾àª\96à«\8b"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "%s àª¨à«\80 àªªàª°àª¾àª§àª¿àª¨àª¤àª¾ àªªà«\82રà«\8dણ àª\95રવા %s àª¸à«\8dથપાàª\87 àª¶àª\95શà«\87 àª¨àª¹à«\80àª\82"
 
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "સ્થાપેલ નથી"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s, %s પર આધારિત"
 
-#~ msgid "for %s"
-#~ msgstr "%s માટે"
+#~ msgid "Reading index files"
+#~ msgstr "ઇન્ડેક્સ ફાઇલો વંચાઇ રહી છે"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "àª\9cà«\8dયારà«\87 %s àª\85દà«\8dયતન àª\95રતા àª¹à«\8bવ àª¤à«\8dયારà«\87 %s àª®àª¾àª\9fà«\87 %s àª\9cરà«\82રà«\80 àª\9bà«\87"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "સહà«\80 àª\95રà«\87લà«\80 repomd.xml àª«àª¾àª\87લ àª¸àª¹à«\80 àª¤àªªàª¾àª¸àªµàª¾àª®àª¾àª\82 àª¨àª¿àª·à«\8dફળ àª\97àª\87."
 
-#~ msgid "from %s"
-#~ msgstr "%s માંથી"
+#~ msgid "Reading product from %s"
+#~ msgstr "%s માંથી પ્રોડક્ટ વંચાઇ રહી છે"
 
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "આશ્રિતોને રિઝોલ્વ કરી શકાયા નહીં"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "%s માંથી ફાઇલયાદી વંચાઇ રહી છે"
 
-#~ msgid "install %s"
-#~ msgstr "%s àª¸à«\8dથાપà«\8b"
+#~ msgid "Reading packages from %s"
+#~ msgstr "%s àª®àª¾àª\82થà«\80 àªªà«\87àª\95à«\87àª\9cà«\80સ àªµàª\82àª\9aાàª\87 àª°àª¹à«\8dયા àª\9bà«\87"
 
-#~ msgid "message"
-#~ msgstr "સંદેશ"
+#~ msgid "Reading selection from %s"
+#~ msgstr "%s માંથી પસંદગી વંચાઇ રહી છે"
 
-#~ msgid "package"
-#~ msgstr "પેકેજ"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "%s માંથી પેટર્ન વંચાઇ રહ્યા છે"
 
-#~ msgid "patch"
-#~ msgstr "પેચ"
+#~ msgid "Reading patches index %s"
+#~ msgstr "%s માંથી પેચિસ ઇન્ડેક્સ વંચાઇ રહ્યા છે"
 
-#~ msgid "pattern"
-#~ msgstr "પેટર્ન"
+#~ msgid "Reading patch %s"
+#~ msgstr "%s પેચ વંચાઇ રહ્યા છે"
 
-#~ msgid "product"
-#~ msgstr "પà«\8dરà«\8bડàª\95à«\8dàª\9f"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "સà«\8dàª\95à«\8dરિપà«\8dàª\9f àª«àª¾àª\87લ àª\9aà«\87àª\95સમ àªªàª°àª¿àª\95à«\8dષણ àª\95રવામાàª\82 àª¨àª¿àª·à«\8dફળ àª\97àª\87."
 
-#~ msgid "rpm output:"
-#~ msgstr "rpm આઉટપુટ:"
+#~ msgid "Reading packages file"
+#~ msgstr "પેકેજીસ ફાઇલ વંચાઇ રહી છે"
 
-#~ msgid "script"
-#~ msgstr "સà«\8dàª\95à«\8dરિપà«\8dàª\9f"
+#~ msgid "Reading translation: %s"
+#~ msgstr "ભાષાàª\82તર àªµàª\82àª\9aાàª\88 àª°àª¹à«\8dયà«\81àª\82 àª\9bà«\87 : %s"
 
-#~ msgid "selection"
-#~ msgstr "પસંદગી"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "%s પેકેજ પૂર્ણતા ચકાસણીમાં નિષ્ફળ ગઇ છે. તમે તે ફરીથી ડાઉનલોડ કરવાનો પ્રયત્ન કરવા "
+#~ "માંગો છો.અથવા સ્થાપન અટકાવવું છે?"
 
-#~ msgid "system"
-#~ msgstr "સિસà«\8dàª\9fમ"
+#~ msgid " miss checksum."
+#~ msgstr "àª\9aà«\87àª\95સમ àª\9bà«\82àª\9fà«\80 àª\97યà«\81àª\82 àª\9bà«\87."
 
-#~ msgid "unlock %s"
-#~ msgstr "%s ને અનલોક કરો"
+#~ msgid " fails checksum verification."
+#~ msgstr "ચેકસમ ખરાઇમાં નિષ્ફળ"
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "બધા રિઝોલ્વેબલ્સ અનલોક કરો"
+#~ msgid "Downloading %s"
+#~ msgstr "%s ડાઉનલોડ થઇ રહ્યું છે"
index f1f8986..bcd2e16 100644 (file)
--- a/po/he.po
+++ b/po/he.po
@@ -16,875 +16,2409 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-#, fuzzy
-msgid " execution failed"
-msgstr "DBI Execution failed: %s"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "ארכיטקטורה:"
-
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "התקנה נכשלה"
-
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-#, fuzzy
-msgid "Abkhazian"
-msgstr "אלבניה"
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
+#  main dialog: Button Delete partition
+#: zypp/Dep.cc:100
 #, fuzzy
-msgid "Achinese"
-msgstr "סינית"
+msgid "Obsoletes"
+msgstr "&מחק"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
-#, c-format, boost-format
-msgid "Adding repository '%s'"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-#, fuzzy
-msgid "Additional rpm output"
-msgstr "מידע נוסף"
-
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
+#: zypp/target/TargetImpl.cc:332
 #, fuzzy
-msgid "Afghanistan"
-msgstr "פקיסטן"
+msgid " execution failed"
+msgstr "DBI Execution failed: %s"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "אפריקנס"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#  Edit field label for linux partition size in non-graphical mode
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-#, fuzzy
-msgid "Ainu"
-msgstr "לינוקס:"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-#, fuzzy
-msgid "Akan"
-msgstr "אפריקנס"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-# IE
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
+#: zypp/target/hal/HalContext.cc:117
 #, fuzzy
-msgid "Aland Islands"
-msgstr "איי פר-אר"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "אלבניה"
+msgid "HalContext not connected"
+msgstr "לא מחובר"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-#, fuzzy
-msgid "Albanian"
-msgstr "אלבניה"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-# BG
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "אלג'יר"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr ""
 
-# BD
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-#, fuzzy
-msgid "Algonquian Languages"
-msgstr "שפות"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr ""
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr ""
+
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr ""
+
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr ""
+
+#  Commandline help title
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, fuzzy, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "קורא קובץ הגדרות"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+#, fuzzy
+msgid "Additional rpm output"
+msgstr "מידע נוסף"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, fuzzy, c-format, boost-format
+msgid "created backup %s"
+msgstr "אל תיצור גיבויים"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Couldn't open file: %s."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+
+#  Frame title for installation target hard disk / partition(s)
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "מתקין על:"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr ""
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#  Frame title for installation target hard disk / partition(s)
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "מתקין על:"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Couldn't open file: %s."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "פקודה לביצוע כאשר מתחברים"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#  column description, if disk space is not known
+#  label text
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "לא ידוע"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+# IT
+#: zypp/VendorSupportOptions.cc:31
+#, fuzzy
+msgid "invalid"
+msgstr "התקן"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr ""
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+#, fuzzy
+msgid "No Code"
+msgstr "מצב"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr ""
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "איחוד הנסיכויות הערביות"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+#, fuzzy
+msgid "Afghanistan"
+msgstr "פקיסטן"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr ""
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr ""
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "אלבניה"
+
+# AR
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+#, fuzzy
+msgid "Armenia"
+msgstr "ארגנטינה"
+
+# NL
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+#, fuzzy
+msgid "Netherlands Antilles"
+msgstr "הולנד"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr ""
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr ""
+
+# AR
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "ארגנטינה"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr ""
+
+# AT
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "אוסטריה"
+
+# AU
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "אוסטרליה"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr ""
+
+# IE
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+#, fuzzy
+msgid "Aland Islands"
+msgstr "איי פר-אר"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+#, fuzzy
+msgid "Azerbaijan"
+msgstr "אזרביג'נית"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+#, fuzzy
+msgid "Bosnia and Herzegovina"
+msgstr "בוסניה הרצגובינה"
+
+# BB
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "ברבדוס"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "בנגלדש"
+
+# BE
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "בלגיה"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr ""
+
+# BG
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "בולגריה"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+#, fuzzy
+msgid "Bahrain"
+msgstr "בחריין"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr ""
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+#, fuzzy
+msgid "Benin"
+msgstr "בנגאלית"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+#, fuzzy
+msgid "Bermuda"
+msgstr "גרמנית"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr ""
+
+# BO
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "בוליביה"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr ""
+
+# PA
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+#, fuzzy
+msgid "Bahamas"
+msgstr "פנמה"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr ""
+
+# IE
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+#, fuzzy
+msgid "Bouvet Island"
+msgstr "איי פר-אר"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "בוטסואנה"
+
+# BY
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "בלרוס"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+#, fuzzy
+msgid "Belize"
+msgstr "בלגית"
+
+# CA
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "קנדה"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr ""
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr ""
+
+# DO
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+#, fuzzy
+msgid "Central African Republic"
+msgstr "סוריה"
+
+# CH
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "שוייץ"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr ""
+
+# IE
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+#, fuzzy
+msgid "Cook Islands"
+msgstr "איי פר-אר"
+
+# CL
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "צ'ילה"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr ""
+
+# CN
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "סין"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "קולומביה"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "קוסטה ריקה"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr ""
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr ""
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr ""
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr ""
+
+# DO
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+#, fuzzy
+msgid "Czech Republic"
+msgstr "הרפובליקה הדומיניקנית"
+
+# DE
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "גרמניה"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr ""
+
+# DK
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "דנמרק"
+
+# RO
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+#, fuzzy
+msgid "Dominica"
+msgstr "רומניה"
+
+# DO
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "הרפובליקה הדומיניקנית"
+
+# BG
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "אלג'יר"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "אקוודור"
+
+# EE
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "אסטוניה"
+
+# EG
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "מצרים"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr ""
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr ""
+
+# ES
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "ספרד"
+
+# EE
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+#, fuzzy
+msgid "Ethiopia"
+msgstr "אסטוניה"
+
+# FI
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "פינלנד"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr ""
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr ""
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr ""
+
+# IE
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "איי פר-אר"
+
+# FR
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "צרפת"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr ""
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr ""
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr ""
+
+# GD
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "גרנדה"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr " ג'ורג'יה"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+#, fuzzy
+msgid "French Guiana"
+msgstr "צרפתית (קנדה)"
+
+# DE
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "גרמניה"
+
+# CN
+#: zypp/CountryCode.cc:238
+#, fuzzy
+msgid "Ghana"
+msgstr "סין"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr ""
+
+# GD
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "גרינלנד"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr ""
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr ""
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr ""
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr ""
+
+# GR
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "יוון"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr ""
+
+# GT
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "גואטמלה"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+#, fuzzy
+msgid "Guam"
+msgstr "משחקים"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr ""
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr ""
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "הונג-קונג"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr ""
+
+# HN
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "הונדורס"
+
+# HR
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "קרואטיה"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+#, fuzzy
+msgid "Haiti"
+msgstr "המתן"
+
+# HU
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "הונגריה"
+
+# ID
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "אינדונזיה"
+
+# IE
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "אירלנד"
+
+# IL
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "ישראל"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+# IN
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "הודו"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr ""
+
+# IQ
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "עירק"
+
+# IQ
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+#, fuzzy
+msgid "Iran"
+msgstr "עירק"
+
+# IS
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "איסלנד"
+
+# IT
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "איטליה"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr ""
+
+# JO
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "ירדן"
+
+# JP
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "יפן"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr ""
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr ""
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+#, fuzzy
+msgid "Cambodia"
+msgstr "קולומביה"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr ""
+
+#  Frame description in suggested partition for mode accept modify ..
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+#, fuzzy
+msgid "Comoros"
+msgstr "בחרו"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr ""
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr ""
+
+# ZA
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
 #, fuzzy
-msgid "Amharic"
-msgstr "ערבית"
+msgid "South Korea"
+msgstr "דרום אפריקה"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "כווית "
+
+# IE
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+#, fuzzy
+msgid "Cayman Islands"
+msgstr "איי פר-אר"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+#, fuzzy
+msgid "Kazakhstan"
+msgstr "פקיסטן"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr ""
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "לבנון"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr ""
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr ""
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+#, fuzzy
+msgid "Sri Lanka"
+msgstr "סרבית"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr ""
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr ""
+
+# LT
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "ליטא"
+
+# LU
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "לוקסמבורג"
+
+# LV
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "לטביה"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr ""
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "מרוקו"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+#, fuzzy
+msgid "Monaco"
+msgstr "שני"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+#, fuzzy
+msgid "Moldova"
+msgstr "סלובקית"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr ""
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "לווין"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr ""
+
+# IE
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+#, fuzzy
+msgid "Marshall Islands"
+msgstr "איי פר-אר"
+
+# MK
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "מקדונית"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+#, fuzzy
+msgid "Mali"
+msgstr "&דואר"
+
+# PA
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+#, fuzzy
+msgid "Myanmar"
+msgstr "פנמה"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr ""
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+#, fuzzy
+msgid "Macao"
+msgstr "מאורית"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr ""
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+#, fuzzy
+msgid "Martinique"
+msgstr "דקה"
+
+# LT
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+#, fuzzy
+msgid "Mauritania"
+msgstr "ליטא"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr ""
+
+# MT
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "מלטה"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr ""
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+#, fuzzy
+msgid "Maldives"
+msgstr "מלטזית"
+
+# MT
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+#, fuzzy
+msgid "Malawi"
+msgstr "מלטה"
+
+# MX
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "מקסיקו"
+
+# MT
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "מלזיה "
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+#, fuzzy
+msgid "Mozambique"
+msgstr "נייד"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr ""
+
+# MK
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+#, fuzzy
+msgid "New Caledonia"
+msgstr "מקדונית"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr ""
+
+# IE
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+#, fuzzy
+msgid "Norfolk Island"
+msgstr "איי פר-אר"
+
+# BG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+#, fuzzy
+msgid "Nigeria"
+msgstr "אלג'יר"
+
+# PY
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "ניקאראגואה"
+
+# NL
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "הולנד"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
+# NO
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "נורבגיה"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
 msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
 msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr ""
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+#, fuzzy
+msgid "Niue"
+msgstr "דקה"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
+# NZ
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "ניו זילנד"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "עומן"
+
+# PA
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "פנמה"
+
+# PE
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "פרו"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+#, fuzzy
+msgid "French Polynesia"
+msgstr "צרפתית (קנדה)"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
 msgstr ""
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "הפיליפינים"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "פקיסטן"
+
+# PL
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "פולין"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
 msgstr ""
 
-# BD
-#. language code: apa
-#: zypp/LanguageCode.cc:199
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
 #, fuzzy
-msgid "Apache Languages"
-msgstr "שפ×\95ת"
+msgid "Pitcairn"
+msgstr "פק×\99ס×\98×\9f"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "ער×\91×\99ת"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "פ×\95ר×\98×\95 ×¨×\99ק×\95"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
+# PT
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "פורטוגל"
+
+# PA
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
 #, fuzzy
-msgid "Aramaic"
-msgstr "ער×\91×\99ת"
+msgid "Palau"
+msgstr "פ×\90×\9c×\9d"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
+# PY
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "פרגואי"
+
+# MT
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "קטאר"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
 #, fuzzy
-msgid "Arapaho"
-msgstr "גרף"
+msgid "Reunion"
+msgstr "&אזור"
 
-# UA
-#. language code: arn
-#: zypp/LanguageCode.cc:211
+# RO
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "רומניה"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
 #, fuzzy
-msgid "Araucanian"
-msgstr "×\90×\95קר×\90×\99× ית"
+msgid "Serbia"
+msgstr "סר×\91ית"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
 msgstr ""
 
-# AR
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "ארגנטינה"
+# CA
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+#, fuzzy
+msgid "Rwanda"
+msgstr "קנדה"
 
-# AR
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "ערב הסעודית"
+
+# IE
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
 #, fuzzy
-msgid "Armenia"
-msgstr "ארגנטינה"
+msgid "Solomon Islands"
+msgstr "איי פר-אר"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr ""
+
+# SD
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "סודן"
+
+# SE
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "שבדיה"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "סינגפור"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr ""
+
+# SI
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "סלובניה"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr ""
+
+# SK
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "סלובקיה"
+
+#  Device type label
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+#, fuzzy
+msgid "Sierra Leone"
+msgstr "קו סיריאלי"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr ""
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+#, fuzzy
+msgid "Senegal"
+msgstr "בנגאלית"
 
-# AR
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+# RO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
 #, fuzzy
-msgid "Armenian"
-msgstr "×\90ר×\92× ×\98×\99× ה"
+msgid "Somalia"
+msgstr "ר×\95×\9e× ×\99ה"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
 msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-#, fuzzy
-msgid "Assamese"
-msgstr "×\9eש×\97ק×\99×\9d"
+# SV
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "×\90×\9c ×¡×\9c×\91×\93×\95ר"
 
-# AT
-#. language code: ast
-#: zypp/LanguageCode.cc:221
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
 #, fuzzy
-msgid "Asturian"
-msgstr "×\90×\95ס×\98ר×\99×\94"
+msgid "Syria"
+msgstr "סר×\91×\99ת"
 
-# BD
-#. language code: ath
-#: zypp/LanguageCode.cc:223
+# TH
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
 #, fuzzy
-msgid "Athapascan Languages"
-msgstr "שפ×\95ת"
+msgid "Swaziland"
+msgstr "ת×\90×\99×\9c× ×\93"
 
-# AU
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "אוסטרליה"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
+# CA
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
 #, fuzzy
-msgid "Australian Languages"
-msgstr "רש×\99×\9eת ×\9b×\9c ×\94שפ×\95ת ×\94×\90פשר×\95×\99×\95ת"
+msgid "Chad"
+msgstr "×\9bר×\98×\99ס"
 
-# AT
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "אוסטריה"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
+# TH
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "תאילנד"
+
+# TW
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "טאג'יקיסטן"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
+# TW
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
 #, fuzzy
-msgid "Avaric"
-msgstr "ער×\91×\99ת"
+msgid "Turkmenistan"
+msgstr "×\98×\90×\92\99ק×\99ס×\98×\9f"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "טוניס"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
 msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
+# TR
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "טורקיה"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
 #, fuzzy
-msgid "Azerbaijan"
-msgstr "×\90×\96ר×\91×\99×\92'× ×\99ת"
+msgid "Tuvalu"
+msgstr "×\93×\99×\91×\95ר"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "אזרביג'נית"
+# TH
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+#, fuzzy
+msgid "Taiwan"
+msgstr "תאילנד"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
+# UA
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "אוקראינה"
 
-# PA
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
+# CA
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
 #, fuzzy
-msgid "Bahamas"
-msgstr "פנ×\9eה"
+msgid "Uganda"
+msgstr "קנ×\93ה"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-#, fuzzy
-msgid "Bahrain"
-msgstr "בחריין"
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr ""
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
 #, fuzzy
-msgid "Balinese"
-msgstr "×\91ס×\99ס"
+msgid "United States"
+msgstr "×\90×\99×\97×\95×\93 ×\94נס×\99×\9b×\95×\99×\95ת ×\94ער×\91×\99×\95ת"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+# UY
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "אורוגואי"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "אוסביקיסטן"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+# VE
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "ונצואלה"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
 msgstr ""
 
-# BD
-#. language code: bai
-#: zypp/LanguageCode.cc:239
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr ""
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
 #, fuzzy
-msgid "Bamileke Languages"
-msgstr "שפ×\95ת"
+msgid "Vietnam"
+msgstr "×\95×\99×\99×\98× ×\90×\9e×\99ת"
 
-# CA
-#. language code: bad
-#: zypp/LanguageCode.cc:237
+#  ComboBox item
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
 #, fuzzy
-msgid "Banda"
-msgstr "קנ×\93×\94"
+msgid "Vanuatu"
+msgstr "×\9e×\93ר×\99×\9a"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "בנגלדש"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
 msgstr ""
 
-# BB
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "ברבדוס"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "תימן"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
+#  ComboBox item
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
 #, fuzzy
-msgid "Basa"
-msgstr "×\91ס×\99ס"
+msgid "Mayotte"
+msgstr "×\90×\93×\95×\9f"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr ""
+# ZA
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "דרום אפריקה"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "בסקית"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr ""
 
-# ID
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-#, fuzzy
-msgid "Batak (Indonesia)"
-msgstr "אינדונזיה"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "זימבבואה "
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-# BY
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "בלרוס"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr ""
 
-# BY
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
 #, fuzzy
-msgid "Belarusian"
-msgstr "בלרוס"
-
-# BE
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "בלגיה"
+msgid "Abkhazian"
+msgstr "אלבניה"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
+#. language code: ace
+#: zypp/LanguageCode.cc:165
 #, fuzzy
-msgid "Belize"
-msgstr "×\91×\9c×\92ית"
+msgid "Achinese"
+msgstr "ס×\99× ית"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "בנגאלית"
-
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-#, fuzzy
-msgid "Benin"
-msgstr "בנגאלית"
-
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-#, fuzzy
-msgid "Bermuda"
-msgstr "גרמנית"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
 msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "אפריקנס"
+
+#  Edit field label for linux partition size in non-graphical mode
+#. language code: ain
+#: zypp/LanguageCode.cc:179
 #, fuzzy
-msgid "Bihari"
-msgstr "×\91×\97ר×\99×\99×\9f"
+msgid "Ainu"
+msgstr "×\9c×\99× ×\95קס:"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr ""
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+#, fuzzy
+msgid "Akan"
+msgstr "אפריקנס"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+#, fuzzy
+msgid "Albanian"
+msgstr "אלבניה"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
+# BD
+#. language code: alg
+#: zypp/LanguageCode.cc:191
 #, fuzzy
-msgid "Blin"
-msgstr "×\91×\9c×\92×\99ת"
+msgid "Algonquian Languages"
+msgstr "שפ×\95ת"
 
-# BO
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "בוליביה"
+# ZA
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+#, fuzzy
+msgid "Southern Altai"
+msgstr "דרום אפריקה"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
 #, fuzzy
-msgid "Bosnia and Herzegovina"
-msgstr "×\91×\95סנ×\99×\94 ×\94רצ×\92×\95×\91×\99× ×\94"
+msgid "Amharic"
+msgstr "ער×\91×\99ת"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr ""
+
+# BD
+#. language code: apa
+#: zypp/LanguageCode.cc:199
 #, fuzzy
-msgid "Bosnian"
-msgstr "ר×\95×\9e× ×\99ת"
+msgid "Apache Languages"
+msgstr "שפ×\95ת"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "×\91×\95×\98ס×\95×\90× ×\94"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "ער×\91×\99ת"
 
-# IE
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
+#. language code: arc
+#: zypp/LanguageCode.cc:203
 #, fuzzy
-msgid "Bouvet Island"
-msgstr "×\90×\99×\99 ×¤×¨-×\90ר"
+msgid "Aramaic"
+msgstr "ער×\91×\99ת"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr ""
+# AR
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+#, fuzzy
+msgid "Armenian"
+msgstr "ארגנטינה"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "ברטונית"
+# UA
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+#, fuzzy
+msgid "Araucanian"
+msgstr "אוקראינית"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr ""
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+#, fuzzy
+msgid "Arapaho"
+msgstr "גרף"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
 msgstr ""
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
 #, fuzzy
-msgid "Buginese"
-msgstr "ס×\99× ×\99ת"
+msgid "Assamese"
+msgstr "×\9eש×\97ק×\99×\9d"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
+# AT
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+#, fuzzy
+msgid "Asturian"
+msgstr "אוסטריה"
 
-# BG
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "בולגריה"
+# BD
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+#, fuzzy
+msgid "Athapascan Languages"
+msgstr "שפות"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "בולגרית"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+#, fuzzy
+msgid "Australian Languages"
+msgstr "רשימת כל השפות האפשרויות"
 
-# BG
-#. language code: bua
-#: zypp/LanguageCode.cc:289
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
 #, fuzzy
-msgid "Buriat"
-msgstr "×\91×\95×\9c×\92ר×\99×\94"
+msgid "Avaric"
+msgstr "ער×\91×\99ת"
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
 msgstr ""
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
 msgstr ""
 
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "אזרביג'נית"
+
 # CA
-#. language code: cad
-#: zypp/LanguageCode.cc:301
+#. language code: bad
+#: zypp/LanguageCode.cc:237
 #, fuzzy
-msgid "Caddo"
-msgstr "×\9bר×\98×\99ס"
+msgid "Banda"
+msgstr "קנ×\93×\94"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
+# BD
+#. language code: bai
+#: zypp/LanguageCode.cc:239
 #, fuzzy
-msgid "Cambodia"
-msgstr "קולומביה"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr ""
+msgid "Bamileke Languages"
+msgstr "שפות"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+#, fuzzy
+msgid "Balinese"
+msgstr "בסיס"
 
-#  Frame title for installation target hard disk / partition(s)
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "מתקין על:"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "בסקית"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+#, fuzzy
+msgid "Basa"
+msgstr "בסיס"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#  Frame title for installation target hard disk / partition(s)
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "מתקין על:"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
+# BY
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+#, fuzzy
+msgid "Belarusian"
+msgstr "בלרוס"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr ""
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "בנגאלית"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Couldn't open file: %s."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+#, fuzzy
+msgid "Bihari"
+msgstr "בחריין"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-# CA
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "קנדה"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr ""
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#  Frame title for installation target hard disk / partition(s)
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "×\9eתק×\99×\9f ×¢×\9c:"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+#, fuzzy
+msgid "Bosnian"
+msgstr "ר×\95×\9e× ×\99ת"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "ברטונית"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+# ID
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+#, fuzzy
+msgid "Batak (Indonesia)"
+msgstr "אינדונזיה"
+
+# BG
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+#, fuzzy
+msgid "Buriat"
+msgstr "בולגריה"
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+#, fuzzy
+msgid "Buginese"
+msgstr "סינית"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "בולגרית"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#  Frame title for installation target hard disk / partition(s)
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "×\9eתק×\99×\9f ×¢×\9c:"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+#, fuzzy
+msgid "Blin"
+msgstr "×\91×\9c×\92×\99ת"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
+# CA
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+#, fuzzy
+msgid "Caddo"
+msgstr "כרטיס"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
 # CA
@@ -904,13 +2438,6 @@ msgstr "קטלונית"
 msgid "Caucasian (Other)"
 msgstr ""
 
-# IE
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-#, fuzzy
-msgid "Cayman Islands"
-msgstr "איי פר-אר"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 #, fuzzy
@@ -922,66 +2449,11 @@ msgstr "לבנון"
 msgid "Celtic (Other)"
 msgstr ""
 
-# DO
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-#, fuzzy
-msgid "Central African Republic"
-msgstr "סוריה"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr ""
-
-# CA
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-#, fuzzy
-msgid "Chad"
-msgstr "כרטיס"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr ""
-
-# BD
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-#, fuzzy
-msgid "Chamic Languages"
-msgstr "שפות"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr ""
 
-#  Commandline help title
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, fuzzy, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "קורא קובץ הגדרות"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-#, fuzzy
-msgid "Chechen"
-msgstr "צ'כית"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr ""
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr ""
-
 # CN
 #. language code: chb
 #: zypp/LanguageCode.cc:317
@@ -989,119 +2461,75 @@ msgstr ""
 msgid "Chibcha"
 msgstr "סין"
 
-# CL
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
 #, fuzzy
-msgid "Chichewa"
-msgstr "צ'ילה"
-
-# CL
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "צ'ילה"
+msgid "Chechen"
+msgstr "צ'כית"
 
-# CN
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "סין"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr ""
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "סינית"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr ""
-
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr ""
-
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr ""
-
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr ""
-
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr ""
-
 #. language code: chk
 #: zypp/LanguageCode.cc:327
 #, fuzzy
 msgid "Chuukese"
 msgstr "סינית"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr ""
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+#, fuzzy
+msgid "Mari"
+msgstr "מאורית"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "קולומביה"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "פקודה לביצוע כאשר מתחברים"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#  Frame description in suggested partition for mode accept modify ..
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-#, fuzzy
-msgid "Comoros"
-msgstr "בחרו"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-# IE
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
+# BD
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
 #, fuzzy
-msgid "Cook Islands"
-msgstr "×\90×\99×\99 ×¤×¨-×\90ר"
+msgid "Chamic Languages"
+msgstr "שפ×\95ת"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1121,35 +2549,6 @@ msgstr "אירית"
 msgid "Corsican"
 msgstr "קוסטה ריקה"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "קוסטה ריקה"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr ""
-
-# HR
-#  heading text
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-#, fuzzy
-msgid "Cree"
-msgstr "צור"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-#, fuzzy
-msgid "Creek"
-msgstr "יוונית"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr ""
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1165,25 +2564,27 @@ msgstr ""
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
+# HR
+#  heading text
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+#, fuzzy
+msgid "Cree"
+msgstr "צור"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr ""
 
-# HR
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "קרואטיה"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "קרואטית"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
 msgstr ""
 
 #. language code: cus
@@ -1191,23 +2592,11 @@ msgstr ""
 msgid "Cushitic (Other)"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr ""
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "צ'כית"
 
-# DO
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-#, fuzzy
-msgid "Czech Republic"
-msgstr "הרפובליקה הדומיניקנית"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1236,11 +2625,15 @@ msgstr "יום:"
 msgid "Delaware"
 msgstr "חומרה"
 
-# DK
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "דנמרק"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr ""
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr ""
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1253,64 +2646,32 @@ msgstr "כונן"
 msgid "Divehi"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr ""
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 #, fuzzy
 msgid "Dogri"
 msgstr "מאורית"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr ""
-
-# RO
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-#, fuzzy
-msgid "Dominica"
-msgstr "רומניה"
-
-# DO
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "הרפובליקה הדומיניקנית"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr ""
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+#, fuzzy
+msgid "Lower Sorbian"
+msgstr "סרבית"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 #, fuzzy
 msgid "Duala"
 msgstr "יומי"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
 #. language code: dut nld nl
@@ -1318,135 +2679,45 @@ msgstr ""
 msgid "Dutch"
 msgstr "הולנדית"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr ""
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
 msgstr ""
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr ""
-
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr ""
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "אקוודור"
-
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr ""
-
-# EG
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "מצרים"
-
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr ""
-
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr ""
-
-# SV
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "אל סלבדור"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr ""
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr ""
-
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-#, fuzzy
-msgid "English"
-msgstr "אנגלית (אנגליה)"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr ""
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr ""
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+#, fuzzy
+msgid "English"
+msgstr "אנגלית (אנגליה)"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
 #. language code: epo eo
@@ -1454,24 +2725,11 @@ msgstr ""
 msgid "Esperanto"
 msgstr "אספרנטו"
 
-# EE
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "אסטוניה"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "אסטונית"
 
-# EE
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-#, fuzzy
-msgid "Ethiopia"
-msgstr "אסטוניה"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1484,56 +2742,6 @@ msgstr ""
 msgid "Ewondo"
 msgstr "סוף"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Failed to parse: %s."
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr ""
-
 # FR
 #. language code: fan
 #: zypp/LanguageCode.cc:429
@@ -1541,18 +2749,6 @@ msgstr ""
 msgid "Fang"
 msgstr "צרפת"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-#, fuzzy
-msgid "Fanti"
-msgstr "פונטים"
-
-# IE
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "איי פר-אר"
-
 #  Label for free part of the partition in non-graphical mode
 #  Label for free part of the Windows partition in non-graphical mode
 #. language code: fao fo
@@ -1561,15 +2757,11 @@ msgstr "איי פר-אר"
 msgid "Faroese"
 msgstr "פנוי:"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr ""
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr ""
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+#, fuzzy
+msgid "Fanti"
+msgstr "פונטים"
 
 # FI
 #. language code: fij fj
@@ -1578,125 +2770,11 @@ msgstr ""
 msgid "Fijian"
 msgstr "פינלנד"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
-#, fuzzy
-msgid "Filipino"
-msgstr "הפיליפינים"
-
-# FI
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "פינלנד"
+#, fuzzy
+msgid "Filipino"
+msgstr "הפיליפינים"
 
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
@@ -1708,44 +2786,17 @@ msgstr "פינית"
 msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 #, fuzzy
 msgid "Fon"
 msgstr "פונטים"
 
-# FR
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "צרפת"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "צרפתית"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-#, fuzzy
-msgid "French Guiana"
-msgstr "צרפתית (קנדה)"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-#, fuzzy
-msgid "French Polynesia"
-msgstr "צרפתית (קנדה)"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr ""
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1763,6 +2814,11 @@ msgstr ""
 msgid "Frisian"
 msgstr "&גירסת FS"
 
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
+msgstr ""
+
 # FI
 #. language code: fur
 #: zypp/LanguageCode.cc:457
@@ -1770,44 +2826,11 @@ msgstr "&גירסת FS"
 msgid "Friulian"
 msgstr "פינלנד"
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
-msgstr ""
-
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr ""
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr ""
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr ""
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-#, fuzzy
-msgid "Galician"
-msgstr "איטלקית"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr ""
-
-# CA
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-#, fuzzy
-msgid "Ganda"
-msgstr "קנדה"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1818,16 +2841,11 @@ msgstr ""
 msgid "Gbaya"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
+#. language code: gem
+#: zypp/LanguageCode.cc:465
 #, fuzzy
-msgid "Geez"
-msgstr "יוונית"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr " ג'ורג'יה"
+msgid "Germanic (Other)"
+msgstr "גרמנית (עם מקשים מתים)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1840,44 +2858,50 @@ msgstr " ג'ורג'יה"
 msgid "German"
 msgstr "גרמנית"
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
-msgstr ""
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+#, fuzzy
+msgid "Geez"
+msgstr "יוונית"
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+#, fuzzy
+msgid "Gilbertese"
+msgstr "וייטנאמית"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-#, fuzzy
-msgid "Germanic (Other)"
-msgstr "גרמנית (עם מקשים מתים)"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "אירית"
 
-# DE
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "×\92ר×\9e× ×\99×\94"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+#, fuzzy
+msgid "Galician"
+msgstr "×\90×\99×\98×\9cק×\99ת"
 
-# CN
-#: zypp/CountryCode.cc:238
+#  ComboBox item
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
 #, fuzzy
-msgid "Ghana"
-msgstr "ס×\99×\9f"
+msgid "Manx"
+msgstr "×\9e×\93ר×\99×\9a"
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
 msgstr ""
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-#, fuzzy
-msgid "Gilbertese"
-msgstr "וייטנאמית"
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
+msgstr ""
 
 # SD
 #. language code: gon
@@ -1902,12 +2926,6 @@ msgstr ""
 msgid "Grebo"
 msgstr "קבוצה"
 
-# GR
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "יוון"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1918,69 +2936,18 @@ msgstr ""
 msgid "Greek, Modern (1453-)"
 msgstr ""
 
-# GD
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "גרינלנד"
-
-# GD
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "גרנדה"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr ""
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-#, fuzzy
-msgid "Guam"
-msgstr "משחקים"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 #, fuzzy
 msgid "Guarani"
 msgstr "הונגרית"
 
-# GT
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "גואטמלה"
-
-# DE
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "גרמניה"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr ""
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr ""
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 #, fuzzy
 msgid "Gujarati"
 msgstr "אורך"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr ""
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1993,55 +2960,22 @@ msgstr ""
 msgid "Haida"
 msgstr "חומרה"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-#, fuzzy
-msgid "Haiti"
-msgstr "המתן"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 #, fuzzy
 msgid "Haitian"
 msgstr "לטבית"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "לא מחובר"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr ""
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -2069,16 +3003,6 @@ msgstr ""
 msgid "Hindi"
 msgstr "סוג"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr ""
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -2089,33 +3013,22 @@ msgstr ""
 msgid "Hmong"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr ""
-
-# HN
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "הונדורס"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr ""
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "הונג-קונג"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+#, fuzzy
+msgid "Upper Sorbian"
+msgstr "סרבית"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "הונגרית"
 
-# HU
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "הונגריה"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2126,11 +3039,10 @@ msgstr ""
 msgid "Iban"
 msgstr ""
 
-# IS
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "איסלנד"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr ""
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2144,79 +3056,59 @@ msgstr "איסלנדית"
 msgid "Ido"
 msgstr "Id"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr ""
+# LT
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+#, fuzzy
+msgid "Sichuan Yi"
+msgstr "ליטא"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr ""
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr ""
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+#, fuzzy
+msgid "Interlingue"
+msgstr "המשך"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-# IN
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "הודו"
-
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr ""
-
-# ID
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "אינדונזיה"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "אינדונזית"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr ""
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-#, fuzzy
-msgid "Interlingue"
-msgstr "המשך"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr ""
-
 # IN
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
@@ -2224,111 +3116,11 @@ msgstr ""
 msgid "Inupiaq"
 msgstr "הודו"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr ""
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr ""
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr ""
-
-# IQ
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-#, fuzzy
-msgid "Iran"
-msgstr "עירק"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr ""
 
-# IQ
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "עירק"
-
-# IE
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "אירלנד"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "אירית"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr ""
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr ""
-
 # BD
 #. language code: iro
 #: zypp/LanguageCode.cc:575
@@ -2336,65 +3128,27 @@ msgstr ""
 msgid "Iroquoian Languages"
 msgstr "שפות"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-# IL
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "ישראל"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "איטלקית"
 
-# IT
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "איטליה"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr ""
-
-# JP
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "יפן"
-
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
-msgstr "יפנית"
-
 #. language code: jav jv
 #: zypp/LanguageCode.cc:579
 #, fuzzy
 msgid "Javanese"
 msgstr "יפנית"
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-# JO
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "ירדן"
-
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
 #, fuzzy
-msgid "Judeo-Arabic"
-msgstr "ערבית"
+msgid "Lojban"
+msgstr "לבנון"
+
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
+msgstr "יפנית"
 
 #. language code: jpr
 #: zypp/LanguageCode.cc:585
@@ -2402,9 +3156,15 @@ msgstr "ערבית"
 msgid "Judeo-Persian"
 msgstr "אינדונזית"
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+#, fuzzy
+msgid "Judeo-Arabic"
+msgstr "ערבית"
+
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
 #. language code: kab
@@ -2424,12 +3184,6 @@ msgstr "בחריין"
 msgid "Kalaallisut"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-#, fuzzy
-msgid "Kalmyk"
-msgstr "דיבור"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2442,22 +3196,6 @@ msgstr ""
 msgid "Kannada"
 msgstr "קנדה"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-#, fuzzy
-msgid "Kanuri"
-msgstr "כורדית"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr ""
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr ""
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 #, fuzzy
@@ -2469,10 +3207,11 @@ msgstr "קוריאנית"
 msgid "Kashmiri"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr ""
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+#, fuzzy
+msgid "Kanuri"
+msgstr "כורדית"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2485,15 +3224,9 @@ msgstr "כווית "
 msgid "Kazakh"
 msgstr ""
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-#, fuzzy
-msgid "Kazakhstan"
-msgstr "פקיסטן"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
 #. language code: kha
@@ -2502,17 +3235,17 @@ msgstr ""
 msgid "Khasi"
 msgstr "תאילנדית"
 
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
+msgstr ""
+
 #. language code: khm km
 #: zypp/LanguageCode.cc:617
 #, fuzzy
 msgid "Khmer"
 msgstr "אחר"
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
-msgstr ""
-
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 #, fuzzy
@@ -2524,12 +3257,6 @@ msgstr "סינית"
 msgid "Kikuyu"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-#, fuzzy
-msgid "Kimbundu"
-msgstr "סוג"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2540,15 +3267,17 @@ msgstr ""
 msgid "Kirghiz"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr ""
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+#, fuzzy
+msgid "Kimbundu"
+msgstr "סוג"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr ""
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+#, fuzzy
+msgid "Konkani"
+msgstr "קוריאנית"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2560,12 +3289,6 @@ msgstr ""
 msgid "Kongo"
 msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-#, fuzzy
-msgid "Konkani"
-msgstr "קוריאנית"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2583,11 +3306,22 @@ msgstr "קוריאנית"
 msgid "Kpelle"
 msgstr "איות"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr ""
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr ""
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+#, fuzzy
+msgid "Kurukh"
+msgstr "טורקית"
+
 # PA
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
@@ -2606,28 +3340,12 @@ msgstr "דמה"
 msgid "Kurdish"
 msgstr "כורדית"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-#, fuzzy
-msgid "Kurukh"
-msgstr "טורקית"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 #, fuzzy
 msgid "Kutenai"
 msgstr "כווית "
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "כווית "
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr ""
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 #, fuzzy
@@ -2641,7 +3359,7 @@ msgstr "רדיו"
 msgid "Lahnda"
 msgstr "קנדה"
 
-#  Column header
+#  Column header 
 #. language code: lam
 #: zypp/LanguageCode.cc:659
 #, fuzzy
@@ -2654,71 +3372,23 @@ msgstr "תווית"
 msgid "Lao"
 msgstr "לבנון"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr ""
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 #, fuzzy
 msgid "Latin"
 msgstr "לטבית"
 
-# LV
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "לטביה"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "לטבית"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "לבנון"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 #, fuzzy
 msgid "Lezghian"
 msgstr "בלגית"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr ""
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr ""
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr ""
-
 # LU
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
@@ -2731,120 +3401,74 @@ msgstr "לוקסמבורג"
 msgid "Lingala"
 msgstr ""
 
-# LT
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "ליטא"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "ליטאית"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-#, fuzzy
-msgid "Lojban"
-msgstr "לבנון"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-#, fuzzy
-msgid "Low German"
-msgstr "גרמנית"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-#, fuzzy
-msgid "Lower Sorbian"
-msgstr "סרבית"
-
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 #, fuzzy
 msgid "Lozi"
 msgstr "&חיבור"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr ""
+# LU
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+#, fuzzy
+msgid "Luxembourgish"
+msgstr "לוקסמבורג"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr ""
 
-#. language code: lui
-#: zypp/LanguageCode.cc:687
-msgid "Luiseno"
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
 msgstr ""
 
-#  label text
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-#, fuzzy
-msgid "Lule Sami"
-msgstr "&שם למודול"
-
-# SD
-#. language code: lun
-#: zypp/LanguageCode.cc:689
+# CA
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
 #, fuzzy
-msgid "Lunda"
-msgstr "ר×\90ש×\95×\9f"
+msgid "Ganda"
+msgstr "קנ×\93×\94"
 
-#. language code: luo
-#: zypp/LanguageCode.cc:691
-msgid "Luo (Kenya and Tanzania)"
+#. language code: lui
+#: zypp/LanguageCode.cc:687
+msgid "Luiseno"
 msgstr ""
 
-#. language code: lus
-#: zypp/LanguageCode.cc:693
-#, fuzzy
-msgid "Lushai"
-msgstr "תאילנדית"
-
-# LU
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "לוקסמבורג"
-
-# LU
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-#, fuzzy
-msgid "Luxembourgish"
-msgstr "לוקסמבורג"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
+# SD
+#. language code: lun
+#: zypp/LanguageCode.cc:689
 #, fuzzy
-msgid "Macao"
-msgstr "×\9e×\90×\95ר×\99ת"
+msgid "Lunda"
+msgstr "ר×\90ש×\95×\9f"
 
-# MK
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "מקדונית"
+#. language code: luo
+#: zypp/LanguageCode.cc:691
+msgid "Luo (Kenya and Tanzania)"
+msgstr ""
+
+#. language code: lus
+#: zypp/LanguageCode.cc:693
+#, fuzzy
+msgid "Lushai"
+msgstr "תאילנדית"
 
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "מקדונית"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr ""
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 #, fuzzy
@@ -2858,6 +3482,12 @@ msgstr "מלטזית"
 msgid "Magahi"
 msgstr "מתמטיקה"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+#, fuzzy
+msgid "Marshallese"
+msgstr "מלטזית"
+
 # MT
 #. language code: mai
 #: zypp/LanguageCode.cc:705
@@ -2873,111 +3503,28 @@ msgid "Makasar"
 msgstr "מלזיה "
 
 # MT
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-#, fuzzy
-msgid "Malagasy"
-msgstr "מלזיה "
-
-# MT
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-#, fuzzy
-msgid "Malawi"
-msgstr "מלטה"
-
-# MT
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-#, fuzzy
-msgid "Malay"
-msgstr "מלטה"
-
-# MT
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 #, fuzzy
 msgid "Malayalam"
 msgstr "מלזיה "
 
-# MT
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "מלזיה "
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-#, fuzzy
-msgid "Maldives"
-msgstr "מלטזית"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-#, fuzzy
-msgid "Mali"
-msgstr "&דואר"
-
-# MT
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "מלטה"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "מלטזית"
-
-#  ComboBox item
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-#, fuzzy
-msgid "Manchu"
-msgstr "מדריך"
-
-#  ComboBox item
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-#, fuzzy
-msgid "Mandar"
-msgstr "מדריך"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 #, fuzzy
 msgid "Mandingo"
 msgstr "אזהרה"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-#, fuzzy
-msgid "Manipuri"
-msgstr "מאורית"
-
-# BD
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-#, fuzzy
-msgid "Manobo Languages"
-msgstr "שפות"
-
-#  ComboBox item
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-#, fuzzy
-msgid "Manx"
-msgstr "מדריך"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "מאורית"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 # MT
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
@@ -2985,38 +3532,6 @@ msgstr "מאורית"
 msgid "Marathi"
 msgstr "מתמטיקה"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-#, fuzzy
-msgid "Mari"
-msgstr "מאורית"
-
-# IE
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-#, fuzzy
-msgid "Marshall Islands"
-msgstr "איי פר-אר"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-#, fuzzy
-msgid "Marshallese"
-msgstr "מלטזית"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-#, fuzzy
-msgid "Martinique"
-msgstr "דקה"
-
-#  Table header 4/4
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-#, fuzzy
-msgid "Marwari"
-msgstr "חומרה"
-
 # MT
 #. language code: mas
 #: zypp/LanguageCode.cc:721
@@ -3024,50 +3539,24 @@ msgstr "חומרה"
 msgid "Masai"
 msgstr "מלזיה "
 
-# LT
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
+# MT
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
 #, fuzzy
-msgid "Mauritania"
-msgstr "×\9c×\99×\98×\90"
+msgid "Malay"
+msgstr "×\9e×\9c×\98×\94"
 
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-# BD
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-#, fuzzy
-msgid "Mayan Languages"
-msgstr "שפות"
-
 #  ComboBox item
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
 #, fuzzy
-msgid "Mayotte"
-msgstr "אדון"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
-
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
-
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+msgid "Mandar"
+msgstr "מדריך"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
@@ -3075,17 +3564,11 @@ msgstr ""
 msgid "Mende"
 msgstr "מצב"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-# MX
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "מקסיקו"
-
 #. language code: mic
 #: zypp/LanguageCode.cc:735
 msgid "Mi'kmaq"
@@ -3096,95 +3579,73 @@ msgstr ""
 msgid "Minangkabau"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
+#  label text
+#. language code: mis
+#: zypp/LanguageCode.cc:739
 #, fuzzy
-msgid "Mirandese"
+msgid "Miscellaneous Languages"
+msgstr "בחרו שפה:"
+
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr ""
+
+# MT
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+#, fuzzy
+msgid "Malagasy"
+msgstr "מלזיה "
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
 msgstr "מלטזית"
 
-#  label text
-#. language code: mis
-#: zypp/LanguageCode.cc:739
+#  ComboBox item
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+#, fuzzy
+msgid "Manchu"
+msgstr "מדריך"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+#, fuzzy
+msgid "Manipuri"
+msgstr "מאורית"
+
+# BD
+#. language code: mno
+#: zypp/LanguageCode.cc:751
 #, fuzzy
-msgid "Miscellaneous Languages"
-msgstr "×\91×\97ר×\95 ×©×¤×\94:"
+msgid "Manobo Languages"
+msgstr "שפ×\95ת"
 
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr ""
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 #, fuzzy
 msgid "Moldavian"
 msgstr "יגוסלביה"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-#, fuzzy
-msgid "Moldova"
-msgstr "סלובקית"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr ""
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-#, fuzzy
-msgid "Monaco"
-msgstr "שני"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr ""
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr ""
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 #, fuzzy
 msgid "Mongolian"
 msgstr "מקדונית"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr ""
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr ""
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "מרוקו"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 #, fuzzy
 msgid "Mossi"
 msgstr "מורס"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-#, fuzzy
-msgid "Mozambique"
-msgstr "נייד"
-
 # BD
 #. language code: mul
 #: zypp/LanguageCode.cc:761
@@ -3199,12 +3660,36 @@ msgstr "שפות"
 msgid "Munda languages"
 msgstr "שפות"
 
-# PA
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
+#. language code: mus
+#: zypp/LanguageCode.cc:765
 #, fuzzy
-msgid "Myanmar"
-msgstr "פנמה"
+msgid "Creek"
+msgstr "יוונית"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+#, fuzzy
+msgid "Mirandese"
+msgstr "מלטזית"
+
+#  Table header 4/4
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+#, fuzzy
+msgid "Marwari"
+msgstr "חומרה"
+
+# BD
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+#, fuzzy
+msgid "Mayan Languages"
+msgstr "שפות"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr ""
 
 #  ComboBox item
 #. language code: nah
@@ -3213,15 +3698,14 @@ msgstr "פנמה"
 msgid "Nahuatl"
 msgstr "מדריך"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
 msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
 #. language code: nav nv
@@ -3230,35 +3714,26 @@ msgstr ""
 msgid "Navajo"
 msgstr "ניווט"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr ""
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr ""
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr ""
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr ""
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr ""
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr ""
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+#, fuzzy
+msgid "Low German"
+msgstr "גרמנית"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
@@ -3266,142 +3741,30 @@ msgstr ""
 msgid "Nepali"
 msgstr "בנגאלית"
 
-# NL
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "הולנד"
-
-# NL
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-#, fuzzy
-msgid "Netherlands Antilles"
-msgstr "הולנד"
-
-# MK
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-#, fuzzy
-msgid "New Caledonia"
-msgstr "מקדונית"
-
-# NZ
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "ניו זילנד"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
 #. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
-msgstr ""
-
-# PY
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "ניקאראגואה"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr ""
-
-#. language code: nic
-#: zypp/LanguageCode.cc:799
-msgid "Niger-Kordofanian (Other)"
-msgstr ""
-
-# BG
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-#, fuzzy
-msgid "Nigeria"
-msgstr "אלג'יר"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-#, fuzzy
-msgid "Niue"
-msgstr "דקה"
-
-#. language code: niu
-#: zypp/LanguageCode.cc:801
-msgid "Niuean"
-msgstr ""
-
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-#, fuzzy
-msgid "No Code"
-msgstr "מצב"
-
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr ""
-
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
-msgstr ""
-
-# IE
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-#, fuzzy
-msgid "Norfolk Island"
-msgstr "איי פר-אר"
-
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
-msgstr ""
-
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr ""
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr ""
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
 msgstr ""
 
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
+#. language code: nic
+#: zypp/LanguageCode.cc:799
+msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+msgid "Niuean"
 msgstr ""
 
-# NO
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "נורבגיה"
-
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+#, fuzzy
+msgid "Norwegian Nynorsk"
 msgstr "הנורבגית"
 
 #. language code: nob nb
@@ -3410,14 +3773,24 @@ msgstr "הנורבגית"
 msgid "Norwegian Bokmal"
 msgstr "הנורבגית"
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-#, fuzzy
-msgid "Norwegian Nynorsk"
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
+msgstr ""
+
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
+msgstr ""
+
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
 msgstr "הנורבגית"
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
 # BD
@@ -3427,6 +3800,18 @@ msgstr ""
 msgid "Nubian Languages"
 msgstr "שפות"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr ""
+
+# CL
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+#, fuzzy
+msgid "Chichewa"
+msgstr "צ'ילה"
+
 #  table header texts
 #. language code: nym
 #: zypp/LanguageCode.cc:821
@@ -3449,12 +3834,6 @@ msgstr ""
 msgid "Nzima"
 msgstr ""
 
-#  main dialog: Button Delete partition
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "&מחק"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3465,20 +3844,6 @@ msgstr ""
 msgid "Ojibwa"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "עומן"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3500,6 +3865,11 @@ msgstr ""
 msgid "Ossetian"
 msgstr "רוסית"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr ""
+
 # BD
 #. language code: oto
 #: zypp/LanguageCode.cc:843
@@ -3507,50 +3877,22 @@ msgstr "רוסית"
 msgid "Otomian Languages"
 msgstr "שפות"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+#, fuzzy
+msgid "Pangasinan"
+msgstr "הונגרית"
+
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "פקיסטן"
-
-# PA
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-#, fuzzy
-msgid "Palau"
-msgstr "פאלם"
-
-# PY
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-#, fuzzy
-msgid "Palauan"
-msgstr "פרגואי"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr ""
-
-# PA
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-#, fuzzy
-msgid "Pali"
-msgstr "פאלם"
-
 # PY
 #. language code: pam
 #: zypp/LanguageCode.cc:851
@@ -3558,18 +3900,6 @@ msgstr "פאלם"
 msgid "Pampanga"
 msgstr "פרגואי"
 
-# PA
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "פנמה"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-#, fuzzy
-msgid "Pangasinan"
-msgstr "הונגרית"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 #, fuzzy
@@ -3582,35 +3912,16 @@ msgstr "פונוגאבי"
 msgid "Papiamento"
 msgstr "ניהול"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr ""
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr ""
-
 # PY
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+#, fuzzy
+msgid "Palauan"
 msgstr "פרגואי"
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
 #. language code: per fas fa
@@ -3619,43 +3930,29 @@ msgstr ""
 msgid "Persian"
 msgstr "סרבית"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr ""
-
-# PE
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "פרו"
-
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 #, fuzzy
 msgid "Philippine (Other)"
 msgstr "הפיליפינים"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "הפיליפינים"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 #, fuzzy
 msgid "Phoenician"
 msgstr "סלובנית"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
+# PA
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
 #, fuzzy
-msgid "Pitcairn"
-msgstr "פק×\99ס×\98×\9f"
+msgid "Pali"
+msgstr "פ×\90×\9c×\9d"
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
+msgstr "פולנית"
 
 #. language code: pon
 #: zypp/LanguageCode.cc:873
@@ -3663,23 +3960,6 @@ msgstr ""
 msgid "Pohnpeian"
 msgstr "אינדונזית"
 
-# PL
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "פולין"
-
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
-msgstr "פולנית"
-
-# PT
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "פורטוגל"
-
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
 msgid "Portuguese"
@@ -3691,78 +3971,21 @@ msgstr "פורטוגזית"
 msgid "Prakrit Languages"
 msgstr "שפה עיקרית: %1"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "פורטו ריקו"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr ""
 
-# MT
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "קטאר"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr ""
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr ""
-
 # TW
 #. language code: raj
 #: zypp/LanguageCode.cc:885
@@ -3782,53 +4005,15 @@ msgstr "יפן"
 msgid "Rarotongan"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr ""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-#, fuzzy
-msgid "Reunion"
-msgstr "&אזור"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr ""
 
-# RO
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "רומניה"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "רומנית"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr ""
 
 # RO
 #. language code: rom
@@ -3837,6 +4022,11 @@ msgstr "רומנית"
 msgid "Romany"
 msgstr "רומניה"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "רומנית"
+
 # SD
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
@@ -3849,45 +4039,29 @@ msgstr "קול"
 msgid "Russian"
 msgstr "רוסית"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr ""
-
 # CA
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
+#. language code: sad
+#: zypp/LanguageCode.cc:905
 #, fuzzy
-msgid "Rwanda"
+msgid "Sandawe"
 msgstr "קנדה"
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr ""
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr ""
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr ""
-
-#: zypp/CountryCode.cc:297
+# SD
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
 #, fuzzy
-msgid "Saint Martin"
-msgstr "×\9c×\95×\95×\99ן"
+msgid "Sango"
+msgstr "ס×\95×\93ן"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr ""
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+#, fuzzy
+msgid "Yakut"
+msgstr "נקודת שבירה"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
 # BD
@@ -3902,43 +4076,6 @@ msgstr "שפות"
 msgid "Samaritan Aramaic"
 msgstr ""
 
-# BD
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-#, fuzzy
-msgid "Sami Languages (Other)"
-msgstr "שפות"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr ""
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-#, fuzzy
-msgid "Samoan"
-msgstr "עומן"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr ""
-
-# CA
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-#, fuzzy
-msgid "Sandawe"
-msgstr "קנדה"
-
-# SD
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-#, fuzzy
-msgid "Sango"
-msgstr "סודן"
-
 #  Column header: minimum = 5 characters   fill with space if needed
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
@@ -3946,125 +4083,54 @@ msgstr "סודן"
 msgid "Sanskrit"
 msgstr "התחלה"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-#, fuzzy
-msgid "Santali"
-msgstr "לווין"
-
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr ""
-
-# UA
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-#, fuzzy
-msgid "Sardinian"
-msgstr "אוקראינית"
-
 #. language code: sas
 #: zypp/LanguageCode.cc:919
 msgid "Sasak"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "ערב הסעודית"
-
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-#, fuzzy
-msgid "Scots"
-msgstr "איקונים"
-
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-#, fuzzy
-msgid "Selkup"
-msgstr "דלג"
-
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr ""
-
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-#, fuzzy
-msgid "Senegal"
-msgstr "בנגאלית"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
+#. language code: sat
+#: zypp/LanguageCode.cc:921
 #, fuzzy
-msgid "Serbia"
-msgstr "סר×\91×\99ת"
+msgid "Santali"
+msgstr "×\9c×\95×\95×\99×\9f"
 
 #. language code: scc srp sr
 #: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
 msgid "Serbian"
 msgstr "סרבית"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-#, fuzzy
-msgid "Serer"
-msgstr "שרת"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
-
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
-# SD
-#. language code: shn
-#: zypp/LanguageCode.cc:943
+#. language code: sco
+#: zypp/LanguageCode.cc:929
 #, fuzzy
-msgid "Shan"
-msgstr "ס×\95×\93×\9f"
+msgid "Scots"
+msgstr "×\90×\99ק×\95× ×\99×\9d"
 
-# SI
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-#, fuzzy
-msgid "Shona"
-msgstr "סלובניה"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "קרואטית"
 
-# LT
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
+#. language code: sel
+#: zypp/LanguageCode.cc:935
 #, fuzzy
-msgid "Sichuan Yi"
-msgstr "×\9c×\99×\98×\90"
+msgid "Selkup"
+msgstr "×\93×\9c×\92"
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
 msgstr ""
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#  Device type label
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-#, fuzzy
-msgid "Sierra Leone"
-msgstr "קו סיריאלי"
-
 # BD
 #. language code: sgn
 #: zypp/LanguageCode.cc:941
@@ -4072,62 +4138,23 @@ msgstr "קו סיריאלי"
 msgid "Sign Languages"
 msgstr "שפות"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
-
-#: zypp/repo/PackageProvider.cc:216
+# SD
+#. language code: shn
+#: zypp/LanguageCode.cc:943
 #, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
+msgid "Shan"
+msgstr "סודן"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-#, fuzzy
-msgid "Sindhi"
-msgstr "סוג"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "סינגפור"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #  label text
 #. language code: sio
 #: zypp/LanguageCode.cc:949
@@ -4135,14 +4162,9 @@ msgstr ""
 msgid "Siouan Languages"
 msgstr "בחרו שפה:"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -4155,71 +4177,87 @@ msgstr ""
 msgid "Slovak"
 msgstr "סלובקית"
 
-# SK
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "סלובקיה"
-
-# SI
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "סלובניה"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "סלובנית"
 
-# SD
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-#, fuzzy
-msgid "Sogdian"
-msgstr "סודן"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr ""
 
-# IE
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr ""
+
+# BD
+#. language code: smi
+#: zypp/LanguageCode.cc:965
 #, fuzzy
-msgid "Solomon Islands"
-msgstr "×\90×\99×\99 ×¤×¨-×\90ר"
+msgid "Sami Languages (Other)"
+msgstr "שפ×\95ת"
 
-# RO
-#. language code: som so
-#: zypp/LanguageCode.cc:983
+#  label text
+#. language code: smj
+#: zypp/LanguageCode.cc:967
 #, fuzzy
-msgid "Somali"
-msgstr "רומניה"
+msgid "Lule Sami"
+msgstr "&שם למודול"
 
-# RO
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr ""
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
 #, fuzzy
-msgid "Somalia"
-msgstr "ר×\95×\9e× ×\99×\94"
+msgid "Samoan"
+msgstr "×¢×\95×\9e×\9f"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
+# SI
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+#, fuzzy
+msgid "Shona"
+msgstr "סלובניה"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+#, fuzzy
+msgid "Sindhi"
+msgstr "סוג"
+
 #. language code: snk
 #: zypp/LanguageCode.cc:979
 #, fuzzy
 msgid "Soninke"
 msgstr "המשך"
 
-#  label text
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
+# SD
+#. language code: sog
+#: zypp/LanguageCode.cc:981
 #, fuzzy
-msgid "Sorbian Languages"
-msgstr "×\91×\97ר×\95 ×©×¤×\94:"
+msgid "Sogdian"
+msgstr "ס×\95×\93×\9f"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+# RO
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+#, fuzzy
+msgid "Somali"
+msgstr "רומניה"
+
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
 msgstr ""
 
 #. language code: sot st
@@ -4227,80 +4265,42 @@ msgstr ""
 msgid "Sotho, Southern"
 msgstr ""
 
-# ZA
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "דרום אפריקה"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr ""
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr ""
-
-# ZA
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-#, fuzzy
-msgid "South Korea"
-msgstr "דרום אפריקה"
-
-# ZA
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-#, fuzzy
-msgid "Southern Altai"
-msgstr "דרום אפריקה"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr ""
-
-# ES
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "ספרד"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "ספרדית"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
+# UA
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
 #, fuzzy
-msgid "Sri Lanka"
-msgstr "סר×\91ית"
+msgid "Sardinian"
+msgstr "×\90×\95קר×\90×\99× ית"
 
-# SD
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "ס×\95×\93×\9f"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+#, fuzzy
+msgid "Serer"
+msgstr "שרת"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
 msgstr ""
 
+#  Column header: minimum = 5 characters   fill with space if needed
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+#, fuzzy
+msgid "Swati"
+msgstr "התחלה"
+
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 #, fuzzy
 msgid "Sukuma"
 msgstr "סיכום"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-#, fuzzy
-msgid "Sumerian"
-msgstr "סרבית"
-
 # SD
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
@@ -4308,15 +4308,6 @@ msgstr "סרבית"
 msgid "Sundanese"
 msgstr "סודן"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr ""
-
 #  heading text
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
@@ -4324,76 +4315,28 @@ msgstr ""
 msgid "Susu"
 msgstr "סטטוס"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr ""
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+#, fuzzy
+msgid "Sumerian"
+msgstr "סרבית"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr ""
 
-#  Column header: minimum = 5 characters   fill with space if needed
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-#, fuzzy
-msgid "Swati"
-msgstr "התחלה"
-
-# TH
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-#, fuzzy
-msgid "Swaziland"
-msgstr "תאילנד"
-
-# SE
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "שבדיה"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "שבדית"
 
-# CH
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "שוייץ"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-#, fuzzy
-msgid "Syria"
-msgstr "סרבית"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 #, fuzzy
 msgid "Syriac"
 msgstr "שרות"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 #, fuzzy
@@ -4406,40 +4349,11 @@ msgstr "לטבית"
 msgid "Tai (Other)"
 msgstr "אחר"
 
-# TH
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-#, fuzzy
-msgid "Taiwan"
-msgstr "תאילנד"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-#, fuzzy
-msgid "Tajik"
-msgstr "דיבור"
-
-# TW
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "טאג'יקיסטן"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "טמילית"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 # MT
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
@@ -4454,6 +4368,13 @@ msgstr "קטאר"
 msgid "Telugu"
 msgstr "בלגיה"
 
+#  label text
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+#, fuzzy
+msgid "Timne"
+msgstr "אזור זמן"
+
 # MX
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
@@ -4467,34 +4388,22 @@ msgstr "מידעטקסט"
 msgid "Tetum"
 msgstr "טקסט"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+#, fuzzy
+msgid "Tajik"
+msgstr "דיבור"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr ""
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "תאילנדית"
 
-# TH
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "תאילנד"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr ""
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4510,47 +4419,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#  label text
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-#, fuzzy
-msgid "Timne"
-msgstr "אזור זמן"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4563,15 +4449,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4580,6 +4460,12 @@ msgstr ""
 msgid "Tsimshian"
 msgstr "רוסית"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+#, fuzzy
+msgid "Tswana"
+msgstr "בוטסואנה"
+
 # EE
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
@@ -4587,70 +4473,39 @@ msgstr "רוסית"
 msgid "Tsonga"
 msgstr "אסטוניה"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
+# TR
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
 #, fuzzy
-msgid "Tswana"
-msgstr "×\91×\95×\98ס×\95×\90× ה"
+msgid "Turkmen"
+msgstr "×\98×\95רק×\99ה"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "טוניס"
-
 # BD
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 #, fuzzy
-msgid "Tupi Languages"
-msgstr "שפות"
-
-# TR
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "טורקיה"
-
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "טורקית"
-
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr ""
-
-# TR
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-#, fuzzy
-msgid "Turkmen"
-msgstr "טורקיה"
-
-# TW
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-#, fuzzy
-msgid "Turkmenistan"
-msgstr "טאג'יקיסטן"
+msgid "Tupi Languages"
+msgstr "שפות"
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "טורקית"
+
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-#, fuzzy
-msgid "Tuvalu"
-msgstr "דיבור"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr ""
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
@@ -4658,23 +4513,11 @@ msgstr "דיבור"
 msgid "Tuvinian"
 msgstr "טוניס"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr ""
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-# CA
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-#, fuzzy
-msgid "Uganda"
-msgstr "קנדה"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4686,12 +4529,6 @@ msgid "Uighur"
 msgstr ""
 
 # UA
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "אוקראינה"
-
-# UA
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4702,663 +4539,826 @@ msgstr "אוקראינית"
 msgid "Umbundu"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+#, fuzzy
+msgid "Uzbek"
+msgstr "אוסביקיסטן"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+# GD
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+#, fuzzy
+msgid "Venda"
+msgstr "גרנדה"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "וייטנאמית"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+# BD
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+#, fuzzy
+msgid "Wakashan Languages"
+msgstr "שפות"
+
+# PA
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+#, fuzzy
+msgid "Walamo"
+msgstr "פאלם"
+
+# PY
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+#, fuzzy
+msgid "Waray"
+msgstr "פרגואי"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+#, fuzzy
+msgid "Washo"
+msgstr "וולשית"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "וולשית"
+
+#  label text
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+#, fuzzy
+msgid "Sorbian Languages"
+msgstr "בחרו שפה:"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "איחוד הנסיכויות הערביות"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+#, fuzzy
+msgid "Kalmyk"
+msgstr "דיבור"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "קוזה"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
 #, fuzzy
-msgid "United States"
-msgstr "×\90×\99×\97×\95×\93 ×\94נס×\99×\9b×\95×\99×\95ת ×\94ער×\91×\99×\95ת"
+msgid "Yapese"
+msgstr "×\99פנ×\99ת"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+# BD
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+#, fuzzy
+msgid "Yupik Languages"
+msgstr "שפות"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr ""
+
+# GD
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+#, fuzzy
+msgid "Zenaga"
+msgstr "גרנדה"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+#, fuzzy
+msgid "Zhuang"
+msgstr "&שינוי"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr ""
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "זולו"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr ""
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr ""
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr ""
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:975
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-#, fuzzy
-msgid "Upper Sorbian"
-msgstr "סרבית"
-
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "ארכיטקטורה:"
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-# UY
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "אורוגואי"
-
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-#, fuzzy
-msgid "Uzbek"
-msgstr "אוסביקיסטן"
-
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "אוסביקיסטן"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "התקנה נכשלה"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-
-#  ComboBox item
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-#, fuzzy
-msgid "Vanuatu"
-msgstr "מדריך"
-
-# GD
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-#, fuzzy
-msgid "Venda"
-msgstr "גרנדה"
-
-# VE
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "ונצואלה"
+#  Frame title for installation target hard disk / partition(s)
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "מתקין על:"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-#, fuzzy
-msgid "Vietnam"
-msgstr "וייטנאמית"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "וייטנאמית"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-# BD
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-#, fuzzy
-msgid "Wakashan Languages"
-msgstr "שפות"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
 
-# PA
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
+# IT
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "Walamo"
-msgstr "פ×\90×\9c×\9d"
+msgid "uninstallable providers: "
+msgstr "×\94תק×\9f"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#  Frame title for installation target hard disk / partition(s)
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, fuzzy, c-format, boost-format
+msgid "do not install %s"
+msgstr "מתקין על:"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-# PY
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-#, fuzzy
-msgid "Waray"
-msgstr "פרגואי"
+#  Frame title for installation target hard disk / partition(s)
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "מתקין על:"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-#, fuzzy
-msgid "Washo"
-msgstr "וולשית"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "וולשית"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "מתקין דריבר..."
+
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "קוזה"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-#, fuzzy
-msgid "Yakut"
-msgstr "נקודת שבירה"
+#  main dialog: Button Delete partition
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "&מחק"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-#, fuzzy
-msgid "Yapese"
-msgstr "יפנית"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "תימן"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-# BD
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-#, fuzzy
-msgid "Yupik Languages"
-msgstr "שפות"
+#  Frame title for installation target hard disk / partition(s)
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "מתקין על:"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-# GD
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-#, fuzzy
-msgid "Zenaga"
-msgstr "גרנדה"
-
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-#, fuzzy
-msgid "Zhuang"
-msgstr "&שינוי"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "זימבבואה "
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Couldn't open file: %s."
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "זולו"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#  Frame title for installation target hard disk / partition(s)
-#: zypp/solver/detail/SATResolver.cc:1017
-#, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "מתקין על:"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "created backup %s"
-msgstr "אל תיצור גיבויים"
+msgid "Failed to mount %s on %s"
+msgstr "Failed to parse: %s."
 
-#  Frame title for installation target hard disk / partition(s)
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:41
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "מתקין על:"
+msgid "Failed to unmount %s"
+msgstr "Failed to parse: %s."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "מתקין דריבר..."
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
 #  Frame title for installation target hard disk / partition(s)
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:67
 #, fuzzy, c-format, boost-format
-msgid "do not install %s"
+msgid "Cannot write file '%s'."
 msgstr "מתקין על:"
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, c-format, boost-format
-msgid "downgrade of %s to %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-# IT
-#: zypp/VendorSupportOptions.cc:31
-#, fuzzy
-msgid "invalid"
-msgstr "התקן"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#  main dialog: Button Delete partition
-#: zypp/solver/detail/SATResolver.cc:1293
-#, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "&מחק"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, c-format, boost-format
-msgid "problem with installed package %s"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
 #  Frame title for installation target hard disk / partition(s)
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid "Cannot eject media '%s'"
 msgstr "מתקין על:"
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
+
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-# IT
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-#, fuzzy
-msgid "uninstallable providers: "
-msgstr "התקן"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#  column description, if disk space is not known
-#  label text
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "לא ידוע"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
+#  Frame title for installation target hard disk / partition(s)
 #, fuzzy
-#~ msgid " Error!"
-#~ msgstr "ש×\92×\99×\90×\94"
+#~ msgid "do not keep %s installed"
+#~ msgstr "×\9eתק×\99×\9f ×¢×\9c:"
 
 #, fuzzy
-#~ msgid "%s install failed"
-#~ msgstr "התקנה נכשלה"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Failed to parse: %s."
 
 #, fuzzy
 #~ msgid "%s remove failed"
 #~ msgstr "rpm  נכשל."
 
 #, fuzzy
-#~ msgid ", Action: "
-#~ msgstr "פע×\95לה"
+#~ msgid "%s install failed"
+#~ msgstr "×\94תקנ×\94 × ×\9bשלה"
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "Couldn't open file: %s."
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "מתקין דריבר..."
 
-#~ msgid "Default"
-#~ msgstr "ברירת מחדל"
+#, fuzzy
+#~ msgid "Install missing resolvables"
+#~ msgstr "מתקין דריבר..."
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgid "Keep resolvables"
+#~ msgstr "מתקין דריבר..."
+
+#, fuzzy
+#~ msgid "Unlock these resolvables"
 #~ msgstr "מתקין דריבר..."
 
 #  Frame title for installation target hard disk / partition(s)
 #, fuzzy
-#~ msgid "Establishing %s"
+#~ msgid "install %s"
 #~ msgstr "מתקין על:"
 
 #, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Failed to parse: %s."
+#~ msgid "unlock %s"
+#~ msgstr "שעונים"
 
 #, fuzzy
-#~ msgid "Install missing resolvables"
+#~ msgid "unlock all resolvables"
 #~ msgstr "מתקין דריבר..."
 
 #, fuzzy
-#~ msgid "Keep resolvables"
-#~ msgstr "מתקין דריבר..."
+#~ msgid "Can't open solv-file: "
+#~ msgstr "Couldn't open file: %s."
 
 #, fuzzy
 #~ msgid "No need to install %s"
 #~ msgstr "&בוט מערכת קיימת"
 
-#~ msgid "Ok"
-#~ msgstr "בסדר"
-
 #, fuzzy
-#~ msgid "Unlock these resolvables"
-#~ msgstr "×\9eתק×\99×\9f ×\93ר×\99×\91ר..."
+#~ msgid ", Action: "
+#~ msgstr "פע×\95×\9c×\94"
 
 #  Frame title for installation target hard disk / partition(s)
 #, fuzzy
-#~ msgid "do not keep %s installed"
+#~ msgid "Establishing %s"
 #~ msgstr "מתקין על:"
 
-#  Frame title for installation target hard disk / partition(s)
 #, fuzzy
-#~ msgid "install %s"
-#~ msgstr "×\9eתק×\99×\9f ×¢×\9c:"
+#~ msgid " Error!"
+#~ msgstr "ש×\92×\99×\90×\94"
 
-#, fuzzy
-#~ msgid "unlock %s"
-#~ msgstr "שעונים"
+#~ msgid "Ok"
+#~ msgstr "בסדר"
 
-#, fuzzy
-#~ msgid "unlock all resolvables"
-#~ msgstr "מתקין דריבר..."
+#~ msgid "Default"
+#~ msgstr "ברירת מחדל"
index 279bc49..771e0f3 100644 (file)
--- a/po/hi.po
+++ b/po/hi.po
@@ -15,17 +15,93 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: KBabel 1.11.4\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "हाल अपवाद"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "अमान्य LDAP URL क्वेरी स्ट्रिंग"
+
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "अमान्य LDAP URL क्वेरी मानक '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Url ऑब्जेक्ट क्लोन करने में अक्षम"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "अमान्य रिक्त Url ऑब्जेक्ट संदर्भ"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Url अवयवों को पार्ज करने में अक्षम"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "म्यूटेक्स गुण को आरंभ नहीं कर सकता"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "रिकर्सिव म्यूटेक्स गुण को सेट नहीं कर सकता"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "रिकर्सिव म्यूटेक्स को आरंभ नहीं कर सकता"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "म्यूटेक्स लॉक को हासिल नहीं कर सकता"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "म्यूटेक्स लॉक को रिलीज़ नहीं कर सकता"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr ""
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr ""
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
 #, fuzzy
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr "%s का कोई संस्थापनयोग्य प्रदाता नहीं है"
+msgid "Obsoletes"
+msgstr "%s पुराना कर देता है : %s"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -38,10 +114,6 @@ msgstr "निष्‍पादन"
 msgid " execution failed"
 msgstr "DBI Execution failed: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -50,93 +122,121 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s का %s से टकराव है "
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+#, fuzzy
+msgid "Error sending update message notification."
+msgstr "कुंजी एन्क्रिप्शन के दौरान त्रुटि।"
+
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s ही %s प्रदान करता है, लेकिन इसके पास कोई और स्थापत्य है।"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "जैसा निर्देशित था, संस्थापन छोड़ दिया गया।"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "इंस्टाल नहीं हुआ"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s लॉक हो गया है और इसे असंस्थापित नहीं किया जा सकता।"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext कनेक्ट नहीं किया गया"
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, fuzzy, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s को %s पुराना कर देता है"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive आरंभ नहीं किया गया "
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume आरंभ नहीं किया गया"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "dbus कनेक्शन सृजित करने में अक्षम"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: libhal संदर्भ को सृजित नहीं कर सकता"
+
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection : dbus कनेक्शन को सेट नहीं कर सकता"
+
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "HAL संदर्भ को आरंभ करने में अक्षम -- hald नहीं रन कर रहा?"
+
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "कोई सीडीरोम ड्राइव नहीं"
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
 #, fuzzy
-msgid "(does not expire)"
-msgstr "'%1' मौजूद नहीं है।"
+msgid "RPM failed: "
+msgstr "विफल"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "अबखाजिआन"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, fuzzy, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "सार्वजनिक कुंजी को प्राप्त करने में अक्षम।"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "अचाइनीज"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "%s: के लिए परिवर्तित कंफिगरेशन फाइलें"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "अकोली"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, fuzzy, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm ने %s के  रूप में %s सहेजा लेकिन अंतर निर्धारित करना असंभव था "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "अदांगमे"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm ने %s के  रूप में %s सहेजा।\n"
+"यहां अंतर की पहली 25 पंक्तियां हैं :\n"
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
 #, fuzzy, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "संसाधन जोड़ रहा"
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm ने %s के  रूप में %s सृजित किया लेकिन अंतर निर्धारित करना असंभव था"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"rpm ने %s के  रूप में %s सृजित किया।\n"
+"यहां अंतर की पहली 25 पंक्तियां हैं :\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -145,679 +245,1973 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "अतिरिक्त rpm आउटपुट :"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "à¤\85दाà¤\87à¤\98à¥\87"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "बà¥\88à¤\95à¤\85प %s à¤¸à¥\83à¤\9cित"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "अफार"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "%s %s नहीं मिला"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "अफगानिस्तान"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "अफ्रिहिली"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "%s %s नहीं मिला"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "अफ्रीकांस"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "%s %s नहीं मिला"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "अफ्रो-एशियाटिक(अन्य)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "ऐनू"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "अकान"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "अकादियान"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "अलांड आइलैंड्स"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "अल्बानिया"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "अल्बेनियाई "
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "एल्यूत"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "अल्ज़ीरिया"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "लेखन के लिए फाइल नहीं खोल सकता है।"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "अलगांक्यूएन भाषाएं"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "अल्टाइक (अन्य)"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "à¤\85मà¥\87रिà¤\95à¥\80 à¤¸à¤®à¥\8bà¤\86"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "डà¥\87सà¥\8dà¤\95à¤\9fà¥\89प à¤\86à¤\87à¤\9fम '%s'"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "à¤\85मà¥\8dहारिà¤\95 "
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "डायरà¥\87à¤\95à¥\8dà¤\9fरà¥\80 à¤\95à¥\8b à¤¸à¥\83à¤\9cित à¤¨à¤¹à¥\80à¤\82 à¤\95र à¤¸à¤\95ता %1 : %2"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "फ्लोपी डिस्क पढ़ने में त्रुटि।"
+
+#: zypp/RepoManager.cc:1611
+#, fuzzy, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "संसाधन जोड़ रहा"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "अमान्य निर्यात फाइलनाम।"
+
+#: zypp/RepoManager.cc:1740
+#, fuzzy, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "संसाधन जोड़ रहा"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "डेस्कटॉप आइटम '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "अंदोर्रा"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Url स्कीम किसी %s को अनुमति नहीं देती है"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "अमान्य %s अवयव '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "अमान्य %s अवयव"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "इस URL के लिए क्वेरी स्ट्रिंग पार्जिंग समर्थित नहीं है"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Url स्कीम एक आवश्यक अवयव है"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "अमान्य Url स्कीम '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Url स्कीम किसी उपयोगकर्ता नाम को अनुमति नहीं देती है"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Url स्कीम किसी पासवर्ड को अनुमति नहीं देती है"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Url स्कीम को एक होस्ट अवयव की आवश्यकता है"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Url स्कीम किसी होस्ट अवयव को अनुमति नहीं देती है "
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "अमान्य होस्ट अवयव '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Url स्कीम किसी पोर्ट को अनुमति नहीं देती है "
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "अमान्य पोर्ट अवयव '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Url स्कीम को पथ नाम की आवश्यकता है"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "यदि प्राधिकरण मौजूद है तो सापेक्ष पथ को अनुमति नहीं है"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "एनकोडेड स्ट्रिंग में एक NUL बाइट समाविष्ट है"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "अमान्य मानक क्रमविन्यास सेपरेटर वर्ण पृथक करें"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "अमान्य मानक मानचित्र सेपरेटर वर्ण पृथक करें"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "अमान्य मानक क्रमविन्यास सेपरेटर वर्ण जोड़ें"
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "फाइल %1 को नहीं खोल सकता है।"
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "%s को नहीं ढूंढ सकता।"
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, fuzzy, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "%s को नहीं ढूंढ सकता।"
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "जब कनेक्ट हो रहे हों तब चलाया जाने वाला कमांड"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+#, fuzzy
+msgid "(does not expire)"
+msgstr "'%1' मौजूद नहीं है।"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "अन्जान"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "अज्ञात देश :"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "कोई कोड नहीं"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "अंदोर्रा"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "संयुक्त अरब अमीरात"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "अफगानिस्तान"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "एंटीगुआ और बारबूडा"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "अंग्युला"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "अल्बानिया"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "अर्मेनिया"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "नीदरलैंड एंटीलस"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "अंगोला"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "अंटार्कटिक"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "अर्जेंटीना"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "अमेरिकी समोआ"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "आस्ट्रिया"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "आस्ट्रेलिया"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "अरूबा"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "अलांड आइलैंड्स"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "अज़रबैजान"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "बोस्निया और हर्जेगोविना"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "बारबाडोस"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "बांग्लादेश"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "बेल्ज़ियम"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "बुर्किना फासो"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "बुल्गारिया"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "बहरीन"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "बुरूंडी"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "बेनिन"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "बरमूडा"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "ब्रुनेई दारूस्सलम"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "बोलेविया"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "ब्राज़ील"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "बहामस"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "भूटान"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "बोउवेत आइसलैंड"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "बोत्सवाना"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "बेलारूस"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "बेलिजी"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "कनाडा"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "कोकोस (कीलिंग) आइलैंड्स"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "कांगो"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "मध्य अफ्रीकी गणराज्य"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "स्विट्ज़रलैंड"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "कोटे डी'आईवोर"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "कुक आइलैंड्स"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "चीले"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "कैमरून"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "चीन"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "कोलंबिया"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "कोस्टा रिका"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "क्यूबा"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "केप वेर्दे"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "क्रिसमस आइसलैंड"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "साइप्रस"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "चेक गणराज्य"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "जर्मनी"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "जिबूती"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "डेनमार्क"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "डोमिनिका"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "डोमिनिका गणराज्य"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "अल्ज़ीरिया"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "इक्वाडोर"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "एस्तोनिया"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "मिश्र"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "पश्चिमी सहारा"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "इरीट्रिया"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "स्पेन"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "इथियोपिया"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "फिनलैंड"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "फिज़ी"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "फाल्कलैंड आइलैंड्स (माल्विनास)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "माइक्रोनेशिया संघीय गणराज्य"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "फरोए आइलैंड्स"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "फ्रांस"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "मेट्रोपोलिटन फ्रांस"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "गाबोन"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "यूनाइटेड किंगडम"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "ग्रेनेडा"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "जार्जिया"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "फ्रेंच गुआना"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "जर्मनी"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "घाना"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "जिब्राल्टर"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "ग्रीनलैंड"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "गाम्बिया"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "गिनी"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "ग्वाडेलोप"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "विषुवतरेखीय गिनी"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "ग्रीस"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "दक्षिणी जॉर्जिया और साउथ सैंडविच आइलैंड्स"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "ग्वाटेमाला"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "गुआम"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "गिनी-बिसाउ"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "गुआना"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "हांग-कांग"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "हेर्ड आइसलैंड और मैकडोनाल्ड आइलैंड्स"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "होंडुरास"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "क्रोएशिया"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "हाती"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "हंगरी"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "इंडोनेशिया"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "आयरलैंड"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "इज़रायल"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "भारत"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "ब्रिटिश भारतीय समुद्री क्षेत्र"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "इराक"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "इरान"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "आइसलैंड"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "इटली"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "जमाइका"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "जॉर्डन"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "जापान"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "केन्या"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "किर्गिज़तान"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "कंबोडिया"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "किरिबाती"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "कोमोरोस"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "सेंट किट्स और नेविस"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "उत्तरी कोरिया"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "दक्षिणी कोरिया"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "कुवैत"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "केमन आइलैंड"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "कज़ाकिस्तान"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "लाओ लोक जनवादी गणराज्य"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "लेबनान"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "सेंट लुसिया"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "लिचटेंसटीन"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "श्रीलंका"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "लिबेरिया"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "लेसोथो"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "लिथुआनिया"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "लक्ज़मबर्ग"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "लटाविया"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "लीबिया"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "मोरक्को"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "मोनाका"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "माल्दोवा"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "मोंगो"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "सैन मारिनो"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "मेडागास्कर"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "मार्शल आइलैंड्स"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "मकदूनिया"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "माली"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "म्यांमार"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "मंगोलिया"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "मकाउ"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "उत्तरी मारिआना आइलैंड"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "मारतिनिक"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "मॉरितानिया"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "मांतसेरा"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "माल्टा"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "मॉरीशस"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "मालदीव"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "मलावी"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "मेक्सिको"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "मलेशिया"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "मोजाम्बिक"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "नामीबिया"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "न्यू कैलडोनिया"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "नाइज़र"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "नॉरफोक आइसलैंड"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "नाइजीरिया"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "निकारागुआ"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "नीदरलैंड्स"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "नॉर्वे"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "नेपाल"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "नाउरू"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "नियू"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "न्यूजीलैंड"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "ओमान"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "पनामा"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "पेरू"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "फ्रेंच पॉलीनेशिया"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "पापुआ न्यू गिनी"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "फिलिपीन्स"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "पाकिस्तान"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "पोलैंड"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "सेंट पिअरे और मिक्यूलॉन"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "पिटकैरन"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "प्यूर्टो रिको"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "फिलीस्तीनी क्षेत्र"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "पुर्तगाल"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "पलाउ"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "पैरागुआ"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "कतर"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "रियूनियन"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "रोमानिया"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "सर्बियाई"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "रूसी महासंघ"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "रवांडा"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "सउदी अरब"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "सोलोमन आइलैंड"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "सेशेल्स"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "सूडान"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "स्वीडेन"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "à¤\85à¤\82à¤\97à¥\8bला"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "सिà¤\82à¤\97ापà¥\81र"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "à¤\85à¤\82à¤\97à¥\8dयà¥\81ला"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "सà¥\87à¤\82à¤\9f à¤¹à¥\87लà¥\87ना"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "à¤\85à¤\82à¤\9fारà¥\8dà¤\95à¤\9fिà¤\95"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "सà¥\8dलà¥\8bविनिया"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "à¤\8fà¤\82à¤\9fà¥\80à¤\97à¥\81à¤\86 à¤\94र à¤¬à¤¾à¤°à¤¬à¥\82डा"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "सà¥\8dवालबारà¥\8dड à¤\94र à¤\9cà¥\87न à¤®à¤¾à¤¯à¥\87न"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "à¤\85पाà¤\9aà¥\80 à¤­à¤¾à¤·à¤¾à¤\8fà¤\82"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "सà¥\8dलà¥\8bवाà¤\95िया"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "à¤\85रबà¥\80"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "सिà¤\8fरा à¤²à¤¿à¤\93न"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "à¤\85राà¤\97à¥\8bनà¥\80à¤\9c़"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "सà¥\88न à¤®à¤¾à¤°à¤¿à¤¨à¥\8b"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "à¤\85रामाà¤\87à¤\95"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "सà¥\87नà¥\87à¤\97ल"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "à¤\85रापाहà¥\8b"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "सà¥\8bमालिया"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "à¤\85रà¥\89à¤\95à¥\87नियाà¤\88"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "सà¥\82रà¥\80नाम"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "à¤\85रावà¤\95"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "साà¤\93 à¤\9fà¥\8bम à¤\94र à¤ªà¥\8dरिà¤\82सà¥\80प"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "à¤\85रà¥\8dà¤\9cà¥\87à¤\82à¤\9fà¥\80ना"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "à¤\85लसलà¥\8dवाडà¥\8bर"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "à¤\85रà¥\8dमà¥\87निया"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "सà¥\80रिया"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "à¤\85रà¥\8dमà¥\80नियाà¤\88"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "सà¥\8dवाà¤\9cिलà¥\88à¤\82ड"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "à¤\95à¥\83तà¥\8dरिम (à¤\85नà¥\8dय)"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "तà¥\81रà¥\8dà¤\95 à¤\94र à¤\95à¥\88à¤\95स à¤\86à¤\87लà¥\88à¤\82ड"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "à¤\85रà¥\82बा"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "à¤\9aाड"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "à¤\85समिया"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "फà¥\8dराà¤\82सà¥\80सà¥\80 à¤¦à¤\95à¥\8dषिणà¥\80 à¤\95à¥\8dषà¥\87तà¥\8dर"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "à¤\85सà¥\8dतà¥\82रियन"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "à¤\9fà¥\8bà¤\97à¥\8b"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "à¤\85थापासà¥\8dà¤\95न à¤­à¤¾à¤·à¤¾à¤\8fà¤\82"
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "थाà¤\88लà¥\88à¤\82ड"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "à¤\86सà¥\8dà¤\9fà¥\8dरà¥\87लिया"
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "तà¤\9cाà¤\95िसà¥\8dतान"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "आस्ट्रेलियाई भाषाएं"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "तोकेलाउ"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "à¤\86सà¥\8dà¤\9fà¥\8dरिया"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "तà¥\81रà¥\8dà¤\95मà¥\87निसà¥\8dतान"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "à¤\85सà¤\9fà¥\8dरà¥\8bनà¥\87सियाà¤\88 (à¤\85नà¥\8dय)"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "à¤\9fà¥\8dयà¥\82नà¥\87शिया"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "टोंगा"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "à¤\85वारिà¤\95"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "पà¥\82रà¥\8dवà¥\80 à¤¤à¤¿à¤®à¥\8bर"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "à¤\85वà¥\87सà¥\8dतान"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "à¤\9fरà¥\8dà¤\95à¥\80"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "à¤\85वधà¥\80"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "तà¥\8dरिनिदाद à¤\94र à¤\9fà¥\8bबाà¤\97à¥\8b"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "ऐमारा"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "तुवालू"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "à¤\85à¤\9c़रबà¥\88à¤\9cान"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "ताà¤\87वान"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "अज़रबैजानी"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "तंजानिया"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "उक्रेन"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "उगांडा"
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "संयुक्त राज्य के छोटे दूरस्थ द्वीप"
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "बहामस"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "सà¤\82यà¥\81à¤\95à¥\8dत à¤°à¤¾à¤\9cà¥\8dय"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "बहरà¥\80न"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "à¤\89रà¥\81à¤\97à¥\8dवà¥\87"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "बलिनà¥\80à¤\9c़"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "à¤\89à¤\9c़बà¥\87à¤\95िसà¥\8dतान"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "बालà¥\8dà¤\9fिà¤\95 (à¤\85न्य)"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "हà¥\8bलà¥\80 à¤¸à¥\80 (वà¥\88à¤\9fिà¤\95न à¤¸à¤¿à¤\9fà¥\80 à¤°à¤¾à¤\9c्य)"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "बलà¥\82à¤\9aà¥\80"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "सà¥\87à¤\82à¤\9f à¤µà¤¿à¤¨à¤¸à¥\87à¤\82à¤\9f à¤\94र à¤¦ à¤\97à¥\8dरà¥\87नाडिनà¥\87स"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "बà¤\82बारा"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "वà¥\87नà¥\87à¤\9cà¥\81à¤\8fला"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "बमिलिà¤\95 à¤­à¤¾à¤·à¤¾à¤\8fà¤\82"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "बà¥\8dरिà¤\9fिश à¤µà¤°à¥\8dà¤\9cिन à¤\86à¤\87लà¥\88à¤\82ड"
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "बाà¤\82दा"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "वरà¥\8dà¤\9cिन à¤\86à¤\87लà¥\88à¤\82ड, à¤¯à¥\82.à¤\8fस."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "बाà¤\82à¤\97à¥\8dलादà¥\87श"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "वियतनाम"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "बà¤\82तà¥\82 (à¤\85नà¥\8dय)"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "वनà¥\81à¤\86तà¥\82"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "बारबाडà¥\8bस"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "वालिस à¤\94र à¤«à¥\8dयà¥\82तà¥\82ना"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "बासा"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "समà¥\8bà¤\86"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "बशà¤\95à¥\80र"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "यमन"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "बासà¥\8dà¤\95à¥\8dयà¥\82"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "मयà¥\8bà¤\9fà¥\8dà¤\9fà¥\87"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "बताà¤\95 (à¤\87à¤\82डà¥\8bनà¥\87शियाà¤\88)"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "दà¤\95à¥\8dषिण à¤\85फà¥\8dरà¥\80à¤\95ा"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "बà¥\87à¤\9cा"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "à¤\9cाà¤\82बिया"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "बà¥\87लारà¥\82स"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "à¤\9cिमà¥\8dबाबवà¥\87"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "बेलारूसी"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "अज्ञात भाषा : "
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "बà¥\87लà¥\8dà¤\9c़ियम"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "à¤\85फार"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "बà¥\87लिà¤\9cà¥\80"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "à¤\85बà¤\96ाà¤\9cिà¤\86न"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "बà¥\87à¤\82बा"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "à¤\85à¤\9aाà¤\87नà¥\80à¤\9c"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "बà¤\82à¤\97ाली"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "à¤\85à¤\95à¥\8bली"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "बà¥\87निन"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "à¤\85दाà¤\82à¤\97मà¥\87"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "बà¥\87रबà¥\87र (à¤\85नà¥\8dय)"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "à¤\85दाà¤\87à¤\98à¥\87"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "बरमà¥\82डा"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "à¤\85फà¥\8dरà¥\8b-à¤\8fशियाà¤\9fिà¤\95(à¤\85नà¥\8dय)"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "भà¥\8bà¤\9cपà¥\81री"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "à¤\85फà¥\8dरिहिली"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "भà¥\82à¤\9fान"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "à¤\85फà¥\8dरà¥\80à¤\95ाà¤\82स"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "बिहारà¥\80"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "à¤\90नà¥\82"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "बिà¤\95à¥\8bल"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "à¤\85à¤\95ान"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "बिनि"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "अकादियान"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "अल्बेनियाई "
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "बिसलामा"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "à¤\8fलà¥\8dयà¥\82त"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "बà¥\8dलिन"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "à¤\85लà¤\97ाà¤\82à¤\95à¥\8dयà¥\82à¤\8fन à¤­à¤¾à¤·à¤¾à¤\8fà¤\82"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "बà¥\8bलà¥\87विया"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "दà¤\95à¥\8dषिणà¥\80 à¤\85लà¥\8dताà¤\88"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "बà¥\8bसà¥\8dनिया à¤\94र à¤¹à¤°à¥\8dà¤\9cà¥\87à¤\97à¥\8bविना"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "à¤\85मà¥\8dहारिà¤\95 "
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "बà¥\8bसà¥\8dनियाà¤\88"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "à¤\85à¤\82à¤\97à¥\8dरà¥\87à¤\9cà¥\80, à¤ªà¥\81रानà¥\80 (सà¥\80à¤\8f. 450-1100)"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "बà¥\8bतà¥\8dसवाना"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "à¤\85पाà¤\9aà¥\80 à¤­à¤¾à¤·à¤¾à¤\8fà¤\82"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "बà¥\8bà¤\89वà¥\87त à¤\86à¤\87सलà¥\88à¤\82ड"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "à¤\85रबà¥\80"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "बà¥\8dरà¤\9c"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "à¤\85रामाà¤\87à¤\95"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "बà¥\8dराà¤\9c़à¥\80ल"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "à¤\85राà¤\97à¥\8bनà¥\80à¤\9c़"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "बà¥\8dरà¥\87à¤\9fà¥\8bन"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "à¤\85रà¥\8dमà¥\80नियाà¤\88"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "बà¥\8dरिà¤\9fिश à¤­à¤¾à¤°à¤¤à¥\80य à¤¸à¤®à¥\81दà¥\8dरà¥\80 à¤\95à¥\8dषà¥\87तà¥\8dर"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "à¤\85रà¥\89à¤\95à¥\87नियाà¤\88"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "बà¥\8dरिà¤\9fिश à¤µà¤°à¥\8dà¤\9cिन à¤\86à¤\87लà¥\88à¤\82ड"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "à¤\85रापाहà¥\8b"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "बà¥\8dरà¥\81नà¥\87à¤\88 à¤¦à¤¾à¤°à¥\82सà¥\8dसलम"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "à¤\95à¥\83तà¥\8dरिम (à¤\85नà¥\8dय)"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "बà¥\81à¤\97à¥\80नà¥\80à¤\9c़"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "à¤\85रावà¤\95"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "असमिया"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "बà¥\81लà¥\8dà¤\97ारिया"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "à¤\85सà¥\8dतà¥\82रियन"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "बà¥\81लà¥\8dà¤\97ारियाà¤\88"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "à¤\85थापासà¥\8dà¤\95न à¤­à¤¾à¤·à¤¾à¤\8fà¤\82"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "बà¥\81रियात"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "à¤\86सà¥\8dà¤\9fà¥\8dरà¥\87लियाà¤\88 à¤­à¤¾à¤·à¤¾à¤\8fà¤\82"
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "बà¥\81रà¥\8dà¤\95िना à¤«à¤¾à¤¸à¥\8b"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "à¤\85वारिà¤\95"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "बरà¥\8dमà¥\80"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "à¤\85वà¥\87सà¥\8dतान"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "बà¥\81रà¥\82à¤\82डी"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "à¤\85वधी"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "à¤\95à¥\87डà¥\8b"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "à¤\90मारा"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "à¤\95à¤\82बà¥\8bडिया"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "à¤\85à¥\9bरबà¥\88à¤\9cानà¥\80"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "à¤\95à¥\88मरà¥\82न"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "बाà¤\82दा"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "फाà¤\87ल à¤\95à¥\8b à¤¸à¥\83à¤\9cित à¤¨à¤¹à¥\80à¤\82 à¤\95र à¤¸à¤\95ता à¤¹à¥\88।"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "बमिलिà¤\95 à¤­à¤¾à¤·à¤¾à¤\8fà¤\82"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "म्यूटेक्स लॉक को हासिल नहीं कर सकता"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "बशकीर"
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "%s को नहीं ढूंढ सकता।"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "बलूची"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "बंबारा"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "बलिनीज़"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "डà¥\87सà¥\8dà¤\95à¤\9fà¥\89प à¤\86à¤\87à¤\9fम '%s'"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "बासà¥\8dà¤\95à¥\8dयà¥\82"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "बासा"
 
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "डायरà¥\87à¤\95à¥\8dà¤\9fरà¥\80 à¤\95à¥\8b à¤¸à¥\83à¤\9cित à¤¨à¤¹à¥\80à¤\82 à¤\95र à¤¸à¤\95ता %1 : %2"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "बालà¥\8dà¤\9fिà¤\95 (à¤\85नà¥\8dय)"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "डेस्कटॉप आइटम '%s'"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "बेजा"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "बेलारूसी"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "बेंबा"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "बंगाली"
 
-#: zypp/ExternalProgram.cc:381
-#, fuzzy, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "%s को नहीं ढूंढ सकता।"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "बेरबेर (अन्य)"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "म्यूटेक्स गुण को आरंभ नहीं कर सकता"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "भोजपुरी"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "रिकर्सिव म्यूटेक्स को आरंभ नहीं कर सकता"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "बिहारी"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "लेखन के लिए फाइल नहीं खोल सकता है।"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "बिकोल"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "फाà¤\87ल %1 à¤\95à¥\8b à¤¨à¤¹à¥\80à¤\82 à¤\96à¥\8bल à¤¸à¤\95ता à¤¹à¥\88।"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "बिनि"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "फाà¤\87ल %1 à¤\95à¥\8b à¤¨à¤¹à¥\80à¤\82 à¤\96à¥\8bल à¤¸à¤\95ता à¤¹à¥\88।"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "बिसलामा"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "सिकसिका"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, fuzzy, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "%s से %s प्रदान नहीं कर सकता"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "बंतू (अन्य)"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "म्यूटेक्स लॉक को रिलीज़ नहीं कर सकता"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "बोस्नियाई"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "रिकर्सिव म्यूटेक्स गुण को सेट नहीं कर सकता"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "ब्रज"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "à¤\95नाडा"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "बà¥\8dरà¥\87à¤\9fà¥\8bन"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "बताक (इंडोनेशियाई)"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "डà¥\87सà¥\8dà¤\95à¤\9fà¥\89प à¤\86à¤\87à¤\9fम '%s'"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "बà¥\81रियात"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "बुगीनीज़"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "बुल्गारियाई"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "बर्मी"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "फाà¤\87ल %1 à¤ªà¤° à¤¨à¤¹à¥\80à¤\82 à¤²à¤¿à¤\96 à¤¸à¤\95ता à¤¹à¥\88। "
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "बà¥\8dलिन"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "केप वेर्दे"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "केडो"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "केंद्रीय अमेरिकी भारतीय (अन्य)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -834,11 +2228,6 @@ msgstr "केटेलन"
 msgid "Caucasian (Other)"
 msgstr "काकेशियाई (अन्य)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "केमन आइलैंड"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -849,167 +2238,80 @@ msgstr "सेब्यूनो"
 msgid "Celtic (Other)"
 msgstr "सेल्टीक (अन्य)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "मध्य अफ्रीकी गणराज्य"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "केंद्रीय अमेरिकी भारतीय (अन्य)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "चाड"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "छगाताई"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "चामिक भाषाएं"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "चमोरो"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "%s: के लिए परिवर्तित कंफिगरेशन फाइलें"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "चेचेन"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "चेरोकी"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "चेयेन्ने"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "चिबचा"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "चिचेवा"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "चीले"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "चेचेन"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "à¤\9aà¥\80न"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "à¤\9bà¤\97ाताà¤\88"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "चीनी"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "चुकीज़"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "मारी"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "चिनूक जार्गन"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "चिप्यूयन"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "चोक्टॉ"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "क्रिसमस आइसलैंड"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "चिप्यूयन"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "चेरोकी"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "चर्च स्लाविक"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "चुकीज़"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "चुवास"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "क्लासिकी नेवारी"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "कोकोस (कीलिंग) आइलैंड्स"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "कोलंबिया"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "जब कनेक्ट हो रहे हों तब चलाया जाने वाला कमांड"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "कोमोरोस"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "कांगो"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "चेयेन्ने"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "à¤\95à¥\81à¤\95 à¤\86à¤\87लà¥\88à¤\82डà¥\8dस"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "à¤\9aामिà¤\95 à¤­à¤¾à¤·à¤¾à¤\8fà¤\82"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1026,31 +2328,6 @@ msgstr "कॉर्निश"
 msgid "Corsican"
 msgstr "कोर्सिकन"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "कोस्टा रिका"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "कोटे डी'आईवोर"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "क्री"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "क्रीक"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "क्रियोलेस और पिडगिंस (अन्य)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1066,46 +2343,36 @@ msgstr "क्रियोलेस और पिडगिंस, फ्रा
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "क्रियोलेस और पिडगिंस, पुर्तगाली-आधारित (अन्य)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "क्री"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "क्रीमियाई तातार"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "क्रोएशिया"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "क्रोएशियाई"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "क्रियोलेस और पिडगिंस (अन्य)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "à¤\95à¥\8dयà¥\82बा"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "à¤\95शà¥\81बियन"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "क्युशीटिक (अन्य)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "साइप्रस"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "चेक"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "चेक गणराज्य"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1131,10 +2398,15 @@ msgstr "दयाक"
 msgid "Delaware"
 msgstr "देलावारे"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "डेनमार्क"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "स्लेव (अथापास्कन)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "डोगरिब"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1146,71 +2418,36 @@ msgstr "दिन्का"
 msgid "Divehi"
 msgstr "दिवेही"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "जिबूती"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "डोगरी"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "डोगरिब"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "डोमिनिका"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "डोमिनिका गणराज्य"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "द्रविड़ियन (अन्य)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "लोअर सोर्बियन"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "ड्यूला"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "डच, मध्य (सीए. 1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "डच"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "डच, मध्य (सीए. 1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1221,62 +2458,25 @@ msgstr "ड्यूला"
 msgid "Dzongkha"
 msgstr "द्जोंगखा"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "पूर्वी तिमोर"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "इक्वाडोर"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "इफिक"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "मिश्र"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
 msgstr "मिश्री (प्राचीन)"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "इकाजुक"
-
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "अलसल्वाडोर"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "इलामाइट"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-#, fuzzy
-msgid "Empty host name in URI"
-msgstr "रिक्त CA नाम।"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "एनकोडेड स्ट्रिंग में एक NUL बाइट समाविष्ट है"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "इकाजुक"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "इलामाइट"
 
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
@@ -1288,74 +2488,16 @@ msgstr "अंग्रेजी"
 msgid "English, Middle (1100-1500)"
 msgstr "अंग्रेजी, मध्य (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "अंग्रेजी, पुरानी (सीए. 450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "विषुवतरेखीय गिनी"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "इरीट्रिया"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-#, fuzzy
-msgid "Error sending update message notification."
-msgstr "कुंजी एन्क्रिप्शन के दौरान त्रुटि।"
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "एर्जया"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "एस्परांतो"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "एस्तोनिया"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "एस्टोनियाई"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "इथियोपिया"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1366,211 +2508,31 @@ msgstr "इवी"
 msgid "Ewondo"
 msgstr "इवॉन्डो"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "%s - %s को खोलने में अक्षम\n"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, fuzzy, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"पैकेज %s ने एकीकरण जांच को नाकाम किया। क्या आप इसकी डाउनलोडिंग का प्रयास फिर से करना "
-"चाहते हैं?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, fuzzy, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "सार्वजनिक कुंजी को प्राप्त करने में अक्षम।"
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "\"%s\" मोड्यूल लोड करने में असफल।"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "फाल्कलैंड आइलैंड्स (माल्विनास)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "फांग"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "फांती"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "फरोए आइलैंड्स"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "फारोइसी"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "माइक्रोनेशिया संघीय गणराज्य"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "फिज़ी"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "फांती"
 
 #. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "फिजी"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "कोष में फाइल %1 नहीं प्राप्त हुई।"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "फिजी"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "फिलिपीनो"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "फिनलैंड"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1581,40 +2543,16 @@ msgstr "फिन्निश"
 msgid "Finno-Ugrian (Other)"
 msgstr "फिन्नो-उगरियन (अन्य)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "फॉन"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "फ्रांस"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "फ्रेंच"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "फ्रेंच गुआना"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "फ्रेंच पॉलीनेशिया"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "फ्रांसीसी दक्षिणी क्षेत्र"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1630,46 +2568,21 @@ msgstr "फ्रेंच, प्राचीन (842- सीए.1400)"
 msgid "Frisian"
 msgstr "फ्रीशियन"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "फ्रीयूलियन"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "फुलाह"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "फ्रीयूलियन"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "गा"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "गाबोन"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "गैलिक"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "गालीसियन"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "गाम्बिया"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "गांडा"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1680,15 +2593,10 @@ msgstr "गायो"
 msgid "Gbaya"
 msgstr "ग्बाया"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "गीज"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "जार्जिया"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "जर्मेनिक (अन्य)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1700,6 +2608,36 @@ msgstr "जॉर्जियाई"
 msgid "German"
 msgstr "जर्मन"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "गीज"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "जिब्रालटीज़"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "गैलिक"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "आयरिश"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "गालीसियन"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "मैंक्स"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1710,30 +2648,6 @@ msgstr "जर्मन, मिडिल हाई (सीए. 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "जर्मन, ओल्ड हाई (सीए. 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "जर्मेनिक (अन्य)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "जर्मनी"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "घाना"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "जिब्राल्टर"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "जिब्रालटीज़"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1754,11 +2668,6 @@ msgstr "गोथिक"
 msgid "Grebo"
 msgstr "ग्रेबो"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "ग्रीस"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1769,62 +2678,16 @@ msgstr "ग्रीक, प्राचीन (1453 तक)"
 msgid "Greek, Modern (1453-)"
 msgstr "ग्रीक, आधुनिक (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "ग्रीनलैंड"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "ग्रेनेडा"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "ग्वाडेलोप"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "गुआम"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "गुआरानी"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "ग्वाटेमाला"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "जर्मनी"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "गिनी"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "गिनी-बिसाउ"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "गुजराती"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "गुआना"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1835,52 +2698,21 @@ msgstr "ग्विच'इन"
 msgid "Haida"
 msgstr "हैदा"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "हाती"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "हैती"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "हाल अपवाद"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext कनेक्ट नहीं किया गया"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive आरंभ नहीं किया गया "
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume आरंभ नहीं किया गया"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "हाउसा"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "हवाइयन"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "हेर्ड आइसलैंड और मैकडोनाल्ड आइलैंड्स"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1906,16 +2738,6 @@ msgstr "हिमांचली"
 msgid "Hindi"
 msgstr "हिंदी"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "हिरी मोटू"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "इतिहास:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1926,30 +2748,20 @@ msgstr "हिटिटी"
 msgid "Hmong"
 msgstr "ह्मांग"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "होली सी (वैटिकन सिटी राज्य)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "होंडुरास"
-
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "हांग-कांग"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "हिरी मोटू"
 
-#. language code: hun hu
-#: zypp/LanguageCode.cc:537
-msgid "Hungarian"
-msgstr "हà¤\82à¤\97à¥\87रियाई"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "à¤\8aपरà¥\80 à¤¸à¥\8bरà¥\8dबियाई"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "हà¤\82à¤\97रà¥\80"
+#. language code: hun hu
+#: zypp/LanguageCode.cc:537
+msgid "Hungarian"
+msgstr "हà¤\82à¤\97à¥\87रियाà¤\88"
 
 #. language code: hup
 #: zypp/LanguageCode.cc:539
@@ -1961,10 +2773,10 @@ msgstr "हूपा"
 msgid "Iban"
 msgstr "इबान"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "à¤\86à¤\87सलà¥\88à¤\82ड"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "à¤\87à¤\97à¥\8dबà¥\8b"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1976,250 +2788,105 @@ msgstr "आइसलैंडी "
 msgid "Ido"
 msgstr "आइडो"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "à¤\87à¤\97à¥\8dबà¥\8b"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "सिà¤\9aà¥\81à¤\86न à¤¯à¥\80"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "आइजो"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "इनुकटिटुट"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "इंटरलिंगुआ"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "आईलोको"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "इनारी सामी"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "भारत"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "इण्टर्लिङ्गुआ "
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "इंडिक (अन्य)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "इंडो-यूरोपीय (अन्य)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "इंडोनेशिया"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "इंडोनेशियाई"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "इंडो-यूरोपीय (अन्य)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "इंगुश"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "जैसा निर्देशित था, संस्थापन छोड़ दिया गया।"
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "इण्टर्लिङ्गुआ "
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "इंटरलिंगुआ"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "इनुकटिटुट"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "इन्यूपिआक"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "अमान्य %s अवयव"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "अमान्य %s अवयव '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "अमान्य LDAP URL क्वेरी मानक '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "अमान्य LDAP URL क्वेरी स्ट्रिंग"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "अमान्य Url स्कीम '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "अमान्य रिक्त Url ऑब्जेक्ट संदर्भ"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "अमान्य होस्ट अवयव '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "अमान्य मानक क्रमविन्यास सेपरेटर वर्ण जोड़ें"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "अमान्य मानक क्रमविन्यास सेपरेटर वर्ण पृथक करें"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "अमान्य मानक मानचित्र सेपरेटर वर्ण पृथक करें"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "अमान्य पोर्ट अवयव '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "अमान्य Url स्कीम '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "अमान्य निर्यात फाइलनाम।"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "इरान"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "इरानी (अन्य)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "इराक"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "आयरलैंड"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "आयरिश"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "आइरिश, मध्य (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "आइरिश, पुरानी (900 तक)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "इरोक्योइयाई भाषाएं"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "इज़रायल"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "इतालवी"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "इटली"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "जमाइका"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "जावा"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "à¤\9cापान"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "लà¥\8bà¤\9cबान"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "जापानी"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "जावा"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "जॉर्डन"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "जूडेओ-पर्सियन"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "जूडेओ-अरबी"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "जूडेओ-पर्सियन"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "कबार्डियन"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "कारा-कालपक"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2236,11 +2903,6 @@ msgstr "काचिन"
 msgid "Kalaallisut"
 msgstr "कालाल्लीसट"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "कल्मीक"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2249,22 +2911,7 @@ msgstr "कांबा"
 #. language code: kan kn
 #: zypp/LanguageCode.cc:599
 msgid "Kannada"
-msgstr "कन्नड़"
-
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "कनुरी"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "कारा-कालपक"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "काराचय-बलकार"
+msgstr "कन्नड़"
 
 #. language code: kar
 #: zypp/LanguageCode.cc:601
@@ -2276,10 +2923,10 @@ msgstr "केरीन"
 msgid "Kashmiri"
 msgstr "कश्मीरी"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "à¤\95शà¥\81बियन"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "à¤\95नà¥\81रà¥\80"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2291,31 +2938,26 @@ msgstr "कावी "
 msgid "Kazakh"
 msgstr "कजाक"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "कज़ाकिस्तान"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "केन्या"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "कबार्डियन"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "खासी"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "खमेर"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "खोईसान (अन्य)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "खमेर"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2326,11 +2968,6 @@ msgstr "खोतानीज़"
 msgid "Kikuyu"
 msgstr "किकूयू"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "किंबुंदु"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2341,15 +2978,15 @@ msgstr "किनयारवांडा"
 msgid "Kirghiz"
 msgstr "किर्गिज़"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "à¤\95िरिबातà¥\80"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "à¤\95िà¤\82बà¥\81à¤\82दà¥\81"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "à¤\95à¥\8dलिà¤\82à¤\97à¥\8bà¤\82"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "à¤\95à¥\8bà¤\82à¤\95णà¥\80"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2361,11 +2998,6 @@ msgstr "कोमी"
 msgid "Kongo"
 msgstr "कांगो"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "कोंकणी"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2381,11 +3013,21 @@ msgstr "कोस्राइयन"
 msgid "Kpelle"
 msgstr "क्पेले"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "काराचय-बलकार"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "क्रु"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "कुरुख"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2401,26 +3043,11 @@ msgstr "कुम्यक"
 msgid "Kurdish"
 msgstr "कुर्दिश"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "कुरुख"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "कुतेनाई"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "कुवैत"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "किर्गिज़तान"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2441,68 +3068,21 @@ msgstr "लांबा"
 msgid "Lao"
 msgstr "लाओ"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "लाओ लोक जनवादी गणराज्य"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "लैटिन"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "लटाविया"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "लाटवियाई"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "लेबनान"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "लेसोथो"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "लेझियन"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "लिबेरिया"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "लीबिया"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "लिचटेंसटीन"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2513,61 +3093,46 @@ msgstr "लिम्बर्गन"
 msgid "Lingala"
 msgstr "लिंगाला"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "लिथुआनिया"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "लिथुआनियाई"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "लोजबान"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "लो जर्मन"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "लोअर सोर्बियन"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "मोंगो"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "लोज़ी"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "लà¥\8dयà¥\82बा-à¤\95ाताà¤\82à¤\97ा"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "लà¤\95à¥\8dà¤\9c़मबरà¥\8dà¤\97िश"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "ल्यूबा-लुलुआ"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "ल्यूबा-कातांगा"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "गांडा"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "ल्युसेनो"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "लूले सामी"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2583,227 +3148,90 @@ msgstr "लुओ (केन्या और तंजानिया)"
 msgid "Lushai"
 msgstr "लुशाई"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "लक्ज़मबर्ग"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "लक्ज़मबर्गिश"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "मकाउ"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "मकदूनिया"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "मकदूनियाई"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "मेडागास्कर"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
-msgid "Madurese"
-msgstr "मदुरीस"
-
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
-msgstr "मगही"
-
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
-msgstr "मैथिली"
-
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr "मकासर"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "मलागासी"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "मलावी"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "मलय"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "मलयालम"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "मलेशिया"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "मालदीव"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
+msgid "Madurese"
+msgstr "मदुरीस"
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "माली"
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
+msgstr "मà¤\97ही"
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "मालà¥\8dà¤\9fा"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "मारà¥\8dशलà¥\80à¤\9c़"
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "मालà¥\8dà¤\9fà¥\80à¤\9c़"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
+msgstr "मà¥\88थिलà¥\80"
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "मà¤\82à¤\9aà¥\82"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
+msgstr "मà¤\95ासर"
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "मà¤\82दार"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "मलयालम"
 
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "मंदिनगो"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "मणिपुरी"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "मनोबो भाषाएं"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "मैंक्स"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "माओरी"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "असट्रोनेसियाई (अन्य)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "मराठी"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "मारी"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "मार्शल आइलैंड्स"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "मार्शलीज़"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "मारतिनिक"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "मारवाड़ी"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "मसाइ"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "मॉरितानिया"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "मॉरीशस"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "मयान भाषाएं"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "मयोट्टे"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "मलय"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "मोक्स"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "मंदार"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "मेंदे"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "मेट्रोपोलिटन फ्रांस"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "मेक्सिको"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "आइरिश, मध्य (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2815,87 +3243,61 @@ msgstr "मि'कमाक"
 msgid "Minangkabau"
 msgstr "मिनांग्काबाउ"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "मिरांडीज़"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "विविध भाषाएं"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "मॉन-खमेर (अन्य)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "मलागासी"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "माल्टीज़"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "मंचू"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "मणिपुरी"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "मनोबो भाषाएं"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "मोहॉक"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "मोक्स"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "मोल्देवियाई"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "माल्दोवा"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "मॉन-खमेर (अन्य)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "मोनाका"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "मोंगो"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "मंगोलिया"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "मंगोलियाई"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "मोंगो"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "मांतसेरा"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "मोरक्को"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "मोस्सी"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "मोजाम्बिक"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2906,211 +3308,141 @@ msgstr "अनेकशः भाषाएं"
 msgid "Munda languages"
 msgstr "मुंडा भाषाएं"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "म्यांमार"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "क्रीक"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "मिरांडीज़"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "मारवाड़ी"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "मयान भाषाएं"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "एर्जया"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "नाहुआट्ल"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "नामà¥\80बिया"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "à¤\89तà¥\8dतरà¥\80 à¤\85मà¥\87रिà¤\95à¥\80 à¤­à¤¾à¤°à¤¤à¥\80य"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "नाउरू"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "नेपोलिटन"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "नावाजो"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "न्डेबेले, उत्तरी"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "न्डेबेले, दक्षिणी"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "न्डेबेले, उत्तरी"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "न्डोंगा"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "नेपोलिटन"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "नेपाल"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "नेपाल भाषा"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "लो जर्मन"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "नेपाली"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "नीदरलैंड्स"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "नीदरलैंड एंटीलस"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "न्यू कैलडोनिया"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "न्यूजीलैंड"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "नेपाल भाषा"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "नियास"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "निकारागुआ"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "नाइज़र"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "नाइज़र-कोरदोफानियाई (अन्य)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "नाइजीरिया"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "निलो-सहारन (अन्य)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "नियू"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "नियूएन"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "कोई कोड नहीं"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "नॉर्वेजियाई निनॉर्स्क"
 
-#: zypp/repo/RepoProvideFile.cc:265
-#, fuzzy
-msgid "No url in repository."
-msgstr "à¤\95à¥\8bष à¤®à¥\87à¤\82 à¤«à¤¾à¤\87ल %1 à¤¨à¤¹à¥\80à¤\82 à¤ªà¥\8dरापà¥\8dत à¤¹à¥\81à¤\88।"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "नà¥\89रà¥\8dवà¥\87à¤\9cियाà¤\88 à¤¬à¥\8bà¤\95माल"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "नोगाइ"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "नॉरफोक आइसलैंड"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "नोर्स, पुरानी"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "उत्तरी अमेरिकी भारतीय"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "उत्तरी कोरिया"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "उत्तरी मारिआना आइलैंड"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "उत्तरी सामी"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "उत्तरी सोथो"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "नॉर्वे"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "नॉर्वेजियाई"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "नॉर्वेजियाई बोकमाल"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "नॉर्वेजियाई निनॉर्स्क"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "कोई सीडीरोम ड्राइव नहीं"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "उत्तरी सोथो"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "न्यूबिअन भाषाएं"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "क्लासिकी नेवारी"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "चिचेवा"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3131,11 +3463,6 @@ msgstr "न्योरो"
 msgid "Nzima"
 msgstr "न्ज़ीमा"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "%s पुराना कर देता है : %s"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3146,20 +3473,6 @@ msgstr "ओक्कीटन (1500 पश्चात)"
 msgid "Ojibwa"
 msgstr "ओज़िब्वा"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "ओमान"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3180,66 +3493,36 @@ msgstr "ओसेग"
 msgid "Ossetian"
 msgstr "ओस्सेटियन"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "तुर्कीश, ऑट्टोमन (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "ओटोमियाई भाषाएं"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, fuzzy, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"पैकेज %s ने एकीकरण जांच को नाकाम किया। क्या आप इसकी डाउनलोडिंग का प्रयास फिर से करना "
-"चाहते हैं?"
-
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr "पहलावी"
-
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "पाकिस्तान"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "पलाउ"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "पालाउन"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "फिलीस्तीनी क्षेत्र"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "पाली"
-
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "पाम्पांगा"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "पनामा"
-
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "पापुअन (अन्य)"
+
 #. language code: pag
 #: zypp/LanguageCode.cc:847
 msgid "Pangasinan"
 msgstr "पनगासिनान"
 
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr "पहलावी"
+
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "पाम्पांगा"
+
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3250,94 +3533,45 @@ msgstr "पंजाबी"
 msgid "Papiamento"
 msgstr "पापीमेंटो"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "पापुआ न्यू गिनी"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "पापुअन (अन्य)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "पैरागुआ"
-
-#: zypp/media/MediaException.cc:106
-#, fuzzy, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "%1 एक डायरेक्टरी नहीं है।"
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
-
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "अनुमति अस्वीकृत"
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "फारसी"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "पालाउन"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "फारसी, पुरानी (सीए. 600-400 ई.पू.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "पà¥\87रà¥\82"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "फारसà¥\80"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "फिलीपीनी (अन्य)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "फिलिपीन्स"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "फोएनिसिअन"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "पिटकैरन"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "पोहन्पिअन"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "पोलैंड"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "पाली"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "पोलिश"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "पà¥\81रà¥\8dतà¤\97ाल"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "पà¥\8bहनà¥\8dपिà¤\85न"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3349,78 +3583,21 @@ msgstr "पुर्तगाली"
 msgid "Prakrit Languages"
 msgstr "प्राकृत भाषाएं"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "प्रोवेंसल, पुरानी (1500 तक)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "प्यूर्टो रिको"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "पश्तो"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "कतर"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "क्वेचुआ"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "इस URL के लिए क्वेरी स्ट्रिंग पार्जिंग समर्थित नहीं है"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "विफल"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "रेइतो-रोमांस"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3436,135 +3613,35 @@ msgstr "रापान्वी"
 msgid "Rarotongan"
 msgstr "रारोतांगन"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "यदि प्राधिकरण मौजूद है तो सापेक्ष पथ को अनुमति नहीं है"
-
-#: zypp/RepoManager.cc:1740
-#, fuzzy, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "संसाधन जोड़ रहा"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "रियूनियन"
-
 #. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "रोमांस (अन्य)"
-
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "रोमानिया"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "रोमानियाई"
-
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "रोमानी"
-
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "रूंडी"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "रूसी"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "रूसी महासंघ"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "रवांडा"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "सेंट हेलेना"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "सेंट किट्स और नेविस"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "सेंट लुसिया"
-
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "सैन मारिनो"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "सेंट पिअरे और मिक्यूलॉन"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "सेंट विनसेंट और द ग्रेनाडिनेस"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "सलीशान भाषाएं"
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
+msgstr "रोमांस (अन्य)"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "समारिà¤\9fन à¤\85रामिà¤\95"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "रà¥\87à¤\87तà¥\8b-रà¥\8bमाà¤\82स"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "सामà¥\80 à¤­à¤¾à¤·à¤¾à¤\8fà¤\82 (à¤\85नà¥\8dय)"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "रà¥\8bमानà¥\80"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "समà¥\8bà¤\86"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "रà¥\8bमानियाà¤\88"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "सामà¥\8bन"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "रà¥\82à¤\82डà¥\80"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "सà¥\88न à¤®à¤¾à¤°à¤¿à¤¨à¥\8b"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "रà¥\82सà¥\80"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3576,41 +3653,61 @@ msgstr "संदावी"
 msgid "Sango"
 msgstr "सांगो"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "याकूत"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "दक्षिणी अमेरिकी भारतीय (अन्य)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "सलीशान भाषाएं"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "समारिटन अरामिक"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "संस्कृत"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "ससाक"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "संथाली"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "साओ टोम और प्रिंसीप"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "सार्डीनियाई"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "ससाक"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "सर्बियाई"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "सà¤\89दà¥\80 à¤\85रब"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "सिसिलियाà¤\88"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "स्काट्स"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "क्रोएशियाई"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3621,363 +3718,186 @@ msgstr "सेलकप"
 msgid "Semitic (Other)"
 msgstr "सेमिटिक (अन्य)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "सेनेगल"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "सर्बियाई"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "सर्बियाई"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "सेरेर"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-#, fuzzy
-msgid "Service plugin does not support changing an attribute."
-msgstr "संसाधन प्रकार वीएआर1 परिवर्तन दर्शाएं विशेषता को सहयोग नहीं करता"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "आइरिश, पुरानी (900 तक)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "सà¥\87शà¥\87लà¥\8dस"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "सà¤\82à¤\95à¥\87त à¤­à¤¾à¤·à¤¾à¤\8fà¤\82"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "शान"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "शोना"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "सिचुआन यी"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "सिसिलियाई"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "सिडामो"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "सिएरा लिओन"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "संकेत भाषाएं"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "%s %s नहीं मिला"
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr "सिंहल"
 
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "%s %s नहीं मिला"
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+msgid "Siouan Languages"
+msgstr "सिओअन भाषाएं"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "%s %s नहीं मिला"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "चीनी-तिब्बती (अन्य)"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "%s %s नहीं मिला"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
+msgstr "स्लाव (अन्य)"
 
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "स्लोवाक"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "स्लोवेनियाई"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "सिà¤\95सिà¤\95ा"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "दà¤\95à¥\8dषिणà¥\80 à¤¸à¤¾à¤®à¥\80"
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "सिà¤\82धी"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "à¤\89तà¥\8dतरà¥\80 à¤¸à¤¾à¤®ी"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "सिà¤\82à¤\97ापà¥\81र"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "सामà¥\80 à¤­à¤¾à¤·à¤¾à¤\8fà¤\82 (à¤\85नà¥\8dय)"
 
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
-msgstr "सिà¤\82हल"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "लà¥\82लà¥\87 à¤¸à¤¾à¤®à¥\80"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "à¤\9aà¥\80नà¥\80-तिबà¥\8dबतà¥\80 (à¤\85नà¥\8dय)"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "à¤\87नारà¥\80 à¤¸à¤¾à¤®à¥\80"
 
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-msgid "Siouan Languages"
-msgstr "सिà¤\93à¤\85न à¤­à¤¾à¤·à¤¾à¤\8fà¤\82"
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "सामà¥\8bन"
 
 #. language code: sms
 #: zypp/LanguageCode.cc:973
 msgid "Skolt Sami"
 msgstr "सकोल्त सामी"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "स्लेव (अथापास्कन)"
-
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr "स्लाव (अन्य)"
-
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "स्लोवाक"
-
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "स्लोवाकिया"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "शोना"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "सà¥\8dलà¥\8bविनिया"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "सिà¤\82धà¥\80"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "सà¥\8dलà¥\8bवà¥\87नियाà¤\88"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "सà¥\8bनिà¤\82à¤\95à¥\80"
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "सोगदिया"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "सोलोमन आइलैंड"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "सोमाली"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "सोमालिया"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "सोंघाई"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "सोनिंकी"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "सोर्बिअन भाषाएं"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "सोथो, दक्षिणी"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "दक्षिण अफ्रीका"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "दक्षिणी अमेरिकी भारतीय (अन्य)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "दक्षिणी जॉर्जिया और साउथ सैंडविच आइलैंड्स"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "दक्षिणी कोरिया"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "दक्षिणी अल्ताई"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "दक्षिणी सामी"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "स्पेन"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "स्पेनी"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "शà¥\8dरà¥\80लà¤\82à¤\95ा"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "सारà¥\8dडà¥\80नियाà¤\88"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "सà¥\82डान"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "सà¥\87रà¥\87र"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr ""
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "निलो-सहारन (अन्य)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "स्वाति"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "सुकूमा"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "सुमेरियाई"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "सुंडानी"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "सूरीनाम"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "सुसु"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "सà¥\8dवालबारà¥\8dड à¤\94र à¤\9cà¥\87न à¤®à¤¾à¤¯à¥\87न"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "सà¥\81मà¥\87रियाà¤\88"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "स्वाहिली"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "स्वाति"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "स्वाजिलैंड"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "स्वीडेन"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "स्वीडिश"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "स्विट्ज़रलैंड"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "सीरिया"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "सीरियाई"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "टॅगलॉग"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3988,36 +3908,11 @@ msgstr "ताहितियन"
 msgid "Tai (Other)"
 msgstr "ताई (अन्य)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "ताइवान"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "ताज़िक"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "तजाकिस्तान"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "तमाशेक"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "तमिल"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "तंजानिया"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4028,6 +3923,11 @@ msgstr "तातार"
 msgid "Telugu"
 msgstr "तेलगू"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "तिम्ने"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4038,33 +3938,20 @@ msgstr "तेरेनो"
 msgid "Tetum"
 msgstr "तेतम"
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr "थाई"
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "थाईलैंड"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "ताज़िक"
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "टॅगलॉग"
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-#, fuzzy
-msgid "This request will break your system!"
-msgstr "अनुरोध पहले से ही मौजूद है।"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "थाई"
 
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
@@ -4081,46 +3968,25 @@ msgstr "तिगरे"
 msgid "Tigrinya"
 msgstr "तिग्रिन्या"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "तिम्ने"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "तीव"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "क्लिंगों"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "त्लिंगित"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "टोगो"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "तोक पिसिन"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "तोकेलाउ"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "टोंगा"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "तमाशेक"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4132,103 +3998,66 @@ msgstr "तोंगा (न्यासा)"
 msgid "Tonga (Tonga Islands)"
 msgstr "तोंगा (तोंगा आइलैंड्स)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "त्रिनिदाद और टोबागो"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "तोक पिसिन"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "त्सीमसियाई"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "त्सवाना"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "त्सोंगा"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "तà¥\8dसवाना"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "तà¥\81रà¥\8dà¤\95मानà¥\80"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "तुमबुका"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "ट्यूनेशिया"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "तुपी भाषाएं"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "टर्की"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "तुर्कीश"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "तुर्कीश, ऑट्टोमन (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "तुर्कमानी"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "तुर्कमेनिस्तान"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "तुर्क और कैकस आइलैंड"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "अल्टाइक (अन्य)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "तुवालू"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "त्वी"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "तुविनियाई"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "त्वी"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "उदमर्त"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "उगांडा"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4239,11 +4068,6 @@ msgstr "उगारिटिक"
 msgid "Uighur"
 msgstr "उइघुर"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "उक्रेन"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4254,747 +4078,911 @@ msgstr "उक्रेनी"
 msgid "Umbundu"
 msgstr "उंबुंदु"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Url ऑब्जेक्ट क्लोन करने में अक्षम"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "अनिर्धारित"
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "उर्दू"
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "उज़्बेक"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "वाइ"
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "वेंदा"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "वियतनामी"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "वोलापुक"
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "वोटिक"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "वाकाशान भाषाएं"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "वलामो"
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "वरे"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "वाशो"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "वेल्श"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "सोर्बिअन भाषाएं"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "वलून"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "वोलोफ"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "कल्मीक"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "क्होसा"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "याओ"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "यापी"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "यिद्दिश"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "योरूबा"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "यूपिक भाषाएं"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "ज़ापोटेक"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "ज़ेनागा"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "dbus कनेक्शन सृजित करने में अक्षम"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "झुआंग"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "HAL संदर्भ को आरंभ करने में अक्षम -- hald नहीं रन कर रहा?"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "ज़ेंदे"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Url अवयवों को पार्ज करने में अक्षम"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "जुलु"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "à¤\85निरà¥\8dधारित"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "à¤\9c़à¥\81नà¥\80"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "संयुक्त अरब अमीरात"
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "यूनाइटेड किंगडम"
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "%s %s नहीं मिला"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "संयुक्त राज्य"
+#: zypp/repo/RepoProvideFile.cc:259
+#, fuzzy, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "%s से %s प्रदान नहीं कर सकता"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "सà¤\82यà¥\81à¤\95à¥\8dत à¤°à¤¾à¤\9cà¥\8dय à¤\95à¥\87 à¤\9bà¥\8bà¤\9fà¥\87 à¤¦à¥\82रसà¥\8dथ à¤¦à¥\8dवà¥\80प"
+#: zypp/repo/RepoProvideFile.cc:265
+#, fuzzy
+msgid "No url in repository."
+msgstr "à¤\95à¥\8bष à¤®à¥\87à¤\82 à¤«à¤¾à¤\87ल %1 à¤¨à¤¹à¥\80à¤\82 à¤ªà¥\8dरापà¥\8dत à¤¹à¥\81à¤\88।"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "अज्ञात देश :"
+#: zypp/repo/RepoException.cc:129
+#, fuzzy
+msgid "Service plugin does not support changing an attribute."
+msgstr "संसाधन प्रकार वीएआर1 परिवर्तन दर्शाएं विशेषता को सहयोग नहीं करता"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "फ्लोपी डिस्क पढ़ने में त्रुटि।"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"पैकेज %s ने एकीकरण जांच को नाकाम किया। क्या आप इसकी डाउनलोडिंग का प्रयास फिर से करना "
+"चाहते हैं?"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "अज्ञात भाषा : "
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
 
-#: zypp/base/StrMatcher.cc:152
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "अनंजान"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
+"पैकेज %s ने एकीकरण जांच को नाकाम किया। क्या आप इसकी डाउनलोडिंग का प्रयास फिर से करना "
+"चाहते हैं?"
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm जांच नाकाम रही।"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr ""
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm नाकाम रहा।"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/solver/detail/SATResolver.cc:975
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:979
 #, fuzzy, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "अमान्य URL स्कीम '%1'"
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "ऊपरी सोर्बियाई"
-
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "उर्दू"
-
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Url स्कीम किसी %s को अनुमति नहीं देती है"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Url स्कीम किसी होस्ट अवयव को अनुमति नहीं देती है "
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Url स्कीम किसी पासवर्ड को अनुमति नहीं देती है"
+msgid "%s has inferior architecture"
+msgstr "%s ही %s प्रदान करता है, लेकिन इसके पास कोई और स्थापत्य है।"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Url स्कीम किसी पोर्ट को अनुमति नहीं देती है "
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "पैकेजों को असंस्थापित करने का कमांड"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Url स्कीम किसी उपयोगकर्ता नाम को अनुमति नहीं देती है"
+#: zypp/solver/detail/SATResolver.cc:986
+#, fuzzy
+msgid "conflicting requests"
+msgstr "के लिए कनेक्शन आवेदन : "
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Url स्कीम एक आवश्यक अवयव है"
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "निर्भरता समस्याओं के कारण %s का संस्थापन नहीं कर सकता"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Url स्कीम को एक होस्ट अवयव की आवश्यकता है"
+#: zypp/solver/detail/SATResolver.cc:992
+#, fuzzy, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "कोई नहीं %s प्रदान करता"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Url स्कीम को पथ नाम की आवश्यकता है"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "à¤\89रà¥\81à¤\97à¥\8dवà¥\87"
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "पà¥\8dरमाण à¤ªà¤¤à¥\8dर %1 à¤®à¥\8cà¤\9cà¥\82द à¤¨à¤¹à¥\80à¤\82 à¤¹à¥\88।"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "उज़्बेक"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "उज़बेकिस्तान"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s लॉक हो गया है और इसे असंस्थापित नहीं किया जा सकता।"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "वाà¤\87"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "à¤\87à¤\82सà¥\8dà¤\9fाल à¤¨à¤¹à¥\80à¤\82 à¤¹à¥\81à¤\86"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1012
+#, fuzzy, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s को %s की आवश्यकता है"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "वनुआतू"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "%s का संस्थापन नहीं कर सकता"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "वेंदा"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s का %s से टकराव है "
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "वेनेजुएला"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, fuzzy, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s को %s पुराना कर देता है"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "वियतनाम"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s को %s पुराना कर देता है"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "वियतनामी"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s का %s से टकराव है "
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "वर्जिन आइलैंड, यू.एस."
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
+#: zypp/solver/detail/SATResolver.cc:1070
+#, fuzzy
+msgid "deleted providers: "
+msgstr "कोई नहीं %s प्रदान करता"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+#, fuzzy
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
+"\n"
+"uninstallable providers: "
+msgstr "%s का कोई संस्थापनयोग्य प्रदाता नहीं है"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "वोलापुक"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "%s का कोई संस्थापनयोग्य प्रदाता नहीं है"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "वोटिक"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "वाकाशान भाषाएं"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "%s संस्थापित न करें"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "वलामो"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "%s रखें"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "वालिस और फ्यूतूना"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "%s संस्थापित न करें"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "वलून"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+#, fuzzy
+msgid "This request will break your system!"
+msgstr "अनुरोध पहले से ही मौजूद है।"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "वरे"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "वाशो"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, fuzzy, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "%s का कोई संस्थापनयोग्य प्रदाता नहीं है"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "वà¥\87लà¥\8dश"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "सà¤\82बà¤\82धित à¤°à¤¿à¤\9cà¥\89लà¥\8dवà¥\87बल à¤\95à¥\8b à¤¸à¤\82सà¥\8dथापित à¤¯à¤¾ à¤®à¤¿à¤\9fाà¤\8fà¤\82 à¤¨à¤¹à¥\80à¤\82"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "पश्चिमी सहारा"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "वोलोफ"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, fuzzy, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s ही %s प्रदान करता है, लेकिन इसके पास कोई और स्थापत्य है।"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "क्होसा"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, fuzzy, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "%s को संस्थापित करें यद्यपि यह स्थापत्य को बदल देगा"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "याकूत"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%s को %s पुराना कर देता है"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "याओ"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "यापी"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, fuzzy, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "%s से %s तक अपडेट कर रहा है"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "यमन"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "यिद्दिश"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "योरूबा"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "यà¥\82पिà¤\95 à¤­à¤¾à¤·à¤¾à¤\8fà¤\82"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "à¤\85धिषà¥\8dठापन"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "जांबिया"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, fuzzy, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "सिर्फ यहां पर इस आवश्यकता की अनदेखी कर दें"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "à¤\9c़à¥\87à¤\82दà¥\87"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "सिरà¥\8dफ à¤¯à¤¹à¤¾à¤\82 à¤ªà¤° à¤\87स à¤\86वशà¥\8dयà¤\95ता à¤\95à¥\80 à¤\85नदà¥\87à¤\96à¥\80 à¤\95र à¤¦à¥\87à¤\82"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "ज़ापोटेक"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "ज़ेनागा"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "à¤\9dà¥\81à¤\86à¤\82à¤\97"
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "फाà¤\87ल %1 à¤\95à¥\8b à¤¨à¤¹à¥\80à¤\82 à¤\96à¥\8bल à¤¸à¤\95ता à¤¹à¥\88।"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "जिम्बाबवे"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "इतिहास:"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "à¤\9cà¥\81लà¥\81"
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "à¤\85नà¤\82à¤\9cान"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "ज़ुनी"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm जांच नाकाम रही।"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm नाकाम रहा।"
+#: zypp/base/StrMatcher.cc:158
+#, fuzzy, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "अमान्य Url स्कीम '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "सिर्फ यहां पर इस आवश्यकता की अनदेखी कर दें"
+msgid "Failed to mount %s on %s"
+msgstr "%s - %s को खोलने में अक्षम\n"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:41
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "%s का संस्थापन नहीं कर सकता"
+msgid "Failed to unmount %s"
+msgstr "\"%s\" मोड्यूल लोड करने में असफल।"
 
-#: zypp/solver/detail/SATResolver.cc:986
-#, fuzzy
-msgid "conflicting requests"
-msgstr "के लिए कनेक्शन आवेदन : "
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "बैकअप %s सृजित"
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "अधिष्ठापन"
-
-#: zypp/solver/detail/SATResolver.cc:1070
-#, fuzzy
-msgid "deleted providers: "
-msgstr "कोई नहीं %s प्रदान करता"
+msgid "File '%s' not found on medium '%s'"
+msgstr "कोष में फाइल %1 नहीं प्राप्त हुई।"
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/media/MediaException.cc:67
 #, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "सà¤\82बà¤\82धित à¤°à¤¿à¤\9cà¥\89लà¥\8dवà¥\87बल à¤\95à¥\8b à¤¸à¤\82सà¥\8dथापित à¤¯à¤¾ à¤®à¤¿à¤\9fाà¤\8fà¤\82 à¤¨à¤¹à¥\80à¤\82"
+msgid "Cannot write file '%s'."
+msgstr "फाà¤\87ल %1 à¤ªà¤° à¤¨à¤¹à¥\80à¤\82 à¤²à¤¿à¤\96 à¤¸à¤\95ता à¤¹à¥\88। "
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, fuzzy, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "%s का कोई संस्थापनयोग्य प्रदाता नहीं है"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "%s संस्थापित न करें"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr ""
+
+#: zypp/media/MediaException.cc:106
 #, fuzzy, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "%s से %s तक अपडेट कर रहा है"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "%1 एक डायरेक्टरी नहीं है।"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:125
 #, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "सिरà¥\8dफ à¤¯à¤¹à¤¾à¤\82 à¤ªà¤° à¤\87स à¤\86वशà¥\8dयà¤\95ता à¤\95à¥\80 à¤\85नदà¥\87à¤\96à¥\80 à¤\95र à¤¦à¥\87à¤\82"
+msgid "Empty host name in URI"
+msgstr "रिà¤\95à¥\8dत CA à¤¨à¤¾à¤®à¥¤"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:140
 #, fuzzy, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "%s को संस्थापित करें यद्यपि यह स्थापत्य को बदल देगा"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "अमान्य URL स्कीम '%1'"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr ""
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s को %s पुराना कर देता है"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "%s रखें"
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
+
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s ही %s प्रदान करता है, लेकिन इसके पास कोई और स्थापत्य है।"
+msgid "Cannot eject media '%s'"
+msgstr "डेस्कटॉप आइटम '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:199
 #, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%s को %s पुराना कर देता है"
+msgid "Permission to access '%s' denied."
+msgstr "अनुमति अस्वीकृत"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: libhal संदर्भ को सृजित नहीं कर सकता"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection : dbus कनेक्शन को सेट नहीं कर सकता"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, fuzzy, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s को %s की आवश्यकता है"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, fuzzy, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "कोई नहीं %s प्रदान करता"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "प्रमाण पत्र %1 मौजूद नहीं है।"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "पैकेजों को असंस्थापित करने का कमांड"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "%s संस्थापित न करें"
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "फाइल को सृजित नहीं कर सकता है।"
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, fuzzy, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm ने %s के  रूप में %s सृजित किया लेकिन अंतर निर्धारित करना असंभव था"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
-"rpm ने %s के  रूप में %s सृजित किया।\n"
-"यहां अंतर की पहली 25 पंक्तियां हैं :\n"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, fuzzy, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm ने %s के  रूप में %s सहेजा लेकिन अंतर निर्धारित करना असंभव था "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
-"rpm ने %s के  रूप में %s सहेजा।\n"
-"यहां अंतर की पहली 25 पंक्तियां हैं :\n"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s का %s से टकराव है "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
 #, fuzzy
-msgid "some dependency problem"
-msgstr "निर्भरता समस्याओं के कारण %s का संस्थापन नहीं कर सकता"
+#~ msgid "do not keep %s installed"
+#~ msgstr "इंस्टाल नहीं हुआ"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "uninstallable providers: "
-msgstr "%s का कोई संस्थापनयोग्य प्रदाता नहीं है"
-
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "अन्जान"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "%s - %s को खोलने में अक्षम\n"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr ""
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "सर्बिया और मोंटेनेग्रो"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "अज्ञात सूची विकल्प"
 
 #, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "निर्भरता हल नहीं की जा सकती"
+
 #~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "à¤\95à¥\8bà¤\88 à¤¸à¥\8dरà¥\8bत à¤\89पलबà¥\8dध à¤¨à¤¹à¥\80à¤\82 à¤¹à¥\88 à¤\9cà¥\8b à¤\87स à¤\86वशà¥\8dयà¤\95ता à¤\95à¥\8b à¤¸à¤®à¤°à¥\8dथन à¤¦à¥\87।"
+#~ "फाइल %s में कोई चेकसम नहीं है।\n"
+#~ "फिर à¤­à¥\80 à¤«à¤¾à¤\87ल à¤\95ा à¤ªà¥\8dरयà¥\8bà¤\97 à¤\95रà¥\87à¤\82?"
 
 #~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "ये रिजॉल्वेबल्स सिस्टम से मिटा दिए जाएंगे।"
-
-#~ msgid " Error!"
-#~ msgstr "त्रुटि!"
-
-#~ msgid " Important!"
-#~ msgstr "महत्वपूर्ण!"
-
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "%s को छूटी हुई निर्भरताओं के कारण संस्थापित नहीं किया जा सका"
-
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "%s का अन्य रिजॉल्वेबल्स से टकराव है"
+#~ "फाइल %s निम्नलिखित कुंजी के साथ एकीकरण जांच में नाकाम रही :\n"
+#~ "%s|%s|%s\n"
+#~ "फिर भी फाइल का प्रयोग करें?"
 
 #~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s का इनसे टकराव है :\n"
-#~ "%s"
-
-#~ msgid "%s depended on %s"
-#~ msgstr "%s निर्भर है %s पर"
-
-#~ msgid "%s depends on %s"
-#~ msgstr "%s पर %s निर्भर करता है "
-
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s अन्य रिजॉल्वेबल्स पर निर्भर करता है"
-
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s इन पर निर्भर करता है :%s"
-
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "%s की निर्भरताएं %s पूरी करता है लेकिन इसे आपके सिस्टम पर रखा जाएगा"
-
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "%s की निर्भरताएं %s पूरी करता है लेकिन इसे असंस्थापित कर दिया जाएगा"
-
-#~ msgid "%s has missing dependencies"
-#~ msgstr "%s की छूटी हुई निर्भरताएं हैं"
-
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "%s के पास ऐसी आवश्यकताएं हैं जो संतुष्ट नहीं हुई हैं"
-
-#~ msgid "%s install failed"
-#~ msgstr "%s संस्थापन असफल "
-
-#~ msgid "%s installed ok"
-#~ msgstr "%s संस्थापन ठीक"
-
-#, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s से %s को प्रतिस्थापित किया जाता है"
+#~ "फाइल %s में एक अमान्य चेकसम है।\n"
+#~ "%s की उम्मीद थी, %s मिला\n"
+#~ "फिर भी फाइल का प्रयोग करें?"
 
-#, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s में आवश्यकता %s छूटी हुई है"
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "फाइल %s में एक अमान्य चेकसम %s है।\n"
+#~ "फिर भी फाइल का प्रयोग करें?"
 
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "अन्य रिजॉल्वेबल्स को %s की आवश्यकता है"
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "फाइल %s साइन की हुई नहीं है।\n"
+#~ "फिर भी इसका प्रयोग करें?"
 
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
-#~ msgstr "%s की इनको आवश्यकता है :%s"
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "फाइल %s को एक अज्ञात कुंजी से साइन किया गया है :\n"
+#~ "%s|%s|%s\n"
+#~ "फिर भी फाइल का प्रयोग करें?"
 
-#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
 #~ msgstr ""
-#~ "%s संस्थापित नहीं किया गया है और अनइंस्टाल योग्य के रूप में चिह्नित कर दिया गया है"
+#~ "गैर-भरोसेमंद कुंजी मिली है :\n"
+#~ "%s|%s|%s\n"
+#~ "कुंजी पर भरोसा करें?"
+
+#~ msgid "%s remove failed"
+#~ msgstr "%s स्थानांतरण असफल रहा"
 
 #, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s को %s की आवश्यकता है"
+#~ msgid "Invalid user name or password."
+#~ msgstr "कूटशब्द बदलो"
 
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s से %s को प्रतिस्थापित किया जाता है"
+#~ msgid "rpm output:"
+#~ msgstr "rpm आउटपुट :"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
-#~ msgstr ""
-#~ "संस्थापित हो चुके किसी अन्य रिजॉल्वेबल को %s की आवश्यकता है, अतः यह अनलिंक नहीं किया "
-#~ "जा सकता।"
+#~ msgid "%s install failed"
+#~ msgstr "%s संस्थापन असफल "
+
+#~ msgid "%s installed ok"
+#~ msgstr "%s संस्थापन ठीक"
+
+#~ msgid "%s remove ok"
+#~ msgstr "%s स्थानांतरण ठीक"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
-#~ msgstr ""
-#~ "संस्थापित हो चुके किसी अन्य रिजॉल्वेबल को %s की आवश्यकता है, अतः यह अनलिंक नहीं किया "
-#~ "जा सकता।"
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "यह निर्भरता %s प्रदान करता है लेकिन यह संस्थापित वस्तु केस्थापत्य को बदल देगा"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr ""
-#~ "%s को संस्थापित किया जाना निर्धारित है, लेकिन निर्भरता समस्याओं के कारण यह संभव नहीं "
-#~ "है।"
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "यह निर्भरता %s प्रदान करता है लेकिन यह संस्थापित वस्तु केस्थापत्य को बदल देगा"
 
 #, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s को %s की आवश्यकता है"
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "संबंधित रिजॉल्वेबल को संस्थापित या मिटाएं नहीं"
 
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s को %s की आवश्यकता है"
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "%s संस्थापित होने के तैयार है इसको अनदेखा करें"
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s à¤\85सà¤\82सà¥\8dथापनà¥\80य à¤¹à¥\88 à¤\95à¥\8dयà¥\8bà¤\82à¤\95ि à¤\87सà¤\95ा %s à¤\95à¥\87 à¤¸à¤¾à¤¥ à¤\9fà¤\95राव à¤¹à¥\88"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "%s à¤\95à¥\8b %s à¤®à¥\87à¤\82 à¤¹à¤\9fाà¤\8f à¤\9cानà¥\87 à¤\95à¥\8b à¤\85नदà¥\87à¤\96ा à¤\95रà¥\87à¤\82"
 
-#, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr ""
-#~ "%s पुराना कर देता है %s को। लेकिन %s को मिटाया नहीं जा सकता क्योंकि यह लॉक है।"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "%s के इस टकराव की अनदेखी कर दें"
 
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s अन्य रिजॉल्वेबल्स को पुराना कर देता है"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "सिर्फ यहां पर इस आवश्यकता की अनदेखी कर दें"
 
-#~ msgid "%s part of %s"
-#~ msgstr "%s का %s भाग"
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "%s को संस्थापित करें यद्यपि यह स्थापत्य को बदल देगा"
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s ही %s प्रदान करता है, लेकिन इसे रखा जाना निर्धारित है।"
+#~ msgid "Install missing resolvables"
+#~ msgstr "छूटे रिजॉल्वेबल्स को संस्थापित करें"
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr ""
-#~ "%s ही %s प्रदान करता है, लेकिन इस %s का एक अन्य संस्करण पहले ही संस्थापित है। "
+#~ msgid "Keep resolvables"
+#~ msgstr "रिजॉल्वेबल्स रखें"
 
-#, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s ही %s प्रदान करता है, लेकिन इसके पास कोई और स्थापत्य है।"
+#~ msgid "Unlock these resolvables"
+#~ msgstr "इन रिजॉल्वेबल्स को अनलॉक करें"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s à¤¹à¥\80 %s à¤ªà¥\8dरदान à¤\95रता à¤¹à¥\88, à¤²à¥\87à¤\95िन à¤\87सà¥\87 à¤\85सà¤\82सà¥\8dथापित à¤\95रना à¤¨à¤¿à¤°à¥\8dधारित à¤¹à¥\88।"
+#~ msgid "delete %s"
+#~ msgstr "%s à¤®à¤¿à¤\9fाà¤\8fà¤\82"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s à¤¹à¥\80 %s à¤ªà¥\8dरदान à¤\95रता à¤¹à¥\88, à¤²à¥\87à¤\95िन à¤¯à¤¹ à¤²à¥\89à¤\95 à¤¹à¥\88।"
+#~ msgid "install %s"
+#~ msgstr "%s à¤\95à¥\8b à¤¸à¤\82सà¥\8dथापित à¤\95रà¥\87à¤\82"
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s ही %s प्रदान करता है, लेकिन यह असंस्थापनयोग्य है। अधिक जानकारी के लिए इसे स्वयं "
-#~ "ही संस्थापित करने की कोशिश करें।"
+#~ msgid "unlock %s"
+#~ msgstr "%s को अनलॉक करें"
+
+#~ msgid "unlock all resolvables"
+#~ msgstr "समस्त रिजॉल्वेबल्स को अनलॉक करें"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr "यह निर्भरता %s प्रदान करता है लेकिन यह संस्थापित वस्तु केस्थापत्य को बदल देगा"
+#~ msgid "Can't open solv-file: "
+#~ msgstr "फाइल %1 को नहीं खोल सकता है।"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr "यह निर्भरता %s प्रदान करता है लेकिन यह संस्थापित वस्तु केस्थापत्य को बदल देगा"
+#~ msgid "Error reading solv-file: "
+#~ msgstr "सेक्टर %u पढ़ने में त्रुटि।"
 
-#~ msgid "%s remove failed"
-#~ msgstr "%s स्थानांतरण असफल रहा"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "इस URL के लिए पथ मानक पार्जिंग समर्थित नहीं है"
 
-#~ msgid "%s remove ok"
-#~ msgstr "%s स्थानांतरण ठीक"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "पथ मानक पार्जिंग इस URL के लिए समर्थित नहीं है"
+
+#~ msgid "Software management is already running."
+#~ msgstr "सॉफ्टवेयर प्रबंधन पहले से ही रन कर रहा है।"
+
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s से %s को प्रतिस्थापित किया जाता है"
 
 #~ msgid "%s replaced by %s"
 #~ msgstr "%s से %s को प्रतिस्थापित किया गया"
@@ -5009,69 +4997,56 @@ msgstr ""
 #~ msgid "%s will be installed by the user.\n"
 #~ msgstr "%s को असंस्थापित नहीं किया जाएगा क्योंकि इसकी आवश्यकता अब भी है"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "%s को असंस्थापित नहीं किया जाएगा क्योंकि इसकी आवश्यकता अब भी है"
-
-#~ msgid ", Action: "
-#~ msgstr ", कार्रवाई :"
+#~ msgid "Invalid information"
+#~ msgstr "अमान्य सूचना"
 
-#~ msgid ", Trigger: "
-#~ msgstr ", ट्रिगर :"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "अन्य रिजॉल्वेबल्स को %s की आवश्यकता है"
 
-#, fuzzy
 #~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
-#~ msgstr "%s (%s) पर टकराव के लिए संस्थापित होने वाले %s को हटाए जाने की आवश्यकता है"
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr "%s की इनको आवश्यकता है :%s"
 
-#, fuzzy
-#~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
-#~ msgstr ""
-#~ "%s को संस्थापित नहीं किया जा सकता क्योंकि इसे पहले ही असंस्थापित करने की जरूरत के रूप "
-#~ "में चिन्हित किया गया है"
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "%s का अन्य रिजॉल्वेबल्स से टकराव है"
 
-#, fuzzy
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
+#~ "%s conflicts with:\n"
+#~ "%s"
 #~ msgstr ""
-#~ "%s को संस्थापित नहीं कर सकता, क्योंकि %s को पहले ही संस्थापित करने की जरूरत के रूप में "
-#~ "चिन्हित किया गया है"
-
-#, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "%s को संस्थापित नहीं कर सकता क्योंकि यह इस सिस्टम पर लागू नहीं होता"
-
-#, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "फाइल %1 को नहीं खोल सकता है।"
+#~ "%s का इनसे टकराव है :\n"
+#~ "%s"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "%s à¤\95à¥\87 à¤²à¤¿à¤\8f %s à¤\86वाशà¥\8dयà¤\95ताà¤\8fà¤\82 à¤¸à¤\82तà¥\81षà¥\8dà¤\9f à¤¨à¤¹à¥\80à¤\82 à¤\95र à¤¸à¤\95ता"
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s à¤\85नà¥\8dय à¤°à¤¿à¤\9cà¥\89लà¥\8dवà¥\87बलà¥\8dस à¤\95à¥\8b à¤ªà¥\81राना à¤\95र à¤¦à¥\87ता à¤¹à¥\88"
 
-#~ msgid "Cannot install %s to fulfil the dependencies of %s"
-#~ msgstr "%s की निर्भरताओं को पूरा करने के लिए %s को संस्थापित नहीं कर सकता"
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "ये रिजॉल्वेबल्स सिस्टम से मिटा दिए जाएंगे।"
 
-#, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "%s की निर्भरताओं को पूरा करने के लिए %s को संस्थापित नहीं कर सकता"
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s अन्य रिजॉल्वेबल्स पर निर्भर करता है"
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting"
-#~ msgstr "%s को संस्थापित नहीं कर सकता क्योंकि यह टकराव पैदा करता है"
+#~ msgid "%s depends on %s"
+#~ msgstr "%s पर %s निर्भर करता है "
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "%s का संस्थापन नहीं कर सकता क्योंकि इसका %s के साथ टकराव है"
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s इन पर निर्भर करता है :%s"
 
 #~ msgid "Child of"
 #~ msgstr "की संतति"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "संबंधित रिजॉल्वेबल को संस्थापित या मिटाएं नहीं"
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "कोई स्रोत उपलब्ध नहीं है जो इस आवश्यकता को समर्थन दे।"
 
 #, fuzzy
 #~ msgid ""
@@ -5081,208 +5056,233 @@ msgstr ""
 #~ "इस रिजॉल्यूशन के ऊपर/नीचे वर्णित शेष समस्याएं सभी निर्भरताओं कासमाधान नहीं करेंगी"
 
 #, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "सेक्टर %u पढ़ने में त्रुटि।"
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "%s का संस्थापन नहीं कर सकता क्योंकि इसका %s के साथ टकराव है"
 
-#~ msgid "Establishing %s"
-#~ msgstr "%s को स्थापित कर रहा है"
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr ""
+#~ "%s संस्थापित नहीं किया गया है और अनइंस्टाल योग्य के रूप में चिह्नित कर दिया गया है"
+
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "%s के पास ऐसी आवश्यकताएं हैं जो संतुष्ट नहीं हुई हैं"
+
+#~ msgid "%s has missing dependencies"
+#~ msgstr "%s की छूटी हुई निर्भरताएं हैं"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "%s को छूटी हुई निर्भरताओं के कारण संस्थापित नहीं किया जा सका"
 
 #, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "%s - %s को खोलने में अक्षम\n"
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "%s की निर्भरताएं %s पूरी करता है लेकिन इसे असंस्थापित कर दिया जाएगा"
 
-#~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "फाइल %s में कोई चेकसम नहीं है।\n"
-#~ "फिर भी फाइल का प्रयोग करें?"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "%s की निर्भरताएं %s पूरी करता है लेकिन इसे आपके सिस्टम पर रखा जाएगा"
 
-#~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "फाइल %s निम्नलिखित कुंजी के साथ एकीकरण जांच में नाकाम रही :\n"
-#~ "%s|%s|%s\n"
-#~ "फिर भी फाइल का प्रयोग करें?"
+#~ msgid "No need to install %s"
+#~ msgstr "%s को संस्थापित करने की आवश्यकता नहीं है"
 
-#~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "फाइल %s में एक अमान्य चेकसम है।\n"
-#~ "%s की उम्मीद थी, %s मिला\n"
-#~ "फिर भी फाइल का प्रयोग करें?"
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "%s की निर्भरताओं को पूरा करने के लिए %s को संस्थापित नहीं कर सकता"
 
-#~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "फाइल %s में एक अमान्य चेकसम %s है।\n"
-#~ "फिर भी फाइल का प्रयोग करें?"
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "%s की निर्भरताओं को पूरा करने के लिए %s को संस्थापित नहीं कर सकता"
 
-#~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
-#~ msgstr ""
-#~ "फाइल %s साइन की हुई नहीं है।\n"
-#~ "फिर भी इसका प्रयोग करें?"
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "%s को असंस्थापित नहीं किया जाएगा क्योंकि इसकी आवश्यकता अब भी है"
 
-#~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
 #~ msgstr ""
-#~ "फाइल %s को एक अज्ञात कुंजी से साइन किया गया है :\n"
-#~ "%s|%s|%s\n"
-#~ "फिर भी फाइल का प्रयोग करें?"
-
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "%s संस्थापित होने के तैयार है इसको अनदेखा करें"
+#~ "%s पुराना कर देता है %s को। लेकिन %s को मिटाया नहीं जा सकता क्योंकि यह लॉक है।"
 
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "%s को %s में हटाए जाने को अनदेखा करें"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "%s को संस्थापित नहीं कर सकता क्योंकि यह टकराव पैदा करता है"
 
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "%s à¤\95à¥\87 à¤\87स à¤\9fà¤\95राव à¤\95à¥\80 à¤\85नदà¥\87à¤\96à¥\80 à¤\95र à¤¦à¥\87à¤\82"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s à¤\85सà¤\82सà¥\8dथापनà¥\80य à¤¹à¥\88 à¤\95à¥\8dयà¥\8bà¤\82à¤\95ि à¤\87सà¤\95ा %s à¤\95à¥\87 à¤¸à¤¾à¤¥ à¤\9fà¤\95राव à¤¹à¥\88"
 
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "सिर्फ यहां पर इस आवश्यकता की अनदेखी कर दें"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "%s को अपग्रेड करते समय %s हेतु %s की आवश्यकता के लिए"
 
 #, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "%s à¤\95à¥\8b à¤¸à¤\82सà¥\8dथापित à¤\95रà¥\87à¤\82 à¤¯à¤¦à¥\8dयपि à¤¯à¤¹ à¤¸à¥\8dथापतà¥\8dय à¤\95à¥\8b à¤¬à¤¦à¤² à¤¦à¥\87à¤\97ा"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s à¤®à¥\87à¤\82 à¤\86वशà¥\8dयà¤\95ता %s à¤\9bà¥\82à¤\9fà¥\80 à¤¹à¥\81à¤\88 à¤¹à¥\88"
 
-#~ msgid "Install missing resolvables"
-#~ msgstr "छूटे रिजॉल्वेबल्स को संस्थापित करें"
+#~ msgid ", Action: "
+#~ msgstr ", कार्रवाई :"
 
-#~ msgid "Installing %s"
-#~ msgstr "%s को संस्थापित कर रहा है"
+#~ msgid ", Trigger: "
+#~ msgstr ", ट्रिगर :"
 
-#~ msgid "Invalid information"
-#~ msgstr "à¤\85मानà¥\8dय à¤¸à¥\82à¤\9aना"
+#~ msgid "package"
+#~ msgstr "पà¥\88à¤\95à¥\87à¤\9c"
 
-#, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "कूटशब्द बदलो"
+#~ msgid "selection"
+#~ msgstr "चयन"
 
-#~ msgid "Keep resolvables"
-#~ msgstr "रिà¤\9cà¥\89लà¥\8dवà¥\87बलà¥\8dस à¤°à¤\96à¥\87à¤\82"
+#~ msgid "pattern"
+#~ msgstr "पà¥\88à¤\9fरà¥\8dन"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "%s पर टकराव होने के कारण %s को असंस्थापनीय के रूप में चिन्हित किया जा रहा है"
+#~ msgid "product"
+#~ msgstr "उत्पाद"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "रिà¤\9cà¥\89लà¥\8dवà¥\87बल %s à¤\95à¥\8b à¤\85नà¤\87à¤\82सà¥\8dà¤\9fà¥\89लà¥\87बल à¤\95à¥\87 à¤°à¥\82प à¤®à¥\87à¤\82 à¤\9aिनà¥\8dहित à¤\95रना"
+#~ msgid "patch"
+#~ msgstr "पà¥\88à¤\9a"
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "à¤\87स à¤°à¤¿à¤\9cà¥\89लà¥\8dयà¥\82शन à¤ªà¥\8dरयास à¤\95à¥\8b à¤\85मानà¥\8dय à¤\95à¥\87 à¤°à¥\82प à¤®à¥\87à¤\82 à¤\9aिनà¥\8dहित à¤\95रना"
+#~ msgid "script"
+#~ msgstr "सà¥\8dà¤\95à¥\8dरिपà¥\8dà¤\9f"
 
-#~ msgid "No need to install %s"
-#~ msgstr "%s को संस्थापित करने की आवश्यकता नहीं है"
+#~ msgid "message"
+#~ msgstr "संदेश"
 
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "à¤\87स URL à¤\95à¥\87 à¤²à¤¿à¤\8f à¤ªà¤¥ à¤®à¤¾à¤¨à¤\95 à¤ªà¤¾à¤°à¥\8dà¤\9cिà¤\82à¤\97 à¤¸à¤®à¤°à¥\8dथित à¤¨à¤¹à¥\80à¤\82 à¤¹à¥\88"
+#~ msgid "atom"
+#~ msgstr "परमाणà¥\81"
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "पथ à¤®à¤¾à¤¨à¤\95 à¤ªà¤¾à¤°à¥\8dà¤\9cिà¤\82à¤\97 à¤\87स URL à¤\95à¥\87 à¤²à¤¿à¤\8f à¤¸à¤®à¤°à¥\8dथित à¤¨à¤¹à¥\80à¤\82 à¤¹à¥\88"
+#~ msgid "system"
+#~ msgstr "सिसà¥\8dà¤\9fम"
 
 #~ msgid "Resolvable"
 #~ msgstr "रिजॉल्वेबल"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "सरà¥\8dबिया à¤\94र à¤®à¥\8bà¤\82à¤\9fà¥\87नà¥\87à¤\97à¥\8dरà¥\8b"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "à¤\87स à¤°à¤¿à¤\9cà¥\89लà¥\8dयà¥\82शन à¤ªà¥\8dरयास à¤\95à¥\8b à¤\85मानà¥\8dय à¤\95à¥\87 à¤°à¥\82प à¤®à¥\87à¤\82 à¤\9aिनà¥\8dहित à¤\95रना"
 
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "%s को छोड़ दें : पहले ही संस्थापित हो गया है"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "रिजॉल्वेबल %s को अनइंस्टॉलेबल के रूप में चिन्हित करना"
 
-#~ msgid "Software management is already running."
-#~ msgstr "सॉफ्टवेयर प्रबंधन पहले से ही रन कर रहा है।"
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "%s को संस्थापित किया जाना निर्धारित है, लेकिन निर्भरता समस्याओं के कारण यह संभव नहीं "
+#~ "है।"
 
 #, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "%s का कोई वैकल्पिक संस्थापित प्रदाता नहीं है"
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr ""
+#~ "%s को संस्थापित नहीं किया जा सकता क्योंकि इसे पहले ही असंस्थापित करने की जरूरत के रूप "
+#~ "में चिन्हित किया गया है"
+
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "%s को संस्थापित नहीं कर सकता क्योंकि यह इस सिस्टम पर लागू नहीं होता"
+
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr ""
+#~ "%s को संस्थापित नहीं कर सकता, क्योंकि %s को पहले ही संस्थापित करने की जरूरत के रूप में "
+#~ "चिन्हित किया गया है"
 
 #~ msgid "This would invalidate %s."
 #~ msgstr "यह %s को अमान्य कर देगा।"
 
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "अज्ञात सूची विकल्प"
+#~ msgid "Establishing %s"
+#~ msgstr "%s को स्थापित कर रहा है"
 
-#~ msgid "Unlock these resolvables"
-#~ msgstr "इन रिजॉल्वेबल्स को अनलॉक करें"
+#~ msgid "Installing %s"
+#~ msgstr "%s को संस्थापित कर रहा है"
 
-#~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
-#~ msgstr ""
-#~ "गैर-भरोसेमंद कुंजी मिली है :\n"
-#~ "%s|%s|%s\n"
-#~ "कुंजी पर भरोसा करें?"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "%s को छोड़ दें : पहले ही संस्थापित हो गया है"
+
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "%s का कोई वैकल्पिक संस्थापित प्रदाता नहीं है"
+
+#~ msgid "for %s"
+#~ msgstr "%s के लिए"
 
 #, fuzzy
 #~ msgid "Upgrading to %s to avoid removing %s is not possible."
 #~ msgstr "%s को हटाने से बचाने के लिए %s को अपग्रेड करना संभव नहीं।"
 
-#~ msgid "atom"
-#~ msgstr "परमाणु"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s ही %s प्रदान करता है, लेकिन इसे असंस्थापित करना निर्धारित है।"
 
-#~ msgid "delete %s"
-#~ msgstr "%s मिटाएं"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr ""
+#~ "%s ही %s प्रदान करता है, लेकिन इस %s का एक अन्य संस्करण पहले ही संस्थापित है। "
 
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "इंस्टाल नहीं हुआ"
+#~ msgid ""
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
+#~ msgstr ""
+#~ "%s ही %s प्रदान करता है, लेकिन यह असंस्थापनयोग्य है। अधिक जानकारी के लिए इसे स्वयं "
+#~ "ही संस्थापित करने की कोशिश करें।"
 
-#~ msgid "for %s"
-#~ msgstr "%s à¤\95à¥\87 à¤²à¤¿à¤\8f"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s à¤¹à¥\80 %s à¤ªà¥\8dरदान à¤\95रता à¤¹à¥\88, à¤²à¥\87à¤\95िन à¤¯à¤¹ à¤²à¥\89à¤\95 à¤¹à¥\88।"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "%s à¤\95à¥\8b à¤\85पà¤\97à¥\8dरà¥\87ड à¤\95रतà¥\87 à¤¸à¤®à¤¯ %s à¤¹à¥\87तà¥\81 %s à¤\95à¥\80 à¤\86वशà¥\8dयà¤\95ता à¤\95à¥\87 à¤²à¤¿à¤\8f"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s à¤¹à¥\80 %s à¤ªà¥\8dरदान à¤\95रता à¤¹à¥\88, à¤²à¥\87à¤\95िन à¤\87सà¥\87 à¤°à¤\96ा à¤\9cाना à¤¨à¤¿à¤°à¥\8dधारित à¤¹à¥\88।"
 
-#~ msgid "from %s"
-#~ msgstr "%s से"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s ही %s प्रदान करता है, लेकिन इसके पास कोई और स्थापत्य है।"
+
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "%s के लिए %s आवाश्यकताएं संतुष्ट नहीं कर सकता"
 
 #, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "निर्भरता हल नहीं की जा सकती"
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "संस्थापित हो चुके किसी अन्य रिजॉल्वेबल को %s की आवश्यकता है, अतः यह अनलिंक नहीं किया "
+#~ "जा सकता।"
 
-#~ msgid "install %s"
-#~ msgstr "%s को संस्थापित करें"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "संस्थापित हो चुके किसी अन्य रिजॉल्वेबल को %s की आवश्यकता है, अतः यह अनलिंक नहीं किया "
+#~ "जा सकता।"
 
-#~ msgid "message"
-#~ msgstr "संदेश"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "%s (%s) पर टकराव के लिए संस्थापित होने वाले %s को हटाए जाने की आवश्यकता है"
 
-#~ msgid "package"
-#~ msgstr "पैकेज"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "%s पर टकराव होने के कारण %s को असंस्थापनीय के रूप में चिन्हित किया जा रहा है"
 
-#~ msgid "patch"
-#~ msgstr "पैच"
+#~ msgid "from %s"
+#~ msgstr "%s से"
 
-#~ msgid "pattern"
-#~ msgstr "पà¥\88à¤\9fरà¥\8dन"
+#~ msgid " Error!"
+#~ msgstr "तà¥\8dरà¥\81à¤\9fि!"
 
-#~ msgid "product"
-#~ msgstr "à¤\89तà¥\8dपाद"
+#~ msgid " Important!"
+#~ msgstr "महतà¥\8dवपà¥\82रà¥\8dण!"
 
-#~ msgid "rpm output:"
-#~ msgstr "rpm आउटपुट :"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s निर्भर है %s पर"
 
-#~ msgid "script"
-#~ msgstr "स्क्रिप्ट"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s को %s की आवश्यकता है"
 
-#~ msgid "selection"
-#~ msgstr "चयन"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s को %s की आवश्यकता है"
 
-#~ msgid "system"
-#~ msgstr "सिस्टम"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s से %s को प्रतिस्थापित किया जाता है"
 
-#~ msgid "unlock %s"
-#~ msgstr "%s को अनलॉक करें"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s को %s की आवश्यकता है"
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "समस्त रिजॉल्वेबल्स को अनलॉक करें"
+#~ msgid "%s part of %s"
+#~ msgstr "%s का %s भाग"
index 9c61bd5..f8c22eb 100644 (file)
--- a/po/hr.po
+++ b/po/hr.po
@@ -22,16 +22,93 @@ msgstr ""
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Lokalize 1.0\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+#, fuzzy
+msgid "Hal Exception"
+msgstr "Šifriranje"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr ""
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr ""
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr ""
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr ""
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Pruža"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Zahtijeva"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Sukobi"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Zastarjelo"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Preporuča"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Predlaže"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Poboljšava"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Dopunjava"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -42,10 +119,6 @@ msgstr "izvršeno"
 msgid " execution failed"
 msgstr "izvršavanje nije uspjelo"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -54,93 +127,117 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/target/hal/HalContext.cc:117
+#, fuzzy
+msgid "HalContext not connected"
+msgstr "veza nije uspostavljena"
+
+#: zypp/target/hal/HalContext.cc:127
+#, fuzzy
+msgid "HalDrive not initialized"
+msgstr "Inicijalizacija mete nije uspjela:"
+
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/target/hal/HalContext.cc:229
+#, fuzzy
+msgid "Unable to create dbus connection"
+msgstr "Ne mogu napraviti datoteku rezervne kopije %1."
+
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(ISTEKLO)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(ne istječe)"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(istječe unutar 24 sata)"
-msgstr[1] "(istječe unutar 24 sata)"
-msgstr[2] "(istječe unutar 24 sata)"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(istječe unutar 24 sata)"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr ""
 
-# AZ
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
 #. report additional rpm output in finish
@@ -149,449 +246,495 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
 msgstr ""
 
-# AF
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistan"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr ""
-
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikkans"
-
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
 msgstr ""
 
-# KY
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
 msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albanija"
-
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albanski"
-
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Alžir"
-
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
 msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
 msgstr ""
 
-# AS
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Američka Samoa"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Alias repozitorija ne može započeti s točkom."
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
 msgstr ""
 
-# AD
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andora"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
 
-# AO
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-# AI
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Ne mogu napraviti %s: %m\n"
 
-# AQ
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antartika"
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "Ne mogu napraviti datoteku."
 
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua i Barbuda"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
 msgstr ""
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Arapski"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
 msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
 msgstr ""
 
-# AZ
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr ""
 
-# AM
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenija"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
 
-# AM
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armenijski"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Ne mogu obrisati '%s'"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
 msgstr ""
 
-# AW
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
 msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
 msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
 msgstr ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australija"
-
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr ""
-
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austrija"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr ""
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "URL shema je obavezna komponenta"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:830
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
+msgid "Invalid Url scheme '%s'"
+msgstr "Neispravna Url shema '%s'"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
 msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
 msgstr ""
 
-# AZ
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbedžan"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr ""
 
-# AZ
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
 msgstr ""
 
-#: zypp/media/MediaException.cc:47
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Bad file name: %s"
+msgid "Invalid port component '%s'"
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
 msgstr ""
 
-# BS
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahami"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Relativna putanja nije dozvoljena ako postoji autoritet"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
 msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
 msgstr ""
 
-# BD
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladeš"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Ne mogu obrisati '%s'"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baskijski"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
 msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Bjelorusija"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(ne istječe)"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Bjeloruski"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(ISTEKLO)"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgija"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(istječe unutar 24 sata)"
 
-# BZ
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(istječe unutar 24 sata)"
+msgstr[1] "(istječe unutar 24 sata)"
+msgstr[2] "(istječe unutar 24 sata)"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "nepoznato"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "nije podržano"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
 msgstr ""
 
-# BJ
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
 msgstr ""
 
-# BJ
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "neispravno"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
 msgstr ""
 
-# BT
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Butan"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
 msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
 msgstr ""
 
-# BJ
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivija"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr ""
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Nema koda"
+
+# AD
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andora"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Ujedinjeni arapski emirati"
+
+# AF
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistan"
+
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua i Barbuda"
+
+# AI
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albanija"
+
+# AM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenija"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Norveški Antili"
+
+# AO
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+# AQ
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antartika"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+# AS
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Američka Samoa"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austrija"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australija"
+
+# AW
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+# KY
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr ""
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbedžan"
 
 # BA
 #. :AZE:031:
@@ -599,28 +742,65 @@ msgstr "Bolivija"
 msgid "Bosnia and Herzegovina"
 msgstr "Bosna i Hercegovina"
 
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+# BD
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladeš"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgija"
+
+# BF
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bugarska"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
+
+# BI
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
 # BJ
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosanski"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Bocvana"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
 
-# BV
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvet Otok"
+# BN
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
 
-# BR
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr ""
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivija"
 
 # BR
 #. :BOL:068:
@@ -628,987 +808,1819 @@ msgstr ""
 msgid "Brazil"
 msgstr "Brazil"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretonski"
+# BS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahami"
 
-# IO
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Teritorij Britanskog Indijskog Oceana"
+# BT
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Butan"
 
-# VI
-# fuzzy
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
+# BV
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvet Otok"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Bocvana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Bjelorusija"
+
+# BZ
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
+
+# CC
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Cocos (Keeling) Otočje"
+
+# CG
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
+
+# CF
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Centralna Afrička Republika"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Švicarska"
+
+# CI
+# fuzzy
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr ""
+
+# CK
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Otočje Cook"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Čile"
+
+# CM
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Kina"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolumbija"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Kostarika"
+
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuba"
+
+# CV
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Capo Verde"
+
+# CX
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Uskršnje otočje"
+
+# CY
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Cipar"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Republika Češka"
+
+# DE
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Njemačka"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danska"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikanska republika"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Alžir"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ekvador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonija"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egipat"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr ""
+
+# ER
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritreja"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Španjolska"
+
+# ET
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopija"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finska"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+# FK
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falkland Otočje (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr ""
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Otočje Faroe"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Francuska"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr ""
+
+# GA
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Ujedinjeno Kraljevstvo"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgia"
+
+# GF
+# fuzzy
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Francuska Gvineja"
+
+# DE
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+# GH
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Gana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grenland"
+
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambija"
+
+# GN
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Gvineja"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+# GQ
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Ekvatorijalna Gvineja"
+
+# GR
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grčka"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr ""
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Gvatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+# GN
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Gvineja-Bisau"
+
+# GH
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Gvajana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr ""
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Hrvatska"
+
+# HT
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+# HU
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Madžarska"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonezija"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irska"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Izrael"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Indija"
+
+# IO
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Teritorij Britanskog Indijskog Oceana"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+# IR
+# fuzzy
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Island"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italija"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamajka"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordan"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japan"
+
+# KE
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenija"
+
+# KG
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgistan"
+
+# KH
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodža"
+
+# KI
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+# KM
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comoros"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr ""
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Sjeverna Koreja"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Južna Koreja"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuvajt"
+
+# KY
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Kajmansko otočje"
+
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazahstan"
+
+# CD
+# fuzzy
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr ""
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr ""
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Lihtenštajn"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Šri Lanka"
+
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberija"
+
+# LS
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litva"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luksemburg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latvija"
+
+# LY
+# fuzzy
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libija"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Maroko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monako"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Crna Gora"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Sveti Martin"
+
+# MG
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr ""
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonija"
+
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Mianmar"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolija"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Makao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr ""
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Marinique"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritanija"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr ""
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauricijus"
+
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Mali"
+
+# MW
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Meksiko"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malezija"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambik"
+
+# GM
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibija"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nova Kaledonija"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+# CK
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Otočje Norfolk"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigerija"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nikaragva"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Nizozemska"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norveška"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr ""
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Novi Zeland"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+# PF
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Francuska Polinezija"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr ""
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipini"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Poljska"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr ""
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Portoriko"
+
+# IO
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestinski teritorij"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paragvaj"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Katar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr ""
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Rumunjska"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Srbija"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr ""
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudijska Arabija"
+
+# CK
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Solomonski otoci"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Sejšeli"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Švedska"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
 msgstr ""
 
-# BN
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenija"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
 msgstr ""
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovačka"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bugarska"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sijera Leone"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bugarski"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr ""
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
 
-# BF
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalija"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
 msgstr ""
 
-# BI
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
-
-# TD
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
 msgstr ""
 
-# KH
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodža"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
 
-# CM
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Sirija"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Ne mogu obrisati '%s'"
+# TD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Čad"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+# TF
+# fuzzy
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
+# CG
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
 msgstr ""
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Ne mogu napraviti %s: %m\n"
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tajland"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadžikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "Ne mogu napraviti datoteku."
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Ne mogu obrisati '%s'"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunis"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+# CG
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turska"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr ""
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Tajvan"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr ""
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzanija"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr ""
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukrajina"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr ""
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr ""
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Sjedinjene Američke Države"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Urugvaj"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
 msgstr ""
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venecuela"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
 msgstr ""
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr ""
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Faroe Otočje"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vijetnam"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr ""
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
 
-# CV
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Capo Verde"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Katalanski"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Južna Afrika"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr ""
+# GM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambija"
 
-# KY
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Kajmansko otočje"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabve"
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-# CF
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Centralna Afrička Republika"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
+# AZ
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-# TD
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Čad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
 msgstr ""
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-# KM
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
 msgstr ""
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr ""
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikkans"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
 msgstr ""
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Čile"
-
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Kina"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr ""
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Kineski"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albanski"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
 msgstr ""
 
-# CX
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Uskršnje otočje"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr ""
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
 msgstr ""
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Arapski"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
 msgstr ""
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-# CC
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Cocos (Keeling) Otočje"
+# AM
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armenijski"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolumbija"
+# AZ
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr ""
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-# KM
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comoros"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Sukobi"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr ""
 
-# CG
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr ""
 
-# CK
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Otočje Cook"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr ""
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "Koptski"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr ""
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
 msgstr ""
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "Korzikanski"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr ""
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Kostarika"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr ""
 
-# CI
-# fuzzy
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
+# AZ
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
 msgstr ""
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
 msgstr ""
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
 msgstr ""
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Baskijski"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Hrvatska"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr ""
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Hrvatski"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr ""
 
-# CU
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuba"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Bjeloruski"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-# CY
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Cipar"
+# BJ
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr ""
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "Češki"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr ""
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Republika Češka"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr ""
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
 msgstr ""
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "Danski"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr ""
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
+# BJ
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
 msgstr ""
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danska"
-
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
+# BJ
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosanski"
+
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretonski"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr ""
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikanska republika"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bugarski"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
+# TD
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
 msgstr ""
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
 msgstr ""
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Nizozemski"
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "Katalanski"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
 msgstr ""
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
+# KM
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ekvador"
-
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egipat"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr ""
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Kineski"
+
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr ""
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
 msgstr ""
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Engleski"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr ""
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
 msgstr ""
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Poboljšava"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "Koptski"
 
-# GQ
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Ekvatorijalna Gvineja"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr ""
 
-# ER
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritreja"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "Korzikanski"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
 msgstr ""
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Esperanto"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonija"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr ""
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Estonski"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr ""
 
-# ET
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopija"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "Češki"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
 msgstr ""
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Danski"
+
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
 msgstr ""
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
 msgstr ""
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
 msgstr ""
 
-# FK
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falkland Otočje (Malvinas)"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr ""
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Otočje Faroe"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Nizozemski"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Engleski"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Esperanto"
+
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Estonski"
+
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
 msgstr ""
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
 msgstr ""
 
 #. language code: fil
@@ -1616,11 +2628,6 @@ msgstr ""
 msgid "Filipino"
 msgstr "Filipinski"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finska"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1631,45 +2638,16 @@ msgstr "Finski"
 msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Francuska"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Francuski"
 
-# GF
-# fuzzy
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Francuska Gvineja"
-
-# PF
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Francuska Polinezija"
-
-# TF
-# fuzzy
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr ""
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1685,51 +2663,22 @@ msgstr ""
 msgid "Frisian"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr ""
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr ""
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr ""
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr ""
 
 # GA
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-# ML
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr ""
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galicijski"
-
-# GM
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambija"
-
-# GH
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr ""
-
-# GA
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1740,15 +2689,10 @@ msgstr ""
 msgid "Gbaya"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr ""
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germanski (ostali)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1760,40 +2704,45 @@ msgstr ""
 msgid "German"
 msgstr "Njemački"
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
 msgstr ""
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germanski (ostali)"
+# ML
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr ""
 
-# DE
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Njemačka"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irski"
 
-# GH
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Gana"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galicijski"
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr ""
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
+msgstr ""
+
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
 # GA
@@ -1818,12 +2767,6 @@ msgstr ""
 msgid "Grebo"
 msgstr ""
 
-# GR
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grčka"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1832,67 +2775,18 @@ msgstr ""
 #. language code: gre ell el
 #: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
 msgid "Greek, Modern (1453-)"
-msgstr ""
-
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grenland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
-msgstr ""
-
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Gvatemala"
-
-# DE
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-# GN
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Gvineja"
+msgstr ""
 
-# GN
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Gvineja-Bisau"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
+msgstr ""
 
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr ""
 
-# GH
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Gvajana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1905,56 +2799,21 @@ msgid "Haida"
 msgstr ""
 
 # HT
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
-# HT
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haićanski"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-#, fuzzy
-msgid "Hal Exception"
-msgstr "Šifriranje"
-
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "veza nije uspostavljena"
-
-#: zypp/target/hal/HalContext.cc:127
-#, fuzzy
-msgid "HalDrive not initialized"
-msgstr "Inicijalizacija mete nije uspjela:"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Havajski"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr ""
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1981,16 +2840,6 @@ msgstr ""
 msgid "Hindi"
 msgstr ""
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr ""
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 # HT
 #. language code: hit
 #: zypp/LanguageCode.cc:529
@@ -2002,32 +2851,21 @@ msgstr ""
 msgid "Hmong"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
-
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr ""
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Mađarski"
 
-# HU
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Madžarska"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2040,10 +2878,10 @@ msgstr ""
 msgid "Iban"
 msgstr ""
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Island"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr ""
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2055,9 +2893,9 @@ msgstr "Islandski"
 msgid "Ido"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
 msgstr ""
 
 #. language code: ijo
@@ -2065,172 +2903,54 @@ msgstr ""
 msgid "Ijo"
 msgstr ""
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr ""
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr ""
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Indija"
-
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr ""
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonezija"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonežanski"
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr ""
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr ""
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr ""
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Neispravna Url shema '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Neispravan regularni izraz '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr ""
-
-# IR
-# fuzzy
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irska"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irski"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr ""
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
 msgstr ""
 
 #. language code: iro
@@ -2238,68 +2958,39 @@ msgstr ""
 msgid "Iroquoian Languages"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Izrael"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Talijanski"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italija"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamajka"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javanski"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japan"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr ""
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japanski"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javanski"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordan"
-
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr ""
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr ""
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
 #. language code: kab
@@ -2317,11 +3008,6 @@ msgstr ""
 msgid "Kalaallisut"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr ""
-
 # GM
 #. language code: kam
 #: zypp/LanguageCode.cc:597
@@ -2333,21 +3019,6 @@ msgstr ""
 msgid "Kannada"
 msgstr ""
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr ""
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr ""
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr ""
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2358,9 +3029,9 @@ msgstr ""
 msgid "Kashmiri"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
 # MW
@@ -2376,34 +3047,26 @@ msgstr ""
 msgid "Kazakh"
 msgstr ""
 
-# KZ
-# fuzzy
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazahstan"
-
-# KE
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenija"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr ""
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr ""
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr ""
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr ""
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2414,11 +3077,6 @@ msgstr ""
 msgid "Kikuyu"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr ""
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2429,16 +3087,15 @@ msgstr ""
 msgid "Kirghiz"
 msgstr ""
 
-# KI
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingonski"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr ""
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2451,11 +3108,6 @@ msgstr ""
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr ""
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2471,11 +3123,21 @@ msgstr ""
 msgid "Kpelle"
 msgstr ""
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr ""
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr ""
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr ""
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2491,29 +3153,12 @@ msgstr ""
 msgid "Kurdish"
 msgstr "Kurdski"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr ""
-
 # KE
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuvajt"
-
-# KG
-# fuzzy
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgistan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2535,74 +3180,21 @@ msgstr ""
 msgid "Lao"
 msgstr ""
 
-# CD
-# fuzzy
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr ""
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latinski"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latvija"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Latvijski"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-# LS
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr ""
 
-# LR
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberija"
-
-# LY
-# fuzzy
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libija"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Lihtenštajn"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2611,37 +3203,18 @@ msgstr ""
 # AO
 #. language code: lin ln
 #: zypp/LanguageCode.cc:671
-msgid "Lingala"
-msgstr ""
-
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litva"
-
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
-msgid "Lithuanian"
-msgstr "Litvanski"
-
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr ""
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
+msgid "Lingala"
 msgstr ""
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
+msgid "Lithuanian"
+msgstr "Litvanski"
+
+# CG
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
 #. language code: loz
@@ -2649,14 +3222,25 @@ msgstr ""
 msgid "Lozi"
 msgstr ""
 
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luksemburški"
+
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
+msgstr ""
+
 #. language code: lub lu
 #: zypp/LanguageCode.cc:683
 msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+# GH
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
 msgstr ""
 
 #. language code: lui
@@ -2664,11 +3248,6 @@ msgstr ""
 msgid "Luiseno"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr ""
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2684,36 +3263,11 @@ msgstr ""
 msgid "Lushai"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luksemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luksemburški"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Makao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonija"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Makedonski"
 
-# MG
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2725,6 +3279,11 @@ msgstr ""
 msgid "Magahi"
 msgstr ""
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr ""
+
 # ML
 #. language code: mai
 #: zypp/LanguageCode.cc:705
@@ -2737,170 +3296,50 @@ msgstr ""
 msgid "Makasar"
 msgstr ""
 
-# MG
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr ""
-
-# MW
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr ""
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr ""
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malezija"
-
-# MV
-# fuzzy
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Mali"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Neispravan URI"
-
-# ML
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-# MV
-# fuzzy
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Malteški"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr ""
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr ""
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr ""
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr ""
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr ""
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maorski"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr ""
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr ""
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr ""
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Marinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr ""
-
 # MW
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritanija"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauricijus"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr ""
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr ""
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
 msgstr ""
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
 msgstr ""
 
 #. language code: men
@@ -2908,16 +3347,11 @@ msgstr ""
 msgid "Mende"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Meksiko"
-
 #. language code: mic
 #: zypp/LanguageCode.cc:735
 msgid "Mi'kmaq"
@@ -2928,89 +3362,64 @@ msgstr ""
 msgid "Minangkabau"
 msgstr ""
 
-# FM
-# fuzzy
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
+msgstr "Razni jezici"
+
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr ""
+
+# MG
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr ""
+
+# MV
+# fuzzy
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Malteški"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr ""
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr ""
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
 msgstr ""
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
-msgstr "Razni jezici"
-
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr ""
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldavijski"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr ""
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monako"
-
-# CG
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr ""
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolija"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongolski"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Crna Gora"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr ""
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Maroko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambik"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -3021,61 +3430,71 @@ msgstr "Više jezika"
 msgid "Munda languages"
 msgstr ""
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Mianmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr ""
+
+# FM
+# fuzzy
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr ""
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr ""
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr ""
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr ""
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr ""
 
-# GM
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibija"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr ""
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navaho"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr ""
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr ""
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr ""
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr ""
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
 msgstr ""
 
 # ML
@@ -3084,28 +3503,9 @@ msgstr ""
 msgid "Nepali"
 msgstr "Nepalski"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Nizozemska"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Norveški Antili"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nova Kaledonija"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Novi Zeland"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
 #. language code: nia
@@ -3113,49 +3513,24 @@ msgstr ""
 msgid "Nias"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nikaragva"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigerija"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr ""
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Nema koda"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
 #. language code: nog
@@ -3163,64 +3538,19 @@ msgstr ""
 msgid "Nogai"
 msgstr ""
 
-# CK
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Otočje Norfolk"
-
 #. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
-msgstr ""
-
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr ""
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Sjeverna Koreja"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr ""
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr ""
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr ""
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norveška"
-
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
-msgstr "Norveški"
-
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr ""
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
+msgstr "Norveški"
+
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
 #. language code: nub
@@ -3228,6 +3558,16 @@ msgstr ""
 msgid "Nubian Languages"
 msgstr "Nubijski jezici"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr ""
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr ""
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3248,10 +3588,6 @@ msgstr ""
 msgid "Nzima"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Zastarjelo"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3262,20 +3598,6 @@ msgstr ""
 msgid "Ojibwa"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Medij ne podržava operaciju"
-
 # LY
 # fuzzy
 #. language code: ori or
@@ -3298,17 +3620,24 @@ msgstr ""
 msgid "Ossetian"
 msgstr ""
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr ""
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Otomanski jezici"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr ""
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
 #. language code: pal
@@ -3316,48 +3645,11 @@ msgstr ""
 msgid "Pahlavi"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr ""
-
-# IO
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestinski teritorij"
-
-# ML
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr ""
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr ""
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3368,94 +3660,46 @@ msgstr ""
 msgid "Papiamento"
 msgstr ""
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr ""
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr ""
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paragvaj"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr ""
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Dozvola za pristup '%s' je odbijena."
-
 #. language code: per fas fa
 #: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
 msgid "Persian"
 msgstr "Perzijski"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr ""
-
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
-
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipini"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Fenički"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
+# ML
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Poljska"
-
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Poljski"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr ""
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3467,77 +3711,21 @@ msgstr "Portugalski"
 msgid "Prakrit Languages"
 msgstr ""
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Pruža"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Portoriko"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr ""
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Katar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr ""
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr ""
-
 # KZ
 # fuzzy
 #. language code: raj
@@ -3547,43 +3735,12 @@ msgstr ""
 
 #. language code: rap
 #: zypp/LanguageCode.cc:887
-msgid "Rapanui"
-msgstr ""
-
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr ""
-
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Preporuča"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Relativna putanja nije dozvoljena ako postoji autoritet"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr ""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Alias repozitorija ne može započeti s točkom."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
+msgid "Rapanui"
 msgstr ""
 
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Zahtijeva"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
 msgstr ""
 
 #. language code: roa
@@ -3591,21 +3748,21 @@ msgstr ""
 msgid "Romance (Other)"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Rumunjska"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumunjski"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr ""
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr ""
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumunjski"
+
 # BI
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
@@ -3617,42 +3774,24 @@ msgstr ""
 msgid "Russian"
 msgstr "Ruski"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr ""
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr ""
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
 msgstr ""
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Sveti Martin"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
 #. language code: sal
@@ -3665,71 +3804,41 @@ msgstr ""
 msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr ""
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoanski"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr ""
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr ""
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskrt"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr ""
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr ""
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardinijski"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr ""
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Srpski"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudijska Arabija"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Sicilijski"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr ""
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Hrvatski"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3740,143 +3849,40 @@ msgstr ""
 msgid "Semitic (Other)"
 msgstr "Semitski (ostali)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Srbija"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Srpski"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr ""
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
 msgstr ""
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Sejšeli"
-
 # GH
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr ""
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr ""
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr ""
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Sicilijski"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sijera Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "izvršavanje nije uspjelo"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr ""
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr ""
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr ""
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -3889,212 +3895,142 @@ msgstr ""
 msgid "Slovak"
 msgstr "Slovački"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovačka"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenija"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Slovenski"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-# CK
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Solomonski otoci"
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Somalski"
-
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalija"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr ""
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoanski"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Južna Afrika"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr ""
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
 msgstr ""
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
 msgstr ""
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Južna Koreja"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Somalski"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
 msgstr ""
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
 msgstr ""
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Španjolska"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Španjolski"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Šri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardinijski"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Predlaže"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+# HT
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr ""
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumerski"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sudanski"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Dopunjava"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr ""
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr ""
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumerski"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Suahili"
 
-# HT
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr ""
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr ""
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Švedska"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Švedski"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Švicarska"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Sirija"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Sirijski"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4105,36 +4041,11 @@ msgstr ""
 msgid "Tai (Other)"
 msgstr ""
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Tajvan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr ""
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadžikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamilski"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzanija"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4145,43 +4056,36 @@ msgstr "Tatar"
 msgid "Telugu"
 msgstr ""
 
-#. language code: ter
-#: zypp/LanguageCode.cc:1025
-msgid "Tereno"
-msgstr ""
-
-#. language code: tet
-#: zypp/LanguageCode.cc:1027
-msgid "Tetum"
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
 msgstr ""
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr "Tajlandski"
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tajland"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
+#. language code: ter
+#: zypp/LanguageCode.cc:1025
+msgid "Tereno"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
+#. language code: tet
+#: zypp/LanguageCode.cc:1027
+msgid "Tetum"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
 msgstr ""
 
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "Tajlandski"
+
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4197,47 +4101,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingonski"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-# CG
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-# CG
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4251,15 +4132,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4267,14 +4142,19 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr ""
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr ""
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
 msgstr ""
 
 #. language code: tum
@@ -4282,50 +4162,24 @@ msgstr ""
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunis"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr ""
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turska"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turski"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr ""
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr ""
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
 msgstr ""
 
 #. language code: tyv
@@ -4333,21 +4187,11 @@ msgstr ""
 msgid "Tuvinian"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr ""
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 # HT
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
@@ -4359,11 +4203,6 @@ msgstr ""
 msgid "Uighur"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukrajina"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4374,574 +4213,742 @@ msgstr "Ukrajinski"
 msgid "Umbundu"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-#, fuzzy
-msgid "Unable to create dbus connection"
-msgstr "Ne mogu napraviti datoteku rezervne kopije %1."
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+# VN
+# fuzzy
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vjetnamski"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr ""
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr ""
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr ""
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr ""
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr ""
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr ""
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Velški"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr ""
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr ""
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr ""
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr ""
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr ""
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr ""
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr ""
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Jidiš"
+
+# AW
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Ujedinjeni arapski emirati"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Ujedinjeno Kraljevstvo"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr ""
 
-# US
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Sjedinjene Američke Države"
+# BT
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr ""
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
+msgid "Signature file %s not found"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr ""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "izvršavanje nije uspjelo"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problem s instaliranim paketom %s"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "URL shema je obavezna komponenta"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Urugvaj"
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "Disk ne postoji."
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:1000
+#, fuzzy
+msgid "unsupported request"
+msgstr "nije podržano"
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
 msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venecuela"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr ""
 
-# VN
-# fuzzy
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vijetnam"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr ""
 
-# VN
-# fuzzy
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vjetnamski"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
 
-# VI
-# fuzzy
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Faroe Otočje"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "nemoj instalirati %s"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "zadrži %s"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "deinstalacija %s"
+
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Velški"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "deinstalacija %s"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Jidiš"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr ""
 
-# AW
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-# GM
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambija"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-# BT
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabve"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Neispravan regularni izraz '%s'"
+
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Failed to unmount %s"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Cannot write file '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "deinstalacija %s"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, c-format, boost-format
-msgid "do not install %s"
-msgstr "nemoj instalirati %s"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Neispravan URI"
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, c-format, boost-format
-msgid "downgrade of %s to %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Medij ne podržava operaciju"
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "neispravno"
-
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "zadrži %s"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr ""
+msgid "Permission to access '%s' denied."
+msgstr "Dozvola za pristup '%s' je odbijena."
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "Disk ne postoji."
-
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problem s instaliranim paketom %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "deinstalacija %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "nepoznato"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Ne mogu skinuti %s sa %s"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "nije podržano"
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Srbija i Crna Gora"
 
-#: zypp/solver/detail/SATResolver.cc:1000
 #, fuzzy
-msgid "unsupported request"
-msgstr "nije podržano"
-
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Ne mogu skinuti %s sa %s"
+#~ msgid "Invalid user name or password."
+#~ msgstr "Nesipravna lozinka"
 
 #, fuzzy
 #~ msgid "Ignore that %s is already set to install"
@@ -4952,16 +4959,9 @@ msgstr "nije podržano"
 #~ msgstr "Instaliram upravljački program..."
 
 #, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "Nesipravna lozinka"
-
-#, fuzzy
 #~ msgid "Keep resolvables"
 #~ msgstr "Instaliram upravljački program..."
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Srbija i Crna Gora"
-
 #, fuzzy
 #~ msgid "Unlock these resolvables"
 #~ msgstr "Instaliram upravljački program..."
index 26ffa03..084ea4f 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# translation of zypp.hu.po to Hungarian
+# translation of zypp.new.po to
+# translation of zypp.po to
+# translation of zypp.hu.po to
+# Hungarian message File YaST2 (@memory@).
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002 SuSE Linux AG.
+# Copyright (C) 2000, 2001 SuSE GmbH.
 #
+# Marcel Hilzinger <hili@suselinux.hu>, 2001.
+# Sári Gábor <saga@tux.hu>, 2000.
+# Steve Varadi <svaradi@usa.com>, 2000.
+# Zoltán Levárdy <pogacsa@programmer.net>, 1999.
+# Kalman Kemenczy <kkemenczy@novell.com>, 2006, 2007, 2008, 2009, 2010.
+# Ervin Novak <enovak@novell.com>, 2008, 2011.
+# Kalman Kemenczy <kkemenczy@gmail.com>, 2011, 2012, 2013.
 msgid ""
 msgstr ""
-"Project-Id-Version: zypp\n"
+"Project-Id-Version: zypp.hu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 17:02\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2013-03-02 05:43+0100\n"
+"Last-Translator: Kalman Kemenczy <kkemenczy@opensuse.org>\n"
+"Language-Team: Hungarian <kde-l10n-hu@kde.org>\n"
+"Language: hu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 1.2\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"nem telepíthető szolgáltatók: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal kivétel"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Érvénytelen LDAP URL lekérdezési karakterlánc"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" hiba az SSL-tanúsítvánnyal, ellenőrizze, hogy megfelelő-e a CA tanúsítványa "
-"a következőhöz: '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Érvénytelen LDAP URL lekérdezési paraméter: '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Az URL objektum másolása sikertelen"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Érvénytelen üres URL-objektum hivatkozás"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Az URL komponens feldolgozása sikertelen"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "A mutex attribútum inicializációja sikertelen"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Rekurzív mutex attribútum nem állítható be"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Rekurzív mutex attribútum inicializációja sikertelen"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "A mutex zárolás sikertelen"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "A mutex zárolásának feloldása sikertelen"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Nyújt"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Előfeltételei"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Igényli"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Ütközik ezzel"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Elavult"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Ajánlottak"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Javasoltak"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Felváltók"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Kiegészítők"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "'%s' bizonytalan típus %u byte, ellenőrzőösszeg '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -38,10 +125,6 @@ msgstr " végrehajtva"
 msgid " execution failed"
 msgstr " végrehajtás sikertelen"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " megszakítás közben a végrehajtás átugorva"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -50,1574 +133,2616 @@ msgstr " megszakítás közben a végrehajtás átugorva"
 msgid "%s already executed as %s)"
 msgstr "%s már futtatva volt: %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s ütközik a(z) %s csomaggal, amit a(z) %s csomag biztosít"
-
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s nem tartozik a distupgrade telepítési forráshoz"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " megszakítás közben a végrehajtás átugorva"
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s alacsonyabb szintű architektúrával rendelkezik"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Hiba történt a frissítési értesítés küldésekor."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s nem telepíthető"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Új frissítési üzenet"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "A(z) %s a rendszertől származik, ezért törlése nem lehetséges."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "A kérésnek megfelelően a telepítés megszakad."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s elavulttá teszi a(z) %s csomagot, amit a(z) %s csomag biztosít"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
+"Elnézést, de a libzypp ezen verziója beépített HAL-támogatás nélkül készült."
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s csomagnak a következőre van szüksége: %s, de ez nem teljesíthető"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "A HalContext nem kapcsolódott"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(LEJÁRT)"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "A HalDriver inicializálása sikertelen"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(nem jár le)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "A HalVolume inicializálása sikertelen"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(24 órán belül lejár)"
-msgstr[1] "(24 órán belül lejár)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "A dbus kapcsolat létrehozása sikertelen"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(24 órán belül lejár)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: A libhal kontextus létrehozása sikertelen"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "abház"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: A dbus kapcsolat beállítása sikertelen"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "akínai"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
+"A HAL kontextus inicializálása sikertelen -- lehetséges, hogy a hald nem fut?"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "acsoli"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "CD-ROM meghajtó nem található"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "adangme"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM sikertelen: "
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "A(z) '%s' telepítési forrás hozzáadása"
+msgid "Failed to import public key from file %s: %s"
+msgstr "Nem sikerült a(z) %s fájlból importálni a publikus kulcsot: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "További Ügyfélszerződés szükséges"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "A(z) %s publikus kulcs eltávolítása sikertelen: %s"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "További rpm kimenet"
+# modules/dialup/dialup.ycp:231 modules/dialup/dialup.ycp:246
+# modules/dialup/dialup.ycp:259
+# menuentries/menuentry_lan_sendmail.ycp:14
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "%s módosított konfigurációs fájljai:"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "cserkesz"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"Az rpm elmentette %s-t, mint %s, de nem sikerült megállapítani a különbséget"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "afar"
-
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganisztán"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"Az rpm elmentette %s-t, mint %s.\n"
+"A különbség első 25 sora:\n"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "afrihili"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"Az rpm létrehozta %s-t, mint %s, de nem sikerült megállapítani a különbséget"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "afrikaans"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"Az rpm létrehozta %s-t, mint %s.\n"
+"A különbség első 25 sora:\n"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "afro-ázsiai (egyéb)"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "További rpm kimenet"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "ainu"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "%s másolata létrehozva"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "akan"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "Az aláírás rendben van"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "akkád"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Ismeretlen típusú aláírás"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Aland-szigetek"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "Az aláírás nem felelt meg az ellenőrzésen"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albánia"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "Az aláírás rendben van, de a kulcs nem megbízható"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "albán"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "Az aláírások nyilvános kulcsa nem érhető el"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "aleut"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "A fájl nem létezik, vagy nem ellenőrizhető az aláírása"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algéria"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "A következő műveletek kerüljenek végrehajtásra:"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Algonkin nyelvek"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+"A következő telepítésiforrás-könyvtár nem olvasható: '%1%': A rendszer "
+"megtagadta az engedélyt"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "altáji (egyéb)"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Nem sikerült a ' %s' könyvtár beolvasása."
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Amerikai Szamoa"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+"A következő telepítésiforrás-fájl nem olvasható: '%1%': A rendszer "
+"megtagadta az engedélyt"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "amhara"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "A telepítési forrás álneve nem kezdődhet ponttal."
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "További ügyfélszerződés szükséges a támogatáshoz."
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "A szolgáltatás álneve nem kezdődhet ponttal."
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "A '%s' fájl nem nyitható meg írásra."
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+"Ismeretlen '%1%' szolgáltatás: az árva '%2%' szolgáltatástároló eltávolítása"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "A megadott URL nem tartalmaz érvényes metaadatot"
+msgstr[1] "A megadott URL nem tartalmaz érvényes metaadatot"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktisz"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "A(z) %s nem hozható létre"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua és Barbuda"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Nem hozható létre a metaadat gyorsítótár-könyvtára."
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "apacs nyelvek"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "A(z) '%s' telepítési forrás gyorsítótárának felépítése"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Arab"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Írási jog hiányában nem hozható létre gyorsítótár a(z) %s helyen."
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "aragóniai"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Nem sikerült a tároló gyorsítótárazása (%d)."
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "arámi"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Ismeretlen típusú tároló"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "arapaho"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Hiba történt a(z) '%s' beolvasása közben:"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "araukán"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Ismeretlen hiba a '%s' beolvasása közben"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "arawak"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "A(z) '%s' telepítési forrás hozzáadása"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentína"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Örményország"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Örmény"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Érvénytelen tárolónév: '%s'"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "mesterséges (egyéb)"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "A(z) '%s' telepítési forrás eltávolítása"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Nem sikerült a tároló felismerése."
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "asszámi"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "A(z) '%s' törlése sikertelen"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "asztúriai"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Nem sikerült a szolgáltatás felismerése."
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "athapaszka nyelvek"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Az Url séma nem engedélyezi a(z) %s használatát"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Ausztrália"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Érvénytelen %s url komponens: '%s'"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "ausztrál nyelvek"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Hibás URI komponens: %s"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Ausztria"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "A lekérdezés feldolgozása ehhez az URL-hez nem támogatott"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "ausztronéziai (egyéb)"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Az Url-séma megadása szükséges"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:830
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Felhasználóhitelesítés szükséges ehhez: '%s'"
+msgid "Invalid Url scheme '%s'"
+msgstr "Érvénytelen URI-séma: '%s'"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "avar"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Az Url séma nem engedélyezi a felhasználónevet"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "avesztán"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Az Url séma nem engedélyezi a jelszót"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "avádi"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Az Url sémában a gépkomponenst (host) megadása kötelező"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "aymara"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Az Url séma megadása nem engedélyezi a gépkomponenst (host)"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbajdzsán"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Hibás gépkomponens (host): '%s'"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "azeri"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Az Url séma nem engedélyezi a portot"
 
-#: zypp/media/MediaException.cc:47
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Hibás fájlnév: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Hibás csatolási pont"
+msgid "Invalid port component '%s'"
+msgstr "Érvénytelen port komponens: '%s'"
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamák"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Az Url sémában az elérési útvonal megadása szükséges"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrein"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+"Megadott hitelesítő esetén a relatív elérési útvonal megadása nem támogatott"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "balinéz"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "A kódolt karakterlánc NUL byte-ot tartalmaz"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "balti (egyéb)"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+"Érvénytelen tömbszétválasztás-elválasztó (array split separator) karakter"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "balucsi"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+"Érvénytelen leképezésszétválasztás-elválasztó (map split separator) karakter"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "bambara"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Érvénytelen tömbösszefűzés-elválasztó (array join separator) karakter"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "bamileke nyelvek"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "A pty nem nyitható meg (%s)."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "banda"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "A cső nem nyitható meg (%s)."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Banglades"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "A chroot sikertelen ide: '%s' (%s)."
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "bantu (egyéb)"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+"Sikertelen chdir a(z) '%s' könyvtárra a következő gyökéren belül: '%s' (%s)."
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Sikertelen chdir a(z) '%s' könyvtárra (%s)."
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "basa"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "'%s' végrehajtása sikertelen (%s)."
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "baskír"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "A forkolás sikertelen (%s)."
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baszk"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "A parancs visszatérési értéke %d."
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "batak (Indonézia)"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "A parancs végrehajtását a(z) %d szignál megszakította (%s)."
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "beja"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "A parancs végrehajtása ismeretlen hibával leállt."
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Fehéroroszország"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(nem járt le)"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Belorusz"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(LEJÁRT)"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgium"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(24 órán belül lejár)"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(24 órán belül lejár)"
+msgstr[1] "(24 órán belül lejár)"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "bemba"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "ismeretlen"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "bengáli"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "nem támogatott"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "1. szintű"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "berber (egyéb)"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "2. szintű"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "3. szintű"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "bhodzspuri"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "További Ügyfélszerződés szükséges"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhután"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "érvénytelen"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "bihari"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Nincs meghatározva a támogatás szintje"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "bikol"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "A gyártó nem biztosít támogatást."
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "bini"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Probléma azonosítás, amely a kompatibilitási információ nyújtására, "
+"telepítési segítségre, felhasználási támogatásra, folyamatos karbantartásra, "
+"és alapszintű hibakeresésre terjed ki. Az 1. szintű támogatásnak nem célja a "
+"termék hibáinak javítása."
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "biszlama"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Probléma izoláció, amely a vásárlói problémák reprodukálására, a problémák "
+"beazonosítására és az 1. szintű támogatás által meg nem oldott problémák "
+"javítására terjed ki."
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "blin"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Probléma megoldás, amely a fejlesztők bevonásával a 2. szintű támogatás "
+"által beazonosított összetett termékhibák megoldását szolgálja."
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolívia"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "További ügyfélszerződés szükséges a támogatáshoz."
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosznia-Hercegovina"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Ismeretlen támogatási opció. Leírás nem található"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "bosnyák"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Ismeretlen ország: "
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Nincs kód"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvet-sziget"
+# AD
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "bradzs"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Egyesült Arab Emirátusok"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brazília"
+# AF
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganisztán"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Breton"
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua és Barbuda"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Brit indiai-óceáni terület"
+# AI
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Brit Virgin-szigetek"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albánia"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Szultánság"
+# AM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Örményország"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "buginéz"
+# AN
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Holland Antillák"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "A(z) '%s' telepítési forrás gyorsítótárának felépítése"
+# AO
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgária"
+# AQ
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktisz"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "bolgár"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentína"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "burját"
+# AS
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Amerikai Szamoa"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Ausztria"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Ausztrália"
+
+# AW
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+# KY
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Aland-szigetek"
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbajdzsán"
+
+# BA
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosznia és Hercegovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Banglades"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgium"
 
+# BF
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
 msgstr "Burkina Faso"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "burmai"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgária"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrein"
 
+# BI
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "Burundi"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "caddo"
+# BJ
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodzsa"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
+# BN
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Szultanátus"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Nem hozható létre sat-pool."
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolívia"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "A mutex zárolás sikertelen"
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brazília"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Sikertelen chdir a(z) '%s' könyvtárra (%s)."
+# BS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahama-szigetek"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-"Sikertelen chdir a(z) '%s' könyvtárra a következő gyökéren belül: '%s' (%s)."
+# BT
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhután"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "A chroot sikertelen ide: '%s' (%s)."
+# BV
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvet-sziget"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "A(z) %s nem hozható létre"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Írási jog hiányában nem hozható létre gyorsítótár a(z) %s helyen."
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Fehéroroszország"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Nem hozható létre a metaadat gyorsítótár-könyvtára."
+# BZ
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "A(z) '%s' törlése sikertelen"
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "'%s' végrehajtása sikertelen (%s)."
+# CC
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Cocos (Keeling) -szigetek"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Nem sikerült a tároló felismerése."
+# CG
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongó"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Nem sikerült a szolgáltatás felismerése."
+# CF
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Közép-Afrikai Köztársaság"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "A forkolás sikertelen (%s)."
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Svájc"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "A mutex attribútum inicializációja sikertelen"
+# CI
+# fuzzy
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Elefántcsontpart"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Rekurzív mutex attribútum inicializációja sikertelen"
+# CK
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cook-szigetek"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "A '%s' fájl nem nyitható meg írásra."
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "A zárolt fájl nem nyitható meg: %s"
+# CM
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "A cső nem nyitható meg (%s)."
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Kína"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "A pty nem nyitható meg (%s)."
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolumbia"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "A(z) '%s' fájlt nem biztosítja a(z) '%s' telepítési forrás"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "A mutex zárolásának feloldása sikertelen"
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuba"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Rekurzív mutex attribútum nem állítható be"
+# CV
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Zöld-foki Köztársaság"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+# CX
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Karácsony-sziget"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Nincs kiadható adathordozó"
+# CY
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Ciprus"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "A(z) '%s' adathordozó kiadása sikertelen"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Cseh Köztársaság"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Nincs elérhető hurokeszköz a '%s' által tartalmazott képfájl felcsatolásához"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Németország"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
-"A következő telepítésiforrás-könyvtár nem olvasható: '%1%': A rendszer "
-"megtagadta az engedélyt"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Dzsibuti"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
-"A következő telepítésiforrás-fájl nem olvasható: '%1%': A rendszer "
-"megtagadta az engedélyt"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Dánia"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "A fájl írása sikertelen: '%s'."
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominika"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Zöldfoki-szigetek"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikai Köztársaság"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "karib"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algéria"
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Katalán"
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "kaukázusi (egyéb)"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Észtország"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Kajmán-szigetek"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egyiptom"
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "cebuano"
+# EH
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Nyugat-Szahara"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "kelta (egyéb)"
+# ER
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Közép-Afrikai Köztársaság"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spanyolország"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "közép-amerikai indián (egyéb)"
+# ET
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiópia"
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Csád"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finnország"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "csagatai"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidzsi"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "hámi nyelvek"
+# FK
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falkland-szigetek (Malvinas)"
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "csamorro"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Mikronéziai Szövetségi Államok"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "%s módosított konfigurációs fájljai:"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Färöer-szigetek"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "csecsen"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Franciaország"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "cseroki"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Nagyvárosi Franciaország"
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "csejenn"
+# GA
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "csibcsa"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Egyesült Királyság"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "csicseva"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Grúzia"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Kína"
+# GF
+# fuzzy
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Francia Guiana"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Kínai"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "csinúk zsargon"
+# GH
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghána"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "csippewi"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltár"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "choctaw"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grönland"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Karácsony-szigetek"
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "egyházi szláv"
+# GN
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "csúki"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "csuvas"
+# GQ
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Egyenlítői Guinea"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "klasszikus nevari"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Görögország"
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Kókusz-szigetek (Keeling)"
+# GS
+# fuzzy
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Dél-Georgia és a Dél-Sandwich-sziget"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolumbia"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "A parancs visszatérési értéke %d."
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "A parancs végrehajtása ismeretlen hibával leállt."
+# GW
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "A parancs végrehajtását a(z) %d szignál megszakította (%s)."
+# GY
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comore-szigetek"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Ütközik ezzel"
+# HM
+# fuzzy
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heard-sziget és McDonald-szigetek"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongó"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cook-szigetek"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Horvátország"
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "kopt"
+# HT
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "cornwalli"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Magyarország"
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "korzikai"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonézia"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Írország"
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Elefántcsontpart"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Izrael"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "krí"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Man sziget"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "krík"
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "kreol és pidgin (egyéb)"
+# IO
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Brit indiai-óceáni terület"
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "angol alapú kreol és pidgin (egyéb)"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "francia alapú kreol és pidgin (egyéb)"
+# IR
+# fuzzy
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Irán"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "portugál alapú kreol és pidgin (egyéb)"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Izland"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "krími tatár"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Olaszország"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Horvátország"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Horvát"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuba"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordánia"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr "kusiti (egyéb)"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japán"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Ciprus"
+# KE
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "cseh"
+# KG
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgizisztán"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Csehország"
+# KH
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodzsa"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "dakota"
+# KI
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "dán"
+# KM
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comoros"
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr "dargva"
+# KN
+# fuzzy
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts és Nevis"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr "dajak"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Észak-Korea"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "delavár"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Dél-Korea"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Dánia"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuvait"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "dinka"
+# KY
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Kajmán-szigetek"
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "divehi"
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazahsztán"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Dzsibuti"
+# CD
+# fuzzy
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Lao Népi Demokratikus Népköztársaság"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "dogri"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "dogrib"
+# LC
+# fuzzy
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Santa Lucia"
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominika"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikai Köztársaság"
+# LK
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Srí Lanka"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Letöltési (curl) hiba: '%s'\n"
-"Hibakód: %s\n"
-"Hibaüzenet: %s\n"
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Libéria"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "A letöltés (curl) inicializálása meghiúsult: '%s'"
+# LS
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "dravidi (Other)"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litvánia"
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "duala"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxemburg"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "'%s' bizonytalan típus %u byte, ellenőrzőösszeg '%s'"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Lettország"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "holland"
+# LY
+# fuzzy
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Líbia"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "holland, középkori (kb. 1050-1350)"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marokkó"
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr "djula"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "dzongkha"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldávia"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Kelet-Timor"
+# CG
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegró"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
+# SM
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Saint-Martin"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "efik"
+# MG
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaszkár"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egyiptom"
+# MH
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshall-szigetek"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "egyiptomi (ókori)"
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedónia"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "ekadzsuk"
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "Salvador"
+# MM
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Mianmar"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "elamit"
+# MN
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongólia"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Üres cél a hivatkozásban"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Makaó"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Üres fájlrendszer a hivatkozásban"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Üres hosztnév a hivatkozásban"
+# MP
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Északi Mariana-szigetek"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "A kódolt karakterlánc NUL byte-ot tartalmaz"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Angol"
+# MR
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritánia"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "angol, középkori (1100-1500)"
+# MS
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "óangol (kb. 450-1100)"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Málta"
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Felváltók"
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Egyenlítői Guinea"
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldív Szigetek"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
+# MW
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "Hiba történt a '%s' letöltési (curl) beállításainak beállítása közben:"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexikó"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Hiba történt a frissítési értesítés küldésekor."
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malajzia"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Hiba történt a(z) '%s' beolvasása közben:"
+# MZ
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambik"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "erzia"
+# NA
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namíbia"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "eszperantó"
+# NC
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Új-Kaledónia"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Észtország"
+# NE
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "észt"
+# NF
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolk-sziget"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiópia"
+# NG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigéria"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "ewe"
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "evondo"
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Hollandia"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Nem sikerült a tároló gyorsítótárazása (%d)."
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norvégia"
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "A kulcs törlése sikertelen."
+# NP
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepál"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Nem sikerült a(z) %s fájlból importálni a publikus kulcsot: %s"
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Nem sikerült a(z) %s felcsatolása ide: %s"
+# NU
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Nem sikerült a %s csomag beszerzése. Megismétli az átvitelt?"
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Új-Zéland"
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Nem sikerült a ' %s' könyvtár beolvasása."
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Omán"
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "A(z) %s publikus kulcs eltávolítása sikertelen: %s"
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "A(z) %s eltávolítása sikertelen"
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falkland-szigetek"
+# PF
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Francia Polinézia"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "fang"
+# PG
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Pápua Új-Guinea"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "fanti"
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Fülöp-szigetek"
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Feröer-szigetek"
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakisztán"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "färöi"
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Lengyelország"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Mikronéziai Szövetségi Államok"
+# PM
+# fuzzy
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint Pierre és Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+# IO
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palesztin terület"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugália"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Katar"
+
+# RE
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Románia"
+
+# src/trans.h:311
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Szerbia"
+
+# RU
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Oroszország"
+
+# RW
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Szaúd-Arábia"
+
+# SB
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Salamon-szigetek"
+
+# SC
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychelle-szigetek"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Szudán"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Svédország"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Szingapúr"
+
+# SH
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Saint Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Szlovénia"
+
+# SJ
+# fuzzy
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard és Jan Mayen-szigetek"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Szlovákia"
+
+# SL
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+# SM
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+# SN
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Szenegál"
+
+# SO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Szomália"
+
+# SR
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
+
+# ST
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome és Principe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "Salvador"
+
+# SY
+# fuzzy
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Szíria"
+
+# SZ
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Szváziföld"
+
+# TC
+# fuzzy
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks és Caicos-szigetek"
+
+# TD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Csád"
+
+# TF
+# fuzzy
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Déli francia területek"
+
+# TG
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thaiföld"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tádzsikisztán"
+
+# TK
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+# TM
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Türkmenisztán"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunézia"
+
+# TO
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Kelet-Timor"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Törökország"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad és Tobago"
+
+# TV
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Tajvan"
+
+# TZ
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzánia"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukrajna"
+
+# UG
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+# UM
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Amerikai Egyesült Államok - kisebb külső szigetek"
+
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Amerikai Egyesült Államok"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Üzbegisztán"
+
+# VA
+# fuzzy
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Vatikán (Szentszék)"
+
+# VC
+# fuzzy
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Saint Vincent és Grenadines"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Brit Virgin-szigetek"
+
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Virgin-szigetek (USA)"
+
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+# VU
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+# WF
+# fuzzy
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis és Futuna-szigetek"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Szamoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
+
+# YT
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Dél-Afrika"
+
+# ZM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Ismeretlen nyelv: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "afar"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "abház"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "akínai"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "acsoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "cserkesz"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "afro-ázsiai (egyéb)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "afrihili"
+
+# src/trans.h:281 src/trans.h:318
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "afrikaans"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "ainu"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "akan"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "akkád"
+
+# src/trans.h:282
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "albán"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "aleut"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "algonkin nylevek"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "dél-altáji"
+
+# src/trans.h:283
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "amhara"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "óangol (kb. 450-1100)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "apacs nyelvek"
+
+# src/trans.h:283
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "arab"
+
+# src/trans.h:283
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "arámi"
+
+# src/trans.h:294
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "aragóniai"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "örmény"
+
+# src/trans.h:227
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "araukán"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "arapaho"
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "mesterséges (egyéb)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "arawak"
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "asszámi"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "asztúriai"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "athapaszka nyelvek"
+
+# modules/inst_sw_single.ycp:117
+# clients/inst_sw_single.ycp:1072
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "ausztrál nyelvek"
+
+# src/trans.h:283
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "avar"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "avesztán"
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "avádi"
+
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "aymara"
+
+# src/trans.h:311
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "azeri"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "banda"
+
+# modules/inst_sw_single.ycp:117
+# clients/inst_sw_single.ycp:1072
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "bamileke nyelvek"
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "baskír"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "balucsi"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "bambara"
+
+# src/trans.h:220
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "balinéz"
+
+# src/trans.h:284
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "baszk"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "balti (egyéb)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "beja"
+
+# src/trans.h:286
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "belorusz"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "bemba"
+
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "bengáli"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "berber (egyéb)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "bhodzspuri"
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "bihari"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "bikol"
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "bini"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "biszlama"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "szikszika"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "bantu (egyéb)"
+
+# src/trans.h:309
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "bosnyák"
+
+# src/trans.h:285
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "bradzs"
+
+# src/trans.h:285
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "breton"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "batak (Indonézia)"
+
+# src/trans.h:285
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "burját"
+
+# src/trans.h:220
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "buginéz"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "bolgár"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "burmai"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "blin"
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "caddo"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "közép-amerikai indián (egyéb)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "karib"
+
+# src/trans.h:287
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "katalán"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "kaukázusi (egyéb)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "cebuano"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "kelta (egyéb)"
+
+# KM
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "csamorro"
+
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "csibcsa"
+
+# src/trans.h:290
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "csecsen"
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidzsi"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "csagatai"
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "fidzsi"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "kínai"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"A(z) %1% fájl\n"
-"  (telepítés:\n"
-"     %2%)\n"
-"  ütközik a(z)\n"
-"     %3%\n"
-"  fájllal (telepítés:\n"
-"     %4%)"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "csúki"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"A(z) %1% fájl\n"
-"  (telepítés:\n"
-"     %2%)\n"
-"  ütközik a(z)\n"
-"     %3%\n"
-"  fájllal (csomag:\n"
-"     %4%)"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "mari"
+
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "csinúk zsargon"
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "choctaw"
+
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "csippewi"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "cseroki"
+
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "egyházi szláv"
+
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "csuvas"
+
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "csejenn"
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "hámi nyelvek"
+
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "kopt"
+
+# src/trans.h:363
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "cornwalli"
+
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "korzikai"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr "angol alapú kreol és pidgin (egyéb)"
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr "francia alapú kreol és pidgin (egyéb)"
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr "portugál alapú kreol és pidgin (egyéb)"
+
+# modules/inst_custom_part.ycp:498
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "krí"
+
+# /usr/lib/YaST2/clients/lan_dns.ycp:87
+# clients/lan_dns.ycp:271
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "krími tatár"
+
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "kreol és pidgin (egyéb)"
+
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "kasúbi"
+
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr "kusiti (egyéb)"
+
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "Cseh"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "dakota"
+
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Dán"
+
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr "dargva"
+
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr "dajak"
+
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "delavár"
+
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "slave (athapaszkai)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "dogrib"
+
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "dinka"
+
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "divehi"
+
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "dogri"
+
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "dravidi (Other)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "alsó-szorbiai"
+
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "duala"
+
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "holland, középkori (kb. 1050-1350)"
+
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "holland"
+
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
+msgstr "djula"
+
+# TO
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "dzongha"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "efik"
+
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "egyiptomi (ókori)"
+
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "ekadzsuk"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"A(z) %1% fájl\n"
-"  (telepítés:\n"
-"     %2%)\n"
-"  ütközik a(z) %3%\n"
-"     telepítés fájljával"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "elamit"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"A(z) %1% fájl\n"
-"  (telepítés:\n"
-"     %2%)\n"
-"  ütközik a(z) %3%\n"
-"     csomag fájljával"
+# src/trans.h:293
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "angol"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"A(z) %1% fájl\n"
-"  (csomag:\n"
-"     %2%)\n"
-"  ütközik a(z)\n"
-"     %4%\n"
-"  telepítés\n"
-"     %3% fájljával"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "angol, középkori (1100-1500)"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"A(z) %1% fájl\n"
-"  (csomag:\n"
-"     %2%)\n"
-"  ütközik a(z)\n"
-"     %4%\n"
-"  csomag\n"
-"     %3% fájljával"
+# src/trans.h:298
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "eszperantó"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"A(z) %1% fájl\n"
-"  (csomag:\n"
-"     %2%)\n"
-"  ütközik a(z)\n"
-"     %3% telepítés fájljával"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "észt"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"A(z) %1% fájl\n"
-"  (csomag:\n"
-"     %2%)\n"
-"  ütközik a(z)\n"
-"     %3% csomag fájljával"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "ewe"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "A(z) '%s' fájl nem található a(z) '%s' adathordozón"
+# modules/inst_custom_part.ycp:493
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "evondo"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "A fájl nem létezik, vagy nem ellenőrizhető az aláírása"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "fang"
+
+# src/trans.h:294
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "färöi"
+
+# modules/dialup/dialup.ycp:390 modules/dialup/dialup.ycp:400
+# modules/dialup/dialup.ycp:410
+# clients/lan_ISDN.ycp:908
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "fanti"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "fidzsi"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Fülöp-szigeteki"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finnország"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1628,40 +2753,16 @@ msgstr "finn"
 msgid "Finno-Ugrian (Other)"
 msgstr "finn-ugor (egyéb)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "A következő műveletek kerüljenek végrehajtásra:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Franciaország"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "francia"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Francia Guiana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Francia-Polinézia"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Déli francia területek"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1672,51 +2773,30 @@ msgstr "francia, középkori (kb. 1400-1600)"
 msgid "French, Old (842-ca.1400)"
 msgstr "ófrancia (842-kb. 1400)"
 
+# src/trans.h:227
 #. language code: fry fy
 #: zypp/LanguageCode.cc:453
 msgid "Frisian"
-msgstr "Fríz"
-
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "friuli"
+msgstr "fríz"
 
+# /usr/lib/YaST2/clients/lan_inetd_custom.ycp:762
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "fulah"
 
+# src/trans.h:227
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "friuli"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "gaelic"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "galíciai"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "ganda"
-
+# GA
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1727,26 +2807,53 @@ msgstr "gayo"
 msgid "Gbaya"
 msgstr "gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "geez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Grúzia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "germán (egyéb)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
 msgid "Georgian"
-msgstr "Grúz"
+msgstr "grúz"
 
 #. language code: ger deu de
 #: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
 msgid "German"
 msgstr "német"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "geez"
+
+# src/trans.h:270
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "gilberti"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "gaelic"
+
+# src/trans.h:303
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "ír"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "galíciai"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1757,30 +2864,13 @@ msgstr "német, késő középkori (kb. 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "német, késő ókori (kb. 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "germán (egyéb)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Németország"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghána"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltár"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "gilberti"
-
+# modules/sound/sound.ycp:204 modules/sound/sound.ycp:459
+# modules/sound/sound.ycp:473 modules/sound/sound.ycp:486
+# modules/sound/sound.ycp:536 modules/sound/sound.ycp:621
+# modules/sound/sound.ycp:683 modules/sound/sound.ycp:708
+# modules/sound/sound.ycp:719 modules/sound/sound.ycp:754
+# modules/sound/sound.ycp:801 modules/sound/sound.ycp:848
+# modules/sound/sound.ycp:874 modules/sound/sound.ycp:918
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1796,16 +2886,12 @@ msgstr "gorontalo"
 msgid "Gothic"
 msgstr "gót"
 
+# clients/inst_sw_single.ycp:1298
 #. language code: grb
 #: zypp/LanguageCode.cc:497
 msgid "Grebo"
 msgstr "grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Görögország"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1816,60 +2902,15 @@ msgstr "görög, ókori (1453-ig)"
 msgid "Greek, Modern (1453-)"
 msgstr "görög, modern (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grönland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Bissau-Guinea"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
-msgstr "Gudzsarati"
-
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
+msgstr "gudzsarati"
 
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
@@ -1881,56 +2922,26 @@ msgstr "gwich'in"
 msgid "Haida"
 msgstr "haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
+# HT
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "haiti"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal kivétel"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "A HalContext nem kapcsolódott"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "A HalDriver inicializálása sikertelen"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "A HalVolume inicializálása sikertelen"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "hausza"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Minden szükséges telepítési forrást engedélyezett?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "hawaii"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heard-sziget és McDonald-szigetek"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
-msgstr "Héber"
+msgstr "héber"
 
 #. language code: her hz
 #: zypp/LanguageCode.cc:521
@@ -1950,18 +2961,9 @@ msgstr "himacsáli"
 #. language code: hin hi
 #: zypp/LanguageCode.cc:527
 msgid "Hindi"
-msgstr "Hindi"
-
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "hiri motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Előzmények:"
+msgstr "hindi"
 
+# HT
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1972,302 +2974,155 @@ msgstr "hettita"
 msgid "Hmong"
 msgstr "hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Vatikán (Szentszék)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+# HT
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "hiri motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+# src/trans.h:311
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "felső szorb"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "magyar"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Magyarország"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
 msgstr "hupa"
 
+# IR
+# fuzzy
 #. language code: iba
 #: zypp/LanguageCode.cc:541
 msgid "Iban"
 msgstr "iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Izland"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
 msgid "Icelandic"
-msgstr "Izlandi"
+msgstr "izlandi"
 
 #. language code: ido io
 #: zypp/LanguageCode.cc:549
 msgid "Ido"
 msgstr "ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "szecsuani yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "idzso"
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr "iloko"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "inári számi"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr "indiai (egyéb)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "indoeurópai (egyéb)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonézia"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "indonéz"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "ingus"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "A kérésnek megfelelően a telepítés megszakad."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "interlingva (International Auxiliary Language Association)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "interlingva"
-
 #. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "inuktitut"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "inupiak"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Hibás URI komponens: %s"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Érvénytelen %s url komponens: '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Érvénytelen LDAP URL lekérdezési paraméter: '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Érvénytelen LDAP URL lekérdezési karakterlánc"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Érvénytelen URI-séma: '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Érvénytelen üres URL-objektum hivatkozás"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Hibás gépkomponens (host): '%s'"
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "inuktitut"
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Érvénytelen tömbösszefűzés-elválasztó (array join separator) karakter"
+# src/prefs.c:380
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "interlingva"
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-"Érvénytelen tömbszétválasztás-elválasztó (array split separator) karakter"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr "iloko"
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-"Érvénytelen leképezésszétválasztás-elválasztó (map split separator) karakter"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "interlingva (International Auxiliary Language Association)"
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Érvénytelen port komponens: '%s'"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr "indiai (egyéb)"
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Érvénytelen reguláris kifejezés '%s'"
+# src/trans.h:302
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "indonéz"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Érvénytelen reguláris kifejezés '%s': regcomp visszatérési értéke: %d"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "indoeurópai (egyéb)"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Érvénytelen tárolónév: '%s'"
+# src/trans.h:293
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "ingus"
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Irán"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "inupiak"
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "iráni (egyéb)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Írország"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Ír"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "ír, középkori (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "ír, régi (900-ig)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "irokéz nyelvek"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Man sziget"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Izrael"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "olasz"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Olaszország"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
+# src/trans.h:222
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "jávai"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japán"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "lodzsbai"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japán"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "jávai"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordánia"
+# clients/inst_sw_single.ycp:1320 clients/inst_sw_single.ycp:1971
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "judeo-perzsa"
 
+# src/trans.h:283
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "judeo-arab"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "judeo-perzsa"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "kabardi"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "kara-kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2284,11 +3139,6 @@ msgstr "kacsin"
 msgid "Kalaallisut"
 msgstr "kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "kalmik"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2299,21 +3149,6 @@ msgstr "kamba"
 msgid "Kannada"
 msgstr "kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "kara-kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "karacsai-balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2324,10 +3159,11 @@ msgstr "karen"
 msgid "Kashmiri"
 msgstr "kasmíri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kasub"
+# src/trans.h:316
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2337,33 +3173,28 @@ msgstr "kavi"
 #. language code: kaz kk
 #: zypp/LanguageCode.cc:609
 msgid "Kazakh"
-msgstr "Kazah"
-
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazahsztán"
+msgstr "kazah"
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "kabardi"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "hászi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "khoisan (egyéb)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2374,50 +3205,41 @@ msgstr "khotáni"
 msgid "Kikuyu"
 msgstr "kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbunduk"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
-msgstr "Kirundi"
+msgstr "kinyarwanda"
 
 #. language code: kir ky
 #: zypp/LanguageCode.cc:625
 msgid "Kirghiz"
 msgstr "kirgiz"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbunduk"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
 msgid "Komi"
 msgstr "komi"
 
+# CG
 #. language code: kon kg
 #: zypp/LanguageCode.cc:633
 msgid "Kongo"
 msgstr "kongó"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
-msgstr "Koreai"
+msgstr "koreai"
 
 #. language code: kos
 #: zypp/LanguageCode.cc:637
@@ -2429,11 +3251,22 @@ msgstr "kozrai"
 msgid "Kpelle"
 msgstr "kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "karacsai-balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "kru"
 
+# src/trans.h:316
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2444,31 +3277,19 @@ msgstr "kuanyama"
 msgid "Kumyk"
 msgstr "kumik"
 
+# src/trans.h:316
 #. language code: kur ku
 #: zypp/LanguageCode.cc:651
 msgid "Kurdish"
 msgstr "kurd"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "kurukh"
-
-#. language code: kut
-#: zypp/LanguageCode.cc:653
-msgid "Kutenai"
-msgstr "kutenai"
-
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuvait"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgizisztán"
-
+# KE
+#. language code: kut
+#: zypp/LanguageCode.cc:653
+msgid "Kutenai"
+msgstr "kutenai"
+
+# src/trans.h:47 src/trans.h:50
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2484,73 +3305,29 @@ msgstr "lahnda"
 msgid "Lamba"
 msgstr "lamba"
 
+# src/prefs.c:397 src/trans.h:125
 #. language code: lao lo
 #: zypp/LanguageCode.cc:661
 msgid "Lao"
 msgstr "lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Lao Népi Demokratikus Népköztársaság"
-
+# src/trans.h:47 src/trans.h:50
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "latin"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Lettország"
-
+# src/trans.h:289
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
-msgstr "Lett"
-
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "1. szintű"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "2. szintű"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "3. szintű"
+msgstr "lett"
 
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "lezgiai"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Libéria"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Líbia"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2561,61 +3338,48 @@ msgstr "limburgi"
 msgid "Lingala"
 msgstr "lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litvánia"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
-msgstr "litván"
-
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "A '%s' hely ideiglenesen nem elérhető."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "lodzsbai"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "alsó-német"
+msgstr "Litván"
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "alsó-szorbiai"
+# CG
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "luba-katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "luxemburgi"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "luba-lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "luba-katanga"
+
+# GH
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "lule számi"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2631,35 +3395,12 @@ msgstr "luo (Kenya és Tanzánia)"
 msgid "Lushai"
 msgstr "lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "luxemburgi"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Makaó"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedónia"
-
+# src/trans.h:305
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "macedón"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaszkár"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2670,189 +3411,79 @@ msgstr "maduri"
 msgid "Magahi"
 msgstr "magahi"
 
+# MH
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "marshall"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
-msgstr "Maithili"
+msgstr "maithili"
 
+# MG
 #. language code: mak
 #: zypp/LanguageCode.cc:707
 msgid "Makasar"
 msgstr "makaszár"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "malagázi"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Maláj"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
-msgstr "Malajálam"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malajzia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldív-szigetek"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Hibás URI"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Málta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "máltai"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "mandzsu"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "mandar"
+msgstr "malajálam"
 
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "manobo nyelvek"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
-msgstr "Maori"
+msgstr "maori"
+
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "ausztronéziai (egyéb)"
 
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
-msgstr "Marathi"
-
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshall-szigetek"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "marshall"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "marvari"
+msgstr "marathi"
 
+# MW
 #. language code: mas
 #: zypp/LanguageCode.cc:721
-msgid "Masai"
-msgstr "maszáj"
-
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritánia"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "maja nyelvek"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "A '%s' adathordozó forrása nem tartalmazza a kívánt adathordozót"
+msgid "Masai"
+msgstr "maszáj"
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Jelenleg egy másik folyamat használja a(z) '%s' adathordozót"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "maláj"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Az adathordozó nincs csatlakoztatva"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "moksa"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
-"Az adathordozó elérése a(z) '%s' művelet végrehajtása közben nem sikerült."
+# MM
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Nagyvárosi Franciaország"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexikó"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "ír, középkori (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2864,86 +3495,67 @@ msgstr "mi'kmaq"
 msgid "Minangkabau"
 msgstr "minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "mirandai"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "vegyes nyelvek"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "mon-khmer (egyéb)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "malagázi"
+
+# src/trans.h:377
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "máltai"
+
+# modules/dialup/dialup.ycp:391 modules/dialup/dialup.ycp:401
+# modules/dialup/dialup.ycp:411
+# clients/lan_ISDN.ycp:909
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "mandzsu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "manobo nyelvek"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "mohauk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "moksa"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "moldáv"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "mon-khmer (egyéb)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongólia"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
-msgstr "Mongol"
-
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegró"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marokkó"
+msgstr "mongol"
 
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambik"
-
+# modules/inst_sw_single.ycp:117
+# clients/inst_sw_single.ycp:1072
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2954,210 +3566,150 @@ msgstr "több nyelv"
 msgid "Munda languages"
 msgstr "munda nyelvek"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Burma"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "krík"
+
+# src/trans.h:294
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "mirandai"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "marvari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "maja nyelvek"
 
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "erzia"
+
+# modules/dialup/dialup.ycp:391 modules/dialup/dialup.ycp:401
+# modules/dialup/dialup.ycp:411
+# clients/lan_ISDN.ycp:909
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namíbia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "észak-amerikai indián"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "nápolyi"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "navahó"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "észak-ndebelei"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "dél-ndebelei"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "észak-ndebelei"
+
+# TO
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "nápolyi"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepál"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "nepál-bhászai"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "alsó-német"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "nepáli"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Hollandia"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Holland-Antillák"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Új-Kaledónia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Új-Zéland"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Új frissítési üzenet"
+# NP
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "nepál-bhászai"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "niger-kordofáni (egyéb)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigéria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "nílus-szaharai (egyéb)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
+# NU
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "niuei"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Nincs kód"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "norvég nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "A telepítés forrás nem tartalmaz url-t."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "norvég Bokmal"
 
+# TO
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolk-szigetek"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "norvég, régi"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "észak-amerikai indián"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Észak-Korea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Északi Mariana-szigetek"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Északi szami"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "északi sotho"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norvégia"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "norvég"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "norvég Bokmal"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Norvég Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "CD-ROM meghajtó nem található"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "északi sotho"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "núbiai nyelvek"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "klasszikus nevari"
+
+# src/trans.h:290
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "csicseva"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3178,1696 +3730,2038 @@ msgstr "nyoro"
 msgid "Nzima"
 msgstr "nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Elavult"
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
+msgstr "okcitán (1500 utáni)"
+
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
+msgstr "odzsibva"
+
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
+msgstr "orija"
+
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
+msgstr "oromo"
+
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+msgid "Osage"
+msgstr "osage"
+
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
+msgstr "oszét"
+
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "török, ottomán (1500-1928)"
+
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
+msgstr "otomi nyelvek"
+
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "pápua (egyéb)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "pangazini"
+
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr "pahlavi"
+
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "pampanga"
+
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "pandzsábi"
+
+# clients/lan_modem.ycp:602
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "papiamento"
+
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "palaui"
+
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
+msgstr "perzsa, régi (kb. i.e. 600-400)"
+
+# clients/inst_sw_single.ycp:1320 clients/inst_sw_single.ycp:1971
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "perzsa"
+
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
+msgstr "Fülöp-szigeteki (egyéb)"
+
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
+msgstr "föníciai"
+
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "páli"
+
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
+msgstr "lengyel"
+
+# src/trans.h:302
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "pompeji"
+
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
+msgstr "portugál"
+
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
+msgstr "prakrit nyelvek"
+
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
+msgstr "provanszi, régi (1500-ig)"
+
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
+msgstr "pushto"
+
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
+msgstr "kecsua"
+
+# KZ
+# fuzzy
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
+msgstr "rádzsasztáni"
+
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
+msgstr "rapanui"
+
+# menuentries/menuentry_lan_route.ycp:14
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
+msgstr "rarotongai"
+
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
+msgstr "romansz (egyéb)"
+
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "rétoromán"
+
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "romany-i"
+
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "román"
+
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "rundi"
+
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "orosz"
+
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "sandawe"
+
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "szango"
+
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "jakut"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "dél-amerikai indián (egyéb)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "salishi nyelvek"
 
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
-msgstr "okcitán (1500 utáni)"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "szamaritánus arámi"
 
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
-msgstr "odzsibva"
+# src/trans.h:193
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
+msgstr "szanszkrit"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Omán"
+# src/trans.h:193
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "szaszak"
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Legalább az egyik szükséges a '%s' és '%s' paraméterekből."
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "szantáli"
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Az adathordozó nem támogatja ezt a műveletet"
+# src/trans.h:311
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "szerb"
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
-msgstr "Orija"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "szicíliai"
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
-msgstr "oromo"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "skót"
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
-msgid "Osage"
-msgstr "osage"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "horvát"
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
-msgstr "oszét"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "selkup"
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
-msgstr "otomi nyelvek"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "sémi (egyéb)"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"A(z) %s csomag megsérülhetett az átvitel közben. Megismétli az átvitelt?"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "ír, régi (900-ig)"
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr "pahlavi"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "jelnyelvek"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakisztán"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "sán"
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "szidamo"
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "palaui"
+# src/trans.h:270
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr "szinhala"
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palesztin területek"
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+msgid "Siouan Languages"
+msgstr "sziú nyelvek"
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "páli"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "sino-tibeti (egyéb)"
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "pampanga"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
+msgstr "szláv (egyéb)"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "szlovák"
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "pangazini"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "szlovén"
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "pandzsábi"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "déli számi"
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "papiamento"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "északi lapp"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Pápua Új-Guinea"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "számi nyelvek (egyéb)"
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "pápua (egyéb)"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "lule számi"
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "inári számi"
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "A(z) '%s' elérési út a(z) '%s' adathordozón nem könyvtár."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "szamoai"
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "A(z) '%s' elérési út a(z) '%s' adathordozón nem fájl."
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "szkolt számi"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Hozzáférés megtagadva: '%s'."
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "shona"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Perzsa"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "szindi"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr "perzsa, régi (kb. i.e. 600-400)"
+# modules/inst_sw_select.ycp:125
+# /usr/lib/YaST2/clients/inst_sw_select.ycp:194
+# clients/online_update.ycp:39
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "soninke"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "szogdiai"
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
-msgstr "Fülöp-szigeteki (egyéb)"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "szomáli"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Fülöp-szigetek"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "szonghai"
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
-msgstr "föníciai"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "sotho, déli"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
+#. language code: spa es
+#: zypp/LanguageCode.cc:989
+msgid "Spanish"
+msgstr "spanyol"
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Először az 'lsof' csomagot kell telepíteni."
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "szardíniai"
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "pompeji"
+# clients/lan_nfs_fstab.ycp:272
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "szerer"
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Lengyelország"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "nílus-szaharai (egyéb)"
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
-msgstr "lengyel"
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "swati"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugália"
+#. language code: suk
+#: zypp/LanguageCode.cc:999
+msgid "Sukuma"
+msgstr "szukuma"
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
-msgstr "portugál"
+#. language code: sun su
+#: zypp/LanguageCode.cc:1001
+msgid "Sundanese"
+msgstr "szundanéz"
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
-msgstr "prakrit nyelvek"
+#. language code: sus
+#: zypp/LanguageCode.cc:1003
+msgid "Susu"
+msgstr "szuszu"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Előfeltételei"
+# src/trans.h:311
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "sumer"
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Probléma azonosítás, amely a kompatibilitási információ nyújtására, "
-"telepítési segítségre, felhasználási támogatásra, folyamatos karbantartásra, "
-"és alapszintű hibakeresésre terjed ki. Az 1. szintű támogatásnak nem célja a "
-"termék hibáinak javítása."
+#. language code: swa sw
+#: zypp/LanguageCode.cc:1007
+msgid "Swahili"
+msgstr "szuahéli"
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Probléma izoláció, amely a vásárlói problémák reprodukálására, a problémák "
-"beazonosítására és az 1. szintű támogatás által meg nem oldott problémák "
-"javítására terjed ki."
+#. language code: swe sv
+#: zypp/LanguageCode.cc:1009
+msgid "Swedish"
+msgstr "svéd"
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Probléma megoldás, amely a fejlesztők bevonásával a 2. szintű támogatás "
-"által beazonosított összetett termékhibák megoldását szolgálja."
+# SY
+# fuzzy
+#. language code: syr
+#: zypp/LanguageCode.cc:1011
+msgid "Syriac"
+msgstr "szír"
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
-msgstr "provanszi, régi (1500-ig)"
+#. language code: tah ty
+#: zypp/LanguageCode.cc:1013
+msgid "Tahitian"
+msgstr "tahiti"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Nyújt"
+#. language code: tai
+#: zypp/LanguageCode.cc:1015
+msgid "Tai (Other)"
+msgstr "tai (egyéb)"
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+#. language code: tam ta
+#: zypp/LanguageCode.cc:1017
+msgid "Tamil"
+msgstr "tamil"
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
-msgstr "pushto"
+#. language code: tat tt
+#: zypp/LanguageCode.cc:1019
+msgid "Tatar"
+msgstr "tatár"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Katar"
+#. language code: tel te
+#: zypp/LanguageCode.cc:1021
+msgid "Telugu"
+msgstr "telugu"
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
-msgstr "kecsua"
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "timne"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "A lekérdezés feldolgozása ehhez az URL-hez nem támogatott"
+#. language code: ter
+#: zypp/LanguageCode.cc:1025
+msgid "Tereno"
+msgstr "tereno"
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM sikertelen: "
+#. language code: tet
+#: zypp/LanguageCode.cc:1027
+msgid "Tetum"
+msgstr "tetum"
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "rétoromán"
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "tádzsik"
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
-msgstr "rádzsasztáni"
+# src/trans.h:116
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "tagalog"
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
-msgstr "rapanui"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "thai"
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr "rarotongai"
+#. language code: tib bod bo
+#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
+msgid "Tibetan"
+msgstr "tibeti"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Ajánlottak"
+#. language code: tig
+#: zypp/LanguageCode.cc:1039
+msgid "Tigre"
+msgstr "tigre"
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-"Megadott hitelesítő esetén a relatív elérési útvonal megadása nem támogatott"
+# NG
+#. language code: tir ti
+#: zypp/LanguageCode.cc:1041
+msgid "Tigrinya"
+msgstr "tigrinja"
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "A(z) '%s' telepítési forrás eltávolítása"
+#. language code: tiv
+#: zypp/LanguageCode.cc:1043
+msgid "Tiv"
+msgstr "tiv"
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "A telepítési forrás álneve nem kezdődhet ponttal."
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "klingon"
+
+#. language code: tli
+#: zypp/LanguageCode.cc:1049
+msgid "Tlingit"
+msgstr "tlingit"
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "'%s' szükséges paraméter hiányzik."
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "tamasek"
 
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Igényli"
+#. language code: tog
+#: zypp/LanguageCode.cc:1053
+msgid "Tonga (Nyasa)"
+msgstr "tonga (Nyasa)"
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
+# SB
+#. language code: ton to
+#: zypp/LanguageCode.cc:1055
+msgid "Tonga (Tonga Islands)"
+msgstr "tongai (Tonga-szigetek)"
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "romansz (egyéb)"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "tok pisin"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Románia"
+# src/trans.h:227
+#. language code: tsi
+#: zypp/LanguageCode.cc:1059
+msgid "Tsimshian"
+msgstr "cimsiai"
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Román"
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "tswana"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "romany-i"
+#. language code: tso ts
+#: zypp/LanguageCode.cc:1063
+msgid "Tsonga"
+msgstr "tsonga"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "rundi"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "türkmén"
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "orosz"
+#. language code: tum
+#: zypp/LanguageCode.cc:1067
+msgid "Tumbuka"
+msgstr "tumbuka"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Oroszország"
+#. language code: tup
+#: zypp/LanguageCode.cc:1069
+msgid "Tupi Languages"
+msgstr "tupi nyelvek"
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "török"
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Szent Heléna"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "altáji (egyéb)"
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts és Nevis"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "twi"
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Santa Lucia"
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "tuvíniai"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint-Martin"
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "udmurti"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre és Miquelon"
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "ugariti"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent és Grenadines"
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "ujgur"
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "salishi nyelvek"
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "ukrán"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "szamaritánus arámi"
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "umbundu"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "számi nyelvek (egyéb)"
+# src/prefs.c:380
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "meghatározatlan"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Szamoa"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "urdu"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "szamoai"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "üzbég"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "vai"
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "sandawe"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "venda"
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "szango"
+# src/trans.h:270
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "vietnami"
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
-msgstr "szanszkrit"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "volapük"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "szantáli"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "vóti"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome és Principe"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "vakasai nyelvek"
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "szardíniai"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "valamo"
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "szaszak"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "varai"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Szaúd-Arábia"
+# modules/inst_config_x11.ycp:127
+# /usr/lib/YaST2/clients/inst_config_x11.ycp:750
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "vaso"
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "skót"
+# modules/inst_config_x11.ycp:127
+# /usr/lib/YaST2/clients/inst_config_x11.ycp:750
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "walesi"
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "selkup"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "szorbiai nyelvek"
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "sémi (egyéb)"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "vallon"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Szenegál"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "wolof"
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Szerbia"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "kalmik"
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "szerb"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "xhosa"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "szerer"
+# src/prefs.c:397 src/trans.h:125
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "yao"
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "A szolgáltatás álneve nem kezdődhet ponttal."
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "yapi"
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "A szolgáltatási bővítmény nem támogatja attribútum módosítását."
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "jiddis"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelle-szigetek"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "joruba"
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "sán"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "jupik nyelvek"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "shona"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "zapotek"
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "szecsuani yi"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "zenaga"
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "szicíliai"
+# BT
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "zhuang"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "szidamo"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "zande"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "zulu"
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "jelnyelvek"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "zuni"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "Az aláírás nem felelt meg az ellenőrzésen"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Kísérlet nem létező kulcs (%s) importálására a(z) %s kulcstárban"
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "A kulcs törlése sikertelen."
 
 #: zypp/KeyRing.cc:575
 #, c-format, boost-format
 msgid "Signature file %s not found"
 msgstr "A(z) %s aláírás-fájl nem található"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "Az aláírás rendben van"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "A(z) '%s' fájlt nem biztosítja a(z) '%s' telepítési forrás"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "Az aláírás rendben van, de a kulcs nem megbízható"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "A telepítés forrás nem tartalmaz url-t."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "A szolgáltatási bővítmény nem támogatja attribútum módosítását."
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"A(z) %s csomag megsérülhetett az átvitel közben. Megismétli az átvitelt?"
 
 #: zypp/repo/PackageProvider.cc:216
 msgid "Signature verification failed"
 msgstr "Az aláírás-ellenőrzés sikertelen"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "Az aláírások nyilvános kulcsa nem érhető el"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "szikszika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "szindi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Szingapúr"
-
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
-msgstr "Szimhala"
-
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "sino-tibeti (egyéb)"
-
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-msgid "Siouan Languages"
-msgstr "sziú nyelvek"
-
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "szkolt számi"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "slave (athapaszkai)"
-
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr "szláv (egyéb)"
-
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "szlovák"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Nem sikerült a %s csomag beszerzése. Megismétli az átvitelt?"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Szlovákia"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "az applydeltarpm ellenőrzés sikertelen."
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Szlovénia"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "az applydeltarpm futtatása sikertelen."
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "szlovén"
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"A rendszerkezelőt a %d (%s) pid-del rendelkező folyamat zárolta.\n"
+"Kérem, zárja be az alkalmazást, majd próbálja újra."
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "szogdiai"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s nem tartozik a distupgrade telepítési forráshoz"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Salamon-szigetek"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s alacsonyabb szintű architektúrával rendelkezik"
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "szomáli"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "probléma a telepített csomaggal: %s"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Szomália"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "ütköző kérelmek"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "szonghai"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "bizonyos függőségi probléma"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "soninke"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "semmi nem biztosítja a(z) %s csomagot"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "szorbiai nyelvek"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Minden szükséges telepítési forrást engedélyezett?"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-"Elnézést, de a libzypp ezen verziója beépített HAL-támogatás nélkül készült."
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "a(z) %s csomag nem létezik"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "sotho, déli"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "nem támogatott kérelem"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Dél-Afrika"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "A(z) %s a rendszertől származik, ezért törlése nem lehetséges."
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "dél-amerikai indián (egyéb)"
+# modules/inst_target_part.ycp:676
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s nem telepíthető"
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Dél-Georgia és a Dél-Sandwich-sziget"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr ""
+"semmi sem biztosítja a(z) %s csomagot,\n"
+"amely szükséges a(z) %s csomag telepítéséhez"
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Dél-Korea"
+# modules/inst_target_part.ycp:676
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "nem telepíthető %s és %s is"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "dél-altáji"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s ütközik a(z) %s csomaggal, amit a(z) %s csomag biztosít"
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "déli számi"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s elavulttá teszi a(z) %s csomagot, amit a(z) %s csomag biztosít"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spanyolország"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s elavulttá teszi a(z) %s csomagot, amit a(z) %s csomag biztosít"
 
-#. language code: spa es
-#: zypp/LanguageCode.cc:989
-msgid "Spanish"
-msgstr "Spanyol"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s ütközik a(z) %s csomaggal, amit saját maga biztosít"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Srí Lanka"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s csomagnak a következőre van szüksége: %s, de ez nem teljesíthető"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Szudán"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "törölt csomagok: "
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Javasoltak"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"nem telepíthető szolgáltatók: "
 
-#. language code: suk
-#: zypp/LanguageCode.cc:999
-msgid "Sukuma"
-msgstr "szukuma"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "nem telepíthető szolgáltatók: "
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "sumer"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "távolítsa el a zárolást a(z) %s eltávolításának engedélyezéséhez"
 
-#. language code: sun su
-#: zypp/LanguageCode.cc:1001
-msgid "Sundanese"
-msgstr "szundanéz"
+# modules/inst_target_part.ycp:676
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "Ne telepítse a(z) %s csomagot"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Kiegészítők"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "%s megtartása"
 
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "távolítsa el a zárolást a(z) %s telepítésének engedélyezéséhez"
 
-#. language code: sus
-#: zypp/LanguageCode.cc:1003
-msgid "Susu"
-msgstr "szuszu"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "A kért módosítás a rendszer meghibásodásához vezet!"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard és Jan Mayen-szigetek"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "a hibás rendszer figyelmeztetésének figyelmen kívül hagyása"
 
-#. language code: swa sw
-#: zypp/LanguageCode.cc:1007
-msgid "Swahili"
-msgstr "Szuahéli"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "ne kérdezzen rá a %s-t biztosító feloldható telepítésére"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Szvati"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "ne kérdezzen rá a %s-t biztosító feloldhatók eltávolítására"
 
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Szváziföld"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "Ne telepítse a(z) %s csomag legújabb verzióját"
 
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Svédország"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s megtartása az alacsonyabb rendű architektúra ellenére"
 
-#. language code: swe sv
-#: zypp/LanguageCode.cc:1009
-msgid "Swedish"
-msgstr "svéd"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "%s telepítése az alacsonyabb architektúra ellenére"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Svájc"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "az elavult %s megtartása"
 
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Szíria"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "%s telepítése a figyelmen kívül hagyott tárolóból"
 
-#. language code: syr
-#: zypp/LanguageCode.cc:1011
-msgid "Syriac"
-msgstr "szír"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "A(z) %s csomag visszafejlesztése a(z) %s csomagra"
 
-#: zypp/media/MediaException.cc:91
+#: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "%s rendszerkivétel történt a(z) '%s' adathordozón."
+msgid "architecture change of %s to %s"
+msgstr "A(z) %s csomag helyett a(z) %s architektúrájú csomag telepítése"
 
-#: zypp/ZYppFactory.cc:394
+#: zypp/solver/detail/SATResolver.cc:1334
 #, c-format, boost-format
 msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
-"A rendszerkezelőt a %d (%s) pid-del rendelkező folyamat zárolta.\n"
-"Kérem, zárja be az alkalmazást, majd próbálja újra."
+"%s telepítése (gyártó megváltoztatásával)\n"
+"  %s  -->  %s"
 
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "tagalog"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "%s cseréje erre: %s"
 
-#. language code: tah ty
-#: zypp/LanguageCode.cc:1013
-msgid "Tahitian"
-msgstr "tahiti"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "%s eltávolítása"
 
-#. language code: tai
-#: zypp/LanguageCode.cc:1015
-msgid "Tai (Other)"
-msgstr "tai (egyéb)"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "%s csomag megtörése néhány függőség figyelmen kívül hagyásával"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Tajvan"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "egyes függőségek általános mellőzése"
 
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tádzsik"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "'%s' szükséges paraméter hiányzik."
 
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tádzsikisztán"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Legalább az egyik szükséges a '%s' és '%s' paraméterekből."
 
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "tamasek"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "A zárolt fájl nem nyitható meg: %s"
 
-#. language code: tam ta
-#: zypp/LanguageCode.cc:1017
-msgid "Tamil"
-msgstr "tamil"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Ezt a folyamatot már elindította egy másik program."
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzánia"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Előzmények:"
 
-#. language code: tat tt
-#: zypp/LanguageCode.cc:1019
-msgid "Tatar"
-msgstr "tatár"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Ismeretlen illeszkedőmód: '%s'"
 
-#. language code: tel te
-#: zypp/LanguageCode.cc:1021
-msgid "Telugu"
-msgstr "telugu"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Ismeretlen illeszkedőmód: '%s', a(z) %s mintához."
 
-#. language code: ter
-#: zypp/LanguageCode.cc:1025
-msgid "Tereno"
-msgstr "tereno"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Érvénytelen reguláris kifejezés '%s': regcomp visszatérési értéke: %d"
 
-#. language code: tet
-#: zypp/LanguageCode.cc:1027
-msgid "Tetum"
-msgstr "tetum"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Érvénytelen reguláris kifejezés '%s'"
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr "Thai"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Először az 'lsof' csomagot kell telepíteni."
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thaiföld"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Felhasználóhitelesítés szükséges ehhez: '%s'"
 
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Nincs meghatározva a támogatás szintje"
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Nem sikerült a(z) %s felcsatolása ide: %s"
 
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "A gyártó nem biztosít támogatást."
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "A(z) %s eltávolítása sikertelen"
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Ezt a folyamatot már elindította egy másik program."
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Hibás fájlnév: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "A kért módosítás a rendszer meghibásodásához vezet!"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
+"Az adathordozó elérése a(z) '%s' művelet végrehajtása közben nem sikerült."
 
-#. language code: tib bod bo
-#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
-msgid "Tibetan"
-msgstr "tibeti"
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "A(z) '%s' fájl nem található a(z) '%s' adathordozón"
 
-#. language code: tig
-#: zypp/LanguageCode.cc:1039
-msgid "Tigre"
-msgstr "tigre"
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "A fájl írása sikertelen: '%s'."
 
-#. language code: tir ti
-#: zypp/LanguageCode.cc:1041
-msgid "Tigrinya"
-msgstr "tigrinja"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Az adathordozó nincs csatlakoztatva"
 
-#: zypp/media/MediaException.cc:207
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Hibás csatolási pont"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Időtúllépés a '%s' elérése közben."
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "A letöltés (curl) inicializálása meghiúsult: '%s'"
 
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "timne"
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr "%s rendszerkivétel történt a(z) '%s' adathordozón."
 
-#. language code: tiv
-#: zypp/LanguageCode.cc:1043
-msgid "Tiv"
-msgstr "tiv"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "A(z) '%s' elérési út a(z) '%s' adathordozón nem fájl."
 
-#. language code: tli
-#: zypp/LanguageCode.cc:1049
-msgid "Tlingit"
-msgstr "tlingit"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "A(z) '%s' elérési út a(z) '%s' adathordozón nem könyvtár."
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Hibás URI"
 
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "tok pisin"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Üres hosztnév a hivatkozásban"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Üres fájlrendszer a hivatkozásban"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Üres cél a hivatkozásban"
+
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Érvénytelen URI séma: '%s'."
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau-szigetek"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Az adathordozó nem támogatja ezt a műveletet"
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Letöltési (curl) hiba: '%s'\n"
+"Hibakód: %s\n"
+"Hibaüzenet: %s\n"
 
-#. language code: tog
-#: zypp/LanguageCode.cc:1053
-msgid "Tonga (Nyasa)"
-msgstr "tonga (Nyasa)"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "Hiba történt a '%s' letöltési (curl) beállításainak beállítása közben:"
 
-#. language code: ton to
-#: zypp/LanguageCode.cc:1055
-msgid "Tonga (Tonga Islands)"
-msgstr "tongai (Tonga-szigetek)"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "A '%s' adathordozó forrása nem tartalmazza a kívánt adathordozót"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Kísérlet nem létező kulcs (%s) importálására a(z) %s kulcstárban"
+msgid "Medium '%s' is in use by another instance"
+msgstr "Jelenleg egy másik folyamat használja a(z) '%s' adathordozót"
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad és Tobago"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Nincs kiadható adathordozó"
 
-#. language code: tsi
-#: zypp/LanguageCode.cc:1059
-msgid "Tsimshian"
-msgstr "cimsiai"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
+msgstr "A(z) '%s' adathordozó kiadása sikertelen"
 
-#. language code: tso ts
-#: zypp/LanguageCode.cc:1063
-msgid "Tsonga"
-msgstr "tsonga"
+#: zypp/media/MediaException.cc:199
+#, c-format, boost-format
+msgid "Permission to access '%s' denied."
+msgstr "Hozzáférés megtagadva: '%s'."
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "tswana"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Időtúllépés a '%s' elérése közben."
 
-#. language code: tum
-#: zypp/LanguageCode.cc:1067
-msgid "Tumbuka"
-msgstr "tumbuka"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "A '%s' hely ideiglenesen nem elérhető."
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunézia"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" hiba az SSL-tanúsítvánnyal, ellenőrizze, hogy megfelelő-e a CA tanúsítványa "
+"a következőhöz: '%s'."
 
-#. language code: tup
-#: zypp/LanguageCode.cc:1069
-msgid "Tupi Languages"
-msgstr "tupi nyelvek"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Nincs elérhető hurokeszköz a '%s' által tartalmazott képfájl felcsatolásához"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Törökország"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Nem támogatott HTTP hitelesítési metódus: '%s'"
 
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "Török"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Látogassa meg a Novell Ügyfélközpotot (Novell Customer Center), hogy "
+"ellenőrizni tudja, hogy a regisztrációja érvényes és nem jár re."
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "török, ottomán (1500-1928)"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Nem hozható létre sat-pool."
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "türkmén"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"A(z) %1% fájl\n"
+"  (csomag:\n"
+"     %2%)\n"
+"  ütközik a(z)\n"
+"     %3% csomag fájljával"
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Türkmenisztán"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"A(z) %1% fájl\n"
+"  (csomag:\n"
+"     %2%)\n"
+"  ütközik a(z)\n"
+"     %3% telepítés fájljával"
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks- és Caicos-szigetek"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"A(z) %1% fájl\n"
+"  (telepítés:\n"
+"     %2%)\n"
+"  ütközik a(z) %3%\n"
+"     csomag fájljával"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"A(z) %1% fájl\n"
+"  (telepítés:\n"
+"     %2%)\n"
+"  ütközik a(z) %3%\n"
+"     telepítés fájljával"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "tuvíniai"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"A(z) %1% fájl\n"
+"  (csomag:\n"
+"     %2%)\n"
+"  ütközik a(z)\n"
+"     %4%\n"
+"  csomag\n"
+"     %3% fájljával"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "twi"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"A(z) %1% fájl\n"
+"  (csomag:\n"
+"     %2%)\n"
+"  ütközik a(z)\n"
+"     %4%\n"
+"  telepítés\n"
+"     %3% fájljával"
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"A(z) %1% fájl\n"
+"  (telepítés:\n"
+"     %2%)\n"
+"  ütközik a(z)\n"
+"     %3%\n"
+"  fájllal (csomag:\n"
+"     %4%)"
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "udmurti"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"A(z) %1% fájl\n"
+"  (telepítés:\n"
+"     %2%)\n"
+"  ütközik a(z)\n"
+"     %3%\n"
+"  fájllal (telepítés:\n"
+"     %4%)"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "néhány függőség figyelmen kívül hagyása"
+
+# modules/inst_target_part.ycp:676
+#~ msgid "do not forbid installation of %s"
+#~ msgstr "A(z) %s csomag telepítése"
+
+# modules/inst_target_part.ycp:676
+#~ msgid "do not keep %s installed"
+#~ msgstr "A(z) %s csomag eltávolítása"
+
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "صربيا ومونتنيجرو"
+
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "خيار list غير معروف"
+
+#, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "تعذر حل التبعيات"
+
+#~ msgid ""
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "لا يحتوي الملف %s على مجموع اختباري.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الملف %s باستخدام المفتاح التالي:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير صالح.\n"
+#~ "متوقع %s، تم العثور على %s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير معروف %s.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "لم يتم توقيع الملف %s.\n"
+#~ "هل تريد استخدامه على أي حال؟"
+
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "تم توقيع الملف %s باستخدام مفتاح غير معروف:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "تم العثور على مفتاح غير موثوق:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد الوثوق بالمفتاح؟"
+
+#~ msgid "%s remove failed"
+#~ msgstr "فشلت إزالة %s"
+
+#, fuzzy
+#~ msgid "Invalid user name or password."
+#~ msgstr "كلمة السر CA غير صالحة."
+
+#~ msgid "rpm output:"
+#~ msgstr "مخرجات rpm:"
+
+#~ msgid "%s install failed"
+#~ msgstr "فشل تثبيت %s"
+
+#~ msgid "%s installed ok"
+#~ msgstr "تم تثبيت %s بنجاح"
+
+#~ msgid "%s remove ok"
+#~ msgstr "تمت إزالة %s بنجاح"
+
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
+
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
+
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "تجاهل %s القديم في %s"
+
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "تجاهل تعارض %s هذا"
+
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "تجاهل هذا المتطلب هنا فقط"
+
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
+
+#~ msgid "Install missing resolvables"
+#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
+
+#~ msgid "Keep resolvables"
+#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
+
+#~ msgid "Unlock these resolvables"
+#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
+
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
+
+#~ msgid "install %s"
+#~ msgstr "تثبيت %s"
+
+#~ msgid "unlock %s"
+#~ msgstr "إلغاء قفل %s"
+
+#~ msgid "unlock all resolvables"
+#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
+
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "تعذر فتح الملف %1."
+
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "تعذرت قراءة القطاع %u."
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "ugariti"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "ujgur"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukrajna"
+#~ msgid "Software management is already running."
+#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "Ukrán"
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "umbundu"
+#~ msgid "%s replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Az URL objektum másolása sikertelen"
+#, fuzzy
+#~ msgid "%s will be deleted by the user.\n"
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "A dbus kapcsolat létrehozása sikertelen"
+#, fuzzy
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-"A HAL kontextus inicializálása sikertelen -- lehetséges, hogy a hald nem fut?"
+#~ msgid "Invalid information"
+#~ msgstr "المعلومات غير صالحة"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Az URL komponens feldolgozása sikertelen"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "meghatározatlan"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s مطلوب بواسطة\n"
+#~ "%s"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Ismeretlen típusú tároló"
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Egyesült Arab Emirátusok"
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s يتعارض مع:\n"
+#~ "%s"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Egyesült Királyság"
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Amerikai Egyesült Államok"
+#~ msgid "%s obsoletes:%s"
+#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Amerikai Egyesült Államok - kisebb külső szigetek"
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Ismeretlen ország: "
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Ismeretlen hiba a '%s' beolvasása közben"
+#~ msgid "%s depends on %s"
+#~ msgstr "%s يعتمد على %s"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Ismeretlen nyelv: "
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s يعتمد على:%s"
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Ismeretlen illeszkedőmód: '%s'"
+#~ msgid "Child of"
+#~ msgstr "عنصر فرعي لـ"
 
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Ismeretlen illeszkedőmód: '%s', a(z) %s mintához."
+#, fuzzy
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-"Ismeretlen '%1%' szolgáltatás: az árva '%2%' szolgáltatástároló eltávolítása"
+#, fuzzy
+#~ msgid ""
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Ismeretlen támogatási opció. Leírás nem található"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Ismeretlen típusú aláírás"
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Nem támogatott HTTP hitelesítési metódus: '%s'"
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "لم يتم استيفاء متطلبات %s"
 
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Érvénytelen URI séma: '%s'."
+#~ msgid "%s has missing dependencies"
+#~ msgstr "تم فقد تبعيات %s"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "felső szorb"
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "urdu"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Az Url séma nem engedélyezi a(z) %s használatát"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Az Url séma megadása nem engedélyezi a gépkomponenst (host)"
+#~ msgid "No need to install %s"
+#~ msgstr "لا داعي لتثبيت %s"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Az Url séma nem engedélyezi a jelszót"
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Az Url séma nem engedélyezi a portot"
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Az Url séma nem engedélyezi a felhasználónevet"
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Az Url-séma megadása szükséges"
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Az Url sémában a gépkomponenst (host) megadása kötelező"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "تعذر تثبيت %s لأنه متعارض"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Az Url sémában az elérési útvonal megadása szükséges"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Üzbég"
+#, fuzzy
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s يفتقد المتطلب %s"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Üzbegisztán"
+#~ msgid ", Action: "
+#~ msgstr "، الإجراء:"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "vai"
+#~ msgid ", Trigger: "
+#~ msgstr "، تشغيل:"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#~ msgid "package"
+#~ msgstr "الحزمة"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#~ msgid "selection"
+#~ msgstr "التحديد"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "venda"
+#~ msgid "pattern"
+#~ msgstr "النمط"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
+#~ msgid "product"
+#~ msgstr "المنتج"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
+#~ msgid "patch"
+#~ msgstr "التصحيح"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnami"
+#~ msgid "script"
+#~ msgstr "البرنامج النصي"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Virgin-szigetek (USA)"
+#~ msgid "message"
+#~ msgstr "الرسالة"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Látogassa meg a Novell Ügyfélközpotot (Novell Customer Center), hogy "
-"ellenőrizni tudja, hogy a regisztrációja érvényes és nem jár re."
+#~ msgid "atom"
+#~ msgstr "الذرة"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "volapük"
+#~ msgid "system"
+#~ msgstr "النظام"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "vóti"
+#~ msgid "Resolvable"
+#~ msgstr "التبعية القابلة للتحليل"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "vakasai nyelvek"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "valamo"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis és Futuna"
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Vallon"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "varai"
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "vaso"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Walesi"
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Nyugat-Szahara"
+#~ msgid "Establishing %s"
+#~ msgstr "تأسيس %s"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "wolof"
+#~ msgid "Installing %s"
+#~ msgstr "تثبيت %s"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "xhosa"
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "jakut"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "تخطي %s: تم التثبيت بالفعل"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "yao"
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "yapi"
+#~ msgid "for %s"
+#~ msgstr "لـ %s"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "jiddis"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "joruba"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "jupik nyelvek"
+#~ msgid ""
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
+#~ msgstr ""
+#~ "%s يوفر %s، لكنه قابل لإلغاء التثبيت.  حاول تثبيته للحصول على مزيد من "
+#~ "التفاصيل."
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s يوفر %s، لكنه مقفل."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "zande"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "zapotek"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "zenaga"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "zhuang"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "zulu"
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "zuni"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "az applydeltarpm ellenőrzés sikertelen."
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "az applydeltarpm futtatása sikertelen."
+#~ msgid "from %s"
+#~ msgstr "من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1325
-#, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "A(z) %s csomag helyett a(z) %s architektúrájú csomag telepítése"
+#~ msgid " Error!"
+#~ msgstr "خطأ!"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "%s csomag megtörése néhány függőség figyelmen kívül hagyásával"
+#~ msgid " Important!"
+#~ msgstr "هام!"
 
-#: zypp/solver/detail/SATResolver.cc:1017
-#, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "nem telepíthető %s és %s is"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "ütköző kérelmek"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/target/rpm/RpmDb.cc:2344
-#, c-format, boost-format
-msgid "created backup %s"
-msgstr "%s másolata létrehozva"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
-#, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "%s eltávolítása"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "törölt csomagok: "
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "ne kérdezzen rá a %s-t biztosító feloldhatók eltávolítására"
+#~ msgid "%s part of %s"
+#~ msgstr "%s جزء من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "ne kérdezzen rá a %s-t biztosító feloldható telepítésére"
+#, fuzzy
+#~ msgid "Double timeout"
+#~ msgstr "موعد الاستحقاق: %1"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, c-format, boost-format
-msgid "do not install %s"
-msgstr "Ne telepítse a(z) %s csomagot"
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "Ne telepítse a(z) %s csomag legújabb verzióját"
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "تعذر تحليل سلطة Url"
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "A(z) %s csomag visszafejlesztése a(z) %s csomagra"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "egyes függőségek általános mellőzése"
+#~ msgid ""
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
+#~ "الارتباط."
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "a hibás rendszer figyelmeztetésének figyelmen kívül hagyása"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"%s telepítése (gyártó megváltoztatásával)\n"
-"  %s  -->  %s"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "تعذرت استعادة كافة المصادر."
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "%s telepítése az alacsonyabb architektúra ellenére"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "%s telepítése a figyelmen kívül hagyott tárolóból"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr ""
-"%s telepítésével elavulttá teszi a(z) %s csomagot, amit a(z) %s csomag "
-"biztosít"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "érvénytelen"
+#~ msgid "Reading index files"
+#~ msgstr "قراءة ملفات الفهرس"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "%s megtartása"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s megtartása az alacsonyabb rendű architektúra ellenére"
+#~ msgid "Reading product from %s"
+#~ msgstr "قراءة المنتج من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "az elavult %s megtartása"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "قراءة قائمة الملفات من %s"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: A libhal kontextus létrehozása sikertelen"
+#~ msgid "Reading packages from %s"
+#~ msgstr "قراءة الحزم من %s"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: A dbus kapcsolat beállítása sikertelen"
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr ""
-"semmi sem biztosítja a(z) %s csomagot,\n"
-"amely szükséges a(z) %s csomag telepítéséhez"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "semmi nem biztosítja a(z) %s csomagot"
+#~ msgid "Reading patches index %s"
+#~ msgstr "قراءة فهرس التصحيحات %s"
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "a(z) %s csomag nem létezik"
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "probléma a telepített csomaggal: %s"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "távolítsa el a zárolást a(z) %s telepítésének engedélyezéséhez"
+#~ msgid "Reading packages file"
+#~ msgstr "قراءة ملف الحزم"
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "távolítsa el a zárolást a(z) %s eltávolításának engedélyezéséhez"
+#~ msgid "Reading translation: %s"
+#~ msgstr "قراءة الترجمة: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "%s cseréje erre: %s"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
+#~ "التثبيت؟"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr ""
-"Az rpm létrehozta %s-t, mint %s, de nem sikerült megállapítani a különbséget"
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"Az rpm létrehozta %s-t, mint %s.\n"
-"A különbség első 25 sora:\n"
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr ""
-"Az rpm elmentette %s-t, mint %s, de nem sikerült megállapítani a különbséget"
+#~ msgid "Downloading %s"
+#~ msgstr "إنزال %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
-msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"Az rpm elmentette %s-t, mint %s.\n"
-"A különbség első 25 sora:\n"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr ""
+#~ "A(z) %s publikus kulcs elkészítése %s kulcstartóból %s fájlba sikertelen"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s ütközik a(z) %s csomaggal, amit saját maga biztosít"
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr "Nem létező kulcsot (%s) próbált a %s kulcstartóba importálni"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "bizonyos függőségi probléma"
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "A könyvtár '/'-ra váltása a chroot-ban sikertelen (%s)."
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "nem telepíthető csomagok: "
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "A letöltés (Metalink curl) inicializálása meghiúsult: '%s'"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "ismeretlen"
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "Letöltési (metalink curl) hiba: '%s'\n"
+#~ "Hibakód: %s\n"
+#~ "Hibaüzenet: %s\n"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "nem támogatott"
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "Letöltés megszakítva: at %d%%"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "nem támogatott kérelem"
+#~ msgid "Download interrupted by user"
+#~ msgstr "A letöltés a felhasználó megszakította"
+
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr ""
+#~ "Hiba történt a '%s' letöltési (metalink curl) beállításainak beállítása "
+#~ "közben:"
+
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Nem sikerült a(z) %s letöltése innen: %s"
index 9442b2b..c055abc 100644 (file)
--- a/po/id.po
+++ b/po/id.po
@@ -18,16 +18,96 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+#, fuzzy
+msgid "Invalid LDAP URL query string"
+msgstr "Parameter query LDAP URL tidak valid '%1'"
+
+#: zypp/Url.cc:153
+#, fuzzy, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Parameter query LDAP URL tidak valid '%1'"
+
+#: zypp/Url.cc:300
+#, fuzzy
+msgid "Unable to clone Url object"
+msgstr "Tidak dapat memparse komponen url utama"
+
+#: zypp/Url.cc:313
+#, fuzzy
+msgid "Invalid empty Url object reference"
+msgstr "Referensi implementasi url kosong tidak valid"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+#, fuzzy
+msgid "Unable to parse Url components"
+msgstr "Tidak dapat memparse komponen url utama"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr ""
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr ""
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr ""
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr ""
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -39,10 +119,6 @@ msgstr ""
 msgid " execution failed"
 msgstr "DBI Execution failed: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -51,93 +127,116 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "Italia"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/target/hal/HalContext.cc:117
+#, fuzzy
+msgid "HalContext not connected"
+msgstr "tidak tersambung"
+
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/target/hal/HalContext.cc:229
+#, fuzzy
+msgid "Unable to create dbus connection"
+msgstr "Tidak dapat memparse komponen url utama"
+
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
-# AZ
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-#, fuzzy
-msgid "Abkhazian"
-msgstr "Azerbaijan"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-#, fuzzy
-msgid "Achinese"
-msgstr "Cina"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
 #. report additional rpm output in finish
@@ -147,23 +246,1951 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "Software Tambahan"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
 msgstr ""
 
-# AF
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afghanistan"
-
-#. language code: afh
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Tidak dapat membuka %s untuk membaca: %s"
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Italia"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr ""
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Skema url '%1' tidak valid"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Italia"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:173
+#, fuzzy, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Data komponen url '%2' tidak valid %1"
+
+#: zypp/url/UrlBase.cc:180
+#, fuzzy, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Data tidak valid dalam komponen url %1"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+#, fuzzy
+msgid "Query string parsing not supported for this URL"
+msgstr "Parsing string query tidak didukung untuk url ini"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Skema url merupakan komponen yang dibutuhkan"
+
+#: zypp/url/UrlBase.cc:830
+#, fuzzy, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Skema url '%1' tidak valid"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1012
+#, fuzzy
+msgid "Url scheme requires a host component"
+msgstr "Skema url merupakan komponen yang dibutuhkan"
+
+#: zypp/url/UrlBase.cc:1022
+#, fuzzy
+msgid "Url scheme does not allow a host component"
+msgstr "Skema url merupakan komponen yang dibutuhkan"
+
+#: zypp/url/UrlBase.cc:1049
+#, fuzzy, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Data komponen url nama host '%1' tidak valid"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1081
+#, fuzzy, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Data komponen url '%2' tidak valid %1"
+
+#: zypp/url/UrlBase.cc:1098
+#, fuzzy
+msgid "Url scheme requires path name"
+msgstr "Skema url membutuhkan nama path"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Path relatif tidak dibolehkan bila otorita ada"
+
+#: zypp/url/UrlUtils.cc:111
+#, fuzzy
+msgid "Encoded string contains a NUL byte"
+msgstr "String URL-encoded berisikan byte NUL"
+
+#: zypp/url/UrlUtils.cc:173
+#, fuzzy
+msgid "Invalid parameter array split separator character"
+msgstr "Karakter pemisah parameter map join tidak valid"
+
+#: zypp/url/UrlUtils.cc:213
+#, fuzzy
+msgid "Invalid parameter map split separator character"
+msgstr "Karakter pemisah parameter map join tidak valid"
+
+#: zypp/url/UrlUtils.cc:283
+#, fuzzy
+msgid "Invalid parameter array join separator character"
+msgstr "Karakter pemisah parameter map join tidak valid"
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Tidak dapat membuka %s: %m"
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Tidak dapat membuka %s: %m"
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Tidak dapat membuka %s: %m"
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "Perintah yang di jalankan ketika menyambung"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "tidak dikenal"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr ""
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr ""
+
+# AD
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+# AE
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Uni Emirat Arab"
+
+# AF
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afghanistan"
+
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua dan Barbuda"
+
+# AI
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+# AL
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albania"
+
+# AM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenia"
+
+# AN
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Belanda Antilles"
+
+# AO
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+# AQ
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antartika"
+
+# AR
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+# AS
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Samoa Amerika"
+
+# AT
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austria"
+
+# AU
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australia"
+
+# AW
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+# KY
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+#, fuzzy
+msgid "Aland Islands"
+msgstr "Pulau Cayman"
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaijan"
+
+# BA
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnia Herzegovina"
+
+# BB
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+# BD
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+# BE
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgia"
+
+# BF
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+# BG
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaria"
+
+# BH
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
+
+# BI
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+# BJ
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+# BM
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+# BN
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+# BO
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
+
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brazil"
+
+# BS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahama"
+
+# BT
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
+
+# BV
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Pulau Bouvet"
+
+# BW
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+# BY
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Belarus"
+
+# BZ
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+# CA
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
+
+# CC
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Kepulauan Cocos (Keeling)"
+
+# CG
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
+
+# CF
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+#, fuzzy
+msgid "Central African Republic"
+msgstr "Republik Afrika Tengah"
+
+# CH
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Swiss"
+
+# CI
+# fuzzy
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+#, fuzzy
+msgid "Cote D'Ivoire"
+msgstr "Pantai Gading"
+
+# CK
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Kepulauan Cook"
+
+# CL
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
+
+# CM
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
+
+# CN
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Cina"
+
+# CO
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
+
+# CR
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuba"
+
+# CV
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Tanjung Verde"
+
+# CX
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Pulau Christmas"
+
+# CY
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Kipros"
+
+# CZ
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Republik Ceko"
+
+# DE
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Jerman"
+
+# DJ
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Jibouti"
+
+# DK
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Denmark"
+
+# DM
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominika"
+
+# DO
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Republik Dominika"
+
+# DZ
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Aljazair"
+
+# EC
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ekuador"
+
+# EE
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonia"
+
+# EG
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Mesir"
+
+# EH
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Sahara Barat"
+
+# ER
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+# ES
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spanyol"
+
+# ET
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Ethiopia"
+
+# FI
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finlandia"
+
+# FJ
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+# FK
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Kepulauan Malvinas"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr ""
+
+# FO
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Kepulauan Faroe"
+
+# FR
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Perancis"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr ""
+
+# GA
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr ""
+
+# GD
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+# GE
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Grujia"
+
+# GF
+# fuzzy
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Guiana Perancis"
+
+# DE
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Jerman"
+
+# GH
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+# GI
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Jibraltar"
+
+# GL
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Greenland"
+
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+# GN
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+# GP
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+# GQ
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Guinea Equator"
+
+# GR
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Yunani"
+
+# GS
+# fuzzy
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Georgia Selatan dan Pulau Sandwich Selatan"
+
+# GT
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+# GU
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+# GW
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
+
+# GY
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+# HK
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+# HM
+# fuzzy
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+#, fuzzy
+msgid "Heard Island and McDonald Islands"
+msgstr "Pulau Heard dan Kepulauan McDonald"
+
+# HN
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+# HR
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Kroasia"
+
+# HT
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+# HU
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hungaria"
+
+# ID
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesia"
+
+# IE
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irlandia"
+
+# IL
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Palestina"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+# IN
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
+
+# IO
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Inggris, Teritori Samudera Indonesia"
+
+# IQ
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Iraq"
+
+# IR
+# fuzzy
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iraq"
+
+# IS
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islandia"
+
+# IT
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italia"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+# JM
+# fuzzy
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaika"
+
+# JO
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordania"
+
+# JP
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "jepang"
+
+# KE
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
+
+# KG
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgistan"
+
+# KH
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kamboja"
+
+# KI
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+# KM
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comoros"
+
+# KN
+# fuzzy
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+#, fuzzy
+msgid "Saint Kitts and Nevis"
+msgstr "Santa Kitts dan Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr ""
+
+# ZA
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+#, fuzzy
+msgid "South Korea"
+msgstr "Afrika Selatan"
+
+# KW
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+# KY
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Pulau Cayman"
+
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazakhstan"
+
+# CD
+# fuzzy
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+#, fuzzy
+msgid "Lao People's Democratic Republic"
+msgstr "Laos"
+
+# LB
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Lebanon"
+
+# LC
+# fuzzy
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+#, fuzzy
+msgid "Saint Lucia"
+msgstr "Santa Lucia"
+
+# LI
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+# LK
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+# LS
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+# LT
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lithuania"
+
+# LU
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxembourg"
+
+# LV
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latvia"
+
+# LY
+# fuzzy
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Liberia"
+
+# MA
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Maroko"
+
+# MC
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monako"
+
+# MD
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
+
+# CG
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "Kongo"
+
+# SM
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "San Marino"
+
+# MG
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+# MH
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Kepulauan Marshall"
+
+# MK
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedonia"
+
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+# MM
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
+
+# MN
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolia"
+
+# MO
+# fuzzy
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Makao"
+
+# MP
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Kepulauan Mariana Utara"
+
+# MQ
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+# MR
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritania"
+
+# MS
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+# MT
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
+
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Mali"
+
+# MW
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+# MX
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Meksiko"
+
+# MY
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaysia"
+
+# MZ
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambique"
+
+# NA
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+# NC
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Caledonia Baru"
+
+# NE
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+# NF
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Kepulauan Norfolk"
+
+# NG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+# NI
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+# NL
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Belanda"
+
+# NO
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norwegia"
+
+# NP
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+# NR
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+# NU
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+# NZ
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "New Zealand"
+
+# OM
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+# PA
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+# PE
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+# PF
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Polinesia Perancis"
+
+# PG
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua New Guinea"
+
+# PH
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipina"
+
+# PK
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+# PL
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polandia"
+
+# PM
+# fuzzy
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+#, fuzzy
+msgid "Saint Pierre and Miquelon"
+msgstr "Santa Pierre dan Miquelon"
+
+# PN
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+# PR
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+# IO
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+#, fuzzy
+msgid "Palestinian Territory"
+msgstr "Inggris, Teritori Samudera Indonesia"
+
+# PT
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugis"
+
+# PW
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+# PY
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+# QA
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+# RE
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+# RO
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romania"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "Serbia"
+
+# RU
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Rusia"
+
+# RW
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+# SA
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Arab Saudi"
+
+# SB
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Pulau Sulaiman"
+
+# SC
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychelles"
+
+# SD
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+# SE
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Swedia"
+
+# SG
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapura"
+
+# SH
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Santa Helena"
+
+# SI
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenia"
+
+# SJ
+# fuzzy
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Kepulauan Svalbard dan Jan Mayen"
+
+# SK
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovakia"
+
+# SL
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+# SM
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+# SN
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+# SO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
+
+# SR
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
+
+# ST
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome dan Principe"
+
+# SV
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+# SY
+# fuzzy
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Suriname"
+
+# SZ
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swaziland"
+
+# TC
+# fuzzy
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+#, fuzzy
+msgid "Turks and Caicos Islands"
+msgstr "Kepulauan Turks dan Caicos"
+
+# TD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Chad"
+
+# TF
+# fuzzy
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+#, fuzzy
+msgid "French Southern Territories"
+msgstr "Perancis, Teritori Selatan"
+
+# TG
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+# TH
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Muangthai"
+
+# TJ
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tajikistan"
+
+# TK
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+# TM
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+# TN
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisia"
+
+# TO
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr ""
+
+# TR
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turki"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad dan Tobago"
+
+# TV
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+# TW
+# fuzzy
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Muangthai"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr ""
+
+# UA
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraina"
+
+# UG
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+# UM
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Amerika Serikat, kepulauan Luar Minor"
+
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Amerika Serikat"
+
+# UY
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+# UZ
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+# VA
+# fuzzy
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Negara Kota Vatican (Holy See)"
+
+# VC
+# fuzzy
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+#, fuzzy
+msgid "Saint Vincent and the Grenadines"
+msgstr "Santa Vincent dan Grenadin"
+
+# VE
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+#, fuzzy
+msgid "British Virgin Islands"
+msgstr "Virgin Islands (Amerika)"
+
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Virgin Islands (Amerika)"
+
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Viet Nam"
+
+# VU
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+# WF
+# fuzzy
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Kepulauan Wallis dan Futuna"
+
+# WS
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+# YE
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Yaman"
+
+# YT
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+# ZA
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Afrika Selatan"
+
+# ZM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
+
+# ZW
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr ""
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr ""
+
+# AZ
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+#, fuzzy
+msgid "Abkhazian"
+msgstr "Azerbaijan"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+#, fuzzy
+msgid "Achinese"
+msgstr "Cina"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr ""
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr ""
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr ""
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr ""
+
+#. language code: afh
 #: zypp/LanguageCode.cc:175
 msgid "Afrihili"
 msgstr ""
@@ -173,11 +2200,6 @@ msgstr ""
 msgid "Afrikaans"
 msgstr "Afrika"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr ""
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -194,19 +2216,6 @@ msgstr "Afrika"
 msgid "Akkadian"
 msgstr ""
 
-# KY
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-#, fuzzy
-msgid "Aland Islands"
-msgstr "Pulau Cayman"
-
-# AL
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albania"
-
 # AL
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
@@ -217,13 +2226,7 @@ msgstr "Albania"
 #. language code: ale
 #: zypp/LanguageCode.cc:189
 msgid "Aleut"
-msgstr ""
-
-# DZ
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Aljazair"
+msgstr ""
 
 # LK
 #. language code: alg
@@ -232,16 +2235,12 @@ msgstr "Aljazair"
 msgid "Algonquian Languages"
 msgstr "Sri Lanka"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr ""
-
-# AS
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Samoa Amerika"
+# ZA
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+#, fuzzy
+msgid "Southern Altai"
+msgstr "Afrika Selatan"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
@@ -249,39 +2248,11 @@ msgstr "Samoa Amerika"
 msgid "Amharic"
 msgstr "Arab"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-# AD
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
-
-# AO
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-# AI
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
-
-# AQ
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antartika"
-
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua dan Barbuda"
-
 # LK
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -294,22 +2265,24 @@ msgstr "Sri Lanka"
 msgid "Arabic"
 msgstr "Arab"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr ""
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 #, fuzzy
 msgid "Aramaic"
 msgstr "Arab"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
+# AM
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+#, fuzzy
+msgid "Armenian"
+msgstr "Armenia"
+
 # MR
 #. language code: arn
 #: zypp/LanguageCode.cc:211
@@ -317,40 +2290,20 @@ msgstr ""
 msgid "Araucanian"
 msgstr "Mauritania"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-# AR
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
-
-# AM
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenia"
-
-# AM
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-#, fuzzy
-msgid "Armenian"
-msgstr "Armenia"
-
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr ""
 
-# AW
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr ""
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -372,35 +2325,12 @@ msgid "Athapascan Languages"
 msgstr "Australia"
 
 # AU
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australia"
-
-# AU
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 #, fuzzy
 msgid "Australian Languages"
 msgstr "Australia"
 
-# AT
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austria"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr ""
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 #, fuzzy
@@ -425,48 +2355,29 @@ msgid "Aymara"
 msgstr "Myanmar"
 
 # AZ
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaijan"
-
-# AZ
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 #, fuzzy
 msgid "Azerbaijani"
 msgstr "Azerbaijan"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
-
-# BS
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahama"
-
-# BH
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+# CA
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+#, fuzzy
+msgid "Banda"
+msgstr "Kanada"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
+# LK
+#. language code: bai
+#: zypp/LanguageCode.cc:239
 #, fuzzy
-msgid "Balinese"
-msgstr "Cina"
+msgid "Bamileke Languages"
+msgstr "Sri Lanka"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
 #. language code: bal
@@ -481,36 +2392,16 @@ msgstr ""
 msgid "Bambara"
 msgstr "Gambia"
 
-# LK
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-#, fuzzy
-msgid "Bamileke Languages"
-msgstr "Sri Lanka"
-
-# CA
-#. language code: bad
-#: zypp/LanguageCode.cc:237
+#. language code: ban
+#: zypp/LanguageCode.cc:247
 #, fuzzy
-msgid "Banda"
-msgstr "Kanada"
-
-# BD
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr ""
+msgid "Balinese"
+msgstr "Cina"
 
-# BB
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Basque"
 
 #. language code: bas
 #: zypp/LanguageCode.cc:253
@@ -518,53 +2409,23 @@ msgstr "Barbados"
 msgid "Basa"
 msgstr "Basque"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Basque"
-
-# ID
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-#, fuzzy
-msgid "Batak (Indonesia)"
-msgstr "Indonesia"
-
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr ""
 
 # BY
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belarus"
-
-# BY
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 #, fuzzy
 msgid "Belarusian"
 msgstr "Belarus"
 
-# BE
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgia"
-
-# BZ
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
-
 # BM
 #. language code: bem
 #: zypp/LanguageCode.cc:261
@@ -573,40 +2434,22 @@ msgid "Bemba"
 msgstr "Bermuda"
 
 # SN
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-#, fuzzy
-msgid "Bengali"
-msgstr "Senegal"
-
-# BJ
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+#, fuzzy
+msgid "Bengali"
+msgstr "Senegal"
 
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr ""
 
-# BM
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr ""
 
-# BT
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
-
 # BH
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
@@ -631,293 +2474,83 @@ msgstr "Benin"
 msgid "Bislama"
 msgstr ""
 
-# BJ
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-#, fuzzy
-msgid "Blin"
-msgstr "Benin"
-
-# BO
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr ""
 
-# BA
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia Herzegovina"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr ""
 
 # BW
 #. language code: bos bs
 #: zypp/LanguageCode.cc:281
 #, fuzzy
 msgid "Bosnian"
-msgstr "Botswana"
-
-# BW
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-# BV
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Pulau Bouvet"
-
-# BR
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-#, fuzzy
-msgid "Braj"
-msgstr "Brazil"
-
-# BR
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brazil"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Breton"
-
-# IO
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Inggris, Teritori Samudera Indonesia"
-
-# VI
-# fuzzy
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-#, fuzzy
-msgid "British Virgin Islands"
-msgstr "Virgin Islands (Amerika)"
-
-# BN
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-#, fuzzy
-msgid "Buginese"
-msgstr "Cina"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
-
-# BG
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaria"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgaria"
-
-# BG
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-#, fuzzy
-msgid "Buriat"
-msgstr "Bulgaria"
-
-# BF
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr ""
-
-# BI
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
-
-# TD
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-#, fuzzy
-msgid "Caddo"
-msgstr "Chad"
-
-# KH
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kamboja"
-
-# CM
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "Tidak dapat membuat file temp %s: %m"
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr ""
-
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Tidak dapat membuka %s: %m"
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Italia"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr ""
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Italia"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr ""
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr ""
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Tidak dapat membuka %s untuk membaca: %s"
-
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Tidak dapat membuka %s: %m"
-
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Tidak dapat membuka %s: %m"
-
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Tidak dapat membuka %s: %m"
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr ""
+msgstr "Botswana"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr ""
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+#, fuzzy
+msgid "Braj"
+msgstr "Brazil"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr ""
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Breton"
 
-# CA
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+# ID
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+#, fuzzy
+msgid "Batak (Indonesia)"
+msgstr "Indonesia"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+# BG
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+#, fuzzy
+msgid "Buriat"
+msgstr "Bulgaria"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Italia"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+#, fuzzy
+msgid "Buginese"
+msgstr "Cina"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgaria"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+# BJ
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+#, fuzzy
+msgid "Blin"
+msgstr "Benin"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Tidak dapat membuat file temp (%s): %m"
+# TD
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+#, fuzzy
+msgid "Caddo"
+msgstr "Chad"
 
-# CV
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Tanjung Verde"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr ""
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -935,12 +2568,6 @@ msgstr "Catalan"
 msgid "Caucasian (Other)"
 msgstr ""
 
-# KY
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Pulau Cayman"
-
 # LB
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
@@ -953,36 +2580,6 @@ msgstr "Lebanon"
 msgid "Celtic (Other)"
 msgstr ""
 
-# CF
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-#, fuzzy
-msgid "Central African Republic"
-msgstr "Republik Afrika Tengah"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr ""
-
-# TD
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Chad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr ""
-
-# LK
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-#, fuzzy
-msgid "Chamic Languages"
-msgstr "Sri Lanka"
-
 # KM
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
@@ -990,29 +2587,6 @@ msgstr "Sri Lanka"
 msgid "Chamorro"
 msgstr "Comoros"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr ""
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-#, fuzzy
-msgid "Chechen"
-msgstr "Cekoslowakia"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr ""
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr ""
-
 # CN
 #. language code: chb
 #: zypp/LanguageCode.cc:317
@@ -1020,121 +2594,75 @@ msgstr ""
 msgid "Chibcha"
 msgstr "Cina"
 
-# CL
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
 #, fuzzy
-msgid "Chichewa"
-msgstr "Chile"
-
-# CL
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+msgid "Chechen"
+msgstr "Cekoslowakia"
 
-# CN
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Cina"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr ""
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Cina"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+#, fuzzy
+msgid "Chuukese"
+msgstr "Cina"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+#, fuzzy
+msgid "Mari"
+msgstr "Maori"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr ""
 
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr ""
+
 #. language code: chp
 #: zypp/LanguageCode.cc:335
 msgid "Chipewyan"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-# CX
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Pulau Christmas"
-
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-#, fuzzy
-msgid "Chuukese"
-msgstr "Cina"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr ""
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr ""
-
-# CC
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Kepulauan Cocos (Keeling)"
-
-# CO
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "Perintah yang di jalankan ketika menyambung"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-# KM
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comoros"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
-
-# CG
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr ""
 
-# CK
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Kepulauan Cook"
+# LK
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+#, fuzzy
+msgid "Chamic Languages"
+msgstr "Sri Lanka"
 
 # CR
 #. language code: cop
@@ -1156,37 +2684,6 @@ msgstr "Irlandia"
 msgid "Corsican"
 msgstr "Costa Rica"
 
-# CR
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-# CI
-# fuzzy
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-#, fuzzy
-msgid "Cote D'Ivoire"
-msgstr "Pantai Gading"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-#, fuzzy
-msgid "Cree"
-msgstr "Yunani"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-#, fuzzy
-msgid "Creek"
-msgstr "Yunani"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr ""
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1202,50 +2699,37 @@ msgstr ""
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+#, fuzzy
+msgid "Cree"
+msgstr "Yunani"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr ""
 
-# HR
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Kroasia"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Kroasia"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
 
-# CU
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr ""
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr ""
 
-# CY
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Kipros"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Cekoslowakia"
 
-# CZ
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Republik Ceko"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1271,11 +2755,15 @@ msgstr ""
 msgid "Delaware"
 msgstr ""
 
-# DK
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Denmark"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr ""
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr ""
 
 # DM
 #. language code: din
@@ -1289,54 +2777,23 @@ msgstr "Dominika"
 msgid "Divehi"
 msgstr ""
 
-# DJ
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Jibouti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 #, fuzzy
 msgid "Dogri"
 msgstr "Maori"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr ""
-
-# DM
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominika"
-
-# DO
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Republik Dominika"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr ""
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+#, fuzzy
+msgid "Lower Sorbian"
+msgstr "Serbia"
+
 # PW
 #. language code: dua
 #: zypp/LanguageCode.cc:397
@@ -1344,10 +2801,9 @@ msgstr ""
 msgid "Duala"
 msgstr "Palau"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
 #. language code: dut nld nl
@@ -1355,11 +2811,6 @@ msgstr ""
 msgid "Dutch"
 msgstr "Belanda"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr ""
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1372,28 +2823,11 @@ msgstr ""
 msgid "Dzongkha"
 msgstr "Tonga"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr ""
-
-# EC
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ekuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr ""
 
-# EG
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Mesir"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1401,95 +2835,23 @@ msgstr ""
 
 #. language code: eka
 #: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr ""
-
-# SV
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr ""
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:111
-#, fuzzy
-msgid "Encoded string contains a NUL byte"
-msgstr "String URL-encoded berisikan byte NUL"
-
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-#, fuzzy
-msgid "English"
-msgstr "Inggris (British)"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr ""
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr ""
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-# GQ
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Guinea Equator"
-
-# ER
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+msgid "Ekajuk"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr ""
+
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+#, fuzzy
+msgid "English"
+msgstr "Inggris (British)"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
 #. language code: epo eo
@@ -1497,23 +2859,11 @@ msgstr ""
 msgid "Esperanto"
 msgstr "Esperanto"
 
-# EE
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonia"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estonia"
 
-# ET
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Ethiopia"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1524,57 +2874,6 @@ msgstr ""
 msgid "Ewondo"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Failed to parse: %s."
-
-# FK
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Kepulauan Malvinas"
-
 # FR
 #. language code: fan
 #: zypp/LanguageCode.cc:429
@@ -1582,19 +2881,6 @@ msgstr "Kepulauan Malvinas"
 msgid "Fang"
 msgstr "Perancis"
 
-# HT
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-#, fuzzy
-msgid "Fanti"
-msgstr "Haiti"
-
-# FO
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Kepulauan Faroe"
-
 # FO
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
@@ -1602,16 +2888,12 @@ msgstr "Kepulauan Faroe"
 msgid "Faroese"
 msgstr "Kepulauan Faroe"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr ""
-
-# FJ
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
+# HT
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+#, fuzzy
+msgid "Fanti"
+msgstr "Haiti"
 
 # FJ
 #. language code: fij fj
@@ -1620,114 +2902,6 @@ msgstr "Fiji"
 msgid "Fijian"
 msgstr "Fiji"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 # PH
 #. language code: fil
 #: zypp/LanguageCode.cc:437
@@ -1735,12 +2909,6 @@ msgstr ""
 msgid "Filipino"
 msgstr "Filipina"
 
-# FI
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finlandia"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1751,47 +2919,16 @@ msgstr "Finlandia"
 msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr ""
 
-# FR
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Perancis"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Prancis"
 
-# GF
-# fuzzy
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Guiana Perancis"
-
-# PF
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Polinesia Perancis"
-
-# TF
-# fuzzy
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-#, fuzzy
-msgid "French Southern Territories"
-msgstr "Perancis, Teritori Selatan"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1809,6 +2946,11 @@ msgstr ""
 msgid "Frisian"
 msgstr "Perancis"
 
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
+msgstr ""
+
 # FI
 #. language code: fur
 #: zypp/LanguageCode.cc:457
@@ -1816,11 +2958,6 @@ msgstr "Perancis"
 msgid "Friulian"
 msgstr "Finlandia"
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
-msgstr ""
-
 # GU
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
@@ -1829,38 +2966,6 @@ msgid "Ga"
 msgstr "Guam"
 
 # GA
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-# ML
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-#, fuzzy
-msgid "Gaelic"
-msgstr "Mali"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-#, fuzzy
-msgid "Galician"
-msgstr "Italia"
-
-# GM
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-# GH
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-#, fuzzy
-msgid "Ganda"
-msgstr "Ghana"
-
-# GA
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 #, fuzzy
@@ -1875,17 +2980,11 @@ msgstr "Gabon"
 msgid "Gbaya"
 msgstr "Liberia"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
+#. language code: gem
+#: zypp/LanguageCode.cc:465
 #, fuzzy
-msgid "Geez"
-msgstr "Yunani"
-
-# GE
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Grujia"
+msgid "Germanic (Other)"
+msgstr "Jerman (Swiss)"
 
 # GE
 #. language code: geo kat ka
@@ -1899,42 +2998,48 @@ msgstr "Grujia"
 msgid "German"
 msgstr "Jerman"
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
-msgstr ""
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+#, fuzzy
+msgid "Geez"
+msgstr "Yunani"
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
+# ML
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
 #, fuzzy
-msgid "Germanic (Other)"
-msgstr "Jerman (Swiss)"
+msgid "Gaelic"
+msgstr "Mali"
 
-# DE
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Jerman"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irlandia"
 
-# GH
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+#, fuzzy
+msgid "Galician"
+msgstr "Italia"
 
-# GI
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Jibraltar"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr ""
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
+msgstr ""
+
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
 # IN
@@ -1961,12 +3066,6 @@ msgstr ""
 msgid "Grebo"
 msgstr "Gabon"
 
-# GR
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Yunani"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1977,72 +3076,17 @@ msgstr ""
 msgid "Greek, Modern (1453-)"
 msgstr ""
 
-# GL
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Greenland"
-
-# GD
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-# GP
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-# GU
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 #, fuzzy
 msgid "Guarani"
 msgstr "Hongaria"
 
-# GT
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-# DE
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Jerman"
-
-# GN
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-# GW
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr ""
 
-# GY
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -2056,45 +3100,17 @@ msgid "Haida"
 msgstr "Haiti"
 
 # HT
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
-# HT
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 #, fuzzy
 msgid "Haitian"
 msgstr "Haiti"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "tidak tersambung"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 # HT
 #. language code: haw
 #: zypp/LanguageCode.cc:517
@@ -2102,14 +3118,6 @@ msgstr ""
 msgid "Hawaiian"
 msgstr "Haiti"
 
-# HM
-# fuzzy
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-#, fuzzy
-msgid "Heard Island and McDonald Islands"
-msgstr "Pulau Heard dan Kepulauan McDonald"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -2138,16 +3146,6 @@ msgstr ""
 msgid "Hindi"
 msgstr "India"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr ""
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 # HT
 #. language code: hit
 #: zypp/LanguageCode.cc:529
@@ -2162,36 +3160,22 @@ msgstr "Haiti"
 msgid "Hmong"
 msgstr "Tonga"
 
-# VA
-# fuzzy
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Negara Kota Vatican (Holy See)"
-
-# HN
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr ""
 
-# HK
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+#, fuzzy
+msgid "Upper Sorbian"
+msgstr "Serbia"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Hongaria"
 
-# HU
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hungaria"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2205,11 +3189,10 @@ msgstr ""
 msgid "Iban"
 msgstr "Iraq"
 
-# IS
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islandia"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr ""
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2221,47 +3204,43 @@ msgstr "Islandia"
 msgid "Ido"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr ""
+# LT
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+#, fuzzy
+msgid "Sichuan Yi"
+msgstr "Lithuania"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr ""
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr ""
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr ""
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-# IN
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
-
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr ""
-
-# ID
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesia"
-
 # ID
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
@@ -2269,32 +3248,16 @@ msgstr "Indonesia"
 msgid "Indonesian"
 msgstr "Indonesia"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr ""
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr ""
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr ""
-
 # IN
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
@@ -2302,116 +3265,11 @@ msgstr ""
 msgid "Inupiaq"
 msgstr "India"
 
-#: zypp/url/UrlBase.cc:180
-#, fuzzy, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Data tidak valid dalam komponen url %1"
-
-#: zypp/url/UrlBase.cc:173
-#, fuzzy, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Data komponen url '%2' tidak valid %1"
-
-#: zypp/Url.cc:153
-#, fuzzy, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Parameter query LDAP URL tidak valid '%1'"
-
-#: zypp/Url.cc:114
-#, fuzzy
-msgid "Invalid LDAP URL query string"
-msgstr "Parameter query LDAP URL tidak valid '%1'"
-
-#: zypp/url/UrlBase.cc:830
-#, fuzzy, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Skema url '%1' tidak valid"
-
-#: zypp/Url.cc:313
-#, fuzzy
-msgid "Invalid empty Url object reference"
-msgstr "Referensi implementasi url kosong tidak valid"
-
-#: zypp/url/UrlBase.cc:1049
-#, fuzzy, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Data komponen url nama host '%1' tidak valid"
-
-#: zypp/url/UrlUtils.cc:283
-#, fuzzy
-msgid "Invalid parameter array join separator character"
-msgstr "Karakter pemisah parameter map join tidak valid"
-
-#: zypp/url/UrlUtils.cc:173
-#, fuzzy
-msgid "Invalid parameter array split separator character"
-msgstr "Karakter pemisah parameter map join tidak valid"
-
-#: zypp/url/UrlUtils.cc:213
-#, fuzzy
-msgid "Invalid parameter map split separator character"
-msgstr "Karakter pemisah parameter map join tidak valid"
-
-#: zypp/url/UrlBase.cc:1081
-#, fuzzy, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Data komponen url '%2' tidak valid %1"
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Skema url '%1' tidak valid"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Skema url '%1' tidak valid"
-
-# IR
-# fuzzy
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iraq"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr ""
 
-# IQ
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Iraq"
-
-# IE
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irlandia"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irlandia"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr ""
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr ""
-
 # LK
 #. language code: iro
 #: zypp/LanguageCode.cc:575
@@ -2419,76 +3277,43 @@ msgstr ""
 msgid "Iroquoian Languages"
 msgstr "Sri Lanka"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-# IL
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Palestina"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italia"
 
-# IT
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italia"
-
-# JM
-# fuzzy
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaika"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+#, fuzzy
+msgid "Javanese"
+msgstr "Jepang"
 
-# JP
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "jepang"
+# LB
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+#, fuzzy
+msgid "Lojban"
+msgstr "Lebanon"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Jepang"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-#, fuzzy
-msgid "Javanese"
-msgstr "Jepang"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-# JO
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordania"
-
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 #, fuzzy
 msgid "Judeo-Arabic"
 msgstr "Arab"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr ""
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
 #. language code: kab
@@ -2504,13 +3329,8 @@ msgid "Kachin"
 msgstr "Bahrain"
 
 #. language code: kal kl
-#: zypp/LanguageCode.cc:595
-msgid "Kalaallisut"
-msgstr ""
-
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
+#: zypp/LanguageCode.cc:595
+msgid "Kalaallisut"
 msgstr ""
 
 # GM
@@ -2527,21 +3347,6 @@ msgstr "Gambia"
 msgid "Kannada"
 msgstr "Kanada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr ""
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr ""
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr ""
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 #, fuzzy
@@ -2553,9 +3358,9 @@ msgstr "Korea"
 msgid "Kashmiri"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
 # MW
@@ -2573,18 +3378,10 @@ msgstr "Malawi"
 msgid "Kazakh"
 msgstr "Kazakhstan"
 
-# KZ
-# fuzzy
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
-
-# KE
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr ""
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
@@ -2592,16 +3389,16 @@ msgstr "Kenya"
 msgid "Khasi"
 msgstr "Thailand"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr ""
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr ""
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr ""
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 #, fuzzy
@@ -2613,11 +3410,6 @@ msgstr "Cina"
 msgid "Kikuyu"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr ""
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2628,17 +3420,17 @@ msgstr ""
 msgid "Kirghiz"
 msgstr ""
 
-# KI
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+#, fuzzy
+msgid "Konkani"
+msgstr "Korea"
+
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
 msgid "Komi"
@@ -2651,12 +3443,6 @@ msgstr ""
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-#, fuzzy
-msgid "Konkani"
-msgstr "Korea"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2673,11 +3459,22 @@ msgstr "Korea"
 msgid "Kpelle"
 msgstr ""
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr ""
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr ""
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+#, fuzzy
+msgid "Kurukh"
+msgstr "Turki"
+
 # PA
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
@@ -2696,12 +3493,6 @@ msgstr ""
 msgid "Kurdish"
 msgstr "Turki"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-#, fuzzy
-msgid "Kurukh"
-msgstr "Turki"
-
 # KE
 #. language code: kut
 #: zypp/LanguageCode.cc:653
@@ -2709,19 +3500,6 @@ msgstr "Turki"
 msgid "Kutenai"
 msgstr "Kenya"
 
-# KW
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-# KG
-# fuzzy
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgistan"
-
 # LB
 #. language code: lad
 #: zypp/LanguageCode.cc:655
@@ -2750,14 +3528,6 @@ msgstr "Gambia"
 msgid "Lao"
 msgstr "Lebanon"
 
-# CD
-# fuzzy
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-#, fuzzy
-msgid "Lao People's Democratic Republic"
-msgstr "Laos"
-
 # LV
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
@@ -2766,66 +3536,17 @@ msgid "Latin"
 msgstr "Latvia"
 
 # LV
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latvia"
-
-# LV
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 #, fuzzy
 msgid "Latvian"
 msgstr "Latvia"
 
-# LB
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Lebanon"
-
-# LS
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr ""
 
-# LR
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-# LY
-# fuzzy
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Liberia"
-
-# LI
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 # LU
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
@@ -2840,66 +3561,52 @@ msgstr "Luxembourg"
 msgid "Lingala"
 msgstr "Angola"
 
-# LT
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lithuania"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Lithuania"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-# LB
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-#, fuzzy
-msgid "Lojban"
-msgstr "Lebanon"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-#, fuzzy
-msgid "Low German"
-msgstr "Jerman"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
+# CG
+#. language code: lol
+#: zypp/LanguageCode.cc:675
 #, fuzzy
-msgid "Lower Sorbian"
-msgstr "Serbia"
+msgid "Mongo"
+msgstr "Kongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr ""
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr ""
+# LU
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+#, fuzzy
+msgid "Luxembourgish"
+msgstr "Luxembourg"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr ""
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr ""
+
+# GH
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+#, fuzzy
+msgid "Ganda"
+msgstr "Ghana"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr ""
-
 # SD
 #. language code: lun
 #: zypp/LanguageCode.cc:689
@@ -2918,42 +3625,11 @@ msgstr ""
 msgid "Lushai"
 msgstr "Thailand"
 
-# LU
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxembourg"
-
-# LU
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-#, fuzzy
-msgid "Luxembourgish"
-msgstr "Luxembourg"
-
-# MO
-# fuzzy
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Makao"
-
-# MK
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Masedonian"
 
-# MG
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 # MV
 # fuzzy
 #. language code: mad
@@ -2969,6 +3645,13 @@ msgstr "Mali"
 msgid "Magahi"
 msgstr "Malawi"
 
+# MH
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+#, fuzzy
+msgid "Marshallese"
+msgstr "Kepulauan Marshall"
+
 # ML
 #. language code: mai
 #: zypp/LanguageCode.cc:705
@@ -2983,26 +3666,6 @@ msgstr "Mali"
 msgid "Makasar"
 msgstr "Madagaskar"
 
-# MG
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-#, fuzzy
-msgid "Malagasy"
-msgstr "Madagaskar"
-
-# MW
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-# MT
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-#, fuzzy
-msgid "Malay"
-msgstr "Malta"
-
 # MY
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
@@ -3010,120 +3673,27 @@ msgstr "Malta"
 msgid "Malayalam"
 msgstr "Malaysia"
 
-# MY
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaysia"
-
-# MV
-# fuzzy
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Mali"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-# ML
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-# MT
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-# MV
-# fuzzy
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-#, fuzzy
-msgid "Maltese"
-msgstr "Mali"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr ""
-
-# MM
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-#, fuzzy
-msgid "Mandar"
-msgstr "Myanmar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-#, fuzzy
-msgid "Manipuri"
-msgstr "Maori"
-
-# KY
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-#, fuzzy
-msgid "Manobo Languages"
-msgstr "Pulau Cayman"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr ""
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 #, fuzzy
 msgid "Marathi"
 msgstr "Maori"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-#, fuzzy
-msgid "Mari"
-msgstr "Maori"
-
-# MH
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Kepulauan Marshall"
-
-# MH
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-#, fuzzy
-msgid "Marshallese"
-msgstr "Kepulauan Marshall"
-
-# MQ
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-#, fuzzy
-msgid "Marwari"
-msgstr "Maori"
-
 # MW
 #. language code: mas
 #: zypp/LanguageCode.cc:721
@@ -3131,67 +3701,35 @@ msgstr "Maori"
 msgid "Masai"
 msgstr "Malawi"
 
-# MR
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritania"
-
-# MU
-# fuzzy
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-# KY
-#. language code: myn
-#: zypp/LanguageCode.cc:771
+# MT
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
 #, fuzzy
-msgid "Mayan Languages"
-msgstr "Pulau Cayman"
-
-# YT
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+msgid "Malay"
+msgstr "Malta"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+# MM
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+#, fuzzy
+msgid "Mandar"
+msgstr "Myanmar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-# MX
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Meksiko"
-
 #. language code: mic
 #: zypp/LanguageCode.cc:735
 msgid "Mi'kmaq"
@@ -3202,14 +3740,6 @@ msgstr ""
 msgid "Minangkabau"
 msgstr ""
 
-# FM
-# fuzzy
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-#, fuzzy
-msgid "Mirandese"
-msgstr "Maine"
-
 # LK
 #. language code: mis
 #: zypp/LanguageCode.cc:739
@@ -3217,52 +3747,55 @@ msgstr "Maine"
 msgid "Miscellaneous Languages"
 msgstr "Sri Lanka"
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
-msgstr ""
-
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-# MD
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
+# MG
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
 #, fuzzy
-msgid "Moldavian"
-msgstr "Moldova"
+msgid "Malagasy"
+msgstr "Madagaskar"
 
-# MD
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
+# MV
+# fuzzy
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+#, fuzzy
+msgid "Maltese"
+msgstr "Mali"
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-# MC
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monako"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+#, fuzzy
+msgid "Manipuri"
+msgstr "Maori"
+
+# KY
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+#, fuzzy
+msgid "Manobo Languages"
+msgstr "Pulau Cayman"
+
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
+msgstr ""
 
-# CG
-#. language code: lol
-#: zypp/LanguageCode.cc:675
+# MD
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
 #, fuzzy
-msgid "Mongo"
-msgstr "Kongo"
-
-# MN
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolia"
+msgid "Moldavian"
+msgstr "Moldova"
 
 # MN
 #. language code: mon mn
@@ -3271,37 +3804,12 @@ msgstr "Mongolia"
 msgid "Mongolian"
 msgstr "Mongolia"
 
-# CG
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "Kongo"
-
-# MS
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-# MA
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Maroko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 #, fuzzy
 msgid "Mossi"
 msgstr "Maori"
 
-# MZ
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambique"
-
 # LK
 #. language code: mul
 #: zypp/LanguageCode.cc:761
@@ -3314,45 +3822,70 @@ msgstr "Sri Lanka"
 msgid "Munda languages"
 msgstr ""
 
-# MM
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+#, fuzzy
+msgid "Creek"
+msgstr "Yunani"
+
+# FM
+# fuzzy
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+#, fuzzy
+msgid "Mirandese"
+msgstr "Maine"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+#, fuzzy
+msgid "Marwari"
+msgstr "Maori"
+
+# KY
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+#, fuzzy
+msgid "Mayan Languages"
+msgstr "Pulau Cayman"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr ""
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr ""
 
-# NA
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+# MP
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+#, fuzzy
+msgid "North American Indian"
+msgstr "Kepulauan Mariana Utara"
 
-# NR
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr ""
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr ""
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr ""
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr ""
+
 # TO
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
@@ -3360,15 +3893,17 @@ msgstr ""
 msgid "Ndonga"
 msgstr "Tonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr ""
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+#, fuzzy
+msgid "Low German"
+msgstr "Jerman"
 
 # NP
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+#, fuzzy
+msgid "Nepali"
 msgstr "Nepal"
 
 # NP
@@ -3378,80 +3913,16 @@ msgstr "Nepal"
 msgid "Nepal Bhasa"
 msgstr "Nepal"
 
-# NP
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-#, fuzzy
-msgid "Nepali"
-msgstr "Nepal"
-
-# NL
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Belanda"
-
-# AN
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Belanda Antilles"
-
-# NC
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Caledonia Baru"
-
-# NZ
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "New Zealand"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
-
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr ""
 
-# NI
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-# NE
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-# NG
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-# NU
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 # NU
 #. language code: niu
 #: zypp/LanguageCode.cc:801
@@ -3459,15 +3930,17 @@ msgstr "Niue"
 msgid "Niuean"
 msgstr "Niue"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr ""
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+#, fuzzy
+msgid "Norwegian Nynorsk"
+msgstr "Norwegia"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr ""
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+#, fuzzy
+msgid "Norwegian Bokmal"
+msgstr "Norwegia"
 
 # TO
 #. language code: nog
@@ -3476,70 +3949,19 @@ msgstr ""
 msgid "Nogai"
 msgstr "Tonga"
 
-# NF
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Kepulauan Norfolk"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
-msgstr ""
-
-# MP
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-#, fuzzy
-msgid "North American Indian"
-msgstr "Kepulauan Mariana Utara"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr ""
-
-# MP
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Kepulauan Mariana Utara"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr ""
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr ""
-
-# NO
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norwegia"
+msgstr ""
 
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norwegia"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-#, fuzzy
-msgid "Norwegian Bokmal"
-msgstr "Norwegia"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-#, fuzzy
-msgid "Norwegian Nynorsk"
-msgstr "Norwegia"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
 # LK
@@ -3549,6 +3971,18 @@ msgstr ""
 msgid "Nubian Languages"
 msgstr "Sri Lanka"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr ""
+
+# CL
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+#, fuzzy
+msgid "Chichewa"
+msgstr "Chile"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3569,10 +4003,6 @@ msgstr ""
 msgid "Nzima"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr ""
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3583,21 +4013,6 @@ msgstr ""
 msgid "Ojibwa"
 msgstr ""
 
-# OM
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 # SY
 # fuzzy
 #. language code: ori or
@@ -3622,6 +4037,11 @@ msgstr ""
 msgid "Ossetian"
 msgstr "Rusia"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr ""
+
 # LK
 #. language code: oto
 #: zypp/LanguageCode.cc:843
@@ -3629,14 +4049,17 @@ msgstr "Rusia"
 msgid "Otomian Languages"
 msgstr "Sri Lanka"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+#, fuzzy
+msgid "Pangasinan"
+msgstr "Hongaria"
+
 # PW
 #. language code: pal
 #: zypp/LanguageCode.cc:849
@@ -3644,39 +4067,6 @@ msgstr ""
 msgid "Pahlavi"
 msgstr "Palau"
 
-# PK
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-# PW
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-# PW
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-#, fuzzy
-msgid "Palauan"
-msgstr "Palau"
-
-# IO
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-#, fuzzy
-msgid "Palestinian Territory"
-msgstr "Inggris, Teritori Samudera Indonesia"
-
-# ML
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-#, fuzzy
-msgid "Pali"
-msgstr "Mali"
-
 # PY
 #. language code: pam
 #: zypp/LanguageCode.cc:851
@@ -3685,18 +4075,6 @@ msgid "Pampanga"
 msgstr "Paraguay"
 
 # PA
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-#, fuzzy
-msgid "Pangasinan"
-msgstr "Hongaria"
-
-# PA
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 #, fuzzy
@@ -3708,36 +4086,16 @@ msgstr "Panama"
 msgid "Papiamento"
 msgstr ""
 
-# PG
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua New Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr ""
-
-# PY
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
+# PW
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+#, fuzzy
+msgid "Palauan"
+msgstr "Palau"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
 #. language code: per fas fa
@@ -3746,17 +4104,6 @@ msgstr ""
 msgid "Persian"
 msgstr "Serbia"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr ""
-
-# PE
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
-
 # PH
 #. language code: phi
 #: zypp/LanguageCode.cc:865
@@ -3764,49 +4111,28 @@ msgstr "Peru"
 msgid "Philippine (Other)"
 msgstr "Filipina"
 
-# PH
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipina"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 #, fuzzy
 msgid "Phoenician"
 msgstr "Slovenia"
 
-# PN
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr ""
-
-# PL
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polandia"
+# ML
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+#, fuzzy
+msgid "Pali"
+msgstr "Mali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Polandia"
 
-# PT
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugis"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr ""
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3820,78 +4146,19 @@ msgstr "Portugis"
 msgid "Prakrit Languages"
 msgstr "Sri Lanka"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-# PR
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
-msgstr ""
-
-# QA
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-#, fuzzy
-msgid "Query string parsing not supported for this URL"
-msgstr "Parsing string query tidak didukung untuk url ini"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
 msgstr ""
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
 msgstr ""
 
 # TJ
@@ -3913,53 +4180,15 @@ msgstr "jepang"
 msgid "Rarotongan"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Path relatif tidak dibolehkan bila otorita ada"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr ""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
-
-# RE
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr ""
 
-# RO
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romania"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumania"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr ""
 
 # RO
 #. language code: rom
@@ -3968,6 +4197,11 @@ msgstr "Rumania"
 msgid "Romany"
 msgstr "Romania"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumania"
+
 # RE
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
@@ -3980,60 +4214,29 @@ msgstr "Reunion"
 msgid "Russian"
 msgstr "Rusia"
 
-# RU
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Rusia"
-
-# RW
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-# SH
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Santa Helena"
-
-# KN
-# fuzzy
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-#, fuzzy
-msgid "Saint Kitts and Nevis"
-msgstr "Santa Kitts dan Nevis"
-
-# LC
-# fuzzy
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
+# CA
+#. language code: sad
+#: zypp/LanguageCode.cc:905
 #, fuzzy
-msgid "Saint Lucia"
-msgstr "Santa Lucia"
+msgid "Sandawe"
+msgstr "Kanada"
 
-# SM
-#: zypp/CountryCode.cc:297
+# WS
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
 #, fuzzy
-msgid "Saint Martin"
-msgstr "San Marino"
+msgid "Sango"
+msgstr "Samoa"
 
-# PM
-# fuzzy
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-#, fuzzy
-msgid "Saint Pierre and Miquelon"
-msgstr "Santa Pierre dan Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr ""
 
-# VC
-# fuzzy
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-#, fuzzy
-msgid "Saint Vincent and the Grenadines"
-msgstr "Santa Vincent dan Grenadin"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr ""
 
 # LK
 #. language code: sal
@@ -4047,69 +4250,11 @@ msgstr "Sri Lanka"
 msgid "Samaritan Aramaic"
 msgstr ""
 
-# LK
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-#, fuzzy
-msgid "Sami Languages (Other)"
-msgstr "Sri Lanka"
-
-# WS
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-# WS
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-#, fuzzy
-msgid "Samoan"
-msgstr "Samoa"
-
-# SM
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-# CA
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-#, fuzzy
-msgid "Sandawe"
-msgstr "Kanada"
-
-# WS
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-#, fuzzy
-msgid "Sango"
-msgstr "Samoa"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr ""
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr ""
-
-# ST
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome dan Principe"
-
-# MR
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-#, fuzzy
-msgid "Sardinian"
-msgstr "Mauritania"
-
 # WS
 #. language code: sas
 #: zypp/LanguageCode.cc:919
@@ -4117,17 +4262,31 @@ msgstr "Mauritania"
 msgid "Sasak"
 msgstr "Samoa"
 
-# SA
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Arab Saudi"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr ""
+
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbia"
+
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr ""
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr ""
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Kroasia"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -4138,41 +4297,17 @@ msgstr ""
 msgid "Semitic (Other)"
 msgstr ""
 
-# SN
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "Serbia"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbia"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr ""
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-# SC
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelles"
+# LK
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+#, fuzzy
+msgid "Sign Languages"
+msgstr "Sri Lanka"
 
 # SD
 #. language code: shn
@@ -4181,25 +4316,6 @@ msgstr "Seychelles"
 msgid "Shan"
 msgstr "Sudan"
 
-# SI
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-#, fuzzy
-msgid "Shona"
-msgstr "Slovenia"
-
-# LT
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-#, fuzzy
-msgid "Sichuan Yi"
-msgstr "Lithuania"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr ""
-
 # WS
 #. language code: sid
 #: zypp/LanguageCode.cc:945
@@ -4207,117 +4323,93 @@ msgstr ""
 msgid "Sidamo"
 msgstr "Samoa"
 
-# SL
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr ""
 
 # LK
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
+#. language code: sio
+#: zypp/LanguageCode.cc:949
 #, fuzzy
-msgid "Sign Languages"
+msgid "Siouan Languages"
 msgstr "Sri Lanka"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "Slovakia"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Slovenia"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
 msgstr ""
 
-# SG
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapura"
+# LK
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+#, fuzzy
+msgid "Sami Languages (Other)"
+msgstr "Sri Lanka"
 
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-# LK
-#. language code: sio
-#: zypp/LanguageCode.cc:949
+# WS
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
 #, fuzzy
-msgid "Siouan Languages"
-msgstr "Sri Lanka"
+msgid "Samoan"
+msgstr "Samoa"
 
 #. language code: sms
 #: zypp/LanguageCode.cc:973
 msgid "Skolt Sami"
 msgstr ""
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr ""
-
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr ""
-
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "Slovakia"
-
-# SK
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovakia"
-
 # SI
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+#, fuzzy
+msgid "Shona"
 msgstr "Slovenia"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr ""
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+#, fuzzy
+msgid "Soninke"
 msgstr "Slovenia"
 
 # SD
@@ -4327,12 +4419,6 @@ msgstr "Slovenia"
 msgid "Sogdian"
 msgstr "Sudan"
 
-# SB
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Pulau Sulaiman"
-
 # SO
 #. language code: som so
 #: zypp/LanguageCode.cc:983
@@ -4340,12 +4426,6 @@ msgstr "Pulau Sulaiman"
 msgid "Somali"
 msgstr "Somalia"
 
-# SO
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
-
 # TO
 #. language code: son
 #: zypp/LanguageCode.cc:985
@@ -4353,103 +4433,45 @@ msgstr "Somalia"
 msgid "Songhai"
 msgstr "Tonga"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-#, fuzzy
-msgid "Soninke"
-msgstr "Slovenia"
-
-# LK
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-#, fuzzy
-msgid "Sorbian Languages"
-msgstr "Sri Lanka"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr ""
 
-# ZA
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Afrika Selatan"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr ""
-
-# GS
-# fuzzy
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Georgia Selatan dan Pulau Sandwich Selatan"
-
-# ZA
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-#, fuzzy
-msgid "South Korea"
-msgstr "Afrika Selatan"
-
-# ZA
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-#, fuzzy
-msgid "Southern Altai"
-msgstr "Afrika Selatan"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr ""
-
-# ES
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spanyol"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Spanyol"
 
-# LK
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+# MR
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+#, fuzzy
+msgid "Sardinian"
+msgstr "Mauritania"
 
-# SD
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
 msgstr ""
 
+# HT
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+#, fuzzy
+msgid "Swati"
+msgstr "Haiti"
+
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-#, fuzzy
-msgid "Sumerian"
-msgstr "Serbia"
-
 # SD
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
@@ -4457,27 +4479,16 @@ msgstr "Serbia"
 msgid "Sundanese"
 msgstr "Sudan"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-# SR
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-# SJ
-# fuzzy
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Kepulauan Svalbard dan Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+#, fuzzy
+msgid "Sumerian"
+msgstr "Serbia"
 
 # SZ
 #. language code: swa sw
@@ -4486,43 +4497,11 @@ msgstr "Kepulauan Svalbard dan Jan Mayen"
 msgid "Swahili"
 msgstr "Swaziland"
 
-# HT
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-#, fuzzy
-msgid "Swati"
-msgstr "Haiti"
-
-# SZ
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
-
-# SE
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Swedia"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Swedia"
 
-# CH
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Swiss"
-
-# SY
-# fuzzy
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Suriname"
-
 # SY
 # fuzzy
 #. language code: syr
@@ -4531,23 +4510,6 @@ msgstr "Suriname"
 msgid "Syriac"
 msgstr "Suriname"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 # TW
 # fuzzy
 #. language code: tah ty
@@ -4561,41 +4523,11 @@ msgstr "Muangthai"
 msgid "Tai (Other)"
 msgstr ""
 
-# TW
-# fuzzy
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Muangthai"
-
-# TJ
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-#, fuzzy
-msgid "Tajik"
-msgstr "Tajikistan"
-
-# TJ
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tajikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 # QA
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
@@ -4610,6 +4542,11 @@ msgstr "Qatar"
 msgid "Telugu"
 msgstr "Belgia"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4620,34 +4557,23 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
+# TJ
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+#, fuzzy
+msgid "Tajik"
+msgstr "Tajikistan"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr ""
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Thailand"
 
-# TH
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Muangthai"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr ""
-
 # TW
 # fuzzy
 #. language code: tib bod bo
@@ -4670,50 +4596,26 @@ msgstr "Niger"
 msgid "Tigrinya"
 msgstr "Nigeria"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-# TG
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
-# TK
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-# TO
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
-
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
 msgid "Tonga (Nyasa)"
@@ -4726,24 +4628,24 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr "Pulau Sulaiman"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
-# TT
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad dan Tobago"
-
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 #, fuzzy
 msgid "Tsimshian"
 msgstr "Rusia"
 
+# BW
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+#, fuzzy
+msgid "Tswana"
+msgstr "Botswana"
+
 # TO
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
@@ -4751,74 +4653,39 @@ msgstr "Rusia"
 msgid "Tsonga"
 msgstr "Tonga"
 
-# BW
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
+# TR
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
 #, fuzzy
-msgid "Tswana"
-msgstr "Botswana"
+msgid "Turkmen"
+msgstr "Turki"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr ""
 
-# TN
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisia"
-
 # LK
 #. language code: tup
-#: zypp/LanguageCode.cc:1069
-#, fuzzy
-msgid "Tupi Languages"
-msgstr "Sri Lanka"
-
-# TR
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turki"
-
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "Turki"
-
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr ""
-
-# TR
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
+#: zypp/LanguageCode.cc:1069
 #, fuzzy
-msgid "Turkmen"
-msgstr "Turki"
+msgid "Tupi Languages"
+msgstr "Sri Lanka"
 
-# TM
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "Turki"
 
-# TC
-# fuzzy
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-#, fuzzy
-msgid "Turks and Caicos Islands"
-msgstr "Kepulauan Turks dan Caicos"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr ""
 
-# TV
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr ""
 
 # TN
 #. language code: tyv
@@ -4827,22 +4694,11 @@ msgstr "Tuvalu"
 msgid "Tuvinian"
 msgstr "Tunisia"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr ""
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-# UG
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 # HT
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
@@ -4856,12 +4712,6 @@ msgid "Uighur"
 msgstr ""
 
 # UA
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraina"
-
-# UA
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 #, fuzzy
@@ -4873,395 +4723,411 @@ msgstr "Ukraina"
 msgid "Umbundu"
 msgstr ""
 
-#: zypp/Url.cc:300
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
+
+# UZ
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
 #, fuzzy
-msgid "Unable to clone Url object"
-msgstr "Tidak dapat memparse komponen url utama"
+msgid "Uzbek"
+msgstr "Uzbekistan"
 
-#: zypp/target/hal/HalContext.cc:229
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+# VN
+# fuzzy
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
 #, fuzzy
-msgid "Unable to create dbus connection"
-msgstr "Tidak dapat memparse komponen url utama"
+msgid "Venda"
+msgstr "Viet Nam"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+# VN
+# fuzzy
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+#, fuzzy
+msgid "Vietnamese"
+msgstr "Viet Nam"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr ""
+
+# KY
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
 #, fuzzy
-msgid "Unable to parse Url components"
-msgstr "Tidak dapat memparse komponen url utama"
+msgid "Wakashan Languages"
+msgstr "Pulau Cayman"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+# PY
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+#, fuzzy
+msgid "Waray"
+msgstr "Paraguay"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
 msgstr ""
 
-# AE
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Uni Emirat Arab"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
+# LK
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+#, fuzzy
+msgid "Sorbian Languages"
+msgstr "Sri Lanka"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
 msgstr ""
 
-# US
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Amerika Serikat"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr ""
 
-# UM
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Amerika Serikat, kepulauan Luar Minor"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr ""
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+#, fuzzy
+msgid "Yapese"
+msgstr "Jepang"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr ""
+
+# AW
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+#, fuzzy
+msgid "Yoruba"
+msgstr "Aruba"
+
+# LK
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+#, fuzzy
+msgid "Yupik Languages"
+msgstr "Sri Lanka"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr ""
+
+# GD
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+#, fuzzy
+msgid "Zenaga"
+msgstr "Grenada"
+
+# BT
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+#, fuzzy
+msgid "Zhuang"
+msgstr "Bhutan"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr ""
+
+# TV
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+#, fuzzy
+msgid "Zulu"
+msgstr "Tuvalu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr ""
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr ""
+
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:975
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-#, fuzzy
-msgid "Upper Sorbian"
-msgstr "Serbia"
-
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-#, fuzzy
-msgid "Url scheme does not allow a host component"
-msgstr "Skema url merupakan komponen yang dibutuhkan"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Skema url merupakan komponen yang dibutuhkan"
-
-#: zypp/url/UrlBase.cc:1012
-#, fuzzy
-msgid "Url scheme requires a host component"
-msgstr "Skema url merupakan komponen yang dibutuhkan"
-
-#: zypp/url/UrlBase.cc:1098
-#, fuzzy
-msgid "Url scheme requires path name"
-msgstr "Skema url membutuhkan nama path"
-
-# UY
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
-# UZ
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-#, fuzzy
-msgid "Uzbek"
-msgstr "Uzbekistan"
-
-# UZ
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-
-# VU
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
-# VN
-# fuzzy
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-#, fuzzy
-msgid "Venda"
-msgstr "Viet Nam"
-
-# VE
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-# VN
-# fuzzy
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Viet Nam"
-
-# VN
-# fuzzy
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-#, fuzzy
-msgid "Vietnamese"
-msgstr "Viet Nam"
-
-# VI
-# fuzzy
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Virgin Islands (Amerika)"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-# KY
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-#, fuzzy
-msgid "Wakashan Languages"
-msgstr "Pulau Cayman"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "Italia"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-# WF
-# fuzzy
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Kepulauan Wallis dan Futuna"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Italia"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-# PY
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-#, fuzzy
-msgid "Waray"
-msgstr "Paraguay"
-
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
 msgstr ""
 
-# EH
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Sahara Barat"
-
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-#, fuzzy
-msgid "Yapese"
-msgstr "Jepang"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-# YE
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Yaman"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, fuzzy, c-format, boost-format
+msgid "do not install %s"
+msgstr "Italia"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-# AW
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-#, fuzzy
-msgid "Yoruba"
-msgstr "Aruba"
-
-# LK
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-#, fuzzy
-msgid "Yupik Languages"
-msgstr "Sri Lanka"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "Italia"
 
-# ZM
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-# GD
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-#, fuzzy
-msgid "Zenaga"
-msgstr "Grenada"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr ""
 
-# BT
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-#, fuzzy
-msgid "Zhuang"
-msgstr "Bhutan"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-# ZW
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr ""
 
-# TV
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-#, fuzzy
-msgid "Zulu"
-msgstr "Tuvalu"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
 #: zypp/solver/detail/SATResolver.cc:1325
@@ -5269,219 +5135,345 @@ msgstr ""
 msgid "architecture change of %s to %s"
 msgstr ""
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Instalasi"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
-#, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Italia"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/parser/RepoindexFileReader.cc:209
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/InterProcessMutex.cc:83
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Instalasi"
+msgid "Can't open lock file: %s"
+msgstr "Tidak dapat membuka %s: %m"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr ""
+
+#: zypp/base/StrMatcher.cc:152
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/base/StrMatcher.cc:153
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
+
+#: zypp/base/StrMatcher.cc:158
 #, fuzzy, c-format, boost-format
-msgid "do not install %s"
-msgstr "Italia"
+msgid "Invalid regular expression '%s'"
+msgstr "Skema url '%1' tidak valid"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:31
+#, fuzzy, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Tidak dapat membuat file temp (%s): %m"
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, c-format, boost-format
-msgid "keep obsolete %s"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
+
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid "Cannot eject media '%s'"
 msgstr "Italia"
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
+
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "Tidak dapat membuat file temp %s: %m"
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "tidak dikenal"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "Tidak dapat membuka %s: %m"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#, fuzzy
-#~ msgid "Downloading %s"
-#~ msgstr "Kesalahan memuatkan %1"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
 #, fuzzy
-#~ msgid "Establishing %s"
+#~ msgid "do not keep %s installed"
 #~ msgstr "Italia"
 
 #, fuzzy
@@ -5493,10 +5485,18 @@ msgstr ""
 #~ msgstr "Italia"
 
 #, fuzzy
-#~ msgid "Installing %s"
+#~ msgid "install %s"
+#~ msgstr "Italia"
+
+#, fuzzy
+#~ msgid "unlock all resolvables"
 #~ msgstr "Italia"
 
 #, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "Tidak dapat membuka %s: %m"
+
+#, fuzzy
 #~ msgid "Path Parameter parsing not supported for this URL"
 #~ msgstr "Parsing Parameter Path tidak didukung untuk url ini"
 
@@ -5505,21 +5505,21 @@ msgstr ""
 #~ msgstr "Parsing parameter path tidak didukung untuk url ini"
 
 #, fuzzy
-#~ msgid "Unable to parse Url authority"
-#~ msgstr "Tidak dapat memparse komponen otoritas url"
+#~ msgid "Establishing %s"
+#~ msgstr "Italia"
 
 #, fuzzy
-#~ msgid "Unable to restore all sources."
-#~ msgstr "Tidak dapat memparse komponen url utama"
+#~ msgid "Installing %s"
+#~ msgstr "Italia"
 
 #, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "Italia"
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "Tidak dapat memparse komponen otoritas url"
 
 #, fuzzy
-#~ msgid "install %s"
-#~ msgstr "Italia"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "Tidak dapat memparse komponen url utama"
 
 #, fuzzy
-#~ msgid "unlock all resolvables"
-#~ msgstr "Italia"
+#~ msgid "Downloading %s"
+#~ msgstr "Kesalahan memuatkan %1"
index eb2a37b..94edab0 100644 (file)
--- a/po/it.po
+++ b/po/it.po
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# translation of zypp.po to italiano
+# Italian message file for YaST2 (@memory@).
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002 SuSE Linux AG.
+# Copyright (C) 1999, 2000, 2001 SuSE GmbH.
 #
+# Franca Delcarlo <francad@attglobal.net>, 1999, 2000, 2001.
+# Karl Eichwalder <ke@suse.de>, 2000.
+# Bevacqua Giuseppe <gepeppe@gmail.com>, 2008.
+# Andrea Florio <andrea@opensuse.it>, 2008.
+# Andrea Florio <andrea@opensuse.org>, 2008, 2009.
+# Andrea Turrini <andrea.turrini@gmail.com>, 2013, 2014, 2015.
 msgid ""
 msgstr ""
 "Project-Id-Version: zypp\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 16:57\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2015-07-23 10:36+0800\n"
+"Last-Translator: Andrea Turrini <andrea.turrini@gmail.com>\n"
+"Language-Team: Italian <opensuse-translation@opensuse.org>\n"
+"Language: it_IT\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Poedit-Bookmarks: 370,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
+"X-Generator: Lokalize 1.5\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"impossibile installare i provider: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Eccezione di Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Stringa di interrogazione URL LDAP non valida"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" Problemi con il certificato SSL, verificare che il cert CA è valido per "
-"'%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Parametro di interrogazione URL LDAP '%s' non valido"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Impossibile clonare l'oggetto url"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Riferimento a oggetto url vuoto non valido"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Impossibile analizzare i componenti dell'url"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Impossibile inizializzare gli attributi del mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Impossibile impostare l'attributo del mutex ricorsivo"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Impossibile inizializzare il mutex ricorsivo"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Impossibile acquisire il blocco sul mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Impossibile rilasciare il blocco del mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Fornisce"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Prerichiede"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Richiede"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "In conflitto con"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Obsoleti"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Raccomanda"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Suggerisce"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Migliora"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Integra"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Tipo '%s' incerto per %u byte del codice di controllo '%s'"
 
+# TLABEL modules/inst_config_x11.ycp:578
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
 msgstr " eseguito"
 
 #: zypp/target/TargetImpl.cc:332
 msgid " execution failed"
-msgstr " esecuzione non riuscita"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " esecuzione saltata durante l'annullamento"
+msgstr " esecuzione fallita"
 
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
@@ -50,92 +131,125 @@ msgstr " esecuzione saltata durante l'annullamento"
 msgid "%s already executed as %s)"
 msgstr "%s già eseguito come %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s in conflitto con %s fornito da %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " esecuzione ignorata durante l'interruzione"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s non appartiene a un archivio di upgrade della distribuzione"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Errore nell'invio del messaggio di notifica dell'aggiornamento."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s presenta un'architettura inferiore"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Nuovo messaggio di aggiornamento"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "impossibile installare %s"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "L'installazione è stata interrotta come indicato."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s è fornito dal sistema e non può essere cancellato"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
+"Spiacenti, ma questa versione di libzypp è stata compilata senza il supporto "
+"per HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s obsoleti %s forniti da %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext non connesso"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s richiede %s, ma non è possibile fornire questa richiesta."
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive non inizializzato"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(SCADUTO)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume non inizializzato"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(non scade)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Impossibile creare la connessione dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(scade entro 24 ore)"
-msgstr[1] "(scade entro 24 ore)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: impossibile creare il contesto libhal"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(scade entro 24 ore)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: impossibile impostare la connessione dbus"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhaso"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Impossibile inizializzare il contesto HAL - hald è esecuzione?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achinese"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Non è un'unità CD ROM"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM fallito: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Importazione della chiave pubblica dal file %s fallita: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Aggiunto archivio '%s'"
+msgid "Failed to remove public key %s: %s"
+msgstr "Rimozione della chiave pubblica %s fallita: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Contratti clienti aggiuntivi necessari"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "File di configurazione modificati per %s:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm ha salvato %s come %s, tuttavia non è stato possibile determinare la "
+"differenza"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm ha salvato %s come %s.\n"
+"Di seguito sono riportate le prime 25 righe di differenza:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm ha creato %s come %s, tuttavia non è stato possibile determinare la "
+"differenza"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm ha creato %s come %s.\n"
+"Di seguito sono riportate le prime 25 righe di differenza:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -143,20 +257,1677 @@ msgstr "Contratti clienti aggiuntivi necessari"
 msgid "Additional rpm output"
 msgstr "Output aggiuntivo di rpm"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adyghe"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "creata copia di ripristino di %s"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "La firma è corretta"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Tipo di firma sconosciuto"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "La firma non è verificabile"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "La firma è corretta, ma non è fidata"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "La chiave pubblica delle firme non è disponibile"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "Il file non esiste o la firma non può essere verificata"
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Verranno eseguite le seguenti operazioni:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "Impossibile leggere la directory '%1%' del repository: permesso negato"
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Impossibile leggere la directory '%s'"
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "Impossibile leggere il file '%1%' del repository: permesso negato"
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "L'alias di un repository non può iniziare con un punto."
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "L'alias di un servizio non può iniziare con un punto."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Impossibile aprire il file '%s' in scrittura."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+"Servizio '%1%' sconosciuto: rimozione del repository dei servizi orfani '%2%'"
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Non sono stati trovati metadati validi all'URL specificato"
+msgstr[1] "Non sono stati trovati metadati validi all'URL specificato"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Impossibile creare %s"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Impossibile creare la directory della cache dei metadati."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Costruzione della cache del repository '%s'"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Impossibile creare la cache in %s - permessi di scrittura mancanti."
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Creazione della cache del repo (%d) fallita."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Tipo di repository non gestito"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Errore nel tentativo di leggere da '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Errore sconosciuto leggendo da '%s'"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Aggiunta del repository '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Nome file del repository non valido a '%s'"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Rimozione del repository '%s'"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Impossibile trovare dove è memorizzato il repository."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Impossibile cancellare '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Impossibile trovare dove è memorizzato il servizio."
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Lo schema url non consente un %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "%s componente '%s' non valido"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Componente %s non valido"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Analisi della stringa di interrogazione non supportata per questo URL"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Lo schema url è un componente obbligatorio"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Schema url '%s' non valido"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Lo schema url non consente un nome utente"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Lo schema url non consente una password"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Lo schema url richiede un componente host"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Lo schema url non consente un componente host"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Componente host '%s' non valido"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Lo schema url non consente una porta"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Componente porta '%s' non valido"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Lo schema url richiede un nome di percorso"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Percorso relativo non consentito se l'autorità esiste"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "La stringa codificata contiene un byte NULL"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+"Parametro del carattere separatore per la divisione del vettore non valido"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+"Parametro del carattere separatore per la divisione della mappa non valido"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Parametro del carattere separatore per l'unione del vettore non valido"
+
+# TLABEL modules/sound/sound.ycp:620
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Impossibile aprire pty (%s)."
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Impossibile aprire la pipe (%s)."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Impossibile fare chroot verso '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "Impossibile fare chdir verso '%s' dentro la chroot '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Impossibile fare chdir verso '%s' (%s)."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Impossibile eseguire '%s' (%s)."
+
+# TLABEL modules/installation.ycp:287
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Impossibile fare il fork (%s)."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Il comando è terminato con stato %d."
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Il comando è stato terminato con il segnale %d (%s)."
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Il comando è terminato con un errore sconosciuto."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(non scade)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(SCADUTA)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(scade entro 24 ore)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(scade entro 24 ore)"
+msgstr[1] "(scade entro 24 ore)"
+
+# TLABEL modules/inst_user.ycp:71
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "sconosciuto"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "non supportato"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Livello 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Livello 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Livello 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Contratto clienti aggiuntivo necessario"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "non valido"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Il livello di supporto non è specificato"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Il fornitore non fornisce supporto."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Determinazione dei problemi, che significa supporto tecnico pensato per "
+"fornire informazioni di compatibilità, assistenza nell'installazione, "
+"supporto nell'utilizzo, manutenzione ordinaria e risoluzione dei problemi "
+"basilare. Il supporto di Livello 1 non è inteso per corregge errori e "
+"difetti del prodotto."
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Isolamento dei problemi, che significa supporto tecnico indirizzato a "
+"riprodurre i problemi dei clienti, isolare l'area del problema e fornire una "
+"soluzione ai problemi non risolti dal Supporto di Livello 1."
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Risoluzione dei problemi, che significa supporto tecnico indirizzato a "
+"risolvere problemi complessi con l'ausilio dell'ingegneria nella risoluzione "
+"dei difetti di prodotto che sono stati identificati dal Supporto di Livello "
+"2."
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "È necessario un contratto cliente aggiuntivo per ottenere supporto."
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Opzione di supporto sconosciuta. Descrizione non disponibile"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Paese sconosciuto: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Nessun codice"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Emirati Arabi Uniti"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afghanistan"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua e Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albania"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenia"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Antille olandesi"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antartide"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Samoa americane"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austria"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australia"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Isole Aland"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaijan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnia-Erzegovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgio"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaria"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrein"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasile"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Isola Bouvet"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Bielorussia"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Isole Cocos (Keeling)"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Repubblica Centrafricana"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Svizzera"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Costa d'Avorio"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Isole di Cook"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Cile"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Camerun"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Cina"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Capo Verde"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Isola di Natale"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Cipro"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Repubblica Ceca"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Germania"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Gibuti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danimarca"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Repubblica dominicana"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algeria"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonia"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egitto"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Sahara occidentale"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spagna"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopia"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finlandia"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Figi"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Isole Falkland (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Stati federati di Micronesia"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Isole Faroe"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Francia"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Francia metropolitana"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Regno Unito"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgia"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Guiana francese"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibilterra"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Groenlandia"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadalupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Guinea equatoriale"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grecia"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Georgia del Sud e isole Sandwich meridionali"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Isola Heard e isole McDonald"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Croazia"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Ungheria"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesia"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irlanda"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israele"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Isola di Man"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Territorio dell'Oceano indiano britannico"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Iraq"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islanda"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italia"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Giamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Giordania"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Giappone"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirghizistan"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Cambogia"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comore"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts e Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Corea del Nord"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Corea del Sud"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Isole Cayman"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazakistan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Repubblica democratica popolare del Lao"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libano"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lituania"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Lussemburgo"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Lettonia"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libia"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marocco"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldavia"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "San Martino"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagascar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Isole Marshall"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedonia"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Birmania"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolia"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Isole Marianne settentrionali"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinica"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritania"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldive"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Messico"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malesia"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambico"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nuova Caledonia"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Isola di Norfolk"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Paesi Bassi"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norvegia"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nuova Zelanda"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Perù"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Polinesia francese"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Nuova Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filippine"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polonia"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint Pierre e Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Portorico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Territorio palestinese"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portogallo"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romania"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbia"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Federazione russa"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Arabia Saudita"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Isole Salomone"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychelles"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Svezia"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapore"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Sant'Elena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenia"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard e Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovacchia"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "São Tomé e Principe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Siria"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swaziland"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Isole Turks e Caicos"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Ciad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Territori francesi meridionali"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thailandia"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tagikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisia"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Timor est"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turchia"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad e Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzania"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ucraina"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Isole minori esterne degli Stati Uniti"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Stati Uniti"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Santa Sede (Città del Vaticano)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Saint Vincent e le Grenadine"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Isole Vergini britanniche"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Isole Vergini, Stati Uniti"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis e Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Yemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Sudafrica"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Lingua sconosciuta: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abkhaziano"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achinese"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adyghe"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-Asiatico (altre)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -168,11 +1939,6 @@ msgstr "Afrihili"
 msgid "Afrikaans"
 msgstr "Afrikaans"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-Asiatica (Altre)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -188,16 +1954,6 @@ msgstr "Akan"
 msgid "Akkadian"
 msgstr "Accadico"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Isole Aland"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albania"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -208,58 +1964,25 @@ msgstr "Albanese"
 msgid "Aleut"
 msgstr "Aleut"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algeria"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "Lingue algonchine"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaico (Altre)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Samoa Americane"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Altai meridionale"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "Amarico"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "È necessario un contratto cliente aggiuntivo per ottenere supporto."
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antartide"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua e Barbuda"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Inglese, antico (450-1100 circa)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -271,55 +1994,40 @@ msgstr "Lingue Apache"
 msgid "Arabic"
 msgstr "Arabo"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonese"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "Aramaico"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonese"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armeno"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "Araucano"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Aruaca"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenia"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armeno"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
-msgstr "Lingue artificiali (Altre)"
+msgstr "Lingue artificiali (altre)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Aruaco"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -334,34 +2042,13 @@ msgstr "Asturiano"
 #. language code: ath
 #: zypp/LanguageCode.cc:223
 msgid "Athapascan Languages"
-msgstr "Lingue Ahabaskan"
-
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australia"
+msgstr "Lingue Athabaska"
 
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "Lingue australiane"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austria"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronesiano (Altre)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "È richiesta l'autenticazione per '%s'"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -382,44 +2069,25 @@ msgstr "Awadhi"
 msgid "Aymara"
 msgstr "Aymara"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaijan"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Azerbaigiano"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Nome file errato: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Punto di collegamento supporto errato"
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinese"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Lingue Bamileke"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltico (Altre)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bashkir"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -431,76 +2099,36 @@ msgstr "Baluchi"
 msgid "Bambara"
 msgstr "Bambara"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Lingue Bamileke"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantù (Altre)"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinese"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Basco"
 
 #. language code: bas
 #: zypp/LanguageCode.cc:253
 msgid "Basa"
 msgstr "Basa"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bashkir"
-
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Basco"
-
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonesia)"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltico (altre)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "Beja"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Bielorussia"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "Bielorusso"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgio"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -508,34 +2136,19 @@ msgstr "Bemba"
 
 #. language code: ben bn
 #: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengali"
-
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+msgid "Bengali"
+msgstr "Bengali"
 
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
-msgstr "Berbero (Altre)"
-
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
+msgstr "Berbero (altre)"
 
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "Bhojpuri"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
@@ -556,267 +2169,70 @@ msgstr "Bini"
 msgid "Bislama"
 msgstr "Bislama"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Bilin"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia ed Ergegovina"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (altre)"
 
 #. language code: bos bs
 #: zypp/LanguageCode.cc:281
 msgid "Bosnian"
 msgstr "Bosniaco"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Isola Bouvet"
-
 #. language code: bra
 #: zypp/LanguageCode.cc:283
 msgid "Braj"
 msgstr "Braj"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasile"
-
 #. language code: bre br
 #: zypp/LanguageCode.cc:285
 msgid "Breton"
 msgstr "Bretone"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Territorio dell'Oceano indiano britannico"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Isole Vergini Britanniche"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonesia)"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriat"
 
 #. language code: bug
 #: zypp/LanguageCode.cc:291
 msgid "Buginese"
 msgstr "Buginese"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Costruzione della cache dell'archivio '%s'"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaria"
-
 #. language code: bul bg
 #: zypp/LanguageCode.cc:293
 msgid "Bulgarian"
 msgstr "Bulgaro"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriat"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
 #. language code: bur mya my
 #: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
 msgid "Burmese"
 msgstr "Burmese"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
 
 #. language code: cad
 #: zypp/LanguageCode.cc:301
 msgid "Caddo"
 msgstr "Caddo"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Cambogia"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Camerun"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Impossibile creare sat-pool."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Impossibile acquisire il blocco mutex"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Impossibile eseguire chdir verso '%s' (%s)."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "Impossibile eseguire chdir verso '%s' dentro la chroot '%s' (%s)."
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Impossibile eseguire il comando chroot in '%s' (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Impossibile creare %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-"Impossibile creare la cache in %s: nessuna autorizzazione alla scrittura."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Impossibile creare la directory della cache dei metadati."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Impossibile cancellare '%s'"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Impossibile eseguire il comando exec '%s' (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Impossibile individuare la directory di memorizzazione dell'archivio."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Impossibile individuare la directory di memorizzazione del servizio."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Impossibile eseguire il comando fork (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Impossibile inizializzare gli attributi mutex"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Impossibile inizializzare l'attributo mutex ricorsivo"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Impossibile aprire il file '%s' in scrittura."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Impossibile aprire file bloccato: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Impossibile aprire pipe (%s)."
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Impossibile aprire pty (%s)."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Impossibile fornire il file %s dall'archivio '%s'"
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Impossibile rilasciare il blocco mutex"
-
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Impossibile impostare l'attributo mutex ricorsivo"
-
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canada"
-
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Impossibile espellere supporti."
-
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Impossibile espellere il supporto '%s'."
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Impossibile trovare un dispositivo del ciclo disponibile per montare il file "
-"di immagine da '%s'"
-
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "Impossibile leggere la directory '%1%' dell'archivio: permesso negato"
-
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "Impossibile leggere il file '%1%' dell'archivio: permesso negato"
-
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Impossibile scrivere il file '%s'."
-
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Capo Verde"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Indiano dell'America centrale (altre)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -831,183 +2247,92 @@ msgstr "Catalano"
 #. language code: cau
 #: zypp/LanguageCode.cc:309
 msgid "Caucasian (Other)"
-msgstr "Caucasico (Altre)"
-
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Isole Cayman"
+msgstr "Caucasico (altre)"
 
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "Cebuano"
-
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Celtico (Altre)"
-
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Repubblica Africana Centrale"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Indiano dell'America centrale (Altre)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Chad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
+msgid "Cebuano"
+msgstr "Cebuano"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Lingue Chamic"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Celtico (altre)"
 
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "File di configurazione modificati per %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Ceceno"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Chibcha"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Cile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Ceceno"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Cina"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Cinese"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukese"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Linguaggio Chinook"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyan"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Choctaw"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Isola Christmas"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
-msgstr "Bulgaro, antico"
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukese"
+msgstr "Slavo liturgico"
 
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "Chuvash"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Newari classico"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Isole Cocos (Keeling)"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Il comando è terminato con stato %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Il comando è terminato con un errore sconosciuto"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Il comando è stato terminato dal segnale %d (%s)."
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Isole Comorre"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "In conflitto"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Isole Cook"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Lingue Chamic"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1024,86 +2349,51 @@ msgstr "Cornico"
 msgid "Corsican"
 msgstr "Corso"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Costa d'Avorio"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Creolo e pidgin (Altro)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "Creolo e pidgin, basato sull'inglese (Altro)"
+msgstr "Creoli e pidgin, basate sull'inglese (altro)"
 
 #. language code: cpf
 #: zypp/LanguageCode.cc:355
 msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "Creolo e pidgin, basato sul francese(Altro)"
+msgstr "Creoli e pidgin, basate sul francese (altro)"
 
 #. language code: cpp
 #: zypp/LanguageCode.cc:357
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "Creolo e pidgin, basato sul portoghese (Altro)"
+msgstr "Creoli e pidgin, basate sul portoghese (altro)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
 
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
-msgstr "Turco della Crimea"
-
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Croazia"
+msgstr "Tataro della Crimea"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Croato"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Creoli e pidgin (altre)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Casciubo"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
-msgstr "Cushitic (Altre)"
-
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Cipro"
+msgstr "Cuscitico (altre)"
 
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Ceco"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Repubblica Ceca"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1129,10 +2419,15 @@ msgstr "Dayak"
 msgid "Delaware"
 msgstr "Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danimarca"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slavo (Athabaska)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1144,74 +2439,36 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Divehi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Gibuti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Repubblica dominicana"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Errore di download (curl) per '%s':\n"
-"Codice di errore: %s\n"
-"Messaggio di errore: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Inizializzazione download (curl) non riuscita per '%s'."
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
-msgstr "Dravidiche (Altre)"
+msgstr "Dravidico (altre)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Lusaziano inferiore"
 
 #. language code: dua
 #: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "Duala"
-
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Tipo '%s' incerto per %u byte checksum '%s'"
-
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Olandese"
+msgid "Duala"
+msgstr "Duala"
 
 #. language code: dum
 #: zypp/LanguageCode.cc:399
 msgid "Dutch, Middle (ca.1050-1350)"
 msgstr "Olandese, medio (1050-1350 circa)"
 
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Olandese"
+
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1222,61 +2479,25 @@ msgstr "Dyula"
 msgid "Dzongkha"
 msgstr "Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Timor est"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egitto"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
-msgstr "Egiziano (Antico)"
+msgstr "Egiziano (antico)"
 
 #. language code: eka
 #: zypp/LanguageCode.cc:413
 msgid "Ekajuk"
 msgstr "Akajo"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
-msgstr "Elamite"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Destinazione vuota nell'URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "File system vuoto nell'URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Nome host vuoto nell'URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "La stringa codificata contiene un byte NULL"
+msgstr "Elamitico"
 
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
@@ -1284,382 +2505,75 @@ msgid "English"
 msgstr "Inglese"
 
 #. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Inglese, medio (1100-1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Inglese, antico (450-1100 circa)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Miglioramenti"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Guinea equatoriale"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"Errore durante l'impostazione delle opzioni di download (curl) per '%s':"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Errore nell'invio della notifica del messaggio di aggiornamento."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Errore durante il tentativo di lettura da '%s'"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
-
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Esperanto"
-
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonia"
-
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Estone"
-
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopia"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Ewe"
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Ewondo"
-
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Memorizzazione nella cache dell'archivio (%d) non riuscita."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Eliminazione della chiave non riuscita"
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Importazione della chiave pubblica dal file %s non riuscita: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Impossibile montare %s su %s."
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Fornitura del pacchetto %s non riuscita. Ritentare il recupero?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Lettura della directory '%s' non riuscita"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Rimozione della chiave pubblica %s non riuscita: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Impossibile smontare %s"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Isole Falkland (Malvinas)"
-
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "Fang"
-
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Isole Faroe"
-
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Faroese"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Stati Federati di Micronesia"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fijian"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Il file %1%\n"
-"  proveniente dall'installazione di\n"
-"     %2%\n"
-"  è in conflitto con il file\n"
-"     %3%\n"
-"  proveniente dall'installazione di\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Il file %1%\n"
-"  proveniente dall'installazione di\n"
-"     %2%\n"
-"  è in conflitto con il file\n"
-"     %3%\n"
-"  proveniente dal pacchetto\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Il file %1%\n"
-"  proveniente dall'installazione di\n"
-"     %2%\n"
-"  è in conflitto con il file proveniente dall'installazione di\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Il file %1%\n"
-"  proveniente dall'installazione di\n"
-"     %2%\n"
-"  è in conflitto con il file proveniente dal pacchetto\n"
-"     %3%"
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Inglese, medio (1100-1500)"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Il file %1%\n"
-"  proveniente dal pacchetto\n"
-"     %2%\n"
-"  è in conflitto con il file\n"
-"     %3%\n"
-"  proveniente dall'installazione di\n"
-"     %4%"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Esperanto"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Il file %1%\n"
-"  proveniente dal pacchetto\n"
-"     %2%\n"
-"  è in conflitto con il file\n"
-"     %3%\n"
-"  proveniente dal pacchetto\n"
-"     %4%"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Estone"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Il file %1%\n"
-"  proveniente dal pacchetto\n"
-"     %2%\n"
-"  è in conflitto con il file proveniente dall'installazione di\n"
-"     %3%"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Ewe"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Il file %1%\n"
-"  proveniente dal pacchetto\n"
-"     %2%\n"
-"  è in conflitto con il file proveniente dal pacchetto\n"
-"     %3%"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Ewondo"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "File '%s' non trovato sul supporto '%s'."
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "Fang"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "Il file non esiste o la firma non può essere verificata"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Faroese"
+
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Figiano"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filippino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finlandia"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
-msgstr "Finnico"
+msgstr "Finlandese"
 
 #. language code: fiu
 #: zypp/LanguageCode.cc:441
 msgid "Finno-Ugrian (Other)"
-msgstr "Ugrofinniche (Altre)"
-
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Le seguenti azioni verranno eseguite:"
+msgstr "Ugrofinnico (altre)"
 
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Francia"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Francese"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Guiana francese"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Polinesia francese"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Territori della Francia meridionale"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1675,46 +2589,21 @@ msgstr "Francese, antico (842-1400 circa)"
 msgid "Frisian"
 msgstr "Frisone"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friulano"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fula"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friulano"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gallico"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galiziano"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1725,15 +2614,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Ge'ez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Lingue germaniche (altre)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1745,6 +2629,36 @@ msgstr "Georgiano"
 msgid "German"
 msgstr "Tedesco"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Ge'ez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertese"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaelico"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irlandese"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galiziano"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1755,30 +2669,6 @@ msgstr "Tedesco, medio-alto (1050-1500 circa)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Tedesco, antico alto (750-1050 circa)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Lingue germanico (Altre)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Germania"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibilterra"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertese"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1799,76 +2689,26 @@ msgstr "Gotico"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grecia"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
-msgstr "Greco antico (fino al 1453)"
+msgstr "Greco, antico (fino al 1453)"
 
 #. language code: gre ell el
 #: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
-msgstr "Greco moderno (1453-)"
-
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Groenlandia"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadalupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
+msgid "Greek, Modern (1453-)"
+msgstr "Greco, moderno (1453-)"
 
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1879,52 +2719,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitiano"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Eccezione Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext non connesso"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive non inizializzato"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume non inizializzato"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Sono stati abilitati tutti gli archivi richiesti?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaiano"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Isola Heard e isole McDonald"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1950,16 +2759,6 @@ msgstr "Himachali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Cronologia:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1970,31 +2769,21 @@ msgstr "Ittita"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Santa Sede (Città del Vaticano)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Lusaziano superiore"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Ungherese"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Ungheria"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2005,10 +2794,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islanda"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2020,251 +2809,106 @@ msgstr "Islandese"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Sami di Inari"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (Associazione internazionale lingue ausiliarie)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
-msgstr "Indico (Altre)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Lingue indo-europeo (Altre)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesia"
+msgstr "Indico (altre)"
 
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonesiano"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Lingue indo-europee (altre)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
-msgstr "Ingush"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "L'installazione è stata interrotta come indicato."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (Associazione internazionale lingue ausiliarie)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "Inupiaq"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Componente %s non valido"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "%s componente '%s' non valido"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Parametro di interrogazione URL LDAP '%s' non valido"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Stringa di interrogazione URL LDAP non valida"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Schema dell'url '%s' non valido"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Riferimento a oggetto Url vuoto non valido"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Componente dell'host '%s' non valido"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Carattere di separazione unione della matrice di parametri non valido"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-"Carattere di separazione di divisione della matrice di parametri non valido"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Carattere di separazione di divisione mappa di parametri non valido"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Componente della porta '%s' non valido"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Espressione regolare '%s' non valida"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Espressione regolare '%s' non valida: regcomp ha restituito %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Nome del file di archivio non valido in '%s'"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
-msgstr "Iraniano (Altre)"
-
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Iraq"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irlanda"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irlandese"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Irlandese, medio (900-1200)"
+msgstr "Ingush"
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Irlandese, antico (fino al 900)"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "Inupiaq"
+
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
+msgstr "Iraniano (altre)"
 
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
-msgstr "Lingue irochi"
-
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Isola di Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israele"
+msgstr "Lingue irochesi"
 
+# TLABEL modules/inst_target_part.ycp:680
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italiano"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italia"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Giamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Giavanese"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Giappone"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Giapponese"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Giavanese"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Giordania"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Giudeo-persiano"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Giudeo-arabico"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Giudeo-persiano"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Cabardo"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2281,11 +2925,6 @@ msgstr "Kachin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmyk"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2296,21 +2935,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karachai-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2321,46 +2945,41 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kashmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Casciubo"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
 msgid "Kawi"
-msgstr "Kawa"
+msgstr "Kawi"
 
 #. language code: kaz kk
 #: zypp/LanguageCode.cc:609
 msgid "Kazakh"
-msgstr "Kazakh"
-
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
+msgstr "Kazako"
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Cabardo"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
+msgstr "Khoisan (altre)"
+
 #. language code: khm km
 #: zypp/LanguageCode.cc:617
 msgid "Khmer"
 msgstr "Khmer"
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
-msgstr "Khoisian (Altre)"
-
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2371,11 +2990,6 @@ msgstr "Khotanese"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2384,17 +2998,17 @@ msgstr "Kinyarwanda"
 #. language code: kir ky
 #: zypp/LanguageCode.cc:625
 msgid "Kirghiz"
-msgstr "Kirgiz"
+msgstr "Kirghiso"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2404,12 +3018,7 @@ msgstr "Komi"
 #. language code: kon kg
 #: zypp/LanguageCode.cc:633
 msgid "Kongo"
-msgstr "Congo"
-
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
+msgstr "Kongo"
 
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
@@ -2419,22 +3028,32 @@ msgstr "Coreano"
 #. language code: kos
 #: zypp/LanguageCode.cc:637
 msgid "Kosraean"
-msgstr "Kosraean"
+msgstr "Kosraeano"
 
 #. language code: kpe
 #: zypp/LanguageCode.cc:639
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karachai-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
-msgstr "Kunama"
+msgstr "Kuanyama"
 
 #. language code: kum
 #: zypp/LanguageCode.cc:649
@@ -2446,26 +3065,11 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Curdo"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kyrgyztan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2486,133 +3090,71 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Repubblica democratica lao"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latino"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Lettonia"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
-msgstr "Laotiano"
-
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libano"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Livello 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Livello 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Livello 3"
+msgstr "Lettone"
 
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
-msgstr "Lezgin"
-
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libia"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
+msgstr "Lezgi"
 
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
-msgstr "Limba"
+msgstr "Limburghese"
 
 #. language code: lin ln
 #: zypp/LanguageCode.cc:671
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lituania"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Lituano"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "L'ubicazione '%s' è temporaneamente inaccessibile."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Tedesco, basso"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Sorbo, basso"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Lussemburghese"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Sami di Lule"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2621,42 +3163,18 @@ msgstr "Lunda"
 #. language code: luo
 #: zypp/LanguageCode.cc:691
 msgid "Luo (Kenya and Tanzania)"
-msgstr "Luo (Kenia e Tanzania)"
+msgstr "Luo (Kenya e Tanzania)"
 
 #. language code: lus
 #: zypp/LanguageCode.cc:693
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Lussemburgo"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Lussemburghese"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Macedone"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagascar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2667,6 +3185,11 @@ msgstr "Madurese"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshallese"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2677,178 +3200,60 @@ msgstr "Maithili"
 msgid "Makasar"
 msgstr "Makasar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malagasy"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malay"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malayalam"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaysia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldive"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Formato URI errato"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltese"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manciù"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Lingue Manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronesiano (altre)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Isole Marshall"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshallese"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinica"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritania"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Lingue maya"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "L'origine del supporto '%s' non contiene il supporto desiderato."
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Supporto '%s' già utilizzato da un'altra istanza."
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malay"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Supporto non collegato"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Supporto non aperto durante il tentativo di esecuzione di '%s'."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Francia metropolitana"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Messico"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Irlandese, medio (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2860,86 +3265,61 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandese"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Lingue varie"
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
-msgstr "Mohawk"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Khmer (altre)"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malgascio"
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
-msgstr "Moldavo"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltese"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldavia"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manciù"
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Khmer (Altre)"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Lingue Manobo"
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
+msgstr "Mohawk"
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolia"
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
+msgstr "Moldavo"
 
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongolo"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marocco"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambico"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2950,210 +3330,141 @@ msgstr "Lingue multiple"
 msgid "Munda languages"
 msgstr "Lingue munda"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Birmania"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandese"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Lingue maya"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Ersiano"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Indiano del Nord America"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Napoletano"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele, settentrionale"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele, meridionale"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele, settentrionale"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Napoletano"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepal Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Tedesco, basso"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepalese"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Olanda"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Antille olandesi"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nuova Caledonia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nuova Zelanda"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Nuovo messaggio di aggiornamento"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepal Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
-msgstr "Niger-Kordofaniane (Altre)"
-
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-Sahariano (Altre)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
+msgstr "Niger-Kordofaniano (altre)"
 
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
-msgstr "Niuean"
+msgstr "Niueano"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Nessun codice"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Norvegese Nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Nessuna URL nell'archivio."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Norvegese Bokmal"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Isola di Norfolk"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Norse, antico"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Indiano del Nord America"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Corea del Nord"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Isole Marianne settentrionali"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Sami settentrionale"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Sotho, settentrionale"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norvegia"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norvegese"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Norvegese Bokmal"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Norvegese Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Non un'unità CD ROM"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Sotho, settentrionale"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Lingue nubiane"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Newari classico"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3174,34 +3485,16 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Obsoleti"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
-msgstr "Provenzale (dopo il 1500)"
+msgstr "Occitano (dopo il 1500)"
 
 #. language code: oji oj
 #: zypp/LanguageCode.cc:831
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "È richiesto uno o entrambi gli attributi '%s' e '%s'."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Operazione non supportata dal supporto."
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3222,66 +3515,36 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Osseto"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turco, ottomano (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Lingue otomiane"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Possibile corruzione del pacchetto %s durante il trasferimento. Ritentare il "
-"recupero?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papuano (altre)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinan"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauan"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Territorio palestinese"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "Pampanga"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinan"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3292,94 +3555,45 @@ msgstr "Panjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua Nuova Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papuano (Altre)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Il percorso '%s' sul supporto '%s' non è una directory."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Il percorso '%s' sul supporto '%s' non è un file."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Autorizzazione per accedere a '%s' rifiutata."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persiano"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauano"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Persiano, antico (600-400 a.C. circa)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Perù"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persiano"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
-msgstr "Filippino (Altre)"
-
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filippine"
+msgstr "Filippino (altre)"
 
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Fenicio"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Installare prima il pacchetto 'lsof'."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeian"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polonia"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Polacco"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portogallo"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeiano"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3391,233 +3605,65 @@ msgstr "Portoghese"
 msgid "Prakrit Languages"
 msgstr "Lingue Pracrito"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Prerequisiti"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Identificazione dei problemi, ovvero supporto tecnico indirizzato a fornire "
-"informazioni sulla compatibilità, assistenza per l'installazione, supporto "
-"per l'utilizzo, manutenzione ordinaria e risoluzione dei problemi di base. "
-"L'obiettivo del supporto di Livello 1 non è correggere errori e difetti del "
-"prodotto."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Isolamento del problema, ovvero supporto tecnico indirizzato a riprodurre i "
-"problemi del cliente, isolare l'area del problema e fornire una soluzione ai "
-"problemi non risolti dal Supporto di Livello 1"
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Risoluzione del problema, ovvero supporto tecnico indirizzato a risolvere "
-"problemi complessi attraverso la programmazione nella correzione dei difetti "
-"di prodotto che sono stati identificati dal Supporto di Livello 2."
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Provenzale, antico (fino al 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Fornisce"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Portorico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
-msgstr "Pashto"
-
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
+msgstr "Pashtu"
 
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-"Analisi sintattica della stringa di interrogazione non supportata per questo "
-"URL"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM non riuscito: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Reto-romanzo"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
 msgstr "Rajasthani"
 
 #. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
-msgstr "Rapanui"
-
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr "Rarotongan"
-
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Consigliati"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Percorso relativo non consentito se l'autorità esiste già"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Rimozione dell'archivio '%s'"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "L'alias dell'archivio non può iniziare con un punto."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "L'attributo '%s' obbligatorio è mancante."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Richiede"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
-
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "Lingue romanze (Altre)"
-
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romania"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Romanian"
-
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "Romeno"
-
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundi"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Russo"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Federazione russa"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Sant'Elena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts e Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
-
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint Martin"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre e Miquelon"
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
+msgstr "Rapanui"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent e le Granadine"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
+msgstr "Rarotongano"
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Lingue Salishan"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
+msgstr "Romancio (altre)"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Aramaico samaritano"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Retoromanzo"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Lingue sami (Altre)"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "Romaní"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Romeno"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoano"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundi"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Russo"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3629,41 +3675,61 @@ msgstr "Sandawe"
 msgid "Sango"
 msgstr "Sango"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Yakut"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Indiano dell'America meridionale (altre)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Lingue Salish"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Aramaico samaritano"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanscrito"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome e Principe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardo"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbo"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Arabia saudita"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Siciliano"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Scozzese"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Croato"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3672,360 +3738,187 @@ msgstr "Selkup"
 #. language code: sem
 #: zypp/LanguageCode.cc:937
 msgid "Semitic (Other)"
-msgstr "Lingue semitiche (Altre)"
-
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbia"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbo"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
+msgstr "Lingue semitiche (altre)"
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "L'alias del servizio non può iniziare con un punto."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "Il plug-in del servizio non supporta la modifica di un attributo."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Irlandese, antico (fino al 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelles"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Lingue dei segni"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Shan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Siciliano"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Linguaggi dei segni"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "La firma non è verificabile"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "La firma del file %s non è stata trovata"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "La firma è corretta"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "La firma è corretta, ma non è attendibile"
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "Verifica della firma non riuscita"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "La chiave pubblica delle firme non è disponibile"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapore"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
-msgstr "Sinhalese"
-
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-Tibetano (Altre)"
+msgstr "Singalese"
 
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
-msgstr "Lingue Sioux"
-
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Sami skolt"
+msgstr "Lingue Siouan"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slavo (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-Tibetano (altre)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
 msgid "Slavic (Other)"
-msgstr "Slavo (Altre)"
+msgstr "Slavo (altre)"
 
 #. language code: slo slk sk
 #: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
 msgid "Slovak"
 msgstr "Slovacco"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovacchia"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Sloveno"
+
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Sami meridionale"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Sami settentrionale"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Lingue Sami (altre)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Sami di Lule"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Sami di Inari"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoano"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Sami skolt"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenia"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Sloveno"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "Sogdian"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Isole Solomon"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Somalo"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "Songhai"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Lingue Sorbo"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "La versione di libzypp è stata creata senza il supporto per HAL."
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Sotho, meridionale"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Sud Africa"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Indiano dell'America meridionale (Altre)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Georgia meridionale e Isole Sandwich meridionali"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Corea del Sud"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Altai meridionale"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Sami meridionale"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spagna"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Spagnolo"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardo"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Suggerimenti"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-Sahariano (altre)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swazi"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumero"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
-msgstr "Sundanese"
-
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Supplementi"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
+msgstr "Sondanese"
 
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard e Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumero"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Swahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swazi"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Svezia"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Svedese"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Svizzera"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Siria"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
-msgstr "Syriac"
-
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Eccezione di sistema '%s' sul supporto '%s'."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"La gestione di sistemi è bloccata dall'applicazione con pid %d (%s).\n"
-"Chiudere l'applicazione prima di riprovare."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
+msgstr "Siriaco"
 
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
@@ -4035,38 +3928,13 @@ msgstr "Tahitiano"
 #. language code: tai
 #: zypp/LanguageCode.cc:1015
 msgid "Tai (Other)"
-msgstr "Tai (Altre)"
-
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tagico"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tajikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamashek"
+msgstr "Tai (altre)"
 
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4077,6 +3945,11 @@ msgstr "Tataro"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4087,33 +3960,21 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tagico"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Thai"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tailandia"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Il livello di supporto non è specificato"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Il produttore non fornisce supporto."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Questa azione è già in esecuzione in un altro programma."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Questa richiesta potrebbe danneggiare il sistema!"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4129,153 +3990,95 @@ msgstr "Tigre"
 msgid "Tigrinya"
 msgstr "Tigrino"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Timeout superato durante l'accesso a '%s'."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
-#. language code: tli
-#: zypp/LanguageCode.cc:1049
-msgid "Tlingit"
-msgstr "Tlingit"
-
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tli
+#: zypp/LanguageCode.cc:1049
+msgid "Tlingit"
+msgstr "Tlingit"
+
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
 msgid "Tonga (Nyasa)"
-msgstr "Tonga (Niassa)"
+msgstr "Tonga (Nyasa)"
 
 #. language code: ton to
 #: zypp/LanguageCode.cc:1055
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Isole Tonga)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Tentativo di importare la chiave inesistente %s nel portachiavi %s"
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad e Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimshian"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmeno"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisia"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Lingue Tupi"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turchia"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turco"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turco, ottomanno (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turcomanno"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Isole Turks e Caicos"
-
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "Tuvinian"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaico (altre)"
 
 #. language code: twi tw
 #: zypp/LanguageCode.cc:1077
 msgid "Twi"
 msgstr "Twi"
 
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "Tuvano"
+
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
-msgstr "Udmurt"
-
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
+msgstr "Udmurto"
 
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
@@ -4285,12 +4088,7 @@ msgstr "Ugaritico"
 #. language code: uig ug
 #: zypp/LanguageCode.cc:1085
 msgid "Uighur"
-msgstr "Uighur"
-
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ucraina"
+msgstr "Uiguro"
 
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
@@ -4302,569 +4100,837 @@ msgstr "Ucraino"
 msgid "Umbundu"
 msgstr "Umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Impossibile clonare l'oggetto Url"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Indeterminato"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Impossibile creare la connessione dbus"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Urdu"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-"Impossibile inizializzare il contesto HAL - Verificare che hald sia in "
-"esecuzione."
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Uzbeko"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Impossibile analizzare sintatticamente i componenti dell'Url"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vai"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Non definito"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Venda"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Tipo di archivio non gestito"
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnamita"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Emirati arabi uniti"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Volapuk"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Regno Unito"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Votico"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Stati Uniti"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "Lingue Wakashan"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Isole minori degli Stati Uniti"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Walamo"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Paese sconosciuto:"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Waray"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Washo"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Gallese"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Lingue lusaziane"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Vallone"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolof"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Calmucco"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhosa"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yao"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yapese"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Yiddish"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Yoruba"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Lingue Yupik"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapotec"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Chuang"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Errore sconosciuto durante la lettura da '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Tentato di importare la chiave non esistente %s nel portachiavi %s"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Lingua sconosciuta:"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Eliminazione della chiave fallita."
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Modalità di corrispondenza '%s' sconosciuta"
+msgid "Signature file %s not found"
+msgstr "File delle firme %s non trovato"
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Modalità di corrispondenza '%s' sconosciuta per il modello '%s'"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr "Servizio sconosciuto '%1%': Rimozione archivio servizio orfano '%2%'"
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Impossibile fornire il file '%s' dal repository '%s'"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Opzione di supporto sconosciuta. Descrizione non disponibile"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Nessun URL nel repository."
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Tipo di firma sconosciuto"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "Il plugin dei servizi non supporta il cambio di un attributo."
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Metodo di autenticazione HTTP '%s' non supportato"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Il pacchetto %s sembra essersi corrotto durante il trasferimento. Si vuole "
+"provare a recuperarlo di nuovo?"
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "Verifica della firma fallita"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Schema URI non supportato in '%s'."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
+"Impossibile fornire il pacchetto %s. Si vuole provare a recuperarlo di nuovo?"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Sorbo, alto"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "Verifica di applydeltarpm fallita."
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Urdu"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm fallito."
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Lo shcema dell'url non consente alcun %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"La gestione del sistema è bloccata dall'applicazione con pid %d (%s).\n"
+"Chiudere tale applicazione prima di riprovare."
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Lo schema dell'url non consente alcun componente host"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s non appartiene a un repository di aggiornamento della distribuzione"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Lo schema dell'url non consente alcuna password"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s ha un'architettura inferiore"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Lo schema dell'url non consente alcuna porta"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problema con il pacchetto installato %s"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Lo schema dell'url non consente alcun nome utente"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "richieste in conflitto"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Lo schema url è un componente obbligatorio"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "alcuni problemi di dipendenze"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Per lo schema dell'url è necessario un componente host"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "niente fornisce il richiesto %s"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Lo schema dell'url necessita di un nome di percorso"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Sono stati abilitati tutti i repository richiesti?"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "il pacchetto %s non esiste"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "richiesta non supportata"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s è fornito dal sistema e non può essere cancellato"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vai"
+# TLABEL modules/inst_target_part.ycp:680
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s non è installabile"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "niente fornisce %s necessario a %s"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+# TLABEL modules/inst_target_part.ycp:680
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "impossibile installare sia %s, sia %s"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Venda"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s è in conflitto con %s fornito da %s"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s rende obsoleto %s fornito da %s"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "l'installato %s rende obsoleto %s fornito da %s"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnamita"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "il risolubile %s è in conflitto con %s fornito da se stesso"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Isole Vergini Statunitensi"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s richiede %s, ma non è possibile fornire questa richiesta"
 
-#: zypp/media/MediaCurl.cc:1008
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "fornitori cancellati: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"\n"
+"uninstallable providers: "
 msgstr ""
-"Visitare Novell Customer Center per verificare che la registrazione sia "
-"valida e che non sia scaduta."
+"\n"
+"fornitori non installabili: "
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Volapuk"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "fornitori non installabili: "
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Votico"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "rimuovi il blocco per permettere la rimozione di %s"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "Lingue Wakashan"
+# TLABEL modules/inst_target_part.ycp:680
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "non installare %s"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "mantieni %s"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis e Futuna"
+# TLABEL modules/inst_target_part.ycp:680
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "rimuovi il blocco per permettere l'installazione di %s"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Vallone"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Questa richiesta danneggerà il sistema!"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Waray"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ignora l' avviso di un sistema danneggiato"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Washo"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "non chiedere di installare un risolvibile che fornisce %s"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Gallese"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "non chiedere di eliminare tutti i risolvibili che forniscono %s"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Sahara occidentale"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "non installare la versione più recente di %s"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "mantieni %s nonostante l'architettura inferiore"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "installa %s nonostante l'architettura inferiore"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "mantieni l'obsoleto %s"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yao"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "installa %s da repository escluso"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "ritorna %s alla versione %s"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "cambio di architettura da %s a %s"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"installa %s (con cambio di fornitore)\n"
+"  %s  -->  %s"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Yoruba"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "sostituzione di %s con %s"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Lingue Yupik"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "disinstallazione di %s"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "danneggia %s ignorando alcune delle sue dipendenze"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "generalmente ignora alcune dipendenze"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapotec"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "L'attributo richiesto '%s' è mancante."
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Uno o entrambi gli attributi '%s' e '%s' sono richiesti."
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Chuang"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Impossibile aprire il file lock: %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Questa azione è stata già eseguita da un altro programma."
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Cronologia:"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Modalità di corrispondenza '%s' sconosciuta"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "Verifica di applydeltarpm non riuscita."
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Modalità di corrispondenza '%s' sconosciuta per il modello '%s'"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm non riuscito."
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Espressione regolare '%s' non valida: regcomp ha restituito %d"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "modifica dell'architettura di %s in %s"
+msgid "Invalid regular expression '%s'"
+msgstr "Espressione regolare '%s' non valida"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Installare prima il pacchetto 'lsof'."
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "interrompere %s ignorandone alcune dipendenze"
+msgid "Authentication required for '%s'"
+msgstr "È richiesta l'autenticazione per '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Impossibile installare sia %s che %s"
+msgid "Failed to mount %s on %s"
+msgstr "Montaggio di %s su %s fallito"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "richieste in conflitto"
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Smontaggio di %s fallito"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "Copia di backup di %s creata"
+msgid "Bad file name: %s"
+msgstr "Nome del file sbagliato: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Disinstallazione di %s"
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
+"Supporto non aperto quando durante il tentativo di eseguire l'azione '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "provider cancellati: "
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "File '%s' non trovato nel supporto '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "non chiedere di eliminare tutti i risolvibili fornendo %s"
+msgid "Cannot write file '%s'."
+msgstr "Impossibile scrivere il file '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Supporto non collegato"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Punto di collegamento del dispositivo sbagliato"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "non chiedere di installare un risolvibile fornendo %s"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Inizializzazione dello scaricamento (curl) fallita per '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "non installare %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "Eccezione di sistema '%s' sul supporto '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "non installare la versione più recente di %s"
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Il percorso '%s' sul supporto '%s' non è un file."
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "downgrade di %s a %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Il percorso '%s' sul supporto '%s' non è una directory."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "generalmente ignora alcune dipendenze"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "URI mal formato"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ignora avviso di sistema malfunzionante"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Nome host vuoto nell'URI"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "File system vuoto nell'URI"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Destinazione vuota nell'URI"
+
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Schema URI  non supportato in '%s'."
+
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operazione non supportata dal supporto"
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
-"installare %s (con cambio del produttore)\n"
-"  %s  -->  %s"
+"Errore di scaricamento (curl) per '%s':\n"
+"Codice di errore: %s\n"
+"Messaggio di errore: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "installare %s nonostante l'architettura inferiore"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"Si è verificato un errore durante l'impostazione delle opzioni di "
+"scaricamento (curl) per '%s':"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "installare %s dall'archivio escluso"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Il supporto della sorgente '%s' non contiene il supporto desiderato"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "l'installazione di %s rende obsoleto %s fornito da %s"
+msgid "Medium '%s' is in use by another instance"
+msgstr "Il supporto '%s' è usato da un'altra istanza"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "non valido"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Non è possibile espellere alcun dispositivo"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "mantieni %s"
+msgid "Cannot eject media '%s'"
+msgstr "Non è possibile espellere il dispositivo '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "mantenere %s nonostante l'architettura inferiore"
+msgid "Permission to access '%s' denied."
+msgstr "Permesso di accesso a '%s' negato."
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "mantenere %s obsoleto"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: impossibile creare il contesto libhal"
-
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: impossibile impostare la connessione dbus"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Timeout superato mentre si accedeva a '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "nessun elemento fornisce %s obbligatorio per %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "La posizione '%s' non è momentaneamente accessibile."
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "nessun elemento fornisce %s obbligatorio"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+"Problemi con il certificato SSL, verificare che il certificato CA sia valido "
+"per '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "il pacchetto %s non esiste"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Impossibile trovare un dispositivo di loop disponibile per montare il file "
+"immagine da '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problema con il pacchetto installato %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Metodo di autenticazione HTTP '%s' non supportato"
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "rimuovi il blocco per consentire l'installazione di %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Si visiti il Centro clienti di Novell per controllare che la propria "
+"registrazione sia valida e non scaduta."
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "rimuovi il blocco per consentire la rimozione di %s"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Impossibile creare sat-pool."
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "sostituzione di %s con %s"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Il file %1%\n"
+"  dal pacchetto\n"
+"     %2%\n"
+"  è in conflitto con il file dal pacchetto\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"rpm creato %s come %s, tuttavia non è stato possibile determinare la "
-"differenza"
+"Il file %1%\n"
+"  dal pacchetto\n"
+"     %2%\n"
+"  è in conflitto con il file dall'installazione di\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm ha creato %s come %s.\n"
-"Di seguito sono riportate le prime 25 righe di differenza:\n"
+"Il file %1%\n"
+"  dall'installazione di\n"
+"     %2%\n"
+"  è in conflitto con il file dal pacchetto\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"rpm ha salvato %s come %s, tuttavia non è stato possibile determinare la "
-"differenza"
+"Il file %1%\n"
+"  dall'installazione di\n"
+"     %2%\n"
+"  è in conflitto con il file dall'installazione di\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
-"rpm ha salvato %s come %s.\n"
-"Di seguito sono riportate le prime 25 righe di differenza:\n"
+"Il file %1%\n"
+"  dal pacchetto\n"
+"     %2%\n"
+"  è in conflitto con il file\n"
+"     %3%\n"
+"  dal pacchetto\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "Il risolubile %s è in conflitto con %s fornito da se stesso"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Il file %1%\n"
+"  dal pacchetto\n"
+"     %2%\n"
+"  è in conflitto con il file\n"
+"     %3%\n"
+"  dall'installazione di\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "alcuni problemi di dipendenze"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Il file %1%\n"
+"  dall'installazione di\n"
+"     %2%\n"
+"  è in conflitto con il file\n"
+"     %3%\n"
+"  dal pacchetto\n"
+"     %4%"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "provider non installabili: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Il file %1%\n"
+"  dall'installazione di\n"
+"     %2%\n"
+"  è in conflitto con il file\n"
+"     %3%\n"
+"  dall'installazione di\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "sconosciuto"
+# TLABEL modules/inst_target_part.ycp:680
+#~ msgid "do not keep %s installed"
+#~ msgstr "non tenere installato %s"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "non supportato"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr ""
+#~ "Impossibile creare la chiave pubblica %s dal portachiavi %s per il file %s"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "richiesta non supportata"
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "Inizializzazione dello scaricamento (metalink curl) per '%s'"
+
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "Errore di scaricamento (metalink curl) per '%s':\n"
+#~ "Codice di errore: %s\n"
+#~ "Messaggio di errore: %s\n"
+
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "Scaricamento interrotto al %d%%"
+
+#~ msgid "Download interrupted by user"
+#~ msgstr "Scaricamento interrotto dall'utente"
+
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr ""
+#~ "Si è verificato un errore durante l'impostazione delle opzioni di "
+#~ "scaricamento (metalink curl) per '%s':"
+
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Scaricamento di %s da %s fallito"
+
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Serbia e Montenegro"
+
+#~ msgid "Timeout exceeded when access '%s'."
+#~ msgstr "Timeout superato mentre si accedeva a '%s'."
index 768879b..f3cb773 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# translation of zypp.po to Japanese
+# Japanese message file for YaST2 (@memory@).
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002 SuSE Linux AG.
+# Copyright (C) 2000, 2001 SuSE GmbH.
 #
+# Mike Fabian <mfabian@suse.de>, 2000, 2001.
+# Yasuhiko Kamata <belphegor@belbel.or.jp>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015.
 msgid ""
 msgstr ""
 "Project-Id-Version: zypp\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 16:58\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2015-11-18 20:48+0900\n"
+"Last-Translator: Yasuhiko Kamata <belphegor@belbel.or.jp>\n"
+"Language-Team: Japanese <opensuse-ja@opensuse.org>\n"
+"Language: ja\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: KBabel 1.11.4\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"インストール不可能なプロバイダ: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "HAL 例外"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "無効な LDAP URL のクエリ文字列"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" SSL 証明書に問題があります。 '%s' について証明機関に問題がないかどうか確認し"
-"てください。"
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "無効な LDAP URL クエリパラメータ '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "URL オブジェクトを複製できません"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "無効な空の URL オブジェクト参照"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "URL コンポーネントを解釈できません"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "相互排他機能の属性を初期化できません"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "再帰相互排他機能の属性を設定できません"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "再帰相互排他機能を初期化できません"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "相互排他機能の権利を取得できません"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "相互排他機能の権利を開放できません"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "提供"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "事前要件"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "必要"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "競合"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "廃止"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "推奨"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "提案"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "拡張"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "補足"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "%2$u バイトのチェックサム '%3$s' は疑わしい種類 '%1$s' です"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -38,127 +117,1799 @@ msgstr " 実行"
 msgid " execution failed"
 msgstr " 実行失敗"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " 中止しているため実行をスキップ"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
 #: zypp/target/TargetImpl.cc:449
 #, c-format, boost-format
 msgid "%s already executed as %s)"
-msgstr "%s は既に %s として実行されています)"
+msgstr "%s は %s として実行済みです)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s は %s (%s から提供されている)と競合します"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " 中止しているため実行をスキップ"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s はdistupgradeのリポジトリに属していません"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "更新メッセージ通知の送信時にエラーが発生しました。"
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s は下位のアーキテクチャです"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "新しい更新メッセージ"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s はインストールできません"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "指示通りにインストールが中止されました。"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s はシステムが提供するもので、削除できません"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
+"申し訳ありません、このバージョンの libzypp は HAL サポート無しで構築されてい"
+"ます。"
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s は %s (%s から提供されている)を古いものとして廃棄します"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext が接続されていません"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s は %s を必要としていますが、この要求を解決する方法がありません"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive が初期化されていません"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(期限切れ)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume が初期化されていません"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(無期限)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "dbus 接続を作成できません"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(24 時間以内に期限切れ)"
-msgstr[1] "(24 時間以内に期限切れ)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: libhal コンテキストを作成できません"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(24 時間以内に期限切れ)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: dbus 接続を設定できません"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "アブハーズ語"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
+"HALコンテキストを初期化できません -- hald が動作していない可能性があります。"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "アチェー語"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "CD ROM ドライブではありません"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "アチョリ語"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM の失敗: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "アダングメ語"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "公開鍵をファイル %s からインポートすることができませんでした: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "リポジトリ '%s' を追加しています"
+msgid "Failed to remove public key %s: %s"
+msgstr "公開鍵 %s を削除することができませんでした: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "追加の顧客契約が必要"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "%s 向けに変更された設定ファイル:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm は %s を %s として保存しましたが、差異を判別できませんでした"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm は %s を %s として保存しました。\n"
+"以下は差異のある最初の25行です。\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm は %s を %s として作成しましたが、差異を判別できませんでした"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpmは %s を %s として作成しました。\n"
+"以下は差異のある最初の25行です。\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
 #: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
 msgid "Additional rpm output"
-msgstr "追加のrpm出力"
-
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "アディゲ語"
+msgstr "追加の rpm 出力"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "ã\82¢ã\83\95ã\82¡ã\83«èª\9e"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "ã\83\90ã\83\83ã\82¯ã\82¢ã\83\83ã\83\97 %s ã\81\8cä½\9cæ\88\90ã\81\95ã\82\8cã\81¾ã\81\97ã\81\9f"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "アフガニスタン"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "署名に問題はありません"
 
-#. language code: afh
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "不明な種類の署名です"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "署名を検証しません"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "署名に問題はありませんが、鍵を信頼していません"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "署名の公開鍵がありません"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "ファイルが存在しないか、署名を確認できません"
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "以下の動作を実行します:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+"リポジトリのディレクトリ '%1%' を読み込むことができません: 許可がありません"
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "ディレクトリ '%s' の読み込みに失敗しました"
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+"リポジトリのファイル '%1%' を読み込むことができません: 許可がありません"
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "リポジトリの別名をドットから始めることはできません。"
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "サービスの別名をドットから始めることはできません。"
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "ファイル '%s' を書き込み用に開くことができません。"
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+"不明なサービス '%1%' です: 孤立したサービスリポジトリ '%2%' を削除しています"
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "指定した URL には正しいメタデータがありません"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "%s を作成できません"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "メタデータのキャッシュディレクトリを作成できません。"
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "リポジトリ '%s' のキャッシュを構築しています"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "%s にキャッシュを作成できません - 書き込み許可がありません。"
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "リポジトリ (%d) のキャッシュに失敗しました。"
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "未知のリポジトリ種類です"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "'%s' からの読み取りでエラー"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "'%s' からの読み込みで不明なエラー"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "リポジトリ '%s' を追加しています"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "'%s' にあるリポジトリのファイル名が正しくありません"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "リポジトリ '%s' を削除しています"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "リポジトリがどこに保存されたのかがわかりません。"
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "'%s' を削除することができません"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "サービスがどこに保存されたのかがわかりません。"
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "URL 方式では %s を許可していません"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "無効な %s 部分です '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "無効な %s 部分です"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "この URL に対するクエリ文字列解釈はサポートされていません"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "URL のスキーム部分は必須項目です"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "無効な URL スキーム '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "URL スキームではユーザ名を指定することは許されていません"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "URL スキームではパスワードを指定することは許されていません"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "URL スキームにはホスト部分が必要です"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "URL スキームではホスト部分を指定することは許されていません"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "無効なホスト部分 '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "URL スキームではポートの指定は許されていません"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "無効なポート部分 '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "URL スキームにはパス名が必要です"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "権限部分が存在する場合相対パスは許可されません。 "
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "エンコードされた文字列に NULL バイトがあります"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "無効なパラメータ配列区切り文字"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "無効なパラメータマップ区切り文字"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "無効なパラメータ配列結合文字"
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "議事端末 (%s) を開くことができません。"
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "パイプ (%s) を開くことができません。"
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "'%s' (%s) に chroot することができません。"
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "chroot '%s' (%s) 環境下で '%s' にディレクトリ移動できません。"
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "'%s' (%s) にディレクトリ移動できません。"
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "'%s' (%s) を実行することができません。"
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "fork (%s) することができません。"
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "コマンドは状態 %d で終了しました。"
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "コマンドはシグナル %d (%s) で終了しました。"
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "コマンドは不明なエラーで終了しました。"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(無期限)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(期限切れ)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(24 時間以内に期限切れ)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(%d 日で期限切れ)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "不明"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "未対応"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Level 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Level 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Level 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "追加の顧客契約が必要"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "無効"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "サポートのレベルが指定されていません。"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "製造元はサポートを提供していません。"
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"問題の決定、それは互換性に関する情報やインストール支援、使用方法の対応や進行"
+"中の保守、基本的なトラブルシューティングなどの技術サポートを指します。 Level "
+"1 サポートは、製品の欠陥によるエラーを修正しようとするものではありません。"
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"問題の切り分け、それは顧客内での問題を共有し領域を切り分け、 Level 1 サポート"
+"では解決されていない問題について解決方法を提供する技術サポートを指します。"
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"問題の解決、それは複雑な問題に対して技術者を従事させ、 Level 2 サポートで認識"
+"されていない製品の欠陥を解決する技術サポートを指します。"
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "サポートを得るには、追加の顧客契約が必要です。"
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "不明なサポートオプションです。説明は利用できません"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "不明な国: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "コードなし"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "アンドラ"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "アラブ首長国連邦"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "アフガニスタン"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "アンティグアおよびバーブーダ"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "アングイラ"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "アルバニア"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "アルメニア"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "オランダ領アンティル"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "アンゴラ"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "南極大陸"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "アルゼンチン"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "アメリカ領サモア"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "オーストリア"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "オーストラリア"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "アルーバ"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "オーランド諸島"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "アゼルバイジャン"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "ボスニア-ヘルツェゴヴィナ"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "バルバドス"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "バングラデシュ"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "ベルギー"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "ブルキナファソ"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "ブルガリア"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "バーレーン"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "ブルンディ"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "ベニン"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "バーミューダ"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "ブルネイダルサラーム国"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "ボリビア"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "ブラジル"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "バハマ"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "ブータン"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "ブーヴェ島"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "ボツワナ"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "ベラルーシ"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "ベリーズ"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "カナダ"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "ココス (キーリング) 諸島"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "コンゴ"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "中央アフリカ共和国"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "スイス"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "コートディヴォワール"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "クック諸島"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "チリ"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "カメルーン"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "中国"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "コロンビア"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "コスタリカ"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "キューバ"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "カボベルデ"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "クリスマス島"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "キプロス"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "チェコ共和国"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "ドイツ"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "ジブティ"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "デンマーク"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "ドミニカ"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "ドミニカ共和国"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "アルジェリア"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "エクアドル"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "エストニア"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "エジプト"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "西サハラ"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "エリトリア"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "スペイン"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "エチオピア"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "フィンランド"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "フィジー"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "フォークランド諸島 (マルビナス)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "ミクロネシア連邦"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "フェロー諸島"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "フランス"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "フランス本国"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "ガボン"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "英国"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "グレナダ"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "ジョージア"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "フランス領ギアナ"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "ガーンジー"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "ガーナ"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "ジブラルタル"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "グリーンランド"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "ガンビア"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "ギニア"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "グアドループ"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "赤道ギニア"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "ギリシア"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "サウスジョージアおよびサウスサンドイッチ諸島"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "グアテマラ"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "グアム"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "ギニア-ビサウ"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "ギニア"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "香港"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "ハード島およびマクドナルド諸島"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "ホンデュラス"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "クロアティア"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "ハイティ"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "ハンガリー"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "インドネシア"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "アイルランド"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "イスラエル"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "マン諸島"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "インド"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "英領インド洋植民地"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "イラク"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "イラン"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "アイスランド"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "イタリア"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "ジャージー"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "ジャマイカ"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "ヨルダン"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "日本"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "ケニア"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "キルギスタン"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "カンボジア"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "キリバス"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "コモロ"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "セントキッツネヴィス"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "北朝鮮"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "韓国"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "クウェート"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "ケイマン諸島"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "カザフスタン"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "ラオス人民民主共和国"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "レバノン"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "セントルシア"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "リヒテンシュタイン"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "スリランカ"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "リベリア"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "レソト"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "リトアニア"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "ルクセンブルク"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "ラトビア"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "リビア"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "モロッコ"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "モナコ"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "モルドバ"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "モンテネグロ"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "セントマーティン"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "マダガスカル"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "マーシャル諸島"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "マケドニア"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "マリ"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "ミャンマー"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "モンゴル"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "マカオ"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "北マリアナ諸島"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "マルティニク"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "モーリタニア"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "モントセラト"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "マルタ"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "モーリシャス"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "モルディブ"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "マラウイ"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "メキシコ"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "マレーシア"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "モザンビーク"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "ナミビア"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "ニューカレドニア"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "ニジェール"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "ノーフォーク島"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "ナイジェリア"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "ニカラグア"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "オランダ"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "ノルウェー"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "ネパール"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "ナウル語"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "ニウエ"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "ニュージーランド"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "オマーン"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "パナマ"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "ペルー"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "フランス領ポリネシア"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "パプアニューギニア"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "フィリピン"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "パキスタン"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "ポーランド"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "サンピエールエミクロン"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "ピトケルン"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "プエルトリコ"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "パレスチナ地域"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "ポルトガル"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "パラウ"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "パラグアイ"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "カタール"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "レユニオン"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "ルーマニア"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "セルビア"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "ロシア連邦"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "ルワンダ"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "サウディアラビア"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "ソロモン諸島"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "セーシェル"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "スーダン"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "スウェーデン"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "シンガポール"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "セントヘレナ"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "スロベニア"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "スヴァールバルおよびヤンマイエン"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "スロバキア"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "シエラレオーネ"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "サンマリノ"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "セネガル"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "ソマリア"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "スリナム"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "サントーメ-プリンシペ"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "エルサルバドル"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "シリア"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "スイス"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "タークスアンドケーコス諸島"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "チャド"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "フランス南方領"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "トーゴ"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "タイ"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "タジキスタン"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "トケラウ語"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "トルクメニスタン"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "チュニジア"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "トンガ"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "東ティモール"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "トルコ"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "トリニダードトバゴ"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "ツバル語"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "台湾"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "タンザニア"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "ウクライナ"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "ウガンダ"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "合衆国小離島"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "アメリカ合衆国"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "ウルグアイ"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "ウズベキスタン"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "教皇庁 (ヴァティカン市国)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "セントヴィンセント-グレナディン"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "ベネズエラ"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "英領ヴァージン諸島"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "米国領ヴァージン諸島"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "ベトナム"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "ヴァヌアトゥ"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "ワリーエフトゥーナ"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "サモア"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "イエメン"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "マヨット"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "南アフリカ"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "ザンビア"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "ジンバブエ"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "不明な言語: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "アファル語"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "アブハーズ語"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "アチェー語"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "アチョリ語"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "アダングメ語"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "アディゲ語"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "アフリカ-アジア語 (その他)"
+
+#. language code: afh
 #: zypp/LanguageCode.cc:175
 msgid "Afrihili"
 msgstr "アフリヒリ語"
@@ -168,11 +1919,6 @@ msgstr "アフリヒリ語"
 msgid "Afrikaans"
 msgstr "アフリカーンス語"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "アフリカ-アジア語(その他)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -188,16 +1934,6 @@ msgstr "アカン語"
 msgid "Akkadian"
 msgstr "アッカド語"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "オーランド諸島"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "アルバニア"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -208,118 +1944,70 @@ msgstr "アルバニア語"
 msgid "Aleut"
 msgstr "アレウト語"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "アルジェリア"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
-msgstr "アルゴンギン語族"
-
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "アルタイ語(その他)"
+msgstr "アルゴンギン語"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "アメリカ領サモア"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "南アルタイ語"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "アムハラ語"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "サポートを得るには、追加の顧客契約が必要です。"
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "アンドラ"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "アンゴラ"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "アングイラ"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "南極大陸"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "アンティグアおよびバルブダ"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "古英語 (ca.450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
 msgid "Apache Languages"
-msgstr "アパッチ語"
+msgstr "アパッチ語"
 
 #. language code: ara ar
 #: zypp/LanguageCode.cc:201
 msgid "Arabic"
 msgstr "アラビア語"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "アラゴン語"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "アラム語"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "アラパホー語"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "アラゴン語"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "アルメニア語"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "アラウカン語"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "アラワック語"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "アルゼンチン"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "アルメニア"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "アルメニア語"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "アラパホー語"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
-msgstr "人工語(その他)"
+msgstr "人工語 (その他)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "ã\82¢ã\83«ã\83¼ã\83\90"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "ã\82¢ã\83©ã\83¯ã\83\83ã\82¯èª\9e"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -336,32 +2024,11 @@ msgstr "アストゥリア語"
 msgid "Athapascan Languages"
 msgstr "アサパスカン語"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "オーストラリア"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "オーストラリア語"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "オーストリア"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "アウストロネシア語(その他)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "'%s' にアクセスするにはユーザ認証が必要です"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -382,125 +2049,66 @@ msgstr "アワディー語"
 msgid "Aymara"
 msgstr "アイマラ語"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "アゼルバイジャン"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "アゼルバイジャン語"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "不正なファイル名: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "不正なメディアの接続点"
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "バハマ"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "バーレーン"
-
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "バリ語"
-
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "バルト語(その他)"
-
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "バルーチー語"
-
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "バンバラ語"
-
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "バミレケ語族"
-
 #. language code: bad
 #: zypp/LanguageCode.cc:237
 msgid "Banda"
 msgstr "バンダ語"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "バングラデシュ"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "バントゥー語(その他)"
-
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "バルバドス"
-
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "バサ語"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "バミレケ語"
 
 #. language code: bak ba
 #: zypp/LanguageCode.cc:241
 msgid "Bashkir"
 msgstr "バシキール語"
 
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "バルーチー語"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "バンバラ語"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "バリ語"
+
 #. language code: baq eus eu
 #: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 msgid "Basque"
 msgstr "バスク語"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "バタク語(インドネシア)"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "バサ語"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "バルト語 (その他)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "ベジャ語"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "ベラルーシ"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "ベラルーシ語"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "ベルギー"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "ベリーズ"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -511,31 +2119,16 @@ msgstr "ベンバ語"
 msgid "Bengali"
 msgstr "ベンガル語"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "ベニン"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
-msgstr "ベルベル語(その他)"
-
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "バーミューダ"
+msgstr "ベルベル語 (その他)"
 
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "ボジュプリー語"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "ブータン"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
@@ -556,269 +2149,70 @@ msgstr "ビニ語"
 msgid "Bislama"
 msgstr "ビスラマ語"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "ブラン語"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "ボリビア"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "シクシカ語"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "ã\83\9cã\82¹ã\83\8bã\82¢-ã\83\98ã\83«ã\83\84ã\82§ã\82´ã\83´ã\82£ã\83\8a"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "ã\83\90ã\83³ã\83\88ã\82¥ã\83¼èª\9e (ã\81\9dã\81®ä»\96)"
 
 #. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "ボスニア語"
-
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "ボツワナ"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "ブーヴェ島"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "ブラジ語"
-
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "ブラジル"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "ブルトン語"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "英領インド洋植民地"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "英領ヴァージン諸島"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "ブルネイダルサラーム国"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "ブギス語"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "リポジトリ '%s' のキャッシュを構築中"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "ブルガリア"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "ブルガリア語"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "ブリヤート語"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "ブルキナファソ"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "ビルマ語"
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "ブルンディ"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "カドー語"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "カンボジア"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "カメルーン"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "sat-poolを作成できません。"
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "ミューテックスロックを取得できません"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "ディレクトリを「%s」 (%s)に変更できません。"
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-"chroot 「%s」 (%s)の実行中にディレクトリを「%s」に変更することはできません。"
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "'%s' (%s)にchrootすることができません。"
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "%s を作成できません"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "%s にキャッシュを作成できません - 書き込み許可がありません。"
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "メタデータのキャッシュディレクトリを作成できません。"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "「%s」を削除できません"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "'%s' (%s)を実行することができません。"
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "repoの保管場所がわかりません。"
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "サービスの保管場所がわかりません。"
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "fork (%s)することができません。"
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "ミューテックス属性を初期化できません"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "再帰的ミューテックスを初期化できません"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "ファイル「%s」を書き込むためにファイルを開くことができません。"
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "ロックファイルを開けません: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "パイプ(%s)を開くことができません。"
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "擬似端末(%s)を開くことができません。"
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "ファイル '%s' をリポジトリ '%s' から提供することができません"
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "ボスニア語"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "ミューテックスロックを解放できません"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "ブラジ語"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "再帰的ミューテックス属性を設定できません"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "ブルトン語"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "ã\82«ã\83\8aã\83\80"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "ã\83\90ã\82¿ã\82¯èª\9e (ã\82¤ã\83³ã\83\89ã\83\8dã\82·ã\82¢)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "メディアを取り出せません"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "ブリヤート語"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "ã\83¡ã\83\87ã\82£ã\82¢ã\80\8c%sã\80\8dã\82\92å\8f\96ã\82\8aå\87ºã\81\9bã\81¾ã\81\9bã\82\93"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "ã\83\96ã\82®ã\82¹èª\9e"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"「%s」からイメージファイルをマウントする使用可能なループデバイスが見つかりま"
-"せん"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "ブルガリア語"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
-"リポジトリのディレクトリ「%1%」を読み込むことができません: 許可がありません"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "ビルマ語"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
-"リポジトリのファイル「%1%」を読み込むことができません: 許可がありません"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "ブラン語"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "ã\83\95ã\82¡ã\82¤ã\83«ã\80\8c%sã\80\8dã\82\92æ\9b¸ã\81\8dè¾¼ã\82\81ã\81¾ã\81\9bã\82\93ã\80\82"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "ã\82«ã\83\89ã\83¼èª\9e"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "カボベルデ"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "中央アメリカインディアン語 (その他)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -833,12 +2227,7 @@ msgstr "カタロニア語"
 #. language code: cau
 #: zypp/LanguageCode.cc:309
 msgid "Caucasian (Other)"
-msgstr "カフカス語(その他)"
-
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "ケイマン諸島"
+msgstr "カフカス語 (その他)"
 
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
@@ -848,264 +2237,143 @@ msgstr "セブアノ語"
 #. language code: cel
 #: zypp/LanguageCode.cc:313
 msgid "Celtic (Other)"
-msgstr "ケルト語(その他)"
-
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "中央アフリカ共和国"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "中央アメリカインディアン語(その他)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "チャド"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "チャガタイ語"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "チャム語族"
+msgstr "ケルト語 (その他)"
 
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "チャモロ語"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "%s 向けの変更された設定ファイル:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "チェチェン語"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "チェロキー語"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "シャイエン語"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "チブチャ語"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "チェワ語"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "チリ"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "チェチェン語"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "中国"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "チャガタイ語"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "中国語"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "チヌーク語"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "マリ語"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
-msgstr "チヌークジャーゴン語"
-
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "チプウィアン語"
+msgstr "混合チヌーク語"
 
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "チョクトー語"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "クリスマス島"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "チペワイアン語"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "チェロキー語"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "教会スラブ語"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "チヌーク語"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "チュヴァシ語"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "古典ネワール語"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "ココス(キーリング)諸島"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "コロンビア"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "コマンドは状態 %d で終了しました。"
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "コマンドは不明なエラーで終了しました。"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "コマンドはシグナル %d (%s)で終了しました。"
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "コモロ"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "競合"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "コンゴ"
-
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "クック諸島"
-
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "コプト語"
-
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "コーンウォール語"
-
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "コルシカ語"
-
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "コスタリカ"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "コートディヴォワール"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "シャイエン語"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "ã\82¯ã\83ªã\83¼語"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "ã\83\81ã\83£ã\83 語"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "ã\82¯ã\83ªã\83¼ã\82¯語"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "ã\82³ã\83\97ã\83\88語"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "その他の混成語・合成語"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "コーンウォール語"
+
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "コルシカ語"
 
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "英語が基盤の混成語・混合語"
+msgstr "英語が基盤のクレオール語・ピジン語 (その他)"
 
 #. language code: cpf
 #: zypp/LanguageCode.cc:355
 msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "仏語が基盤の混成語・混合語"
+msgstr "フランス語が基盤のクレオール語・ピジン語 (その他)"
 
 #. language code: cpp
 #: zypp/LanguageCode.cc:357
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "葡語が基盤の混成語・混合語"
+msgstr "ポルトガル語が基盤のクレオール語・ピジン語 (その他)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "クリー語"
 
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "クリミアタタール語"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "クロアティア"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "クロアティア語"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "クレオール語・ピジン語 (その他)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "ã\82­ã\83¥ã\83¼ã\83\90"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "ã\82«ã\82·ã\83¥ã\83¼ã\83\96èª\9e"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
-msgstr "クシ語(その他)"
-
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "キプロス"
+msgstr "クシ語 (その他)"
 
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "チェコ語"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "チェコ共和国"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1119,7 +2387,7 @@ msgstr "デンマーク語"
 #. language code: dar
 #: zypp/LanguageCode.cc:377
 msgid "Dargwa"
-msgstr "Dargwa"
+msgstr "ダルギン語"
 
 #. language code: day
 #: zypp/LanguageCode.cc:379
@@ -1131,10 +2399,15 @@ msgstr "ダヤク語"
 msgid "Delaware"
 msgstr "デラウェア語"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "デンマーク"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "スレーブ語 (アタパスカ語)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "ドグリブ語"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1146,74 +2419,36 @@ msgstr "ディンカ語"
 msgid "Divehi"
 msgstr "ディヴェヒ語"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "ジブティ"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
-msgstr "ドグリブ語"
-
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "ドグリブ語"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "ドミニカ"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "ドミニカ共和国"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"「%s」のダウンロード(curl)エラー:\n"
-"エラーコード: %s\n"
-"エラーメッセージ: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "「%s」のダウンロード(curl)初期化が失敗しました"
+msgstr "ドグリー語"
 
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
-msgstr "ドラヴィダ語(その他)"
+msgstr "ドラヴィダ語 (その他)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "低地ソルブ語"
 
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "ドゥアーラ語"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "'%s' は %u バイトのチェックサム '%s' の疑わしい種類です"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "中世オランダ語 (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "オランダ語"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "中世オランダ語"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1224,62 +2459,26 @@ msgstr "ディウラ語"
 msgid "Dzongkha"
 msgstr "ゾンカ語"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "東ティモール"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "エクアドル"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "エフィク語"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "エジプト"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
-msgstr "エジプト語(古代)"
+msgstr "エジプト語 (古代)"
 
 #. language code: eka
 #: zypp/LanguageCode.cc:413
 msgid "Ekajuk"
 msgstr "エカジュク語"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "エルサルバドル"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "エラム語"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "URIの宛先が空です"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "URIのファイルシステムが空です"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "URIのホスト名が空です"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "エンコードされた文字列にNULLバイトがあります"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1288,335 +2487,53 @@ msgstr "英語"
 #. language code: enm
 #: zypp/LanguageCode.cc:419
 msgid "English, Middle (1100-1500)"
-msgstr "中英語(1100-1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "古英語(ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "機能強化"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "赤道ギニア"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "エリトリア"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "「%s」のダウンロード(curl)オプションの設定中にエラーが発生しました:"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "更新メッセージ通知の送信時にエラーが発生しました。"
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "「%s」から読み取り時にエラーが発生しました"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "アルジア語"
+msgstr "中英語 (1100-1500)"
 
 #. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "エスペラント語"
-
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "エストニア"
-
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "エストニア語"
-
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "エチオピア"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "エウェ語"
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "エウォンド語"
-
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "キャッシュの回収(%d)に失敗しました。"
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "キーの削除に失敗しました。"
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "公開鍵をファイル %s からインポートすることができませんでした: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "%s を %s にマウントできませんでした"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "パッケージ%sの提供に失敗しました。検索を再試行しますか?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "ディレクトリ「%s」 の読み取りに失敗"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "公開鍵 %s を削除することができませんでした: %s"
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "エスペラント語"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "%s をアンマウントできませんでした"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "エストニア語"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "フォークランド諸島(マルビナス)"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "エウェ語"
+
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "エウォンド語"
 
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "ファン語"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "ファンティ語"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "フェロー諸島"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "フェロー語"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "ミクロネシア連邦"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "フィジー"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "ファンティ語"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "フィージー語"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"%2% の\n"
-" インストールによる\n"
-" ファイル %1% が、\n"
-" %4% のインストール\n"
-" による\n"
-" ファイル %3%\n"
-"  と競合しています"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"%2% の\n"
-" インストールによる\n"
-" ファイル %1% が、\n"
-" パッケージ %4% \n"
-" からのファイル %3%\n"
-"  と競合\n"
-" しています"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"%2% の\n"
-" インストールによる\n"
-" ファイル %1% が、\n"
-" %3% のインストールによる\n"
-" ファイルと競合しています"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"%2% の\n"
-" インストールによる\n"
-" ファイル %1% が、パッケージ\n"
-" %3% からのファイルと\n"
-" 競合しています"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"パッケージ %2% \n"
-" からの\n"
-" ファイル %1% が、\n"
-"  %4% のインストールによる\n"
-" ファイル %3% と\n"
-" 競合\n"
-"  しています"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"パッケージ %2% \n"
-" からの\n"
-" ファイル %1% が、\n"
-"パッケージ %4% \n"
-" からの\n"
-"ファイル %3% と\n"
-"競合しています"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"パッケージ %2% からの\n"
-" ファイル %1% が、\n"
-" %3% のインストールによる\n"
-" ファイルと\n"
-" 競合しています"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"パッケージ %2% からの\n"
-" ファイル %1% が、\n"
-" パッケージ %3% からの\n"
-" ファイルと\n"
-" 競合しています"
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "ファイル「%s」がメディア「%s」に見つかりません"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "ファイルが存在しないか、署名を確認できません"
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "フィリピン語"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "フィンランド"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1625,97 +2542,48 @@ msgstr "フィンランド語"
 #. language code: fiu
 #: zypp/LanguageCode.cc:441
 msgid "Finno-Ugrian (Other)"
-msgstr "フィン-ウゴル語(その他)"
-
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "以下の動作を実行します:"
+msgstr "フィン-ウゴル語 (その他)"
 
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "フォン語"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "フランス"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "フランス語"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "フランス領ギアナ"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "フランス領ポリネシア"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "フランス南方領"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
-msgstr "中世フランス語(ca.1400-1600)"
+msgstr "中世フランス語 (ca.1400-1600)"
 
 #. language code: fro
 #: zypp/LanguageCode.cc:451
 msgid "French, Old (842-ca.1400)"
-msgstr "古フランス語(842-ca.1400)"
+msgstr "古フランス語 (842-ca.1400)"
 
 #. language code: fry fy
 #: zypp/LanguageCode.cc:453
 msgid "Frisian"
 msgstr "フリースランド語"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "フルイリアン語"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "フラ語"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "フルイリアン語"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "ガー語"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "ガボン"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "ガエリック語"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "ガリシア語"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "ガンビア"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "ガンダ語"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1726,59 +2594,60 @@ msgstr "ガヨ語"
 msgid "Gbaya"
 msgstr "バヤ語"
 
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "ゲルマン諸語 (その他)"
+
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
+msgstr "グルジア語"
+
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+msgid "German"
+msgstr "ドイツ語"
+
 #. language code: gez
 #: zypp/LanguageCode.cc:475
 msgid "Geez"
 msgstr "ゲーズ語"
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "ã\82¸ã\83§ã\83¼ã\82¸ã\82¢"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "ã\82®ã\83«ã\83\90ã\83¼ã\83\88èª\9e"
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
-msgstr "グルジア語"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "ガエリック語"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "アイルランド語"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "ガリシア語"
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-msgid "German"
-msgstr "ã\83\89ã\82¤ã\83\84語"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "ã\83\9eã\83³ã\82¯ã\82¹語"
 
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
-msgstr "中高ドイツ語(ca.1050-1500)"
+msgstr "中高ドイツ語 (ca.1050-1500)"
 
 #. language code: goh
 #: zypp/LanguageCode.cc:489
 msgid "German, Old High (ca.750-1050)"
-msgstr "古高ドイツ語(ca.750-1050)"
-
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "ドイツ語(その他)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "ドイツ"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "ガーナ"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "ジブラルタル"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "ギルバート語"
+msgstr "古高ドイツ語 (ca.750-1050)"
 
 #. language code: gon
 #: zypp/LanguageCode.cc:491
@@ -1800,76 +2669,26 @@ msgstr "ゴート語"
 msgid "Grebo"
 msgstr "グレボ語"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "ギリシア"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
-msgstr "古代ギリシア語(-1453)"
+msgstr "古代ギリシア語 (-1453)"
 
 #. language code: gre ell el
 #: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
 msgid "Greek, Modern (1453-)"
-msgstr "現代ギリシア語(1453-)"
-
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "グリーンランド"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "グレナダ"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "グアドループ"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "グアム"
+msgstr "現代ギリシア語 (1453-)"
 
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "グアラニー語"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "グアテマラ"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "ガーンジー島"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "ギニア"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "ギニア-ビサウ"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "グジャラート語"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "ギニア"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1880,52 +2699,21 @@ msgstr "グイッチン語"
 msgid "Haida"
 msgstr "ハイダ語"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "ハイティ"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "ハイチ語"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "HAL例外"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContextが接続されていません"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDriveが初期化されていません"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "が初期化されていません"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "ハウサ語"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "すべての必要なリポジトリを有効化しましたか?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "ハワイ語"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "ハード島およびマクドナルド諸島"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1951,16 +2739,6 @@ msgstr "ヒマチャル語"
 msgid "Hindi"
 msgstr "ヒンディー語"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "モツ語"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "履歴:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1971,31 +2749,21 @@ msgstr "ヒッタイト語"
 msgid "Hmong"
 msgstr "フモン語"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "教皇庁(ヴァティカン市国)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "ホンデュラス"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "モツ語"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "é¦\99港"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "é«\98å\9c°ã\82½ã\83«ã\83\96èª\9e"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "ハンガリー語"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "ハンガリー"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2006,10 +2774,10 @@ msgstr "フーパ語"
 msgid "Iban"
 msgstr "イバン語"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "ã\82¢ã\82¤ã\82¹ã\83©ã\83³ã\83\89"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "ã\82¤ã\83\9cèª\9e"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2021,250 +2789,105 @@ msgstr "アイスランド語"
 msgid "Ido"
 msgstr "イド語"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "イボ語"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "四川語"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "イジョ語"
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr "イロコ語"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "イナリサーミ語"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "インド"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr "インド語(その他)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "インド-ヨーロッパ語(その他)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "インドネシア"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "インドネシア語"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "イングーシ語"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "指示通りにインストールが中止されました。"
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "インターリングァ(国際補助語協会)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "インターリングァ語"
-
 #. language code: iku iu
 #: zypp/LanguageCode.cc:555
 msgid "Inuktitut"
 msgstr "イヌクティトゥト語"
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "イヌピアト語"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "無効な %s コンポーネント"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "無効な %s コンポーネント「%s」"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "無効なLDAP URLクエリパラメータ「%s」"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "無効なLDAP URLクエリ文字列"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "無効なURLスキーマ「%s」"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "無効な空のURLオブジェクト参照"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "無効なホストコンポーネント「%s」"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "無効なパラメータ配列結合セパレータ文字"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "無効なパラメータ配列分割セパレータ文字"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "インターリングァ語"
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "無効なパラメータマップ分割セパレータ文字"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr "イロコ語"
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "無効なポートコンポーネント「%s」"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "インターリングァ (国際補助語協会)"
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "正規表現「%s」が正しくありません"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr "インド語 (その他)"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "正規表現 '%s' が正しくありません。regcompは %d を返しました"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "インドネシア語"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "ファイル名「%s」の回収に失敗"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "インド-ヨーロッパ語 (その他)"
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "イラン"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "イングーシ語"
+
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "イヌピアト語"
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
-msgstr "イラン語(その他)"
-
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "イラク"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "アイルランド"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "アイルランド語"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "中期アイルランド語(900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "古代ケルト語(-900)"
+msgstr "イラン語 (その他)"
 
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
-msgstr "イロコイ語族"
-
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "マン島"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "イスラエル"
+msgstr "イロコイ語"
 
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "イタリア語"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "イタリア"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "ジャマイカ"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "ジャワ語"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "日本"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "ロジパン語"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "日本語"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "ジャワ語"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "ジャージー"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "ヨルダン"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "ユダヤ系ペルシア語"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "ユダヤ系アラビア語"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "ユダヤ系ペルシア語"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "カバルダ語"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "カラカルパク語"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2279,12 +2902,7 @@ msgstr "カチン語"
 #. language code: kal kl
 #: zypp/LanguageCode.cc:595
 msgid "Kalaallisut"
-msgstr "Kalaallisut"
-
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "カルムイク語"
+msgstr "グリーンランド語"
 
 #. language code: kam
 #: zypp/LanguageCode.cc:597
@@ -2296,21 +2914,6 @@ msgstr "カンバ語"
 msgid "Kannada"
 msgstr "カナラ語"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "カヌリ語"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "カラカルパク語"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "カラチャイバイカル語"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2321,10 +2924,10 @@ msgstr "カレン語"
 msgid "Kashmiri"
 msgstr "カシミール語"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "ã\82«ã\82·ã\83¥ã\83¼ã\83\93ã\82¢語"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "ã\82«ã\83\8cã\83ª語"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2336,31 +2939,26 @@ msgstr "カウィ語"
 msgid "Kazakh"
 msgstr "カザフ語"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "カザフスタン"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "ケニア"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "カバルダ語"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "カーシ語"
 
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
+msgstr "コイサン語 (その他)"
+
 #. language code: khm km
 #: zypp/LanguageCode.cc:617
 msgid "Khmer"
 msgstr "クメール語"
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
-msgstr "コイサン語(その他)"
-
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2371,11 +2969,6 @@ msgstr "コータン語"
 msgid "Kikuyu"
 msgstr "キクーユ語"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "キンブンドゥー語"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2386,15 +2979,15 @@ msgstr "キニヤルワンダ語"
 msgid "Kirghiz"
 msgstr "キルギス語"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "ã\82­ã\83ªã\83\90ã\82¹"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "ã\82­ã\83³ã\83\96ã\83³ã\83\89ã\82¥ã\83¼èª\9e"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "ã\82¯ã\83ªã\83³ã\82´ã\83³語"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "ã\82³ã\83³ã\82«ã\83\8b語"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2406,11 +2999,6 @@ msgstr "コミ語"
 msgid "Kongo"
 msgstr "コンゴ語"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "コンカニ語"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2426,11 +3014,21 @@ msgstr "コスラエ語"
 msgid "Kpelle"
 msgstr "クペル語"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "カラチャイバイカル語"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "クルー語"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "クルク語"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2446,26 +3044,11 @@ msgstr "クミク語"
 msgid "Kurdish"
 msgstr "クルド語"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "クルク語"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "クテナイ語"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "クウェート"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "キルギスタン"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2486,68 +3069,21 @@ msgstr "ランバ語"
 msgid "Lao"
 msgstr "ラオ語"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "ラオス人民民主共和国"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
-msgid "Latin"
-msgstr "ラテン語"
-
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "ラトビア"
-
-#. language code: lav lv
-#: zypp/LanguageCode.cc:665
-msgid "Latvian"
-msgstr "ラトビア語"
-
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "レバノン"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "レソト"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Level 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Level 2"
+msgid "Latin"
+msgstr "ラテン語"
 
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Level 3"
+#. language code: lav lv
+#: zypp/LanguageCode.cc:665
+msgid "Latvian"
+msgstr "ラトビア語"
 
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "レズギン語"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "リベリア"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "リビア"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "リヒテンシュタイン"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2558,61 +3094,46 @@ msgstr "リグリア語"
 msgid "Lingala"
 msgstr "リンガラ語"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "リトアニア"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "リトアニア語"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "場所「%s」は一時的にアクセスできなくなっています。"
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "ロジパン語"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "低地ドイツ語"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "低地ソルブ語"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "モンゴ語"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "ロージー語"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "ã\83«ã\83\90ã\83»ã\82«ã\82¿ã\83³ã\82¬語"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "ã\83«ã\82¯ã\82»ã\83³ã\83\96ã\83«ã\82¯語"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "ルバ・ルルア語"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "ルバ・カタンガ語"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "ガンダ語"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "ルイセーニョ語"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lule Sami"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2621,42 +3142,18 @@ msgstr "ルンダ語"
 #. language code: luo
 #: zypp/LanguageCode.cc:691
 msgid "Luo (Kenya and Tanzania)"
-msgstr "ルオ語(ケニアおよびタンザニア)"
+msgstr "ルオ語 (ケニアおよびタンザニア)"
 
 #. language code: lus
 #: zypp/LanguageCode.cc:693
 msgid "Lushai"
 msgstr "ルシャイ語"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "ルクセンブルク"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "ルクセンブルク語"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "マカオ"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "マケドニア"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "マケドニア語"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "マダガスカル"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2667,6 +3164,11 @@ msgstr "マドゥラ語"
 msgid "Magahi"
 msgstr "マガヒ語"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "マーシャル語"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2677,178 +3179,60 @@ msgstr "マイティリー語"
 msgid "Makasar"
 msgstr "マカッサル語"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "マダガスカル語"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "マラウィ"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "マレー語"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "マラヤーラム語"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "マレーシア"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "モルディヴ"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "不正な形式のURI"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "マリ"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "マルタ"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "マルタ語"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "満州語"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "マンダル語"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "マンディンゴ語"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "マニプリ語"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "マノボ語族"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "マンクス語"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "マオリ語"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "アウストロネシア語 (その他)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "マラーティー語"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "マリ語"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "マーシャル諸島"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "マーシャル語"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "マルティニク"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "マールワーリー語"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "マサイ語"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "モーリタニア"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "モーリシャス"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "マヤ語族"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "マヨット"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "メディアソース「%s」に目的のメディアが含まれていません"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "メディア「%s」は別のインスタンスによって使用されています"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "マレー語"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "メディアが接続されていません"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "モクシャ語"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "ã\82¢ã\82¯ã\82·ã\83§ã\83³ã\80\8c%sã\80\8dã\82\92å®\9fè¡\8cã\81\97ã\82\88ã\81\86ã\81¨ã\81\97ã\81\9fé\9a\9bã\81«ã\83¡ã\83\87ã\82£ã\82¢ã\81\8cé\96\8bã\81\8dã\81¾ã\81\9bã\82\93ã\81§ã\81\97ã\81\9f"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "ã\83\9eã\83³ã\83\80ã\83«èª\9e"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "メンデ語"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "フランス本国"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "メキシコ"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "中期アイルランド語 (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2860,86 +3244,61 @@ msgstr "ミックマック語"
 msgid "Minangkabau"
 msgstr "ミナンカバウ語"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "ミランダ語"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "その他の言語"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "モン・クメール語 (その他)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "マダガスカル語"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "マルタ語"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "満州語"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "マニプリ語"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "マノボ語"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "モホーク語"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "モクシャ語"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "モルダヴィア語"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "モルドヴァ"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "モン・クメール語(その他)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "モナコ"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "モンゴ語"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "モンゴル"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "モンゴル語"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "モンテネグロ"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "モントセラト"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "モロッコ"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "モシ語"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "モザンビーク"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2948,211 +3307,142 @@ msgstr "複数言語"
 #. language code: mun
 #: zypp/LanguageCode.cc:763
 msgid "Munda languages"
-msgstr "ムンダ語"
+msgstr "ムンダ語"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "ミャンマー語"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "クリーク語"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "ミランダ語"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "マールワーリー語"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "マヤ語"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "アルジア語"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "ナワトル語"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "ナミビア"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "北米インディアン語"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "ナウル語"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "ナポリ語"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "ナヴァホ語"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "北ヌデベレ語"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "南ヌデベレ語"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "北ヌデベレ語"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "ンドンガ語"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "ナポリ語"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "ネパール"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "ネワール語"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "低地ドイツ語"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "ネパール語"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "オランダ"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "オランダ領アンティル"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "ニューカレドニア"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "ニュージーランド"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "新しい更新メッセージ"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "ネワール語"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "ニアス語"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "ニカラグア"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "ニジェール"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "ニジェール-コルフドファン語(その他)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "ナイジェリア"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "ナイル-サハラ語(その他)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "ニウエ"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "ニウエ語"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "コードなし"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "ノルウェー・ニーノシュク語"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "リポジトリにURLが設定されていません。"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "ノルウェー・ブークモール語"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "ノガイ語"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "ノーフォーク島"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "古代スカンディナヴィア語"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "北米インディアン語"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "北朝鮮"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "北マリアナ諸島"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "北サーミ語"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Northern Sotho★北ソト語★"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "ノルウェー"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
-msgstr "ノルウェー語"
-
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "ノルウェー・ブークモール語"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "ノルウェー・ニーノシク語"
+msgstr "ノルウェー語"
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "CD ROMドライブではありません"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "北ソト語"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
-msgstr "ヌバ語族"
+msgstr "ヌバ語"
+
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "古典ネワール語"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "チェワ語"
 
 #. language code: nym
 #: zypp/LanguageCode.cc:821
@@ -3174,10 +3464,6 @@ msgstr "ニョロ語"
 msgid "Nzima"
 msgstr "ンジマ語"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "廃止"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3188,20 +3474,6 @@ msgstr "プロヴァンス語(1500年以降)"
 msgid "Ojibwa"
 msgstr "オジブウェー語"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "オマーン"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "'%s' または '%s' (もしくはその両方)の属性が必要です。"
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "メディアでサポートされていない操作です"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3222,64 +3494,36 @@ msgstr "オーセージ語"
 msgid "Ossetian"
 msgstr "オセット語"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "オスマントルコ語 (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
-msgstr "オトミ語"
+msgstr "オトミ語"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr "パッケージ %sは転送中に破損したようです。"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "パプア語 (その他)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "パンガシナン語"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "パフレヴィ語"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "パキスタン"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "パラウ"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "パラウ諸島語"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "パレスチナ地域"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "パーリ語"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "パンパンガ語"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "パナマ"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "パンガシナン語"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3290,94 +3534,45 @@ msgstr "パンジャブ語"
 msgid "Papiamento"
 msgstr "パピアメント語"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "パプアニューギニア"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "パプア語(その他)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "パラグアイ"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "パス「%s」(メディア「%s」上)はディレクトリではありません。"
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "パス「%s」(メディア「%s」上)がファイルではありません。"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "パラウ諸島語"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "「%s」にアクセスするパーミッションが拒否されました。"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
+msgstr "古ペルシア語 (ca.600-400 B.C.)"
 
 #. language code: per fas fa
 #: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
 msgid "Persian"
 msgstr "ペルシア語"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr "古ペルシア語(ca.600-400 B.C.)"
-
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "ペルー"
-
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
-msgstr "フィリピン語(その他)"
-
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "フィリピン"
+msgstr "フィリピン語 (その他)"
 
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "フェニキア語"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "ピトケルン"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "最初にパッケージ「lsof」をインストールしてください。"
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "ポナペ語"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "ポーランド"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "パーリ語"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "ポーランド語"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "ã\83\9dã\83«ã\83\88ã\82¬ã\83«"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "ã\83\9dã\83\8aã\83\9aèª\9e"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3389,84 +3584,21 @@ msgstr "ポルトガル語"
 msgid "Prakrit Languages"
 msgstr "プラークリット諸語"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "前提条件"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"問題の決定、それは互換性に関する情報やインストール支援、使用方法の対応や進行"
-"中の保守、基本的なトラブルシューティングなどの技術サポートを指します。Level 1"
-"サポートは、製品の欠陥によるエラーを修正しようとするものではありません。"
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"問題の切り分け、それは顧客内での問題を共有し領域を切り分け、Level 1サポートで"
-"は解決されていない問題について解決方法を提供する技術サポートを指します。"
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"問題の解決、それは複雑な問題に対して技術者を従事させ、Level 2サポートで認識さ"
-"れていない製品の欠陥を解決する技術サポートを指します。"
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
-msgstr "古期プロヴァンス語"
-
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "提供"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "プエルトリコ"
+msgstr "古期プロヴァンス語 (to 1500)"
 
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "プシュトゥー語"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "カタール"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "ケチュア語"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "このURLに対して、クエリ文字列解析はサポートされていません"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPMの失敗: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "レトロマン後"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3482,57 +3614,26 @@ msgstr "ラパヌイ語"
 msgid "Rarotongan"
 msgstr "ラロトンガ語"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "推奨"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "機関が存在する場合、相対パスは許可されません。 "
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "リポジトリ '%s' を削除しています"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "リポジトリエイリアスは、先頭にドットを付けることはできません。"
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "必要な属性 '%s' がありません。"
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "必要"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "レユニオン"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
-msgstr "ロマンス語(その他)"
-
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "ルーマニア"
+msgstr "ロマンス語 (その他)"
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "ã\83«ã\83¼ã\83\9eã\83\8bã\82¢語"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "ã\83¬ã\83\88ã\83­ã\83\9eã\83³語"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "ジプシー語"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "ルーマニア語"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3543,119 +3644,71 @@ msgstr "ルンディ語"
 msgid "Russian"
 msgstr "ロシア語"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "ロシア連邦"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "ルワンダ"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "セントヘレナ"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "セントキッツネヴィス"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "セントルシア"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "サンダウェ語"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "サンマルタン"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "サンゴ語"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "ã\82µã\83³ã\83\94ã\82¨ã\83¼ã\83«ã\82¨ã\83\9fã\82¯ã\83­ã\83³"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "ã\83¤ã\82¯ã\83¼ã\83\88èª\9e"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "セントヴィンセント-グレナディン"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "南アメリカインディアン語 (その他)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
 msgid "Salishan Languages"
-msgstr "サリシュ語"
+msgstr "サリシュ語"
 
 #. language code: sam
 #: zypp/LanguageCode.cc:915
 msgid "Samaritan Aramaic"
 msgstr "サマリアアラム語"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Sami Languages (Other)★サーミ諸語★"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "サモア"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "サモア語"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "サンマリノ"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "サンダウェ語"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "サンゴ語"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "サンスクリット語"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "ササク語"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "サンターリー語"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "サントーメ-プリンシペ"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "サルデーニャ語"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "ササク語"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "セルビア語"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "ã\82µã\82¦ã\83\87ã\82£ã\82¢ã\83©ã\83\93ã\82¢"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "ã\82·ã\82·ã\83ªã\82¢èª\9e"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "スコットランド語"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "クロアティア語"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3664,363 +3717,188 @@ msgstr "セルカーク語"
 #. language code: sem
 #: zypp/LanguageCode.cc:937
 msgid "Semitic (Other)"
-msgstr "セム語(その他)"
-
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "セネガル"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "セルビア"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "セルビア語"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "セレル語"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "サービスエイリアスは、先頭にドットを付けることはできません。"
+msgstr "セム語 (その他)"
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "サービスプラグインは属性の変更をサポートしていません。"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "古代ケルト語 (-900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "セーシェル"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "手話言語"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "シャン語"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "ショナ語"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "四川語"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "シシリア語"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "シダモ語"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "シエラレオーネ"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "手まね言語"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "署名を検証しません"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "署名ファイル %s が見つかりません。"
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr "シンハラ語"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "署名に問題はありません"
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+msgid "Siouan Languages"
+msgstr "スー語"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "署名に問題はありませんが、鍵を信頼していません"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "シナ-チベット語 (その他)"
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "署名の検証に失敗しました"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
+msgstr "スラヴ語 (その他)"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "署名の公開鍵がありません"
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "スロバキア語"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "ã\82·ã\82¯ã\82·ã\82«語"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "ã\82¹ã\83­ã\83\99ã\83\8bã\82¢語"
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "シンド語"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "南サーミ語"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "シンガポール"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "北サーミ語"
 
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
-msgstr "ã\82·ã\83³ã\83\8fã\83©èª\9e"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "ã\82µã\83¼ã\83\9f諸èª\9e (ã\81\9dã\81®ä»\96)"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "ã\82·ã\83\8a\83\81ã\83\99ã\83\83ã\83\88èª\9e\81\9dã\81®ä»\96)"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "ã\83«ã\83¬ã\82ªã\82µã\83¼ã\83\9fèª\9e"
 
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-msgid "Siouan Languages"
-msgstr "スー語族"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "イナリサーミ語"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "サモア語"
 
 #. language code: sms
 #: zypp/LanguageCode.cc:973
 msgid "Skolt Sami"
 msgstr "スコルトサーミ語"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "スレーブ語(アタパスカ諸語)"
-
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr "スラヴ語(その他)"
-
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "スロヴァキア語"
-
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "スロヴァキア"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "ショナ語"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "ã\82¹ã\83­ã\83´ã\82§ã\83\8bã\82¢"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "ã\82·ã\83³ã\83\89èª\9e"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "ã\82¹ã\83­ã\83´ã\82§ã\83\8bã\82¢語"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "ã\82½ã\83\8bã\83³ã\82±語"
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "ソグディアナ語"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "ソロモン諸島"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "ソマリ語"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "ソマリア"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "ソンガイ語"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "ソニンケ語"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "ソルビア語族"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-"申し訳ありません。このバージョンのlibzyppはHALサポートなしで構築されていま"
-"す。"
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "南ソト語"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "南アフリカ"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "南アメリカインディアン語(その他)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "サウスジョージアおよびサウスサンドイッチ諸島"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "韓国"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "南アルタイ語"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "南サーミ語"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "スペイン"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "スペイン語"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "ã\82¹ã\83ªã\83©ã\83³ã\82«"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "ã\82µã\83«ã\83\87ã\83¼ã\83\8bã\83£èª\9e"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "ã\82¹ã\83¼ã\83\80ã\83³"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "ã\82»ã\83¬ã\83«èª\9e"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "提案"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "ナイル-サハラ語 (その他)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "スワート語"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "スクマ語"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "シュメール語"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "スンダ語"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "補足"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "スリナム"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "スス語"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "ã\82¹ã\83´ã\82¡ã\83¼ã\83«ã\83\90ã\83«ã\81\8aã\82\88ã\81³ã\83¤ã\83³ã\83\9eã\82¤ã\82¨ã\83³"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "ã\82·ã\83¥ã\83¡ã\83¼ã\83«èª\9e"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "スワヒリ語"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "スワート語"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "スイス"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "スウェーデン"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "スウェーデン語"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "スイス"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "シリア"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "シリア語"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "システム例外「%s」がメディア「%s」にあります。"
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"システム管理はpid %d (%s)のアプリケーションによってロックされています。\n"
-"再試行する前にこのアプリケーションを終了してください。"
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "タガログ語"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4029,38 +3907,13 @@ msgstr "タヒチ語"
 #. language code: tai
 #: zypp/LanguageCode.cc:1015
 msgid "Tai (Other)"
-msgstr "タイ語(その他)"
-
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "台湾"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "タジク語"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "タジキスタン"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "タマシェク語"
+msgstr "タイ語 (その他)"
 
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "タミル語"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "タンザニア"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4071,6 +3924,11 @@ msgstr "タタール語"
 msgid "Telugu"
 msgstr "テルグ語"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "テムネ語"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4079,35 +3937,23 @@ msgstr "テレナ語"
 #. language code: tet
 #: zypp/LanguageCode.cc:1027
 msgid "Tetum"
-msgstr "テトゥアン語"
+msgstr "テトゥン語"
+
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "タジク語"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "タガログ語"
 
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "タイ語"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "タイ"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "サポートのレベルが指定されていません。"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "ベンダーはサポートを提供していません。"
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "この作業はすでに他のプログラムで実行されています。"
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "この要求はシステムを壊してしまいます!"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4123,154 +3969,96 @@ msgstr "ティグレ語"
 msgid "Tigrinya"
 msgstr "ティグリニャ語"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "「%s」にアクセスする際に時間切れになりました。"
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "テムネ語"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "ティヴ語"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "クリンゴン語"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "トリンギット語"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "トーゴ"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "トークピジン語"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "トケラウ語"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "トンガ"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "タマシェク語"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
 msgid "Tonga (Nyasa)"
-msgstr "トンガ語(ニアサ)"
+msgstr "トンガ語 (ニアサ)"
 
 #. language code: ton to
 #: zypp/LanguageCode.cc:1055
 msgid "Tonga (Tonga Islands)"
-msgstr "トンガ語(トンガ諸島)"
-
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "存在しない鍵 %s をキーリング %s にインポートしようとしました"
+msgstr "トンガ語 (トンガ諸島)"
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "ã\83\88ã\83ªã\83\8bã\83\80ã\83¼ã\83\89ã\83\88ã\83\90ã\82´"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "ã\83\88ã\83¼ã\82¯ã\83\94ã\82¸ã\83³èª\9e"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "チムシアン語"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "ツワナ語"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "ツォンガ語"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "ã\83\84ã\83¯ã\83\8a語"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "ã\83\88ã\83«ã\82¯ã\83¡ã\83³語"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "トゥンブカ語"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "チュニジア"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
-msgstr "トゥピー語族"
-
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "トルコ"
+msgstr "トゥピー語"
 
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "トルコ語"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "オスマントルコ語(1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "トルクメン語"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "トルクメニスタン"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "タークスアンドケーコス諸島"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "アルタイ語 (その他)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "トゥヴァル語"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "トウィ語"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "トゥヴァ語"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "トウィ語"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "ウドムルト語"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "ウガンダ"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4281,11 +4069,6 @@ msgstr "ウガリット語"
 msgid "Uighur"
 msgstr "ウイグル語"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "ウクライナ"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4296,567 +4079,774 @@ msgstr "ウクライナ語"
 msgid "Umbundu"
 msgstr "ムブンドウ語"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "URLオブジェクトを複製できません"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "dbus接続を作成できません"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-"HALコンテキストを初期化できません -- haldが動作していない可能性があります。"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "URLコンポーネントを解析できません"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "未確認"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "未処理のリポジトリタイプ"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "ウルドゥー語"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "ã\82¢ã\83©ã\83\96é¦\96é\95·å\9b½é\80£é\82¦"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "ã\82¦ã\82ºã\83\99ã\82¯èª\9e"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "英国"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "ヴァイ語"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "アメリカ合衆国"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "ヴェンダ語"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "ヴェトナム語"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "ヴォラピューク語"
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "ヴォート語"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "ワカシ語"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "ワッラモ語"
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "ワライ語"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "ワショ語"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "ウェールズ語"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "ソルビア語"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "ワロン語"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "オォロフ語"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "カルムイク語"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "コーサ語"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "ヤオ語"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "ヤップ語"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "イディッシュ語"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "ヨルバ語"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "ユピック語"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "サポテク語"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "ゼナガ語"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "チワン語"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "ザンデ語"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "合衆国小離島"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "ズールー語"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "不明な国:"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "ズーニー語"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "「%s」からの読み取り時に不明なエラーが発生しました"
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "存在しない鍵 %s を鍵リング %s にインポートしようとしました"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "不明な言語:"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "キーの削除に失敗しました。"
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "不明な該当モード「%s」"
+msgid "Signature file %s not found"
+msgstr "署名ファイル %s が見つかりません。"
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "該当モード「%s」がパターン「%s」に対して不明です"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-"不明なサービス「%1%」: 孤立したサービスリポジトリ「%2%」を削除しています"
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "リポジトリ '%2$s' からファイル '%1$s' を提供することができません"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "不明なサポートオプションです。説明は利用できません"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "リポジトリに URL が設定されていません。"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "不明な種類の署名です"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "サービスプラグインは、属性を変更する機能に対応していません。"
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "未対応のHTTP認証方式 '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"パッケージ %s は転送時に壊れてしまったようです。もう一度ダウンロードしますか?"
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "署名の検証に失敗しました"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "ã\80\8c%sã\80\8dã\81®URIã\82¹ã\82­ã\83¼ã\83\9eã\81\8cã\82µã\83\9dã\83¼ã\83\88ã\81\95ã\82\8cã\81¦ã\81\84ã\81¾ã\81\9bã\82\93ã\80\82"
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ %s ã\81®æ\8f\90ä¾\9bã\81«å¤±æ\95\97ã\81\97ã\81¾ã\81\97ã\81\9fã\80\82ã\82\82ã\81\86ä¸\80度å\8f\96å¾\97ã\81\97ã\81¾ã\81\99ã\81\8b?"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "高地ソルブ語"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm のチェックに失敗しました。"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "ウルドゥー語"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm が失敗しました。"
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "URLスキーマは、%s を禁止しています"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"システム管理はプロセス ID %d (%s) によってロックされています。\n"
+"再試行する前にこのアプリケーションを終了してください。"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "URLスキーマは、ホストコンポーネントを禁止しています"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s は distupgrade のリポジトリには属していません"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "URLスキーマは、パスワードを禁止しています"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s は下位のアーキテクチャです"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "URLスキーマは、ポートを禁止しています"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "インストール済みのパッケージ %s に問題が発生しました。"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "URLスキーマは、ユーザ名を禁止しています"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "要求が矛盾しています"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Urlスキームは必須のコンポーネントです"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "何らかの依存関係の問題"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "URLスキーマには、ホストコンポーネントが必要です"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "要求した %s はどこからも提供されていません"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "URLスキーマには、パス名が必要です"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "すべての必要なリポジトリを有効化しましたか?"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "ã\82¦ã\83«ã\82°ã\82¢ã\82¤"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ %s ã\81¯å­\98å\9c¨ã\81\97ã\81¾ã\81\9bã\82\93"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "ウズベク語"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "未対応の要求"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "ウズベキスタン"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s はシステムが提供するもので、削除することはできません"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "ヴァイ語"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s はインストールできません"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%2$s で必要としている %1$s はどこからも提供されていません"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "ヴァヌアトゥ"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "%s と %s の両方をインストールすることはできません"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "ヴェンダ語"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%1$s は %3$s から提供されている %2$s と競合します"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "ベネズエラ"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%1$s は %3$s から提供されている %2$s を古いものとして廃棄します"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "ベトナム"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr ""
+"インストール済みの %1$s は、 %3$s から提供されている %2$s を古いものとして廃"
+"棄します"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "ヴェトナム語"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "解決方法 %s は自分自身で提供している %s と競合しています"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "米国領ヴァージン諸島"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s は %s を必要としていますが、この要求を解決する方法がありません"
 
-#: zypp/media/MediaCurl.cc:1008
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "削除したプロバイダ: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"\n"
+"uninstallable providers: "
 msgstr ""
-"Novellカスタマーセンターへアクセスし、登録が有効であるか、有効期限切れになっ"
-"ã\81¦ã\81\84ã\81ªã\81\84ã\81\8bã\82\92確èª\8dã\81\97ã\81¦ã\81\8fã\81 ã\81\95ã\81\84ã\80\82"
+"\n"
+"ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ä¸\8då\8f¯è\83½ã\81ªã\83\97ã\83­ã\83\90ã\82¤ã\83\80"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "ã\83´ã\82©ã\83©ã\83\94ã\83¥ã\83¼ã\82¯èª\9e"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ä¸\8då\8f¯è\83½ã\81ªã\83\97ã\83­ã\83\90ã\82¤ã\83\80"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "ヴォート語"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "%s の削除を許可するためにロックを削除する"
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "%s をインストールしない"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "%s を維持"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "%s のインストールを許可するためにロックを削除する"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "ã\83¯ã\82«ã\82·èª\9eæ\97\8f"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "ã\81\93ã\81®è¦\81æ±\82ã\81¯ã\82·ã\82¹ã\83\86ã\83 ã\82\92å£\8aã\81\97ã\81¦ã\81\97ã\81¾ã\81\84ã\81¾ã\81\99ï¼\81"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "ã\83¯ã\83\83ã\83©ã\83¢èª\9e"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ã\82·ã\82¹ã\83\86ã\83 ã\81\8cç ´å£\8aã\81\95ã\82\8cã\82\8bè­¦å\91\8aã\82\92ç\84¡è¦\96ã\81\97ã\81¾ã\81\99"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "ワリーエフトゥーナ"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "%s を提供する解決方法のインストールについて問い合わせない"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "ワロン語"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "%s を提供する解決方法の削除について問い合わせない"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "ワライ語"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "%s の最新バージョンをインストールしない"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "ワショ語"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "下位のアーキテクチャですが %s を維持します"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "ウェールズ語"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "下位のアーキテクチャですが %s をインストールします"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "西サハラ"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "古い %s を維持します"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "オォロフ語"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "除外されたリポジトリから %s をインストールします"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "コーサ語"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "%s を %s にダウングレードする"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "ã\83¤ã\82¯ã\83¼ã\83\88èª\9e"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "ã\82¢ã\83¼ã\82­ã\83\86ã\82¯ã\83\81ã\83£ã\82\92 %s ã\81\8bã\82\89 %s ã\81«å¤\89æ\9b´"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "ヤオ語"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"%s をインストールする (製造元を変更する)\n"
+"  %s  -->  %s"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "ヤップ語"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "%s を %s で置き換える"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "イエメン"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "%s のアンインストール"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "イディッシュ語"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "いくつかの依存関係を無視することによって %s を壊します"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "ヨルバ語"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "いくつかの依存関係をおおよそ無視する"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "ユピック語族"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "必要な属性 '%s' がありません。"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "ザンビア"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "'%s' または '%s' (もしくはその両方) の属性が必要です。"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "ã\82¶ã\83³ã\83\87èª\9e"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "ã\83­ã\83\83ã\82¯ã\83\95ã\82¡ã\82¤ã\83«ã\82\92é\96\8bã\81\91ã\81¾ã\81\9bã\82\93: %s"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "サポテク語"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "この作業は既に他のプログラムで実行されています。"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "ゼナガ語"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "履歴:"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "チワン語"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "不明な該当モード '%s'"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "ã\82¸ã\83³ã\83\90ã\83\96ã\82¨"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "ã\83\91ã\82¿ã\83¼ã\83³ '%2$s' ã\81«å¯¾ã\81\99ã\82\8bä¸\8dæ\98\8eã\81ªè©²å½\93ã\83¢ã\83¼ã\83\89 '%1$s' ã\81§ã\81\99"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "ズールー語"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "正規表現 '%s' が正しくありません。 regcomp は %d を返しました"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "ズーニー語"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "正規表現 '%s' が正しくありません"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpmチェックに失敗しました。"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "'lsof' パッケージを先にインストールしてください。"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpmが失敗しました。"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "'%s' にアクセスするにはユーザ認証が必要です"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "アーキテクチャを %s から %s に変更"
+msgid "Failed to mount %s on %s"
+msgstr "%s を %s にマウントすることができませんでした"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "いくつかの依存関係を無視することによって %s を壊します"
+msgid "Failed to unmount %s"
+msgstr "%s のマウントを解除することができませんでした"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "%s と %s の両方ともインストールすることができません"
+msgid "Bad file name: %s"
+msgstr "正しくないファイル名です: %s"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "要求が矛盾しています"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "'%s' の動作を実行する際にメディアを開きません。"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "ã\83\90ã\83\83ã\82¯ã\82¢ã\83\83ã\83\97 %s ã\81\8cä½\9cæ\88\90ã\81\95ã\82\8cã\81¾ã\81\97ã\81\9f"
+msgid "File '%s' not found on medium '%s'"
+msgstr "ã\83\95ã\82¡ã\82¤ã\83« '%s' ã\81¯ã\83¡ã\83\87ã\82£ã\82¢ '%s' å\86\85ã\81«è¦\8bã\81¤ã\81\8bã\82\8aã\81¾ã\81\9bã\82\93ã\81§ã\81\97ã\81\9fã\80\82"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "%s のアンインストール"
+msgid "Cannot write file '%s'."
+msgstr "ファイル '%s' に書き込めません。"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "削除したプロバイダ:"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "メディアが挿入されていません"
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "%s を提供するすべての解決方法の削除について問い合わせない"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "正しくないメディアの結合ポイントです"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "%s を提供する解決方法のインストールについて問い合わせない"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "'%s' のダウンロード (curl) の初期化に失敗しました"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "%s をインストールしない"
+msgid "System exception '%s' on medium '%s'."
+msgstr "システム例外 '%s' がメディア '%s' 上で発生しました。"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "%s の最新バージョンをインストールしない"
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "メディア '%2$s' 上のパス '%1$s' はファイルではありません。"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "%s を %s にダウングレードする"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "メディア '%2$s' 上のパス '%1$s' はディレクトリではありません。"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "いくつかの依存関係をおおよそ無視する"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "不正な URI"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "システムが破壊される警告を無視します"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "URI にホスト名が含まれていません"
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"%s をインストールする (ベンダーを変更する)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "URI にファイルシステムが指定されていません"
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "下位のアーキテクチャですが %s をインストールします"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "URI に宛先が指定されていません"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "除外されたリポジトリから %s をインストールします"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "未対応の URI スキーマが '%s' にあります。"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "操作は指定したメディアには対応していません"
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
-"インストール済みの %s は、%s (%s から提供されている)を古いものとして廃棄しま"
-"す"
-
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "無効"
+"'%s' のダウンロード (curl) がエラー終了しました:\n"
+"エラーコード: %s\n"
+"エラーメッセージ: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "%s を維持"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"'%s' のダウンロード (curl) オプションを設定する際にエラーが発生しました:"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "下位のアーキテクチャですが %s を維持します"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "メディアソース '%s' には必要なメディアがありません"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "古い %s を維持します"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: libhalコンテキストを作成できません"
-
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: dbus接続を設定できません"
+msgid "Medium '%s' is in use by another instance"
+msgstr "メディア '%s' は他のプログラムによって使用されています"
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s (%s で必要)はどこからも提供されていません"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "メディアを取り出すことができません"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "要求した %s はどこからも提供されていません"
+msgid "Cannot eject media '%s'"
+msgstr "メディア '%s' を取り出すことができません"
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "パッケージ %s は存在しません"
+msgid "Permission to access '%s' denied."
+msgstr "'%s' へのアクセス許可がありません。"
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "インストール済みのパッケージ %s に問題が発生しました。"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "'%s' にアクセスする際に時間切れになりました。"
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "%s のインストールを許可するためにロックを削除する"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "場所 '%s' は一時的にアクセスできなくなっています。"
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "%s の削除を許可するためにロックを削除する"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" SSL 証明書に問題があります。 '%s' について証明機関に問題がないかどうか確認し"
+"てください。"
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "%s を %s で置き換える"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"'%s' のイメージファイルをマウントするのに必要なループデバイスの空きが見つかり"
+"ません"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpmは %s を %s として作成しましたが、差異を判別できませんでした"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "未対応の HTTP 認証方式です '%s'"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
-"rpmは %s を %s として作成しました。\n"
-"以下は差異のある最初の25行です。\n"
+"Novell カスタマーセンターをお尋ねいただき、登録が有効であるかどうか、期限が切"
+"れていないかどうかをご確認ください。"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpmは %s を %s として保存しましたが、差異を判別できませんでした"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "sat-pool を作成できません。"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpmは %s を %s として保存しました。\n"
-"以下は差異のある最初の25行です。\n"
+"パッケージ %2% の提供する\n"
+"  ファイル %1% と、\n"
+"  パッケージ %3% の提供する\n"
+"  ファイルが衝突しています。"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "解決方法 %s は自分自身で提供している %s と競合しています"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"パッケージ %2% の提供する\n"
+"  ファイル %1% と、\n"
+"  %3% の提供する\n"
+"  ファイルが衝突しています。"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "何らかの依存関係の問題"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"%2% の提供する\n"
+"  ファイル %1% と、\n"
+"%3% の提供する\n"
+"  ファイルが衝突しています。"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "インストール不可能なプロバイダ: "
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"%2% の提供する\n"
+"  ファイル %1% と、\n"
+"  %3% の提供する\n"
+"  ファイルが衝突しています。"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "不明"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"パッケージ %2% の提供する\n"
+"  ファイル %1% と、\n"
+"  パッケージ %4% の提供する\n"
+"  ファイル %3% が衝突しています。"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "未対応"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"パッケージ %2% の提供する\n"
+"  ファイル %1% と、\n"
+"  %4% の提供する\n"
+"  ファイル %3% が衝突しています。"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "サポートされていない要求"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"%2% の提供する\n"
+"  ファイル %1% と、\n"
+"  パッケージ %4% の提供する\n"
+"  ファイル %3% が衝突しています。"
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"%2% の提供する\n"
+"  ファイル %1% と、\n"
+"  %4% の提供する\n"
+"  ファイル %3% が衝突しています。"
index f932cc3..658f731 100644 (file)
--- a/po/ka.po
+++ b/po/ka.po
@@ -19,831 +19,811 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Lokalize 0.2\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-msgid " execution failed"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:99
+msgid "Conflicts"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-#, fuzzy
-msgid "Additional rpm output"
-msgstr "დამატებითი კოდი"
+#: zypp/target/TargetImpl.cc:332
+msgid " execution failed"
+msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "ავღანეთი"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "აფრიკაანსი"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
 msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "ალბანია"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "ალბანური"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "ალჟირი"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
 msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "ანდირა"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "ანგოლა"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "ანტარქტიკა"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+#, fuzzy
+msgid "Additional rpm output"
+msgstr "დამატებითი კოდი"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "ანტიგუა და ბარბუდა"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "აპაჩის ენები"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "არაბული"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "არამეული"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "არგენტინა"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "სომხეთი"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "სომხური"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "ხელოვნური (სხვა)"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Couldn't open file: %s."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
 msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
 msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
 msgstr ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "ავსტრალია"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "ავსტრალიური ენები"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "ავსტრია"
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
+msgid "Error trying to read from '%s'"
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
 msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "აზერბაიჯანი"
-
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "აზერბაიჯანული"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
 
-#: zypp/media/MediaException.cc:47
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
 #, c-format, boost-format
-msgid "Bad file name: %s"
+msgid "Can't delete '%s'"
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
 msgstr ""
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "ბაჰამის კუნძულები"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "ბაჰრეინი"
-
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
 msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "ბალტიური (სხვა)"
-
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
 msgstr ""
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "ბანგლადეში"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "ბარბადოსი"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
 msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
 msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "ბელორუსეთი"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "ბელორუსული"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "ბელგია"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "ბელიზი"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
 msgstr ""
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "ბენინი"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "ბერმუდები"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "ბუტანი"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
 msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "ბოლივია"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "ბოსნია და ჰერცოგოვინა"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "ბოსნიური"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "ბოცვანა"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
 msgstr ""
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
 msgstr ""
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "ბრაზილია"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
 msgstr ""
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
 msgstr ""
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
 msgstr ""
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
 msgstr ""
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
 msgstr ""
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
 msgstr ""
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "ბულგარეთი"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "ბულგარული"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "ბურკინა ფასო"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "ბურუნდი"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
 msgstr ""
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "კამბოჯა"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr ""
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "კამერუნი"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "ანდირა"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr ""
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "ავღანეთი"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr ""
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "ანტიგუა და ბარბუდა"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "ალბანია"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr ""
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "სომხეთი"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr ""
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "ანგოლა"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr ""
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "ანტარქტიკა"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "არგენტინა"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "ავსტრია"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr ""
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "ავსტრალია"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Couldn't open file: %s."
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "აზერბაიჯანი"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr ""
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "ბოსნია და ჰერცოგოვინა"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr ""
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "ბარბადოსი"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr ""
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "ბანგლადეში"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr ""
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "ბელგია"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr ""
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "ბურკინა ფასო"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr ""
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "ბულგარეთი"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr ""
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "ბაჰრეინი"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "ბურუნდი"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr ""
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "ბენინი"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "ბერმუდები"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "ბოლივია"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr ""
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "ბრაზილია"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "ბაჰამის კუნძულები"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr ""
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "ბუტანი"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
 msgstr ""
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr ""
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "ბოცვანა"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr ""
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "ბელორუსეთი"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "ბელიზი"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
 msgstr ""
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
 msgstr ""
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
 msgstr ""
 
 #. :COD:180:
@@ -851,2871 +831,2897 @@ msgstr ""
 msgid "Central African Republic"
 msgstr ""
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr ""
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
 msgstr ""
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
 msgstr ""
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
 msgstr ""
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
 msgstr ""
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr ""
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "კამერუნი"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
 msgstr ""
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
 msgstr ""
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
 msgstr ""
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
 msgstr ""
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
 msgstr ""
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
 msgstr ""
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
 msgstr ""
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
 msgstr ""
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
 msgstr ""
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
 msgstr ""
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
 msgstr ""
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr ""
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "ალჟირი"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
 msgstr ""
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
 msgstr ""
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
 msgstr ""
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
 msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
 msgstr ""
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
 msgstr ""
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
 msgstr ""
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
 msgstr ""
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
 msgstr ""
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
 msgstr ""
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
 msgstr ""
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
 msgstr ""
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "საქართველო"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
 msgstr ""
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
 msgstr ""
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
 msgstr ""
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
 msgstr ""
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
 msgstr ""
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
 msgstr ""
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
 msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
 msgstr ""
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
 msgstr ""
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
 msgstr ""
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
 msgstr ""
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
 msgstr ""
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
 msgstr ""
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
 msgstr ""
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
 msgstr ""
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
 msgstr ""
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
 msgstr ""
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
 msgstr ""
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
 msgstr ""
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "ირლანდია"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "ისრაელი"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
+#: zypp/CountryCode.cc:261
+msgid "India"
 msgstr ""
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
 msgstr ""
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "ერაყო"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "ირანი"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
 msgstr ""
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "იტალია"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "იამაიკა"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
 msgstr ""
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "იაპონია"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
 msgstr ""
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "კამბოჯა"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
 msgstr ""
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
 msgstr ""
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
 msgstr ""
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
 msgstr ""
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
 msgstr ""
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
 msgstr ""
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
 msgstr ""
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
 msgstr ""
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
 msgstr ""
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
 msgstr ""
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
 msgstr ""
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
 msgstr ""
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "ინგლისური"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "ინგლისური, შუასაუკუნეების (1100-1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "ინგლუსური, ძველი (დაახლ. 450-1000)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
 msgstr ""
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
 msgstr ""
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
 msgstr ""
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr ""
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "მხარდამჭერი"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
 msgstr ""
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
 msgstr ""
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
 msgstr ""
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
 msgstr ""
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
 msgstr ""
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
 msgstr ""
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
 msgstr ""
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
 msgstr ""
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
 msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
 msgstr ""
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
 msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
 msgstr ""
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
 msgstr ""
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
 msgstr ""
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
 msgstr ""
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
 msgstr ""
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
 msgstr ""
 
-#. language code: fil
-#: zypp/LanguageCode.cc:437
-msgid "Filipino"
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
 msgstr ""
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
 msgstr ""
 
-#. language code: fin fi
-#: zypp/LanguageCode.cc:439
-msgid "Finnish"
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
 msgstr ""
 
-#. language code: fiu
-#: zypp/LanguageCode.cc:441
-msgid "Finno-Ugrian (Other)"
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
 msgstr ""
 
-#. language code: fon
-#: zypp/LanguageCode.cc:443
-msgid "Fon"
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
 msgstr ""
 
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
 msgstr ""
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
 msgstr ""
 
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
 msgstr ""
 
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
 msgstr ""
 
-#. language code: frm
-#: zypp/LanguageCode.cc:449
-msgid "French, Middle (ca.1400-1600)"
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
 msgstr ""
 
-#. language code: fro
-#: zypp/LanguageCode.cc:451
-msgid "French, Old (842-ca.1400)"
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
 msgstr ""
 
-#. language code: fry fy
-#: zypp/LanguageCode.cc:453
-msgid "Frisian"
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
 msgstr ""
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
 msgstr ""
 
-#. language code: gaa
-#: zypp/LanguageCode.cc:459
-msgid "Ga"
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
 msgstr ""
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
 msgstr ""
 
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "აზერბაიჯანი"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
 msgstr ""
 
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
 msgstr ""
 
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
 msgstr ""
 
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
 msgstr ""
 
-#. language code: gay
-#: zypp/LanguageCode.cc:461
-msgid "Gayo"
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
 msgstr ""
 
-#. language code: gba
-#: zypp/LanguageCode.cc:463
-msgid "Gbaya"
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
 msgstr ""
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "საქართველო"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr ""
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
-msgstr "ქართული"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr ""
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-msgid "German"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
 msgstr ""
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
 msgstr ""
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
 msgstr ""
 
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
 msgstr ""
 
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
 msgstr ""
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
 msgstr ""
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
 msgstr ""
 
-#. language code: gon
-#: zypp/LanguageCode.cc:491
-msgid "Gondi"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
 msgstr ""
 
-#. language code: gor
-#: zypp/LanguageCode.cc:493
-msgid "Gorontalo"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
 msgstr ""
 
-#. language code: got
-#: zypp/LanguageCode.cc:495
-msgid "Gothic"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
 msgstr ""
 
-#. language code: grb
-#: zypp/LanguageCode.cc:497
-msgid "Grebo"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
 msgstr ""
 
-#. language code: grc
-#: zypp/LanguageCode.cc:499
-msgid "Greek, Ancient (to 1453)"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
 msgstr ""
 
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
 msgstr ""
 
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
 msgstr ""
 
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
 msgstr ""
 
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
 msgstr ""
 
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
 msgstr ""
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
 msgstr ""
 
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
 msgstr ""
 
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
 msgstr ""
 
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
 msgstr ""
 
-#. language code: guj gu
-#: zypp/LanguageCode.cc:507
-msgid "Gujarati"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
 msgstr ""
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
 msgstr ""
 
-#. language code: gwi
-#: zypp/LanguageCode.cc:509
-msgid "Gwich'in"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
 msgstr ""
 
-#. language code: hai
-#: zypp/LanguageCode.cc:511
-msgid "Haida"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
 msgstr ""
 
-#. language code: hat ht
-#: zypp/LanguageCode.cc:513
-msgid "Haitian"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
 msgstr ""
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
 msgstr ""
 
-#. language code: hau ha
-#: zypp/LanguageCode.cc:515
-msgid "Hausa"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
 msgstr ""
 
-#. language code: haw
-#: zypp/LanguageCode.cc:517
-msgid "Hawaiian"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
 msgstr ""
 
-#. language code: heb he
-#: zypp/LanguageCode.cc:519
-msgid "Hebrew"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
 msgstr ""
 
-#. language code: her hz
-#: zypp/LanguageCode.cc:521
-msgid "Herero"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
 msgstr ""
 
-#. language code: hil
-#: zypp/LanguageCode.cc:523
-msgid "Hiligaynon"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
 msgstr ""
 
-#. language code: him
-#: zypp/LanguageCode.cc:525
-msgid "Himachali"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
 msgstr ""
 
-#. language code: hin hi
-#: zypp/LanguageCode.cc:527
-msgid "Hindi"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
 msgstr ""
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
 msgstr ""
 
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-#. language code: hit
-#: zypp/LanguageCode.cc:529
-msgid "Hittite"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
 msgstr ""
 
-#. language code: hmn
-#: zypp/LanguageCode.cc:531
-msgid "Hmong"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
 msgstr ""
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#. language code: hun hu
-#: zypp/LanguageCode.cc:537
-msgid "Hungarian"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
 msgstr ""
 
-#. language code: hup
-#: zypp/LanguageCode.cc:539
-msgid "Hupa"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. language code: iba
-#: zypp/LanguageCode.cc:541
-msgid "Iban"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#. language code: ice isl is
-#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
-msgid "Icelandic"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. language code: ido io
-#: zypp/LanguageCode.cc:549
-msgid "Ido"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr ""
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "აფრიკაანსი"
 
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
 msgstr ""
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr ""
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "ალბანური"
 
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
 msgstr ""
 
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
 msgstr ""
 
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
 msgstr ""
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "ინგლუსური, ძველი (დაახლ. 450-1000)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "აპაჩის ენები"
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "არაბული"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "არამეული"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "სომხური"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
 msgstr ""
 
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "ხელოვნური (სხვა)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
 msgstr ""
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr ""
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "ავსტრალიური ენები"
 
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
 msgstr ""
 
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
 msgstr ""
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr ""
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "აზერბაიჯანული"
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
 msgstr ""
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "ირანი"
-
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
-msgstr "ირანული (სხვა)"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "á\83\94á\83 á\83\90á\83§á\83\9d"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "á\83\91á\83\90á\83\9aá\83¢á\83\98á\83£á\83 á\83\98 (á\83¡á\83®á\83\95á\83\90)"
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "ირლანდია"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr ""
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "á\83\98á\83 á\83\9aá\83\90á\83\9cá\83\93á\83\98á\83£á\83 ი"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "á\83\91á\83\94á\83\9aá\83\9dá\83 á\83£á\83¡á\83£á\83\9aი"
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
 msgstr ""
 
-#. language code: iro
-#: zypp/LanguageCode.cc:575
-msgid "Iroquoian Languages"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "ისრაელი"
-
-#. language code: ita it
-#: zypp/LanguageCode.cc:577
-msgid "Italian"
-msgstr "იტალიური"
-
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "იტალია"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "იამაიკა"
-
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "იაპონია"
-
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
-msgstr "იაპონური"
-
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
 msgstr ""
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
 msgstr ""
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. language code: kab
-#: zypp/LanguageCode.cc:591
-msgid "Kabyle"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "ბოსნიური"
+
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#. language code: kac
-#: zypp/LanguageCode.cc:593
-msgid "Kachin"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
 msgstr ""
 
-#. language code: kal kl
-#: zypp/LanguageCode.cc:595
-msgid "Kalaallisut"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#. language code: kam
-#: zypp/LanguageCode.cc:597
-msgid "Kamba"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
 msgstr ""
 
-#. language code: kan kn
-#: zypp/LanguageCode.cc:599
-msgid "Kannada"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "ბულგარული"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
 msgstr ""
 
-#. language code: kar
-#: zypp/LanguageCode.cc:601
-msgid "Karen"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
-#. language code: kas ks
-#: zypp/LanguageCode.cc:603
-msgid "Kashmiri"
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
 msgstr ""
 
-#. language code: kaw
-#: zypp/LanguageCode.cc:607
-msgid "Kawi"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. language code: kaz kk
-#: zypp/LanguageCode.cc:609
-msgid "Kazakh"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
 msgstr ""
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
 msgstr ""
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#. language code: kha
-#: zypp/LanguageCode.cc:613
-msgid "Khasi"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
 msgstr ""
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. language code: kho
-#: zypp/LanguageCode.cc:619
-msgid "Khotanese"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
 msgstr ""
 
-#. language code: kik ki
-#: zypp/LanguageCode.cc:621
-msgid "Kikuyu"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
 msgstr ""
 
-#. language code: kin rw
-#: zypp/LanguageCode.cc:623
-msgid "Kinyarwanda"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. language code: kir ky
-#: zypp/LanguageCode.cc:625
-msgid "Kirghiz"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. language code: kom kv
-#: zypp/LanguageCode.cc:631
-msgid "Komi"
-msgstr "კომი"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr ""
 
-#. language code: kon kg
-#: zypp/LanguageCode.cc:633
-msgid "Kongo"
-msgstr "კონგო"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-#. language code: kor ko
-#: zypp/LanguageCode.cc:635
-msgid "Korean"
-msgstr "კორეული"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr ""
 
-#. language code: kos
-#: zypp/LanguageCode.cc:637
-msgid "Kosraean"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
 msgstr ""
 
-#. language code: kpe
-#: zypp/LanguageCode.cc:639
-msgid "Kpelle"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
 msgstr ""
 
-#. language code: kro
-#: zypp/LanguageCode.cc:643
-msgid "Kru"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
 msgstr ""
 
-#. language code: kua kj
-#: zypp/LanguageCode.cc:647
-msgid "Kuanyama"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
 msgstr ""
 
-#. language code: kum
-#: zypp/LanguageCode.cc:649
-msgid "Kumyk"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
 msgstr ""
 
-#. language code: kur ku
-#: zypp/LanguageCode.cc:651
-msgid "Kurdish"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
 
-#. language code: kut
-#: zypp/LanguageCode.cc:653
-msgid "Kutenai"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
 msgstr ""
 
-#. language code: lad
-#: zypp/LanguageCode.cc:655
-msgid "Ladino"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
 msgstr ""
 
-#. language code: lah
-#: zypp/LanguageCode.cc:657
-msgid "Lahnda"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
 msgstr ""
 
-#. language code: lam
-#: zypp/LanguageCode.cc:659
-msgid "Lamba"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
 msgstr ""
 
-#. language code: lao lo
-#: zypp/LanguageCode.cc:661
-msgid "Lao"
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
 msgstr ""
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
 msgstr ""
 
-#. language code: lat la
-#: zypp/LanguageCode.cc:663
-msgid "Latin"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
 msgstr ""
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
 msgstr ""
 
-#. language code: lav lv
-#: zypp/LanguageCode.cc:665
-msgid "Latvian"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
 msgstr ""
 
-#. language code: lez
-#: zypp/LanguageCode.cc:667
-msgid "Lezghian"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
 msgstr ""
 
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
 msgstr ""
 
-#. language code: lim li
-#: zypp/LanguageCode.cc:669
-msgid "Limburgan"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
 
-#. language code: lin ln
-#: zypp/LanguageCode.cc:671
-msgid "Lingala"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
-msgid "Lithuanian"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "ინგლისური"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "ინგლისური, შუასაუკუნეების (1100-1500)"
+
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
 msgstr ""
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
 msgstr ""
 
-#. language code: loz
-#: zypp/LanguageCode.cc:677
-msgid "Lozi"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
 
-#. language code: lui
-#: zypp/LanguageCode.cc:687
-msgid "Luiseno"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#. language code: lun
-#: zypp/LanguageCode.cc:689
-msgid "Lunda"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
 msgstr ""
 
-#. language code: luo
-#: zypp/LanguageCode.cc:691
-msgid "Luo (Kenya and Tanzania)"
+#. language code: fil
+#: zypp/LanguageCode.cc:437
+msgid "Filipino"
 msgstr ""
 
-#. language code: lus
-#: zypp/LanguageCode.cc:693
-msgid "Lushai"
+#. language code: fin fi
+#: zypp/LanguageCode.cc:439
+msgid "Finnish"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
+#. language code: fiu
+#: zypp/LanguageCode.cc:441
+msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
+#. language code: fon
+#: zypp/LanguageCode.cc:443
+msgid "Fon"
 msgstr ""
 
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
 msgstr ""
 
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
+#. language code: frm
+#: zypp/LanguageCode.cc:449
+msgid "French, Middle (ca.1400-1600)"
 msgstr ""
 
-#. language code: mac mkd mk
-#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
-msgid "Macedonian"
+#. language code: fro
+#: zypp/LanguageCode.cc:451
+msgid "French, Old (842-ca.1400)"
 msgstr ""
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
+#. language code: fry fy
+#: zypp/LanguageCode.cc:453
+msgid "Frisian"
 msgstr ""
 
-#. language code: mad
-#: zypp/LanguageCode.cc:699
-msgid "Madurese"
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
 msgstr ""
 
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
 msgstr ""
 
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
+#. language code: gaa
+#: zypp/LanguageCode.cc:459
+msgid "Ga"
 msgstr ""
 
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
+#. language code: gay
+#: zypp/LanguageCode.cc:461
+msgid "Gayo"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
+#. language code: gba
+#: zypp/LanguageCode.cc:463
+msgid "Gbaya"
 msgstr ""
 
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
 msgstr ""
 
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
+msgstr "ქართული"
+
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+msgid "German"
 msgstr ""
 
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
 msgstr ""
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
 msgstr ""
 
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
 msgstr ""
 
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "ირლანდიური"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
 msgstr ""
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
 msgstr ""
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
 msgstr ""
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
+#. language code: gon
+#: zypp/LanguageCode.cc:491
+msgid "Gondi"
 msgstr ""
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
+#. language code: gor
+#: zypp/LanguageCode.cc:493
+msgid "Gorontalo"
 msgstr ""
 
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
+#. language code: got
+#: zypp/LanguageCode.cc:495
+msgid "Gothic"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
+#. language code: grb
+#: zypp/LanguageCode.cc:497
+msgid "Grebo"
 msgstr ""
 
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
+#. language code: grc
+#: zypp/LanguageCode.cc:499
+msgid "Greek, Ancient (to 1453)"
 msgstr ""
 
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. language code: mao mri mi
-#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
-msgid "Maori"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
 msgstr ""
 
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
-msgid "Marathi"
+#. language code: guj gu
+#: zypp/LanguageCode.cc:507
+msgid "Gujarati"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
+#. language code: gwi
+#: zypp/LanguageCode.cc:509
+msgid "Gwich'in"
 msgstr ""
 
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
+#. language code: hai
+#: zypp/LanguageCode.cc:511
+msgid "Haida"
 msgstr ""
 
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
+#. language code: hat ht
+#: zypp/LanguageCode.cc:513
+msgid "Haitian"
 msgstr ""
 
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
+#. language code: hau ha
+#: zypp/LanguageCode.cc:515
+msgid "Hausa"
 msgstr ""
 
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
+#. language code: haw
+#: zypp/LanguageCode.cc:517
+msgid "Hawaiian"
 msgstr ""
 
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
+#. language code: heb he
+#: zypp/LanguageCode.cc:519
+msgid "Hebrew"
 msgstr ""
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
+#. language code: her hz
+#: zypp/LanguageCode.cc:521
+msgid "Herero"
 msgstr ""
 
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
+#. language code: hil
+#: zypp/LanguageCode.cc:523
+msgid "Hiligaynon"
 msgstr ""
 
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
+#. language code: him
+#: zypp/LanguageCode.cc:525
+msgid "Himachali"
 msgstr ""
 
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
+#. language code: hin hi
+#: zypp/LanguageCode.cc:527
+msgid "Hindi"
 msgstr ""
 
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
+#. language code: hit
+#: zypp/LanguageCode.cc:529
+msgid "Hittite"
 msgstr ""
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
+#. language code: hmn
+#: zypp/LanguageCode.cc:531
+msgid "Hmong"
 msgstr ""
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
 msgstr ""
 
-#. language code: men
-#: zypp/LanguageCode.cc:731
-msgid "Mende"
+#. language code: hun hu
+#: zypp/LanguageCode.cc:537
+msgid "Hungarian"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: hup
+#: zypp/LanguageCode.cc:539
+msgid "Hupa"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
+#. language code: iba
+#: zypp/LanguageCode.cc:541
+msgid "Iban"
 msgstr ""
 
-#. language code: mic
-#: zypp/LanguageCode.cc:735
-msgid "Mi'kmaq"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
 msgstr ""
 
-#. language code: min
-#: zypp/LanguageCode.cc:737
-msgid "Minangkabau"
+#. language code: ice isl is
+#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
+msgid "Icelandic"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
+#. language code: ido io
+#: zypp/LanguageCode.cc:549
+msgid "Ido"
 msgstr ""
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
 msgstr ""
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
 msgstr ""
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
 msgstr ""
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
 msgstr ""
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
 msgstr ""
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
 msgstr ""
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#. language code: mon mn
-#: zypp/LanguageCode.cc:757
-msgid "Mongolian"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
 msgstr ""
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
 msgstr ""
 
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr ""
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
+msgstr "ირანული (სხვა)"
 
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
+#. language code: iro
+#: zypp/LanguageCode.cc:575
+msgid "Iroquoian Languages"
 msgstr ""
 
-#. language code: mos
-#: zypp/LanguageCode.cc:759
-msgid "Mossi"
+#. language code: ita it
+#: zypp/LanguageCode.cc:577
+msgid "Italian"
+msgstr "იტალიური"
+
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
 msgstr ""
 
-#. language code: mul
-#: zypp/LanguageCode.cc:761
-msgid "Multiple Languages"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
+msgstr "იაპონური"
+
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
 msgstr ""
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
-#. language code: nah
-#: zypp/LanguageCode.cc:775
-msgid "Nahuatl"
+#. language code: kab
+#: zypp/LanguageCode.cc:591
+msgid "Kabyle"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
+#. language code: kac
+#: zypp/LanguageCode.cc:593
+msgid "Kachin"
 msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
+#. language code: kal kl
+#: zypp/LanguageCode.cc:595
+msgid "Kalaallisut"
 msgstr ""
 
-#. language code: nav nv
-#: zypp/LanguageCode.cc:783
-msgid "Navajo"
+#. language code: kam
+#: zypp/LanguageCode.cc:597
+msgid "Kamba"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
+#. language code: kan kn
+#: zypp/LanguageCode.cc:599
+msgid "Kannada"
 msgstr ""
 
-#. language code: nbl nr
-#: zypp/LanguageCode.cc:785
-msgid "Ndebele, South"
+#. language code: kar
+#: zypp/LanguageCode.cc:601
+msgid "Karen"
 msgstr ""
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
+#. language code: kas ks
+#: zypp/LanguageCode.cc:603
+msgid "Kashmiri"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
+#. language code: kaw
+#: zypp/LanguageCode.cc:607
+msgid "Kawi"
 msgstr ""
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
+#. language code: kaz kk
+#: zypp/LanguageCode.cc:609
+msgid "Kazakh"
 msgstr ""
 
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
+#. language code: kha
+#: zypp/LanguageCode.cc:613
+msgid "Khasi"
 msgstr ""
 
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
 msgstr ""
 
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
 msgstr ""
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
+#. language code: kho
+#: zypp/LanguageCode.cc:619
+msgid "Khotanese"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: kik ki
+#: zypp/LanguageCode.cc:621
+msgid "Kikuyu"
 msgstr ""
 
-#. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
+#. language code: kin rw
+#: zypp/LanguageCode.cc:623
+msgid "Kinyarwanda"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
+#. language code: kir ky
+#: zypp/LanguageCode.cc:625
+msgid "Kirghiz"
 msgstr ""
 
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
-#. language code: nic
-#: zypp/LanguageCode.cc:799
-msgid "Niger-Kordofanian (Other)"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
+#. language code: kom kv
+#: zypp/LanguageCode.cc:631
+msgid "Komi"
+msgstr "კომი"
+
+#. language code: kon kg
+#: zypp/LanguageCode.cc:633
+msgid "Kongo"
+msgstr "კონგო"
+
+#. language code: kor ko
+#: zypp/LanguageCode.cc:635
+msgid "Korean"
+msgstr "კორეული"
+
+#. language code: kos
+#: zypp/LanguageCode.cc:637
+msgid "Kosraean"
 msgstr ""
 
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
+#. language code: kpe
+#: zypp/LanguageCode.cc:639
+msgid "Kpelle"
 msgstr ""
 
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
 msgstr ""
 
-#. language code: niu
-#: zypp/LanguageCode.cc:801
-msgid "Niuean"
+#. language code: kro
+#: zypp/LanguageCode.cc:643
+msgid "Kru"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: kua kj
+#: zypp/LanguageCode.cc:647
+msgid "Kuanyama"
 msgstr ""
 
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
+#. language code: kum
+#: zypp/LanguageCode.cc:649
+msgid "Kumyk"
+msgstr ""
+
+#. language code: kur ku
+#: zypp/LanguageCode.cc:651
+msgid "Kurdish"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
+#. language code: kut
+#: zypp/LanguageCode.cc:653
+msgid "Kutenai"
 msgstr ""
 
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
+#. language code: lad
+#: zypp/LanguageCode.cc:655
+msgid "Ladino"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
+#. language code: lah
+#: zypp/LanguageCode.cc:657
+msgid "Lahnda"
 msgstr ""
 
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
+#. language code: lam
+#: zypp/LanguageCode.cc:659
+msgid "Lamba"
 msgstr ""
 
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
+#. language code: lao lo
+#: zypp/LanguageCode.cc:661
+msgid "Lao"
 msgstr ""
 
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
+#. language code: lat la
+#: zypp/LanguageCode.cc:663
+msgid "Latin"
 msgstr ""
 
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
+#. language code: lav lv
+#: zypp/LanguageCode.cc:665
+msgid "Latvian"
 msgstr ""
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
+#. language code: lez
+#: zypp/LanguageCode.cc:667
+msgid "Lezghian"
 msgstr ""
 
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
+#. language code: lim li
+#: zypp/LanguageCode.cc:669
+msgid "Limburgan"
 msgstr ""
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
+#. language code: lin ln
+#: zypp/LanguageCode.cc:671
+msgid "Lingala"
 msgstr ""
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
+msgid "Lithuanian"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
-msgid "Nubian Languages"
+#. language code: loz
+#: zypp/LanguageCode.cc:677
+msgid "Lozi"
 msgstr ""
 
-#. language code: nym
-#: zypp/LanguageCode.cc:821
-msgid "Nyamwezi"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
 msgstr ""
 
-#. language code: nyn
-#: zypp/LanguageCode.cc:823
-msgid "Nyankole"
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
 msgstr ""
 
-#. language code: nyo
-#: zypp/LanguageCode.cc:825
-msgid "Nyoro"
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: nzi
-#: zypp/LanguageCode.cc:827
-msgid "Nzima"
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
+#. language code: lui
+#: zypp/LanguageCode.cc:687
+msgid "Luiseno"
 msgstr ""
 
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
+#. language code: lun
+#: zypp/LanguageCode.cc:689
+msgid "Lunda"
 msgstr ""
 
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
+#. language code: luo
+#: zypp/LanguageCode.cc:691
+msgid "Luo (Kenya and Tanzania)"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
+#. language code: lus
+#: zypp/LanguageCode.cc:693
+msgid "Lushai"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
+#. language code: mac mkd mk
+#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
+msgid "Macedonian"
 msgstr ""
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
+#. language code: mad
+#: zypp/LanguageCode.cc:699
+msgid "Madurese"
 msgstr ""
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
 msgstr ""
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
 msgstr ""
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
-msgid "Osage"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
 msgstr ""
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
 msgstr ""
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
 msgstr ""
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
 msgstr ""
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
+#. language code: mao mri mi
+#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
+msgid "Maori"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
 msgstr ""
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+msgid "Marathi"
 msgstr ""
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
 msgstr ""
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
 msgstr ""
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
+#. language code: men
+#: zypp/LanguageCode.cc:731
+msgid "Mende"
 msgstr ""
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
+#. language code: mic
+#: zypp/LanguageCode.cc:735
+msgid "Mi'kmaq"
 msgstr ""
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
+#. language code: min
+#: zypp/LanguageCode.cc:737
+msgid "Minangkabau"
 msgstr ""
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
 msgstr ""
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
 msgstr ""
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
 msgstr ""
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
 msgstr ""
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
 msgstr ""
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
 msgstr ""
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
+#. language code: mon mn
+#: zypp/LanguageCode.cc:757
+msgid "Mongolian"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
+#. language code: mos
+#: zypp/LanguageCode.cc:759
+msgid "Mossi"
 msgstr ""
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
+#. language code: mul
+#: zypp/LanguageCode.cc:761
+msgid "Multiple Languages"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
 msgstr ""
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
 msgstr ""
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
 msgstr ""
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
 msgstr ""
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
 msgstr ""
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
+#. language code: nah
+#: zypp/LanguageCode.cc:775
+msgid "Nahuatl"
 msgstr ""
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
 msgstr ""
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
+#. language code: nav nv
+#: zypp/LanguageCode.cc:783
+msgid "Navajo"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
+#. language code: nbl nr
+#: zypp/LanguageCode.cc:785
+msgid "Ndebele, South"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
 msgstr ""
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
 msgstr ""
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
 msgstr ""
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
 msgstr ""
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
+#. language code: nic
+#: zypp/LanguageCode.cc:799
+msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+msgid "Niuean"
 msgstr ""
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
 msgstr ""
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
 msgstr ""
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
 msgstr ""
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
+#. language code: nub
+#: zypp/LanguageCode.cc:815
+msgid "Nubian Languages"
 msgstr ""
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
 msgstr ""
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
+#. language code: nym
+#: zypp/LanguageCode.cc:821
+msgid "Nyamwezi"
 msgstr ""
 
-#: zypp/Dep.cc:98
-msgid "Requires"
+#. language code: nyn
+#: zypp/LanguageCode.cc:823
+msgid "Nyankole"
 msgstr ""
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
+#. language code: nyo
+#: zypp/LanguageCode.cc:825
+msgid "Nyoro"
 msgstr ""
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
+#. language code: nzi
+#: zypp/LanguageCode.cc:827
+msgid "Nzima"
+msgstr ""
+
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
 msgstr ""
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
 msgstr ""
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
 msgstr ""
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+msgid "Osage"
 msgstr ""
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
 msgstr ""
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
 msgstr ""
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
 msgstr ""
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
 msgstr ""
 
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "მხარდამჭერი"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr ""
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
 msgstr ""
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr ""
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
 msgstr ""
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
 msgstr ""
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
 msgstr ""
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
 msgstr ""
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
 msgstr ""
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
 msgstr ""
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
 msgstr ""
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
 msgstr ""
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
 msgstr ""
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
 msgstr ""
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
 msgstr ""
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "აზერბაიჯანი"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr ""
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
 msgstr ""
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
 msgstr ""
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
 msgstr ""
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
 msgstr ""
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
 msgstr ""
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
 msgstr ""
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
 msgstr ""
 
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
 msgstr ""
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
 msgstr ""
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr ""
+
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
 msgstr ""
 
 #. language code: sin si
@@ -3723,24 +3729,14 @@ msgstr ""
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr ""
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -3753,98 +3749,79 @@ msgstr ""
 msgid "Slovak"
 msgstr ""
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr ""
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr ""
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr ""
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr ""
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr ""
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
 msgstr ""
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
 msgstr ""
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
 msgstr ""
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
 msgstr ""
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
 msgstr ""
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
 msgstr ""
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
 msgstr ""
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
 msgstr ""
 
 #. language code: spa es
@@ -3852,18 +3829,24 @@ msgstr ""
 msgid "Spanish"
 msgstr ""
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
 msgstr ""
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
 msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
 #. language code: suk
@@ -3871,33 +3854,19 @@ msgstr ""
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr ""
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr ""
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr ""
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
 #. language code: swa sw
@@ -3905,34 +3874,9 @@ msgstr ""
 msgid "Swahili"
 msgstr ""
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr ""
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr ""
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr ""
-
-#. language code: swe sv
-#: zypp/LanguageCode.cc:1009
-msgid "Swedish"
-msgstr ""
-
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr ""
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
+#. language code: swe sv
+#: zypp/LanguageCode.cc:1009
+msgid "Swedish"
 msgstr ""
 
 #. language code: syr
@@ -3940,23 +3884,6 @@ msgstr ""
 msgid "Syriac"
 msgstr ""
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3967,36 +3894,11 @@ msgstr ""
 msgid "Tai (Other)"
 msgstr ""
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr ""
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr ""
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr ""
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr ""
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4007,6 +3909,11 @@ msgstr ""
 msgid "Telugu"
 msgstr ""
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4017,31 +3924,19 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr ""
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
 msgstr ""
 
 #. language code: tib bod bo
@@ -4059,45 +3954,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4110,15 +3984,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4126,14 +3994,19 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr ""
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr ""
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
 msgstr ""
 
 #. language code: tum
@@ -4141,718 +4014,885 @@ msgstr ""
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr ""
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr ""
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr ""
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr ""
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
 msgstr ""
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
 msgstr ""
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr ""
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr ""
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr ""
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr ""
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr ""
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr ""
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr ""
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr ""
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr ""
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr ""
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr ""
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
 msgstr ""
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
 msgstr ""
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
 msgstr ""
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
 msgstr ""
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
 msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
 msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
 msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-#, fuzzy
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
 msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
 msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Failed to mount %s on %s"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Failed to unmount %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "deinstallation of %s"
+msgid "Cannot write file '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep obsolete %s"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr "لا يمكن إنشاء المفتاح العام %s من %s إلى ملف حلقة المفاتيح %s"
 
-#, fuzzy
-#~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
-#~ msgstr ""
-#~ "\n"
-#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr "حاول استيراد مفتاح غير موجود %s إلى حلقة مفاتيح %s"
+
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "لا يمكن تغيير مجلد العمل '/' داخل استجذار (%s)."
+
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "فشل تهيئة تحميل (Metalink curl) '%s'"
 
 #~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
 #~ msgstr ""
-#~ "\n"
-#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
+#~ "تحميل (metalink curl) خطأ '%s':\n"
+#~ "رمز الخطأ: %s\n"
+#~ "رسالة الخطأ: %s\n"
 
-#~ msgid " Error!"
-#~ msgstr "خطأ!"
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "تÙ\88Ù\82Ù\81 Ø§Ù\84تحÙ\85Ù\8aÙ\84 Ù\81Ù\8a %d%%"
 
-#~ msgid " Important!"
-#~ msgstr "هام!"
+#~ msgid "Download interrupted by user"
+#~ msgstr "توقف التحميل بواسطة المستخدم"
 
-#~ msgid " fails checksum verification."
-#~ msgstr "فشل التحقق من المجموع الاختباري."
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr "حدث خطأ أثناء إعداد خيارات التحميل (metalink curl) ل '%s':"
 
-#~ msgid " miss checksum."
-#~ msgstr "فقد المجموع الاختباري."
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "صربيا ومونتنيجرو"
 
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "خيار list غير معروف"
 
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
+#, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "تعذر حل التبعيات"
 
 #~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s يتعارض مع:\n"
-#~ "%s"
+#~ "لا يحتوي الملف %s على مجموع اختباري.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
 
-#~ msgid "%s depended on %s"
-#~ msgstr "%s اعتمد على %s"
+#~ msgid ""
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الملف %s باستخدام المفتاح التالي:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
 
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s اعتمد على %s"
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير صالح.\n"
+#~ "متوقع %s، تم العثور على %s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
 
-#~ msgid "%s depends on %s"
-#~ msgstr "%s يعتمد على %s"
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير معروف %s.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
 
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "لم يتم توقيع الملف %s.\n"
+#~ "هل تريد استخدامه على أي حال؟"
 
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s يعتمد على:%s"
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "تم توقيع الملف %s باستخدام مفتاح غير معروف:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "تم العثور على مفتاح غير موثوق:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد الوثوق بالمفتاح؟"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
+#~ msgid "%s remove failed"
+#~ msgstr "فشلت إزالة %s"
 
-#~ msgid "%s has missing dependencies"
-#~ msgstr "تم فقد تبعيات %s"
+#, fuzzy
+#~ msgid "Invalid user name or password."
+#~ msgstr "كلمة السر CA غير صالحة."
 
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "Ù\84Ù\85 Ù\8aتÙ\85 Ø§Ø³ØªÙ\8aÙ\81اء Ù\85تطÙ\84بات %s"
+#~ msgid "rpm output:"
+#~ msgstr "Ù\85خرجات rpm:"
 
 #~ msgid "%s install failed"
 #~ msgstr "فشل تثبيت %s"
@@ -4860,516 +4900,476 @@ msgstr ""
 #~ msgid "%s installed ok"
 #~ msgstr "تم تثبيت %s بنجاح"
 
+#~ msgid "%s remove ok"
+#~ msgstr "تمت إزالة %s بنجاح"
+
 #, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
+#~ msgid ""
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
 #, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
+#~ msgid ""
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s يفتقد المتطلب %s"
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
 
-#~ msgid "%s is locked and cannot be uninstalled."
-#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
 
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "تجاهل %s القديم في %s"
 
-#~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "%s مطلوب بواسطة\n"
-#~ "%s"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "تجاهل تعارض %s هذا"
 
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "تجاهل هذا المتطلب هنا فقط"
 
 #, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
-
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
-#~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
+#~ msgid "Install missing resolvables"
+#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
-#~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
+#~ msgid "Keep resolvables"
+#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
 
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
-#~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
-#~ "الارتباط."
+#~ msgid "Unlock these resolvables"
+#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr ""
-#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
 
-#, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
+#~ msgid "install %s"
+#~ msgstr "تثبيت %s"
 
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
+#~ msgid "unlock %s"
+#~ msgstr "إلغاء قفل %s"
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
+#~ msgid "unlock all resolvables"
+#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
 
 #, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
+#~ msgid "Error reading solv-file: "
+#~ msgstr "تعذرت قراءة القطاع %u."
 
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#~ msgid "%s obsoletes:%s"
-#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#~ msgid "%s part of %s"
-#~ msgstr "%s جزء من %s"
+#~ msgid "Software management is already running."
+#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
+#~ msgid "%s replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
 #, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
+#~ msgid "%s will be deleted by the user.\n"
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
+#, fuzzy
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s يوفر %s، لكنه مقفل."
+#~ msgid "Invalid information"
+#~ msgstr "المعلومات غير صالحة"
+
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
 
 #~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
+#~ "%s is needed by:\n"
+#~ "%s"
 #~ msgstr ""
-#~ "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86Ù\87 Ù\82ابÙ\84 Ù\84Ø¥Ù\84غاء Ø§Ù\84تثبÙ\8aت.  Ø­Ø§Ù\88Ù\84 ØªØ«Ø¨Ù\8aتÙ\87 Ù\84Ù\84حصÙ\88Ù\84 Ø¹Ù\84Ù\89 Ù\85زÙ\8aد Ù\85Ù\86 "
-#~ "التفاصيل."
+#~ "%s Ù\85Ø·Ù\84Ù\88ب Ø¨Ù\88اسطة\n"
+#~ "%s"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
 
-#, fuzzy
 #~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
-
-#~ msgid "%s remove failed"
-#~ msgstr "فشلت إزالة %s"
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s يتعارض مع:\n"
+#~ "%s"
 
-#~ msgid "%s remove ok"
-#~ msgstr "تمت إزالة %s بنجاح"
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
 
-#~ msgid "%s replaced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
+#~ msgid "%s obsoletes:%s"
+#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
-#, fuzzy
-#~ msgid "%s will be deleted by the user.\n"
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
 #~ msgstr ""
 #~ "\n"
 #~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#, fuzzy
-#~ msgid "%s will be installed by the user.\n"
-#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
+#~ msgid "%s depends on %s"
+#~ msgstr "%s يعتمد على %s"
 
-#~ msgid ", Action: "
-#~ msgstr "، الإجراء:"
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s يعتمد على:%s"
 
-#~ msgid ", Trigger: "
-#~ msgstr "Ø\8c ØªØ´ØºÙ\8aÙ\84:"
+#~ msgid "Child of"
+#~ msgstr "عÙ\86صر Ù\81رعÙ\8a Ù\84Ù\80"
 
 #, fuzzy
 #~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
-#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
-
-#~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
-#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
-
-#~ msgid "Can't chdir to '/' inside chroot (%s)."
-#~ msgstr "لا يمكن تغيير مجلد العمل '/' داخل استجذار (%s)."
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
-#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
 #, fuzzy
-#~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
-#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
+
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
+
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "لم يتم استيفاء متطلبات %s"
+
+#~ msgid "%s has missing dependencies"
+#~ msgstr "تم فقد تبعيات %s"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
 
 #, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "Couldn't open file: %s."
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
+#~ msgid "No need to install %s"
+#~ msgstr "لا داعي لتثبيت %s"
 
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
 #~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#~ msgid "Cannot create a file needed to perform update installation."
-#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
-
-#~ msgid "Cannot create public key %s from %s keyring to file %s"
-#~ msgstr "لا يمكن إنشاء المفتاح العام %s من %s إلى ملف حلقة المفاتيح %s"
-
 #~ msgid "Cannot install %s to fulfil the dependencies of %s"
 #~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
 #, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
 #, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting"
-#~ msgstr "تعذر تثبيت %s لأنه متعارض"
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
 
 #, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "تعذر ØªØ«Ø¨Ù\8aت %s Ù\84Ø£Ù\86Ù\87 Ù\8aتعارض Ù\85ع %s"
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "تعذر ØªØ«Ø¨Ù\8aت %s Ù\84Ø£Ù\86Ù\87 Ù\85تعارض"
 
-#~ msgid "Child of"
-#~ msgstr "عنصر فرعي لـ"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
 
-#, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
 
 #, fuzzy
-#~ msgid "Double timeout"
-#~ msgstr "موعد الاستحقاق: %1"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s يفتقد المتطلب %s"
 
-#~ msgid "Download (Metalink curl) initialization failed for '%s'"
-#~ msgstr "فشل تهيئة تحميل (Metalink curl) '%s'"
+#~ msgid ", Action: "
+#~ msgstr "، الإجراء:"
 
-#~ msgid ""
-#~ "Download (metalink curl) error for '%s':\n"
-#~ "Error code: %s\n"
-#~ "Error message: %s\n"
-#~ msgstr ""
-#~ "تحميل (metalink curl) خطأ '%s':\n"
-#~ "رمز الخطأ: %s\n"
-#~ "رسالة الخطأ: %s\n"
+#~ msgid ", Trigger: "
+#~ msgstr "، تشغيل:"
 
-#~ msgid "Download interrupted at %d%%"
-#~ msgstr "تÙ\88Ù\82Ù\81 Ø§Ù\84تحÙ\85Ù\8aÙ\84 Ù\81Ù\8a %d%%"
+#~ msgid "package"
+#~ msgstr "اÙ\84حزÙ\85Ø©"
 
-#~ msgid "Download interrupted by user"
-#~ msgstr "تÙ\88Ù\82Ù\81 Ø§Ù\84تحÙ\85Ù\8aÙ\84 Ø¨Ù\88اسطة Ø§Ù\84Ù\85ستخدÙ\85"
+#~ msgid "selection"
+#~ msgstr "اÙ\84تحدÙ\8aد"
 
-#~ msgid "Downloading %s"
-#~ msgstr "Ø¥Ù\86زاÙ\84 %s"
+#~ msgid "pattern"
+#~ msgstr "اÙ\84Ù\86Ù\85Ø·"
 
-#, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
+#~ msgid "product"
+#~ msgstr "المنتج"
 
-#~ msgid ""
-#~ "Error occurred while setting download (metalink curl) options for '%s':"
-#~ msgstr "حدث خطأ أثناء إعداد خيارات التحميل (metalink curl) ل '%s':"
+#~ msgid "patch"
+#~ msgstr "التصحيح"
 
-#, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "تعذرت قراءة القطاع %u."
+#~ msgid "script"
+#~ msgstr "البرنامج النصي"
 
-#~ msgid "Establishing %s"
-#~ msgstr "تأسÙ\8aس %s"
+#~ msgid "message"
+#~ msgstr "اÙ\84رساÙ\84Ø©"
 
-#, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Failed to parse: %s."
+#~ msgid "atom"
+#~ msgstr "الذرة"
 
-#~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "لا يحتوي الملف %s على مجموع اختباري.\n"
-#~ "هل تريد استخدام الملف على أي حال؟"
+#~ msgid "system"
+#~ msgstr "النظام"
 
-#~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "فشل التحقق من سلامة الملف %s باستخدام المفتاح التالي:\n"
-#~ "%s|%s|%s\n"
-#~ " هل تريد استخدام الملف على أي حال؟"
+#~ msgid "Resolvable"
+#~ msgstr "التبعية القابلة للتحليل"
 
-#~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "يحتوي الملف %s على مجموع اختباري غير صالح.\n"
-#~ "متوقع %s، تم العثور على %s\n"
-#~ " هل تريد استخدام الملف على أي حال؟"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
 
-#~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "يحتوي الملف %s على مجموع اختباري غير معروف %s.\n"
-#~ "هل تريد استخدام الملف على أي حال؟"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
 #~ msgstr ""
-#~ "لم يتم توقيع الملف %s.\n"
-#~ "هل تريد استخدامه على أي حال؟"
+#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "تم توقيع الملف %s باستخدام مفتاح غير معروف:\n"
-#~ "%s|%s|%s\n"
-#~ " هل تريد استخدام الملف على أي حال؟"
-
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
-
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "تجاهل %s القديم في %s"
-
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "تجاهل تعارض %s هذا"
-
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
 
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "تجاهل هذا المتطلب هنا فقط"
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
 
 #, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
 
-#~ msgid "Install missing resolvables"
-#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
+
+#~ msgid "Establishing %s"
+#~ msgstr "تأسيس %s"
 
 #~ msgid "Installing %s"
 #~ msgstr "تثبيت %s"
 
-#~ msgid "Invalid information"
-#~ msgstr "المعلومات غير صالحة"
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
+
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "تخطي %s: تم التثبيت بالفعل"
 
 #, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "كلمة السر CA غير صالحة."
-
-#~ msgid "Keep resolvables"
-#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
+#~ msgid "for %s"
+#~ msgstr "لـ %s"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
 
-#~ msgid "No need to install %s"
-#~ msgstr "لا داعي لتثبيت %s"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
 
-#, fuzzy
 #~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
-#~ "التثبيت؟"
+#~ "%s يوفر %s، لكنه قابل لإلغاء التثبيت.  حاول تثبيته للحصول على مزيد من "
+#~ "التفاصيل."
 
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s يوفر %s، لكنه مقفل."
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
 
-#~ msgid "Reading filelist from %s"
-#~ msgstr "قراءة قائمة الملفات من %s"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
 
-#~ msgid "Reading index files"
-#~ msgstr "قراءة ملفات الفهرس"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
 
-#~ msgid "Reading packages file"
-#~ msgstr "قراءة ملف الحزم"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#~ msgid "Reading packages from %s"
-#~ msgstr "قراءة الحزم من %s"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#~ msgid "Reading patch %s"
-#~ msgstr "قراءة التصحيح %s"
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
 
-#~ msgid "Reading patches index %s"
-#~ msgstr "قراءة فهرس التصحيحات %s"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
 
-#~ msgid "Reading pattern from %s"
-#~ msgstr "قراءة النمط من %s"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
 
-#~ msgid "Reading product from %s"
-#~ msgstr "Ù\82راءة Ø§Ù\84Ù\85Ù\86تج Ù\85Ù\86 %s"
+#~ msgid "from %s"
+#~ msgstr "من %s"
 
-#~ msgid "Reading selection from %s"
-#~ msgstr "قراءة التحديد من %s"
+#~ msgid " Error!"
+#~ msgstr "خطأ!"
 
-#~ msgid "Reading translation: %s"
-#~ msgstr "Ù\82راءة Ø§Ù\84ترجÙ\85Ø©: %s"
+#~ msgid " Important!"
+#~ msgstr "Ù\87اÙ\85!"
 
-#~ msgid "Resolvable"
-#~ msgstr "التبعية القابلة للتحليل"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "صربيا ومونتنيجرو"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "تخطي %s: تم التثبيت بالفعل"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#~ msgid "Software management is already running."
-#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
+#~ msgid "%s part of %s"
+#~ msgstr "%s جزء من %s"
 
 #, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
-
-#~ msgid "This would invalidate %s."
-#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
+#~ msgid "Double timeout"
+#~ msgstr "موعد الاستحقاق: %1"
 
-#~ msgid "Tried to import not existant key %s into keyring %s"
-#~ msgstr "حاول استيراد مفتاح غير موجود %s إلى حلقة مفاتيح %s"
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
 #~ msgid "Unable to parse Url authority"
 #~ msgstr "تعذر تحليل سلطة Url"
 
-#~ msgid "Unable to restore all sources."
-#~ msgstr "تعذرت Ø§Ø³ØªØ¹Ø§Ø¯Ø© Ù\83اÙ\81Ø© Ø§Ù\84Ù\85صادر."
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "تجاÙ\87Ù\84 Ù\87ذا Ø§Ù\84Ù\85تطÙ\84ب Ø¨ØµÙ\81Ø© Ø¹Ø§Ù\85Ø©"
 
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "خيار list غير معروف"
+#~ msgid ""
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
+#~ "الارتباط."
 
-#~ msgid "Unlock these resolvables"
-#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
+
+#~ msgid "Unable to restore all sources."
+#~ msgstr "تعذرت استعادة كافة المصادر."
 
 #~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
-#~ msgstr ""
-#~ "تم العثور على مفتاح غير موثوق:\n"
-#~ "%s|%s|%s\n"
-#~ " هل تريد الوثوق بالمفتاح؟"
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
 
-#~ msgid "Updating %s to %s"
-#~ msgstr "تحدÙ\8aØ« %s Ø¥Ù\84Ù\89 %s"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر ØªØ«Ø¨Ù\8aت %s Ù\84استÙ\8aÙ\81اء ØªØ¨Ø¹Ù\8aات %s"
 
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#~ msgid "atom"
-#~ msgstr "الذرة"
+#~ msgid "Reading index files"
+#~ msgstr "قراءة ملفات الفهرس"
 
-#~ msgid "delete %s"
-#~ msgstr "حذف %s"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
 
-#~ msgid "for %s"
-#~ msgstr "Ù\84Ù\80 %s"
+#~ msgid "Reading product from %s"
+#~ msgstr "Ù\82راءة Ø§Ù\84Ù\85Ù\86تج Ù\85Ù\86 %s"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "Ù\84Ø·Ù\84ب %s Ù\84Ù\80 %s Ø¹Ù\86د ØªØ­Ø¯Ù\8aØ« %s"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "Ù\82راءة Ù\82ائÙ\85Ø© Ø§Ù\84Ù\85Ù\84Ù\81ات Ù\85Ù\86 %s"
 
-#~ msgid "from %s"
-#~ msgstr "من %s"
+#~ msgid "Reading packages from %s"
+#~ msgstr "Ù\82راءة Ø§Ù\84حزÙ\85 Ù\85Ù\86 %s"
 
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "تعذر حل التبعيات"
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
 
-#~ msgid "install %s"
-#~ msgstr "تثبيت %s"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
 
-#~ msgid "message"
-#~ msgstr "الرسالة"
+#~ msgid "Reading patches index %s"
+#~ msgstr "قراءة فهرس التصحيحات %s"
 
-#~ msgid "package"
-#~ msgstr "الحزمة"
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
 
-#~ msgid "patch"
-#~ msgstr "التصحيح"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
 
-#~ msgid "pattern"
-#~ msgstr "النمط"
+#~ msgid "Reading packages file"
+#~ msgstr "قراءة ملف الحزم"
 
-#~ msgid "product"
-#~ msgstr "المنتج"
+#~ msgid "Reading translation: %s"
+#~ msgstr "قراءة الترجمة: %s"
 
-#~ msgid "rpm output:"
-#~ msgstr "مخرجات rpm:"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
+#~ "التثبيت؟"
 
-#~ msgid "script"
-#~ msgstr "البرنامج النصي"
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
 
-#~ msgid "selection"
-#~ msgstr "التحديد"
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
 
-#~ msgid "system"
-#~ msgstr "اÙ\84Ù\86ظاÙ\85"
+#~ msgid "Downloading %s"
+#~ msgstr "Ø¥Ù\86زاÙ\84 %s"
 
-#~ msgid "unlock %s"
-#~ msgstr "إلغاء قفل %s"
+#, fuzzy
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Failed to parse: %s."
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "Couldn't open file: %s."
index a29e532..310a1e5 100644 (file)
--- a/po/km.po
+++ b/po/km.po
@@ -21,19 +21,96 @@ msgstr ""
 "X-Generator: KBabel 1.11.4\n"
 "X-Language: km-KH\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "ការ​លើកលែង Hal"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "ខ្សែអក្សរ​សំណួរ LDAP URL មិន​ត្រឹមត្រូវ"
+
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "ប៉ារ៉ាម៉ែត្រ​សំណួរ LDAP URL មិន​ត្រឹមត្រូវ '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "មិនអាច​ក្លូន​វត្ថុ Url បាន​ឡើយ"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "សេចក្ដី​យោង​វត្ថុ Url ទទេ មិន​ត្រឹមត្រូវ"
+
+# ###############################################################################
+# Old yast2-agents.po
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "មិនអាច​ញែក​សមាសភាគ Url បាន​ឡើយ"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "មិនអាច​ចាប់ផ្ដើម​គុណលក្ខណៈ mutex បានឡើយ"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "មិនអាច​កំណត់​គុណលក្ខណៈ mutex ហៅ​ខ្លួនឯង​បានឡើយ"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "មិនអាច​ចាប់ផ្ដើម mutex ហៅខ្លួន​ឯង​បាន​ឡើយ"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "មិនអាច​យក​សោ mutex បានឡើយ"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "មិនអាច​លែង​សោ mutex បាន​ឡើយ"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "ផ្ដល់"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
-"\n"
-"លុបក្រុមហ៊ុនផ្ដល់ ៖ "
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "ទាមទារ"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "ប៉ះទង្គិច"
+
+#: zypp/Dep.cc:100
+#, fuzzy
+msgid "Obsoletes"
+msgstr "លែង​ប្រើ %s"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "អនុសាសន៍"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "ស្នើ"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "ការ​បន្ថែម"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr " បញ្ហា​វិញ្ញាបនបត្រ SSL ផ្ទៀងផ្ទាត់​ថា​វិញ្ញាបនបត្រ CA គឺ​ត្រឹមត្រូវ​សម្រាប់ '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "ប្រភេទ​មិនច្បាស់ '%s' សម្រាប់ %u បៃ ឆេកសាំ '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -43,10 +120,6 @@ msgstr " បាន​ប្រតិបត្តិ"
 msgid " execution failed"
 msgstr " បាន​បរាជ័យ​ក្នុងកា​រប្រតិបត្តិ"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " ការ​ប្រតិបត្តិ​បាន​រំលង​ខណៈពេល​បោះបង់"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -55,769 +128,2092 @@ msgstr " ការ​ប្រតិបត្តិ​បាន​រំលង
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s ប៉ះទង្គិច​ជាមួយ %s ដែល​បាន​ផ្ដល់​ដោយ %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " ការ​ប្រតិបត្តិ​បាន​រំលង​ខណៈពេល​បោះបង់"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s មិនមែនជា​របស់​ឃ្លាំង distupgrade នោះ​ទេ"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "កំហុស​ក្នុង​ការ​ផ្ញើ​ការ​ជូនដំណឹង​សារបច្ចុប្បន្នភាព​ ។"
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s មាន​​​ស្ថាបត្យកម្ម​ទាប​ជាង"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "សារ​បច្ចុប្បន្នភាព​ថ្មី"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s មិនអាច​ដំឡើងបាន"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "ការ​ដំឡើង ត្រូវបាន​បោះបង់​ដោយ​ផ្ទាល់ ។"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s ជាប់សោ និង​មិន​អាច​លុប​បាន​ឡើយ ។"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "សូមអភ័យទោស កំណែ​នៃ​ libzypp នេះ​ត្រូវ​បាន​ស្ថាបនា​ឡើង​ដោយ​គ្មាន​ការ​គាំទ្រ​ HAL ។"
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s លែងប្រើ %s ដែល​ផ្ដល់ដោយ %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext មិនបាន​តភ្ជាប់​ឡើយ"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s ត្រូវការ %s ប៉ុន្តែ​តម្រូវការ​នេះ​មិនអាច​ផ្ដល់​បានទេ"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive មិន​បាន​ចាប់ផ្ដើម​ឡើយ"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(បាន​ផុត​កំណត់)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume មិនបាន​ចាប់ផ្ដើម​ឡើយ"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(មិន​ផុត​កំណត់)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "មិនអាច​បង្កើត​ការ​តភ្ជាប់ dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(ផុត​កំណត់​ក្នុង​រយៈពេល ២៤ ម៉ោង)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new ៖ មិនអាច​បង្កើត​បរិបទ libhal បានឡើយ"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(ផុត​កំណត់​ក្នុង​រយៈពេល ២៤ ម៉ោង)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection ៖ មិនអាច​​កំណត់​ការ​តភ្ជាប់ dbus បានឡើយ"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "អាប់​ខាហ៊្សាន"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "មិនអាច​ចាប់ផ្ដើម​បរិបទ HAL បានឡើយ -- hald មិន​កំពុង​រត់​ទេឬ ?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "អាឈិណិស"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "មិន​មែន​ជា​ដ្រាយ​ស៊ីឌី​រ៉ូម​ទេ"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "អាកូលី"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM បាន​បរាជ័យ ៖ "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "អាដង់ម៉េ"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "បរាជ័យក្នុង​ការ​នាំចូល​សោ​សាធារណៈ​ពី​ឯកសារ %s: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\94á\9e\93á\9f\92á\9e\90á\9f\82á\9e\98â\80\8bá\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84 '%s'"
+msgid "Failed to remove public key %s: %s"
+msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\99á\9e\80â\80\8bá\9e\9fá\9f\84â\80\8bá\9e\9fá\9e¶á\9e\92á\9e¶á\9e\9aá\9e\8eá\9f\88 %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "ចាំបាច់​កិច្ចសន្យា​អតិថិជន​បន្ថែម"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "បាន​ប្ដូរ​ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ​សម្រាប់ %s ៖"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "លទ្ធផល rpm បន្ថែម"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm បានរ​ក្សា​ទុក %s ជា %s ប៉ុន្តែ​វា​អាច​កំណត់​ភាព​ខុស​គ្នា"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "អាដអ៊ីហ្គ៉េ"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm បាន​រក្សាទុក %s ជា %s ។\n"
+"នេះ​ជា​បន្ទាត់ ២៥ ជួរ​ដំបូង​ខុសគ្នា៖\n"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "អាហ្វារ"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm បាន​បង្កើត %s ជា %s ប៉ុន្តែ​វា​មិន​អាច​កំណត់​ភាព​ខុស​គ្នា"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm បាន​កំណត់ %s ជា %s ។\n"
+"នេះ​ជា​បន្ទាត់ ២៥ ជួរ​ដំបូង​ខុសគ្នា ៖​\n"
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "លទ្ធផល rpm បន្ថែម"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "បាន​បង្កើត​ព័ត៌មាន​បម្រុង %s"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "រក​មិនឃើញ​ឯកសារ​ហត្ថលេខា %s ទេ"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "រក​មិនឃើញ​ឯកសារ​ហត្ថលេខា %s ទេ"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "រក​មិនឃើញ​ឯកសារ​ហត្ថលេខា %s ទេ"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "អំពើ​ខាងក្រោម​នឹង​ត្រូវបាន​ធ្វើ​រួច ៖"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "បាន​បរាជ័យ​ក្នុង​ការ​អាន​ថត '%s'"
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "ឈ្មោះ​ក្លែងក្លាយ​ឃ្លាំង​មិន​អាច​ចាប់​ផ្តើម​ជា​មួយ​ចំណុច (.)បាន​ទេ ។"
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "ឈ្មោះ​ក្លែងក្លាយ​សេវាមិន​អាច​​ចាប់​ផ្តើម​​ជាមួយចំណុច ​(.)​បាន​ទេ ។"
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "មិន​អាច​បើក​ឯកសារ '%s' ដើម្បី​សរសេរ​បានទេ ។"
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "រក​មិន​ឃើញ​ទិន្នន័យ​មេតា​ដែល​ត្រឹមត្រូវ​នៅ URL ដែល​បាន​បញ្ជាក់"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "មិន​អាច​បង្កើត​ %s"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "មិន​អាច​បង្កើត​ថត​ឃ្លាំង​សម្ងាត់​របស់​ទិន្នន័យ​មេតា ។"
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "កំពុង​ស្ថាបនា​ឃ្លាំង '%s'"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "មិន​អាច​បង្កើត​ឃ្លាំង​សម្ងាត់​នៅ​ត្រង់​ %s - គ្មាន​សិទ្ធិ​ក្នុង​ការ​សរសេរ ។"
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ឃ្លាំង​ជា​ឃ្លាំង​សម្ងាត់ (%d) ។"
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "ប្រភេទ​ឃ្លាំង​ដែល​មិន​បាន​ដោះស្រាយ"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "កំហុស​ក្នុង​ការ​ព្យាយាម​អាន​ពី '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "មាន​កំហុស​ដែល​មិន​ស្គាល់​ក្នុង​ការ​អាន​ពី '%s'"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "កំពុង​បន្ថែម​ឃ្លាំង '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "ឈ្មោះ​ឯកសារ​ឃ្លាំង​មិន​ត្រឹមត្រូវ​នៅ '%s'"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "យក​ឃ្លាំង '%s' ចេញ"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "មិន​អាច​ដោះស្រាយ​កន្លែង​ដែល​ឃ្លាំង​ត្រូវ​បាន​ទុក​បានទេ ។"
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "មិនអាច​លុប '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "មិនអាច​​ដោះស្រាយ​កន្លែង​ដែល​សេវា​ត្រូវ​បានផ្ទុក​បានទេ ។"
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "គ្រោងការណ៍ Url មិន​អនុញ្ញាត %s ទេ"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "សមាសភាគ %s មិន​ត្រឹមត្រូវ '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "សមាសភាគ %s មិន​ត្រឹមត្រូវ"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "មិនបាន​គាំទ្រ​ការញែក​ខ្សែអក្សរ​សំណួរ​សម្រាប់ URL នេះ​ឡើយ"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "គ្រោងការណ៍ Url មិនមែន​ជា​សមាសភាគ​ដែល​បាន​ទាមទារ​ឡើយ"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "គ្រោងការណ៍ Url មិន​ត្រឹមត្រូវ '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "គ្រោងការណ៍ Url មិន​អនុញ្ញាត​ឈ្មោះ​អ្នកប្រើ​ឡើយ"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "គ្រោងការណ៍ Url មិន​អនុញ្ញាត​ពាក្យ​សម្ងាត់​ឡើយ"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "គ្រោងការណ៍ Url ទាមទារ​សមាសភាគ​របស់​ម៉ាស៊ីន"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "គ្រោងការណ៍ Url មិនអនុញ្ញាត​សមាសភាគ​របស់​ម៉ាស៊ីន​ឡើយ"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "សមាសភាគ​របស់​ម៉ាស៊ីន​មិន​ត្រឹមត្រូវ '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "គ្រោងការណ៍ Url មិន​អនុញ្ញាត​ច្រក​ឡើយ"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "សមាសភាគ​ច្រក​មិន​ត្រឹមត្រូវ '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "គ្រោងការណ៍ Url ទាមទារ​ឈ្មោះ​ផ្លូវ"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "មិនបាន​អនុញ្ញាត​ផ្លូវ​ដែល​ទាក់ទង​ទេ ប្រសិន​បើ​មាន​អាជ្ញាធរ"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "ខ្សែអក្សរ​ដែល​បាន​អ៊ិនកូដ មាន NUL បៃ"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "តួអក្សរ​បំបែក​សម្រាប់​ពុះ​អារេ​ប៉ារ៉ាម៉ែត្រ មិន​ត្រឹមត្រូវ"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "តួអក្សរ​បំបែក​សម្រាប់​ពុះ​ផែនទី​ប៉ារ៉ាម៉ែត្រ មិន​ត្រឹមត្រូវ"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "តួអក្សរ​បំបែក​សម្រាប់​ត​អារេ​ប៉ារ៉ាម៉ែត្រ មិន​ត្រឹមត្រូវ"
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "មិនអាច​បើក pty (%s) ។"
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "មិនអាច​បើក​បំពង់ (%s) ។"
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "មិនអាច chroot ទៅ '%s' (%s) បានទេ ។"
+
+#: zypp/ExternalProgram.cc:360
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "មិនអាច chdir ទៅ '/' ក្នុង chroot (%s) បានទេ ។"
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "មិនអាច chroot ទៅ '%s' (%s) បានទេ ។"
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "មិនអាច​ប្រតិបត្តិ '%s' (%s) ។"
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "មិនអាច​បែងចែក (%s) បានទេ ។"
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "ពាក្យ​បញ្ជា​បាន​ចេញ​ដោយ​ស្ថានភាព %d ។"
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "ពាក្យ​បញ្ជា​ត្រូវ​បាន​ផ្ដាច់​ដោយ​សញ្ញា %d (%s) ។"
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "ពាក្យ​បញ្ជា​បាន​ចេញ ដោយ​មាន​កំហុស​មិន​ស្គាល់ ។"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(មិន​ផុត​កំណត់)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(បាន​ផុត​កំណត់)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(ផុត​កំណត់​ក្នុង​រយៈពេល ២៤ ម៉ោង)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(ផុត​កំណត់​ក្នុង​រយៈពេល ២៤ ម៉ោង)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "មិន​ស្គាល់"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "មិន​បានគាំទ្រ"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "កម្រិត ១"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "កម្រិត ២"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "កម្រិត ៣"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "ចាំបាច់​កិច្ចសន្យា​អតិថិជន​បន្ថែម"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "មិន​ត្រឹមត្រូវ"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "កម្រិត​គាំទ្រ​មិន​ត្រូវ​បាន​បញ្ជាក់"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "ក្រុមហ៊ុន​លក់​មិន​បាន​ផ្ដល់​កា​រគាំទ្រ​ទេ ។"
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"ការ​កំណត់​បញ្ហា ដែល​មាន​ន័យ​ថា​ការគាំទ្រ​ផ្នែក​បច្ចេកទេស​បាន​រចនា​ដើម្បី​ផ្ដល់​ព័ត៌មាន​​ដែល​ឆប​គ្នា ជំនួយ​ការ​"
+"ដំឡើង ការ​ប្រើការ​គាំទ្រ និង​ការ​ថែទាំ​ដែល​កំពុង​បន្ត និង​កា​រដោះស្រាយ​បញ្ហា​មូលដ្ឋាន ។ កា​រគាំទ្រ​កម្រិត​មួយ​"
+"មិនមានបំណង​កែ​កំហុស​ផលិតផល​ឥតខ្ចោះ​ទេ ។"
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"ការ​បំបែក​បញ្ហា ដែល​មាន​ន័យ​ថា​ការ​គាំទ្រ​ផ្នែក​បច្ចេកទេស​បាន​រចនា​ដើម្បី​ស្ទួន​បញ្ហា​របស់​អតិថិជន បំបែកបញ្ហា​ "
+"និង​ផ្ដល់​ដំណោះស្រាយ​សម្រាប់​បញ្ហា​មិន​បាន​ដោះស្រាយ​ដោយ​ការគាំទ្រ​កម្រិត​ពីរ ។"
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"ការ​ដោះស្រាយ​បញ្ហា ដែល​មានន័យ​ថា ការ​គាំទ្រ​ផ្នែក​បច្ចេកទេស​បាន​រចនា​ដើម្បី​ដោះស្រាយ​បញ្ហា​ស្មុគស្មាញ "
+"ដោយ​ភ្ជាប់​វិស្វរកម្ម​នៅ​ក្នុង​ដំណោះស្រាយ​របស់​ផលិតផល​ដែល​ត្រូ​វបាន​បញ្ជាក់​ដោយ​ការ​គាំទ្រ​កម្រិត​ពីរ ។"
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "កិច្ចសន្យា​អតិថិជន​បន្ថែម​ចាំបាច់​សម្រាប់​ទទួល​ជំនួយ ។"
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "មិន​ស្គាល់​ជម្រើស​គាំទ្រ ។ មិនមាន​សេចក្ដីអធិប្បាយ"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "ប្រទេស​ដែល​មិន​ស្គាល់ ៖ "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "គ្មាន​កូដ"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "អង់ដូរ៉ា"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "អារ៉ាប់​រួម"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "អាហ្គានីស្ថាន"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "អង់ទីហ្គា និង​បារប៊ុយដា"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "អង់ហ្គីឡា"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "អាល់បានី"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "អារមេនី"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "ហូល្លង់ អង់ទីល"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "អង់ហ្គោឡា"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "អង់តាកទិក"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "អាហ្សង់ទីន"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "សាម៉ូអា ​អាមេរិក"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "អូទ្រីស"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "អូស្ត្រាលី"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "អារូបា"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "កោះ​អាឡង់"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "អាហ្ស៊ែរបែហ្សង់"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "បូស្ន៊ី និង​​ហឺហ្ស៊េហ្គោវីណា"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "បារបាដូស"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "បង់ក្លាដេស"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "ប៊ែលហ្ស៊ិក"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "ប៊ូរគីណាហ្វាសូ"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "ប៊ុលហ្គារី"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "បារ៉ែន"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "ប៊ូរុនឌី"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "បេណាំង"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "ប៊េរមូដា"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "ប៊្រុយណេ ដារូសាឡាម"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "បូលីវី"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "ប្រេស៊ីល"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "បាហាម៉ាស"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "ប៊ូតាន"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "កោះ​ប៊ូវ៉េត"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "បុតស្វាណា"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "បេឡារុស្ស"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "បេលីហ្ស"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "កាណាដា"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "កោះ Cocos (Keeling)"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "កុងហ្គោ"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "សាធារណរដ្ឋ​អាហ្វ្រិក​កណ្ដាល"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "ស្វ៊ីស"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "កូឌីហ្វ័រ"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "កោះ​កូក"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "ឈីលី"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "កាមេរ៉ូន"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "ចិន"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "កូឡុំប៊ី"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "កូស្តារីកា"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "គុយបា"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "កាបវែរ"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "កោះ​គ្រីស្តម៉ាស"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "ស៊ីពរ៍"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "សាធារណ​រដ្ឋ​ឆេក"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "អាល្លឺម៉ង់"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "ហ្ស៊ីបូទី"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "ដាណឺម៉ាក"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "ដូមីនីកា"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "សាធារណរដ្ឋ​ដូមីនីកែន"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "អាល់ហ្សេរី"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "អេក្វាឌ័រ"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "អេស្តូនី"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "អេហ្ស៊ីប"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "សាហារ៉ា​ខាង​លិច"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "អេរីទ្រា"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "អេស៉្បាញ"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "អេត្យូពី"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "ហ្វាំងឡង់"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "ហ្វីហ្ស៊ី"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "កោះ​ហ្វ៉កឡង់ (ម៉ាល់វីណា)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "រដ្ឋ​សហព័ន្ធ​មីក្រូណេស៊ី"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "កោះ​ហ្វារ៉ូ"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "បារាំង"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "ប្រទេស​ចំណុះ​បារាំង"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "ហ្គាបុង"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "ចក្រ​ភព​អង់គ្លេស"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "ហ្គ្រីណាដា"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "ហ្សកហ្ស៊ី"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "ហ្គូអ៊ីយ៉ាណា បារាំង"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "ហ្គើនស៊ី"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "ហ្គាណា"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "ហ្គីប្រាល់តា"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "ហ្គ្រីនលែន"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "ហ្គាំប៊ី"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "ហ្គីណេ"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "ហ្គូអាដឺលូប៉េ"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "ហ្គីណេ​អេក្វាទ័រ"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "ក្រិក"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "កោះ​ហ្សកហ្ស៊ី​ខាងត្បូង និង​ស៊េនវិច​ខាងត្បូង"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "ហ្គាតេម៉ាឡា"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "ហ្គាម"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "ហ្គីណេប៊ីសៅ"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "ហ្គីយ៉ាណា"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "ហុងកុង"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "កោះ​ហ៊ើដ និង​កោះ​ម៉ាកដូណាល់"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "ហុងឌូរ៉ាស់"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "ក្រូអាត"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "ហៃទី"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "ហុងគ្រី"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "ឥណ្ឌូនេស៊ី"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "អៀរឡង់"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "អ៊ីស្រាអែល"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Isle of Man"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "ឥណ្ឌា"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "អាណាចក្រ​ចក្រភព​អង់គ្លេស​នៅ​មហាសមុទ្រ​ឥណ្ឌា"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "អ៊ីរ៉ាក់"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "អ៊ីរ៉ង់"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "អ៊ីស្លង់"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "អ៊ីតាលី"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "ឈឺស៊ី"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "ចា​ម៉ៃកា"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "ហ្ស៊កដង់"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "ជប៉ុន"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "កេនយ៉ា"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "គៀរហ្គីស្តង់"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "កម្ពុជា"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "គិរិបាទី"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "កុំម៉ូរ៉ូស"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "សង់ឃីត និង​នេវីស"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "កូរ៉េ​ខាង​ជើង"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "កូរ៉េ​ខាង​ត្បូង"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "គុយ​វ៉ែត"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "កោះ​កៃម៉ាន"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "កាហ្សាក់ស្តង់"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "សាធារណរដ្ឋ​ប្រជាធិបតេយ្យ​ប្រជាមានិត​ឡាវ"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "លីបង់"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "សង់លូស៊ីយ៉ា"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "លិចទេនស្តែន"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "ស្រីលង្កា"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "លីបេរីយ៉ា"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "ឡេសូតូ"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "លីទុយអានី"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "លុចហ្សំបួរ"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "ឡាតវីយ៉ា"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "លីប៊ី"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "ម៉ារ៉ុក"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "ម៉ូណាកូ"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "ម៉ុលដូវ៉ា"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "​ម៉ុងតេណេហ្ក្រូ"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "សាន់ម៉ាទីន"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "ម៉ាដាហ្គាស្ការ"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "កោះ​ម៉ាស្យល"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "ម៉ាសេដូនី"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "ម៉ាលី"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "ភូមា"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "ម៉ុងហ្គោលី"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "ម៉ាកាវ"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "កោះ​ម៉ារៀណា​ភាគ​ខាង​ជើង"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "ម៉ារទីនីគ"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "ម៉ូរីតានី"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "á\9e¢á\9e¶á\9e á\9f\92á\9e\82á\9e¶á\9e\93á\9e¸á\9e\9fá\9f\92á\9e\90á\9e¶á\9e\93"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "á\9e\98á\9f\89á\9e»á\9e\84á\9e\9fá\9f\81á\9e\9aá\9f\89á\9e"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "á\9e¢á\9e¶á\9e á\9f\92á\9e\9cá\9f\92á\9e\9aá\9e¸á\9e á\9f\8aá\9e¸á\9e\9bá\9e¸"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "á\9e\98á\9f\89á\9e¶á\9e\9bá\9f\8bá\9e\8fá\9e"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "á\9e¢á\9e¶á\9e á\9f\92á\9e\9cá\9f\92á\9e\9aá\9e¸á\9e\80á\9e¶á\9e¢á\9e¶á\9e\93"
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "á\9e\98á\9f\89á\9e¼á\9e\9aá\9e¸á\9e\91á\9e»á\9e\9f"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "á\9e¢á\9e¶á\9e á\9f\92á\9e\9aá\9f\89á\9e¼-á\9e¢á\9e¶á\9e\9fá\9f\8aá\9e¸á\9e\99á\9f\89á\9e¶á\9e\91á\9e·á\9e\80 (á\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84â\80\8bá\9e\91á\9f\80á\9e\8f)"
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "á\9e\98á\9f\89á\9e¶á\9e\9bá\9f\8bá\9e\8cá\9e¸á\9e\9c"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "á\9e¢á\9e¶á\9e\99á\9e\93á\9e»á\9e\99"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "á\9e\98á\9f\89á\9e¶á\9e¡á\9e¶á\9e\9cá\9e¸"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "á\9e¢á\9e¶á\9e\81á\9e¶á\9e\93á\9f\8b"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "á\9e\98á\9f\89á\9e·á\9e\85á\9e\9fá\9f\8aá\9e·á\9e\80"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "á\9e¢á\9e¶á\9e\80á\9f\8bá\9e\80á\9e¶á\9e\99á\9f\89á\9e\84á\9f\8b"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "á\9e\98á\9f\89á\9e¶á\9e¡á\9f\81á\9e\9fá\9f\8aá\9e¸"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "á\9e\80á\9f\84á\9f\87â\80\8bá\9e¢á\9e¶á\9e¡á\9e\84á\9f\8b"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "á\9e\98á\9f\89á\9e¼á\9e á\9f\92á\9e\9fá\9e¶á\9f\86á\9e\94á\9f\8aá\9e·á\9e\80"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "á\9e¢á\9e¶á\9e\9bá\9f\8bá\9e\94á\9e¶á\9e\93ី"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "á\9e\8eá\9e¶á\9e\98á\9e¸á\9e\94á\9f\8aី"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "á\9e¢á\9e¶á\9e\9bá\9f\8bá\9e\94á\9eនី"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "á\9e\89á\9e¼á\9e\9c á\9e\80á\9e¶á\9e\9bá\9f\81á\9e\8aá\9e¼នី"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "á\9e¢á\9e¶á\9e¡á\9f\81á\9e¢á\9f\8aá\9e»á\9e\99"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "á\9e\93á\9e¸á\9e á\9f\92á\9e\9fá\9f\81á\9e\9a"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "á\9e¢á\9e¶á\9e\9bá\9f\8bá\9e á\9f\92á\9e\9fá\9f\81á\9e\9aá\9e¸"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "á\9e\80á\9f\84á\9f\87â\80\8bá\9e\8eá\9e\9aá\9e á\9f\92á\9e\9cá\9e\80"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "ភាសា​អាល់កុងហ្គូអ៊ីយ៉ាន"
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "នីហ្សេរីយ៉ា"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "នីការ៉ាហ្គ័រ"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "ហូល្លង់"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "ន័រវែស"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "នេប៉ាល់"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "ណូរុ"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "នីវ"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "ញូវ​ហ្សេលែន"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "អូម៉ង់"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "ប៉ាណាម៉ា"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "ប៉េរូ"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "ប៉ូលីនេស៊ី​បារាំង"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "ប៉ាពូញូវហ្គីណេ"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "ហ្វីលីពីន"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "ប៉ាគីស្ថាន"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "ប៉ូឡូញ"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "សង់​ព្យែរ និង​មីគុយអេឡុង"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "ពីតខាយរិន"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "ព័រតូរីកូ"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "ប៉ាឡេស្ទីន"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "ព័រទុយហ្គាល់"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "ប៉ាឡូ"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "ប៉ារ៉ាហ្គាយ"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "កាតារ"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "រេអុយញ៉ុង"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "រ៉ូម៉ានី"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "សែប៊ី"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "សហព័ន្ធ​រុស្ស៊ី"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "រវ៉ាន់ដា"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "អារ៉ាប៊ីសាអ៊ូឌីត"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "កោះ​សូឡូម៉ូន"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "á\9e¢á\9e¶á\9e\9bá\9f\8bá\9e\8fá\9e¶á\9e¢á\9f\8aá\9e·á\9e\80 (á\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84â\80\8bá\9e\91á\9f\80á\9e\8f)"
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "á\9e\9fá\9e¸á\9e\9fá\9f\92á\9e á\9f\82á\9e\9b"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "á\9e\9fá\9e¶á\9e\98á\9f\89á\9e¼á\9e¢á\9e¶ â\80\8bá\9e¢á\9e¶á\9e\98á\9f\81á\9e\9aá\9e·á\9e\80"
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "á\9e\9fá\9f\8aá\9e¼á\9e\8aá\9e\84á\9f\8b"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "á\9e¢á\9e¶á\9e\98á\9e á\9e¶á\9e\9aá\9e¸"
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "á\9e\9fá\9f\8aá\9e»á\9e\99á\9e¢á\9f\82á\9e\8f"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "កិច្ចសន្យា​អតិថិជន​បន្ថែម​ចាំបាច់​សម្រាប់​ទទួល​ជំនួយ ។"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "សឹង្ហ​បុរី"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "អង់ដូរ៉ា"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "សង់​ហេឡេណា"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "á\9e¢á\9e\84á\9f\8bá\9e á\9f\92á\9e\82á\9f\84á\9e¡á\9e"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "á\9e\9fá\9f\92á\9e\9bá\9e¼á\9e\9cá\9f\89á\9e¶á\9e\93á\9e¸"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "á\9e¢á\9e\84á\9f\8bá\9e á\9f\92á\9e\82á\9e¸á\9e¡á\9e"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "á\9e\9fá\9f\92á\9e\9cá\9e¶á\9e\9bá\9f\8bá\9e\94á\9e¶á\9e\8f á\9e\93á\9e·á\9e\84â\80\8bá\9e á\9f\92á\9e\9fá\9e\84á\9f\8bá\9e\98á\9f\89á\9e¶á\9e\99á\9f\81á\9e\93"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "á\9e¢á\9e\84á\9f\8bá\9e\8fá\9e¶á\9e\80á\9e\91á\9e·á\9e\80"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "á\9e\9fá\9f\92á\9e\9bá\9e¼á\9e\9cá\9f\89á\9e¶á\9e\82á\9e¸"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "á\9e¢á\9e\84á\9f\8bá\9e\91á\9e¸á\9e á\9f\92á\9e\82á\9e¶ á\9e\93á\9e·á\9e\84â\80\8bá\9e\94á\9e¶á\9e\9aá\9e\94á\9f\8aá\9e»á\9e\99á\9e\8aá\9e"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "á\9e\9fá\9f\81á\9e\9aá\9f\89á\9e¶á\9e¡á\9f\81á\9e¢á\9e¼á\9e\93"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e¢á\9e¶á\9e\94á\9f\89á\9e¶á\9e\86á\9f\81"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "á\9e\9fá\9e¶á\9e\93á\9f\8bá\9e\98á\9f\89á\9e¶á\9e\9aá\9e¸á\9e\8eá\9e¼"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e\94់"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "á\9e\9fá\9f\81á\9e\8eá\9f\81á\9e á\9f\92á\9e\82á\9e¶á\9e\9b់"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e á\9f\92á\9e\82á\9f\84á\9e\93"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "á\9e\9fá\9e¼á\9e\98á\9f\89á\9e¶á\9e\9bá\9e¸"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e\98á\9f\89á\9e¶á\9e¢á\9f\8aá\9e·á\9e\80"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "á\9e\9fá\9f\8aá\9e¼á\9e\9aá\9e¸á\9e\8eá\9e¶á\9e\98á\9e¸"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e\94á\9f\89á\9e¶á\9e¢á\9e¼"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "á\9e\9fá\9f\85á\9e\8fá\9e¼á\9e\98 á\9e\93á\9e·á\9e\84â\80\8bá\9e\96á\9f\92á\9e\9aá\9e¸á\9e\93á\9e\9fá\9f\8aá\9e¸á\9e\96"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e¢á\9f\8aá\9e»á\9e\99á\9e\80á\9e¶á\9e\93á\9e¸á\9e\99á\9f\89á\9e¶á\9e\93"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "á\9e¢á\9f\82á\9e\9bá\9e\9fá\9e¶á\9e\9bá\9f\8bá\9e\9cá\9f\89á\9e¶á\9e\8cá\9f\90á\9e\9a"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e\9cá\9f\89á\9e¶á\9e\80á\9f\8b"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "á\9e\9fá\9f\8aá\9e¸á\9e\9aá\9e¸"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "á\9e¢á\9e¶á\9e á\9f\92á\9e\9fá\9e\84á\9f\8bá\9e\91á\9e¸á\9e\93"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "á\9e\9fá\9f\92á\9e\9cá\9e¶á\9e á\9f\92á\9e\9fá\9f\8aá\9e¸á\9e¡á\9e\84á\9f\8b"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "á\9e¢á\9e¶á\9e\9aá\9e\98á\9f\81á\9e\93á\9e¸"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "á\9e\80á\9f\84á\9f\87â\80\8bá\9e\91á\9e½á\9e\80 á\9e\93á\9e·á\9e\84â\80\8bá\9e\80á\9f\83á\9e\80á\9e¼á\9e\9f"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "​អារមេនី"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "ឆាដ"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "á\9e\9fá\9e·á\9e\94á\9f\92á\9e\94á\9e\93á\9e·á\9e\98á\9f\92á\9e\98á\9e·á\9e\8f (á\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84â\80\8bá\9e\91á\9f\80á\9e\8f)"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "á\9e¢á\9e¶á\9e\8eá\9e¶á\9e\85á\9e\80á\9f\92á\9e\9aâ\80\8bá\9e\81á\9e¶á\9e\84â\80\8bá\9e\8fá\9f\92á\9e\94á\9e¼á\9e\84â\80\8bá\9e\9aá\9e\94á\9e\9fá\9f\8bâ\80\8b á\9e\94á\9e¶á\9e\9aá\9e¶á\9f\86á\9e\84"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "á\9e¢á\9e¶á\9e\9aá\9e¼á\9e\94á\9e"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "á\9e\8fá\9e¼á\9e á\9f\92á\9e\82á\9f\84"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "á\9e¢á\9e¶á\9e\9fá\9e¶á\9e\98á\9e¸á\9e\9f"
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "á\9e\90á\9f\83"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\8fá\9e»á\9e\99á\9e\9aá\9e¸á\9e\99á\9f\89á\9e»á\9e\84"
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "á\9e\8fá\9e¶á\9e á\9f\92á\9e\9fá\9f\8aá\9e¸á\9e\82á\9e¸á\9e\9fá\9f\92á\9e\8fá\9e\84á\9f\8b"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "ភាសា​អាតាប៉ាសាន"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "តូកេឡាអ៊ូ"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "á\9e¢á\9e¼á\9e\9fá\9f\92á\9e\8fá\9f\92á\9e\9aá\9e¶á\9e\9bá\9e¸"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "á\9e\91á\9e½á\9e\82á\9e\98á\9f\81á\9e\93á\9e¸á\9e\9fá\9f\92á\9e\8fá\9e\84á\9f\8b"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e¢á\9e¼á\9e\9fá\9f\92á\9e\8fá\9f\92á\9e\9aá\9e¶á\9e\9bី"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "á\9e\91á\9e»á\9e\99á\9e\8eá\9f\81á\9e\9fá\9f\8aី"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "á\9e¢á\9e¼á\9e\91á\9f\92á\9e\9aá\9e¸á\9e\9f"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "á\9e\8fá\9e»á\9e\84á\9e á\9f\92á\9e\82á\9e"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "á\9e¢á\9e¼á\9e\9fá\9f\92á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\8eá\9f\81á\9e\9fá\9f\8aá\9e¸ (á\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84â\80\8bá\9e\91á\9f\80á\9e\8f)"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "á\9e\91á\9e¸á\9e\98á\9f\90á\9e\9aâ\80\8bá\9e\81á\9e¶á\9e\84â\80\8bá\9e\80á\9e¾á\9e\8f"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "បាន​ទាមទារ​ការ​ផ្ទៀងផ្ទាត់​ភាព​ត្រឹមត្រូវ​សម្រាប់ '%s'"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "ទួរគី"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "á\9e¢á\9e¶á\9e\9cá\9e¶á\9e\9aá\9e¸á\9e\80"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "á\9e\91á\9f\92á\9e\9aá\9e¸á\9e\93á\9e¸á\9e\8aá\9e¶á\9e\8a á\9e\93á\9e·á\9e\84â\80\8bá\9e\8fá\9e¼á\9e\94á\9e¶á\9e á\9f\92á\9e\82á\9f\84"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "អាវែស្តង់"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "ទុយវ៉ាលុយ"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "á\9e¢á\9e¶á\9e\9cá\9f\89á\9e¶á\9e\8cá\9e¸"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "á\9e\8fá\9f\83á\9e\9cá\9f\89á\9e¶á\9e\93á\9f\8b"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "á\9e¢á\9e¸á\9e\98á\9f\89á\9e¶á\9e\9aá\9f\89á\9e"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "á\9e\8fá\9e\84á\9f\8bá\9e á\9f\92á\9e\9fá\9e¶á\9e\93á\9e¸"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "á\9e¢á\9e¶á\9e á\9f\92á\9e\9fá\9f\8aá\9f\82á\9e\9aá\9e\94á\9f\82á\9e á\9f\92á\9e\9fá\9e\84á\9f\8b"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "á\9e¢á\9f\8aá\9e»á\9e\99á\9e\80á\9f\92á\9e\9aá\9f\82á\9e\93"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "á\9e¢á\9e¶á\9e á\9f\92á\9e\9fá\9f\8aá\9f\82á\9e\9aá\9e\94á\9f\82á\9e á\9f\92á\9e\9fá\9e\84á\9f\8b"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "á\9e¢á\9f\8aá\9e¼á\9e á\9f\92á\9e\82á\9e\84á\9f\8bá\9e\8aá\9e"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\81á\9e¼á\9e\85â\80\8bá\9e\88á\9f\92á\9e\98á\9f\84á\9f\87 á\9f\96 %s"
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "á\9e\80á\9f\84á\9f\87â\80\8bá\9e\86á\9f\92á\9e\84á\9e¶á\9e\99á\9f\97â\80\8bá\9e\9aá\9e\94á\9e\9fá\9f\8bâ\80\8bá\9e\9fá\9e á\9e\9aá\9e\8aá\9f\92á\9e\8bâ\80\8bá\9e¢á\9e¶á\9e\98á\9f\81á\9e\9aá\9e·á\9e\80"
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "ចំណុច​ភ្ជាប់​ឧបករណ៍​ផ្ទុក​មិនត្រឹមត្រូវ"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "សហរដ្ឋអាមេរិក"
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "á\9e\94á\9e¶á\9e á\9e¶á\9e\98á\9f\89á\9e¶á\9e\9f"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "á\9e¢á\9f\8aá\9e»á\9e\99á\9e\9aá\9f\89á\9e¶á\9e á\9f\92á\9e\82á\9e¶á\9e\99"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "á\9e\94á\9e¶á\9e\9aá\9f\89á\9f\82á\9e\93"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "á\9e¢á\9f\8aá\9e¼á\9e á\9f\92á\9e\9fá\9e\94á\9f\81á\9e\82á\9e¸á\9e\9fá\9f\92á\9e\8fá\9e\84á\9f\8b"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "á\9e\94á\9e¶á\9e\9bá\9e¸á\9e\8eá\9e¸á\9e\9f"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "á\9e á\9e¼á\9e\9bá\9e¸á\9e\9fá\9f\8aá\9e¸ (á\9e\9aá\9e\8aá\9f\92á\9e\8bâ\80\8bá\9e\94á\9e¼á\9e\9aá\9e¸â\80\8bá\9e\9cá\9f\89á\9e¶á\9e\91á\9e¸á\9e\80á\9e\84á\9f\8b)"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "á\9e\94á\9e¶á\9e\9bá\9f\8bá\9e\91á\9e·á\9e\80 (á\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84â\80\8bá\9e\91á\9f\80á\9e\8f)"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "á\9e\9fá\9e\84á\9f\8bá\9e\9cá\9e¶á\9f\86á\9e\84á\9e\9fá\9e\84á\9f\8b á\9e\93á\9e·á\9e\84â\80\8bá\9e á\9f\92á\9e\82á\9f\92á\9e\9aá\9e¸á\9e\8eá\9e¶á\9e\8cá\9e¸á\9e\93"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "á\9e\94á\9e¶á\9e\9bá\9e¼á\9e\88á\9e·"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "á\9e\9cá\9f\81á\9e\8eá\9f\81á\9e á\9f\8aá\9f\92á\9e\9fá\9e»á\9e\99á\9e¢á\9f\81á\9e¡á\9e"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "á\9e\94á\9e¶á\9e\98á\9f\92á\9e\94á\9e¶á\9e\9aá\9e"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "á\9e\80á\9f\84á\9f\87â\80\8bá\9e\9cá\9eºá\9e\87á\9e¸á\9e\93 á\9e¢á\9e\84á\9f\8bá\9e\82á\9f\92á\9e\9bá\9f\81á\9e\9f"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e\94á\9e¶á\9e\98á\9e¸á\9e¡á\9f\81á\9e\80á\9f\81"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "á\9e\80á\9f\84á\9f\87â\80\8bá\9e\9cá\9eºá\9e\87á\9e¸á\9e\93 á\9e¢á\9e¶á\9e\98á\9f\81á\9e\9aá\9e·á\9e\80"
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "á\9e\94á\9e\84á\9f\8bá\9e\8aá\9e"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "á\9e\9cá\9f\80á\9e\8fá\9e\8eá\9e¶á\9e\98"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "á\9e\94á\9e\84á\9f\8bá\9e\80á\9f\92á\9e\9bá\9e¶á\9e\8aá\9f\81á\9e\9f"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "á\9e\9cá\9f\89á\9e¶á\9e\93á\9e»á\9e\99á\9e¢á\9e¶á\9e\91á\9e»á\9e\99"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "á\9e\94á\9e\84á\9f\8bá\9e\91á\9e»á\9e\99 (á\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84â\80\8bá\9e\91á\9f\80á\9e\8f)"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "á\9e\9cá\9f\89á\9e¶á\9e\9bá\9e¸á\9e\9f á\9e\93á\9e·á\9e\84â\80\8bá\9e á\9f\8aá\9f\92á\9e\9cá\9e¼â\80\8bá\9e\91á\9e»á\9e\99á\9e\8eá\9e"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "á\9e\94á\9e¶á\9e\9aá\9e\94á\9e¶á\9e\8aá\9e¼á\9e\9f"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "á\9e\9fá\9e¶á\9e\98á\9f\89á\9e¼á\9e¢á\9e"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "á\9e\94á\9e¶á\9e\9fá\9e"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "á\9e\99á\9f\81á\9e\98á\9f\82á\9e\93"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "á\9e\94á\9e¶á\9e\9fá\9e\82á\9f\80á\9e\9a"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "á\9e\98á\9f\89á\9e¶á\9e\99á\9e»á\9e\8f"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "​​បាស្កេ"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "អាហ្វ្រិក​ខាង​ត្បូង"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "á\9e\94á\9e¶á\9e\8fá\9e¶á\9e\80á\9f\8b (á\9e¥á\9e\8eá\9f\92á\9e\8cá\9e¼á\9e\93á\9f\81á\9e\9fá\9f\8aá\9e¸)"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "á\9e á\9f\92á\9e\9fá\9e¶á\9f\86á\9e\94á\9f\8aá\9e¸"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "á\9e\94á\9f\81á\9e\85á\9e"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "á\9e á\9f\92á\9e\9fá\9f\8aá\9e¸á\9e\98á\9e\94á\9e¶á\9e\9cá\9f\89á\9f\81"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "បេឡារុស្ស"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "មិន​ស្គាល់​ភាសា ៖ "
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "á\9e\94á\9f\81á\9e¡á\9e¶á\9e\9aá\9e»á\9e\9fá\9f\92á\9e\9f"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "á\9e¢á\9e¶á\9e á\9f\92á\9e\9cá\9e¶á\9e\9a"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "á\9e\94á\9f\8aá\9f\82á\9e\9bá\9e á\9f\92á\9e\9fá\9f\8aá\9e·á\9e\80"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "á\9e¢á\9e¶á\9e\94á\9f\8bâ\80\8bá\9e\81á\9e¶á\9e á\9f\8aá\9f\92á\9e\9fá\9e¶á\9e\93"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "á\9e\94á\9f\81á\9e\9bá\9e¸á\9e á\9f\92ស"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "á\9e¢á\9e¶á\9e\88á\9e·á\9e\8eá\9e·ស"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "á\9e\94á\9f\81á\9e\98á\9e\94á\9e"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "á\9e¢á\9e¶á\9e\80á\9e¼á\9e\9bá\9e¸"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "​បេន្កាលី"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "អាដង់ម៉េ"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "á\9e\94á\9f\81á\9e\8eá\9e¶á\9f\86á\9e\84"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "á\9e¢á\9e¶á\9e\8aá\9e¢á\9f\8aá\9e¸á\9e á\9f\92á\9e\82á\9f\89á\9f\81"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "á\9e\94á\9eºá\9e\94á\9eº (ផ្សេង​ទៀត)"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "á\9e¢á\9e¶á\9e á\9f\92á\9e\9aá\9f\89á\9e¼-á\9e¢á\9e¶á\9e\9fá\9f\8aá\9e¸á\9e\99á\9f\89á\9e¶á\9e\91á\9e·á\9e\80 (ផ្សេង​ទៀត)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "á\9e\94á\9f\8aá\9f\81á\9e\9aá\9e\98á\9e¼á\9e\8aá\9e"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "á\9e¢á\9e¶á\9e á\9f\92á\9e\9cá\9f\92á\9e\9aá\9e¸á\9e á\9f\8aá\9e¸á\9e\9bá\9e¸"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "á\9e\94á\9e¼á\9e\87á\9e¼á\9e\9aá\9e¸"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "á\9e¢á\9e¶á\9e á\9f\92á\9e\9cá\9f\92á\9e\9aá\9e¸á\9e\80á\9e¶á\9e¢á\9e¶á\9e\93"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "ប៊ូតាន"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "អាយនុយ"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "អាខាន់"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "á\9e\94á\9e·á\9e á\9e¶á\9e\9a"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "á\9e¢á\9e¶á\9e\80á\9f\8bá\9e\80á\9e¶á\9e\99á\9f\89á\9e\84á\9f\8b"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "á\9e\94á\9f\8aá\9e¸á\9e\80á\9e»á\9e\9b"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "á\9e¢á\9e¶á\9e\9bá\9f\8bá\9e\94á\9e¶á\9e\93á\9e¸"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "á\9e\94á\9f\8aá\9e¸á\9e\93á\9e¸"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "á\9e¢á\9e¶á\9e¡á\9f\81á\9e¢á\9f\8aá\9e»á\9e\99"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "á\9e\94á\9e¸á\9e\9fá\9e¡á\9e¶á\9e\98á\9f\89á\9e"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e¢á\9e¶á\9e\9bá\9f\8bá\9e\80á\9e»á\9e\84á\9e á\9f\92á\9e\82á\9e¼á\9e¢á\9f\8aá\9e¸á\9e\99á\9f\89á\9e¶á\9e\93"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "á\9e\94á\9f\92á\9e\9bá\9e¶á\9f\86ង"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "á\9e¢á\9e¶á\9e\9bá\9f\8bá\9e\8fá\9e¶á\9e\99á\9e\81á\9e¶á\9e\84â\80\8bá\9e\8fá\9f\92á\9e\94á\9e¼ង"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "á\9e\94á\9e¼á\9e\9bá\9e¸á\9e\9cី"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "á\9e¢á\9e¶á\9e\98á\9e á\9e¶á\9e\9aី"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "á\9e\94á\9e¼á\9e\9fá\9f\92á\9e\93á\9f\8aá\9e¸ á\9e\93á\9e·á\9e\84â\80\8bâ\80\8bá\9e á\9eºá\9e á\9f\92á\9e\9fá\9f\8aá\9f\81á\9e á\9f\92á\9e\82á\9f\84á\9e\9cá\9e¸á\9e\8eá\9e"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "á\9e¢á\9e\84á\9f\8bá\9e\82á\9f\92á\9e\9bá\9f\81á\9e\9f á\9e\94á\9e»á\9e\9aá\9e¶á\9e\8e (ca.450-1100)"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "á\9e\94á\9e¼á\9e\9fá\9f\92á\9e\93á\9e¸"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e¢á\9e¶á\9e\94á\9f\89á\9e¶á\9e\86á\9f\81"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "á\9e\94á\9e»á\9e\8fá\9e\9fá\9f\92á\9e\9cá\9e¶á\9e\8eá\9e"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e\94á\9f\8b"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "á\9e\80á\9f\84á\9f\87â\80\8bá\9e\94á\9f\8aá\9e¼á\9e\9cá\9f\89á\9f\81á\9e\8f"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e\98á\9f\89á\9e¶á\9e¢á\9f\8aá\9e·á\9e\80"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "á\9e\94á\9f\92á\9e\9aá\9e"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e á\9f\92á\9e\82á\9f\84á\9e\93"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "ប្រេស៊ីល"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "​អារមេនី"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "á\9e\94á\9f\92á\9e\9aá\9f\81á\9e\8fá\9e»á\9e\84"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e¢á\9f\8aá\9e»á\9e\99á\9e\80á\9e¶á\9e\93á\9e¸á\9e\99á\9f\89á\9e¶á\9e\93"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "á\9e¢á\9e¶á\9e\8eá\9e¶á\9e\85á\9e\80á\9f\92á\9e\9aâ\80\8bá\9e\85á\9e\80á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8bá\9e¢á\9e\84á\9f\8bá\9e\82á\9f\92á\9e\9bá\9f\81á\9e\9fâ\80\8bá\9e\93á\9f\85â\80\8bá\9e\98á\9e á\9e¶á\9e\9fá\9e\98á\9e»á\9e\91á\9f\92á\9e\9aâ\80\8bá\9e¥á\9e\8eá\9f\92á\9e\8cá\9e"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e\94á\9f\89á\9e¶á\9e¢á\9e¼"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "á\9e\80á\9f\84á\9f\87â\80\8bá\9e\9cá\9eºá\9e\87á\9e¸á\9e\93 á\9e¢á\9e\84á\9f\8bá\9e\82á\9f\92á\9e\9bá\9f\81á\9e\9f"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "á\9e\9fá\9e·á\9e\94á\9f\92á\9e\94á\9e\93á\9e·á\9e\98á\9f\92á\9e\98á\9e·á\9e\8f (á\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84â\80\8bá\9e\91á\9f\80á\9e\8f)"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "á\9e\94á\9f\8aá\9f\92á\9e\9aá\9e»á\9e\99á\9e\8eá\9f\81 á\9e\8aá\9e¶á\9e\9aá\9e¼á\9e\9fá\9e¶á\9e¡á\9e¶á\9e\98"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e\9cá\9f\89á\9e¶á\9e\80á\9f\8b"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "á\9e\94á\9f\8aá\9e»á\9e\99á\9e á\9f\92á\9e\82á\9e¸á\9e\8eá\9f\81á\9e\9fá\9f\81"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "á\9e¢á\9e¶á\9e\9fá\9e¶á\9e\98á\9e¸á\9e\9f"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\9fá\9f\92á\9e\90á\9e¶á\9e\94á\9e\93á\9e¶â\80\8bá\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84 '%s'"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\8fá\9e»á\9e\99á\9e\9aá\9e¸á\9e\99á\9f\89á\9e»á\9e\84"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "á\9e\94á\9f\8aá\9e»á\9e\9bá\9e á\9f\92á\9e\82á\9e¶á\9e\9aá\9e¸"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e¢á\9e¶á\9e\8fá\9e¶á\9e\94á\9f\89á\9e¶á\9e\9fá\9e¶á\9e\93"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "​​ប៊ុលហ្ការី"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "ភាសា​អូស្ត្រាលី"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "á\9e\94á\9f\8aá\9e»á\9e\99á\9e\9aá\9e¸á\9e¢á\9e¶á\9e\8f"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "á\9e¢á\9e¶á\9e\9cá\9e¶á\9e\9aá\9e¸á\9e\80"
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "á\9e\94á\9f\8aá\9e¼á\9e\9aá\9e\82á\9e¸á\9e\8eá\9e¶á\9e á\9f\92á\9e\9cá\9e¶á\9e\9fá\9e¼"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "á\9e¢á\9e¶á\9e\9cá\9f\82á\9e\9fá\9f\92á\9e\8fá\9e\84á\9f\8b"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "á\9e\97á\9e¼á\9e\98á\9e"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "á\9e¢á\9e¶á\9e\9cá\9f\89á\9e¶á\9e\8cá\9e¸"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "á\9e\94á\9f\8aá\9e¼á\9e\9aá\9e»á\9e\93á\9e\8cá\9e¸"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "á\9e¢á\9e¸á\9e\98á\9f\89á\9e¶á\9e\9aá\9f\89á\9e"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "á\9e\80á\9e¶á\9e\8aá\9e¼"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "á\9e¢á\9e¶á\9e á\9f\92á\9e\9fá\9f\8aá\9f\82á\9e\9aá\9e\94á\9f\82á\9e á\9f\92á\9e\9fá\9e\84á\9f\8b"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "á\9e\80á\9e\98á\9f\92á\9e\96á\9e»á\9e\87ា"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "á\9e\94á\9e\84á\9f\8bá\9e\8aា"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "á\9e\80á\9e¶á\9e\98á\9f\81á\9e\9aá\9f\89á\9e¼á\9e\93"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e\94á\9e¶á\9e\98á\9e¸á\9e¡á\9f\81á\9e\80á\9f\81"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "មិនអាច​បង្កើត sat-pool បានទេ ។"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "បាសគៀរ"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "មិនអាច​យក​សោ mutex បានឡើយ"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "បាលូឈិ"
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85 chroot á\9e\91á\9f\85 '%s' (%s) á\9e\94á\9e¶á\9e\93á\9e\91á\9f\81 á\9f\94"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "á\9e\94á\9e¶á\9e\98á\9f\92á\9e\94á\9e¶á\9e\9aá\9e"
 
-#: zypp/ExternalProgram.cc:360
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85 chdir á\9e\91á\9f\85 '/' á\9e\80á\9f\92á\9e\93á\9e»á\9e\84 chroot (%s) á\9e\94á\9e¶á\9e\93á\9e\91á\9f\81 á\9f\94"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "á\9e\94á\9e¶á\9e\9bá\9e¸á\9e\8eá\9e¸á\9e\9f"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "មិនអាច chroot ទៅ '%s' (%s) បានទេ ។"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "​​បាស្កេ"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8fâ\80\8b %s"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "á\9e\94á\9e¶á\9e\9fá\9e"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8fâ\80\8bá\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\84á\9e¶á\9e\8fá\9f\8bâ\80\8bá\9e\93á\9f\85â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e\84á\9f\8bâ\80\8b %s - á\9e\82á\9f\92á\9e\98á\9e¶á\9e\93â\80\8bá\9e\9fá\9e·á\9e\91á\9f\92á\9e\92á\9e·â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9a á\9f\94"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "á\9e\94á\9e¶á\9e\9bá\9f\8bá\9e\91á\9e·á\9e\80 (á\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84â\80\8bá\9e\91á\9f\80á\9e\8f)"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "មិន​អាច​បង្កើត​ថត​ឃ្លាំង​សម្ងាត់​របស់​ទិន្នន័យ​មេតា ។"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "បេចា"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "មិនអាច​លុប '%s'"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "បេឡារុស្ស"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "មិនអាច​ប្រតិបត្តិ '%s' (%s) ។"
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "បេមបា"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "មិន​អាច​ដោះស្រាយ​កន្លែង​ដែល​ឃ្លាំង​ត្រូវ​បាន​ទុក​បានទេ ។"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "​បេន្កាលី"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "មិនអាច​​ដោះស្រាយ​កន្លែង​ដែល​សេវា​ត្រូវ​បានផ្ទុក​បានទេ ។"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "បឺបឺ (ផ្សេង​ទៀត)"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9f\82á\9e\84á\9e\85á\9f\82á\9e\80 (%s) á\9e\94á\9e¶á\9e\93á\9e\91á\9f\81 á\9f\94"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "á\9e\94á\9e¼á\9e\87á\9e¼á\9e\9aá\9e¸"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "មិនអាច​ចាប់ផ្ដើម​គុណលក្ខណៈ mutex បានឡើយ"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "បិហារ"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "មិនអាច​ចាប់ផ្ដើម mutex ហៅខ្លួន​ឯង​បាន​ឡើយ"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "ប៊ីកុល"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "មិន​អាច​បើក​ឯកសារ '%s' ដើម្បី​សរសេរ​បានទេ ។"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "ប៊ីនី"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e¾á\9e\80â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\9fá\9f\84 á\9f\96 %s"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "á\9e\94á\9e¸á\9e\9fá\9e¡á\9e¶á\9e\98á\9f\89á\9e"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e¾á\9e\80â\80\8bá\9e\94á\9f\86á\9e\96á\9e\84á\9f\8b (%s) á\9f\94"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "á\9e\9fá\9f\8aá\9e·á\9e\80á\9e\9fá\9f\8aá\9e¸á\9e\80á\9e"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e¾á\9e\80 pty (%s) á\9f\94"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "á\9e\94á\9e\84á\9f\8bá\9e\91á\9e»á\9e\99 (á\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84â\80\8bá\9e\91á\9f\80á\9e\8f)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8bâ\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a '%s' á\9e\96á\9e¸â\80\8bá\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84 '%s' á\9e\94á\9e¶á\9e\93á\9e\91á\9f\81"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "á\9e\94á\9e¼á\9e\9fá\9f\92á\9e\93á\9e¸"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "មិនអាច​លែង​សោ mutex បាន​ឡើយ"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "ប្រា"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "មិនអាច​កំណត់​គុណលក្ខណៈ mutex ហៅ​ខ្លួនឯង​បានឡើយ"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "ប្រេតុង"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "á\9e\80á\9e¶á\9e\8eá\9e¶á\9e\8aá\9e"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "á\9e\94á\9e¶á\9e\8fá\9e¶á\9e\80á\9f\8b (á\9e¥á\9e\8eá\9f\92á\9e\8cá\9e¼á\9e\93á\9f\81á\9e\9fá\9f\8aá\9e¸)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "មិនអាច​ច្រាន​ឧបករណ៍​ផ្ទុក​ណាមួយ​ចេញ​ឡើយ"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "ប៊ុយរីអាត"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\85á\9f\92á\9e\9aá\9e¶á\9e\93â\80\8bá\9e§á\9e\94á\9e\80á\9e\9aá\9e\8eá\9f\8dâ\80\8bá\9e\95á\9f\92á\9e\91á\9e»á\9e\80 '%s' á\9e\85á\9f\81á\9e\89á\9e\94á\9e¶á\9e\93á\9e\91េ"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "á\9e\94á\9f\8aá\9e»á\9e\99á\9e á\9f\92á\9e\82á\9e¸á\9e\8eá\9f\81á\9e\9fេ"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr "មិន​អាច​រក​ឧបករណ៍​ដែល​មាន​ដើម្បីម៉ោន​ឯកសារ​រូបភាព​ពី '%s'"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "​​ប៊ុលហ្ការី"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "ភូមា"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "ប្លាំង"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9aâ\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a '%s' á\9e\94á\9e¶á\9e\93á\9e\91á\9f\81 á\9f\94"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "á\9e\80á\9e¶á\9e\8aá\9e¼"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "á\9e\80á\9e¶á\9e\94á\9e\9cá\9f\82á\9e\9a"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "á\9e¥á\9e\8eá\9f\92á\9e\8cá\9e¶â\80\8bá\9e\80á\9e\8eá\9f\92á\9e\8aá\9e¶á\9e\9bâ\80\8bá\9e\94á\9f\82á\9e\94â\80\8bá\9e¢á\9e¶á\9e\98á\9f\81á\9e\9aá\9e·á\9e\80 (á\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84â\80\8bá\9e\91á\9f\80á\9e\8f)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -834,11 +2230,6 @@ msgstr "កាតាឡាន"
 msgid "Caucasian (Other)"
 msgstr "កាអ៊ូកាស៊ីយ៉ាន (ផ្សេង​ទៀត)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "កោះ​កៃម៉ាន"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -847,168 +2238,82 @@ msgstr "កេប៊ូអាណូ"
 #. language code: cel
 #: zypp/LanguageCode.cc:313
 msgid "Celtic (Other)"
-msgstr "សែលតិក (ផ្សេង​ទៀត)"
-
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "សាធារណរដ្ឋ​អាហ្វ្រិក​កណ្ដាល"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "ឥណ្ឌា​កណ្ដាល​បែប​អាមេរិក (ផ្សេង​ទៀត)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "ឆាដ"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "ឆាហ្គាតាអ៊ី"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "ភាសា​កាម៊ិក"
-
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "ចាមូរូ"
-
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "បាន​ប្ដូរ​ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ​សម្រាប់ %s ៖"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "ចេចេន"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "ចេរ៉ូគី"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "ឆេអ៊ីយ៉េណេ"
+msgstr "សែលតិក (ផ្សេង​ទៀត)"
+
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "ចាមូរូ"
 
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "ឈីបចា"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "ឈិចិវា"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "ឈីលី"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "ចេចេន"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "á\9e\85á\9e·á\9e\93"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "á\9e\86á\9e¶á\9e á\9f\92á\9e\82á\9e¶á\9e\8fá\9e¶á\9e¢á\9f\8aá\9e¸"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "ចិន"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "ឈូកេសេ"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "ម៉ារី"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "ឈីណូ ចាកុង"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "ឈីប៉េអ៊ីយ៉ាន"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "ឆូកតា"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "កោះ​គ្រីស្តម៉ាស"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "ឈីប៉េអ៊ីយ៉ាន"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "ចេរ៉ូគី"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "ឆឺច​ស្លាវិច"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "ឈូកេសេ"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "ចូវ៉ាស"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "នីវ៉ារី​បុរាណ"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "កោះ Cocos (Keeling)"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "កូឡុំប៊ី"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "ពាក្យ​បញ្ជា​បាន​ចេញ​ដោយ​ស្ថានភាព %d ។"
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "ពាក្យ​បញ្ជា​បាន​ចេញ ដោយ​មាន​កំហុស​មិន​ស្គាល់ ។"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "ពាក្យ​បញ្ជា​ត្រូវ​បាន​ផ្ដាច់​ដោយ​សញ្ញា %d (%s) ។"
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "កុំម៉ូរ៉ូស"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "ប៉ះទង្គិច"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "កុងហ្គោ"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "ឆេអ៊ីយ៉េណេ"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "á\9e\80á\9f\84á\9f\87â\80\8bá\9e\80á\9e¼ក"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e\80á\9e¶á\9e\98á\9f\8aá\9e·ក"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1025,31 +2330,6 @@ msgstr "កូនីស"
 msgid "Corsican"
 msgstr "កូសីកា"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "កូស្តារីកា"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "កូឌីហ្វ័រ"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "គ្រី"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "ក្រេក"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "ក្រេអូឡេ និង​ភីដហ្គីន (ផ្សេង​ទៀត)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1065,46 +2345,36 @@ msgstr "ក្រេអូឡេ និង​ភីដហ្គីន ដែល
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "ក្រេអូឡេ និង​ភីដហ្គីន ដែល​ផ្អែក​លើ​ភាសា​ព័រទុយហ្គាល់ (ផ្សេង​ទៀត)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "គ្រី"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "គ្រីម៉េអាន តាតារ"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "ក្រូអាត"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "​ក្រូអាត"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "ក្រេអូឡេ និង​ភីដហ្គីន (ផ្សេង​ទៀត)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "á\9e\82á\9e»á\9e\99á\9e\94á\9e"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "á\9e\80á\9e¶á\9e\9fá\9f\8aá\9e¼á\9e\94á\9f\8aá\9e¸á\9e\99á\9f\89á\9e¶á\9e\93"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "គុយស៊ិទិក"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "ស៊ីពរ៍"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "ឆេក"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "សាធារណ​រដ្ឋ​ឆេក"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1130,10 +2400,15 @@ msgstr "ដាយ៉ាក"
 msgid "Delaware"
 msgstr "ដេឡាវ៉ារ៉េ"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "ដាណឺម៉ាក"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "ស្លាវ (អាតាប៉ាសាន)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "ដូហ្គ្រីប"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1145,104 +2420,51 @@ msgstr "ឌីនកា"
 msgid "Divehi"
 msgstr "ឌីវេហី"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "ហ្ស៊ីបូទី"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "ដូហ្គ្រី"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "ដូហ្គ្រីប"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "ដូមីនីកា"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "សាធារណរដ្ឋ​ដូមីនីកែន"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"ទាញយក​កំហុស​សម្រាប់ '%s' ៖\n"
-"កូដ​កំហុស ៖ %s\n"
-"សារ​កំហុស ៖ %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "ទាញយក​ការ​ចាប់ផ្ដើម​បាន​បរាជ័យ​សម្រាប់ '%s'"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "ដ្រាវីឌីយ៉ាន (ផ្សេង​ទៀត)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "សូរប៊ីយ៉ាន​ក្រោម"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "ឌុយអាឡា"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "ប្រភេទ​មិនច្បាស់ '%s' សម្រាប់ %u បៃ ឆេកសាំ '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "ហុល្លង់ កណ្ដាល (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "ហុល្លង់"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "ហុល្លង់ កណ្ដាល (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
-msgstr "ឌុយឡា"
-
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "ដុងហ្កា"
-
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "ទីម័រ​ខាង​កើត"
+msgstr "ឌុយឡា"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "á\9e¢á\9f\81á\9e\80á\9f\92á\9e\9cá\9e¶á\9e\8cá\9f\90á\9e\9a"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "á\9e\8aá\9e»á\9e\84á\9e á\9f\92á\9e\80á\9e"
 
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "អេហ្វ៊ីក"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "អេហ្ស៊ីប"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1253,32 +2475,11 @@ msgstr "អេស្ស៊ីប (បុរាណ)"
 msgid "Ekajuk"
 msgstr "អេកាជុក"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "អែលសាល់វ៉ាឌ័រ"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "អេឡាម៊ិតេ"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "គោលដៅ​ទទេ​នៅ​ក្នុង URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "ប្រព័ន្ធ​ឯកសា​ទទេ​នៅ​ក្នុង URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "ឈ្មោះ​ម៉ាស៊ីន​ទទេ​ក្នុង URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "ខ្សែអក្សរ​ដែល​បាន​អ៊ិនកូដ មាន NUL បៃ"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1289,285 +2490,51 @@ msgstr "អង់គ្លេស"
 msgid "English, Middle (1100-1500)"
 msgstr "អង់គ្លេស កណ្ដាល (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "អង់គ្លេស បុរាណ (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "ហ្គីណេ​អេក្វាទ័រ"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "អេរីទ្រា"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "កំហុស​នៅពេល​កំណត់​ជម្រើស​ទាញយក​សម្រាប់ '%s' ៖"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "កំហុស​ក្នុង​ការ​ផ្ញើ​ការ​ជូនដំណឹង​សារបច្ចុប្បន្នភាព​ ។"
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "កំហុស​ក្នុង​ការ​ព្យាយាម​អាន​ពី '%s'"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "អេរីយ៉ា"
-
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "អេស្ពេរ៉ាន់តូ"
-
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "អេស្តូនី"
-
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "​​អេស្តូនី"
-
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "អេត្យូពី"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "អូវឹ"
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "អេវ៉ុងដូ"
-
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ឃ្លាំង​ជា​ឃ្លាំង​សម្ងាត់ (%d) ។"
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "បរាជ័យ​ក្នុង​ការ​លុប​សោ ។"
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "បរាជ័យក្នុង​ការ​នាំចូល​សោ​សាធារណៈ​ពី​ឯកសារ %s: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "បរាជ័យ​ក្នុង​ការ​ម៉ោន %s លើ %s"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "បាន​បរាជ័យ​ក្នុងកា​រផ្ដល់​កញ្ចប់ %s ។ តើអ្នក​ចង់​ព្យាយាម​យក​ម្ដង​ទៀត​ទេ ?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "បាន​បរាជ័យ​ក្នុង​ការ​អាន​ថត '%s'"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "បរាជ័យ​ក្នុងការ​យក​សោ​សាធារណៈ %s: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "បរាជ័យ​ក្នុងការ​អាន់ម៉ោន %s"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "កោះ​ហ្វ៉កឡង់ (ម៉ាល់វីណា)"
-
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "ហ្វ៉ង់"
-
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "ហ្វ៉ង់ទី"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "កោះ​ហ្វារ៉ូ"
-
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "ហ្វាអេរូស"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "រដ្ឋ​សហព័ន្ធ​មីក្រូណេស៊ី"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "ហ្វីហ្ស៊ី"
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "ហ្វ៊ីហ្ស៊ី"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "អេស្ពេរ៉ាន់តូ"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "​​អេស្តូនី"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "អូវឹ"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "អេវ៉ុងដូ"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "á\9e\9aá\9e\80â\80\8bá\9e\98á\9e·á\9e\93á\9e\83á\9e¾á\9e\89â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a '%s' á\9e\93á\9f\85â\80\8bá\9e\9bá\9e¾â\80\8bá\9e§á\9e\94á\9e\80á\9e\9aá\9e\8eá\9f\8dâ\80\8bá\9e\95á\9f\92á\9e\91á\9e»á\9e\80â\80\8bá\9e\91á\9f\81 '%s'"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "á\9e á\9f\92á\9e\9cá\9f\89á\9e\84á\9f\8b"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "ហ្វាអេរូស"
+
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "ហ្វ៉ង់ទី"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "ហ្វ៊ីហ្ស៊ី"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "ហ្វ៊ីលីពីន"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "ហ្វាំងឡង់"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1578,40 +2545,16 @@ msgstr "​ហ្វាំង​ឡង់"
 msgid "Finno-Ugrian (Other)"
 msgstr "ហ្វាំងណូ អ៊ុយហ្គ្រីយ៉ាន (ផ្សេង​ទៀត)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "អំពើ​ខាងក្រោម​នឹង​ត្រូវបាន​ធ្វើ​រួច ៖"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "ហ្វុង"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "បារាំង"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "បារាំង"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "ហ្គូអ៊ីយ៉ាណា បារាំង"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "ប៉ូលីនេស៊ី​បារាំង"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "អាណាចក្រ​ខាង​ត្បូង​របស់​ បារាំង"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1627,46 +2570,21 @@ msgstr "បារាំង បុរាណ (842-ca.1400)"
 msgid "Frisian"
 msgstr "ហ្វ្រីស៊ាន"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "ហ្វ្រីអ៊ុយលីយ៉ាន"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "ហ្វូឡា"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "ហ្វ្រីអ៊ុយលីយ៉ាន"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "ហ្កា"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "ហ្គាបុង"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "ហ្គាអេលិក"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "ហ្គាលីស្យាន"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "ហ្គាំប៊ី"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "ភាង​ហ្គង់​ដា"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1677,15 +2595,10 @@ msgstr "ហ្កាយ៉ូ"
 msgid "Gbaya"
 msgstr "ហ្កាយ៉ា"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "ហ្គី"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "ហ្សកហ្ស៊ី"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "ហ្គឺម៉ានិក (ផ្សេង​ទៀត)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1697,6 +2610,36 @@ msgstr "ហ្សកហ្ស៊ី"
 msgid "German"
 msgstr "អាល្លឺម៉ង់"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "ហ្គី"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "ហ្គីលបឺតេសេ"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "ហ្គាអេលិក"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "អៀរឡង់"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "ហ្គាលីស្យាន"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "ម៉ុង"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1707,30 +2650,6 @@ msgstr "អាល្លឺម៉ង់ កណ្ដាល ខ្ពស់ (ca.10
 msgid "German, Old High (ca.750-1050)"
 msgstr "អាល្លឺម៉ង់ បុរាណ ខ្ពស់ (ca.750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "ហ្គឺម៉ានិក (ផ្សេង​ទៀត)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "អាល្លឺម៉ង់"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "ហ្គាណា"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "ហ្គីប្រាល់តា"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "ហ្គីលបឺតេសេ"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1751,76 +2670,26 @@ msgstr "ហ្គោធិក"
 msgid "Grebo"
 msgstr "ហ្គ្រេបូ"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "ក្រិក"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
 msgstr "ក្រិក បុរាណ (ដល់ 1453)"
 
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
-msgstr "ក្រិក ទំនើប (1453-)"
-
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "ហ្គ្រីនលែន"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "ហ្គ្រីណាដា"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "ហ្គូអាដឺលូប៉េ"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "ហ្គាម"
-
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
-msgstr "ហ្គូរ៉ានី"
-
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "ហ្គាតេម៉ាឡា"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "ហ្គើនស៊ី"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "ហ្គីណេ"
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
+msgstr "ក្រិក ទំនើប (1453-)"
 
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "á\9e á\9f\92á\9e\82á\9e¸á\9e\8eá\9f\81á\9e\94á\9f\8aá\9e¸á\9e\9fá\9f\85"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
+msgstr "á\9e á\9f\92á\9e\82á\9e¼á\9e\9aá\9f\89á\9e¶á\9e\93á\9e¸"
 
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "ហ្កុយ៉ារាទី"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "ហ្គីយ៉ាណា"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1831,52 +2700,21 @@ msgstr "ហ្គីចអ៊ីន"
 msgid "Haida"
 msgstr "អៃអ៊ីដា"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "ហៃទី"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "ហៃទី"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "ការ​លើកលែង Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext មិនបាន​តភ្ជាប់​ឡើយ"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive មិន​បាន​ចាប់ផ្ដើម​ឡើយ"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume មិនបាន​ចាប់ផ្ដើម​ឡើយ"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "ហូសា"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "តើ​អ្នក​បាន​បើក​ឃ្លាំង​ដែល​បាន​ស្នើ​ទាំងអស់​ហើយឬនៅ ?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "អាវ៉ាអ៊ីយ៉ាន"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "កោះ​ហ៊ើដ និង​កោះ​ម៉ាកដូណាល់"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1902,16 +2740,6 @@ msgstr "អ៊ីម៉ាឆាលី"
 msgid "Hindi"
 msgstr "ហិណ្ឌូ"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "ហ៊ី​រី​ម៉ូទូ"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "ប្រវត្តិ ៖"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1922,31 +2750,21 @@ msgstr "អ៊ីទីតេ"
 msgid "Hmong"
 msgstr "ម៉ុង"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "ហូលីស៊ី (រដ្ឋ​បូរី​វ៉ាទីកង់)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "ហុងឌូរ៉ាស់"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "ហ៊ី​រី​ម៉ូទូ"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "á\9e á\9e»á\9e\84á\9e\80á\9e»á\9e\84"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "á\9e¢á\9e¶á\9e\94â\80\8bá\9e\95á\9e¾ á\9e\9fá\9e¼â\80\8bá\9e\94á\9f\80á\9e\93"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "​​ហុងគ្រី"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "ហុងគ្រី"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1957,10 +2775,10 @@ msgstr "អ៊ុយប៉ា"
 msgid "Iban"
 msgstr "អ៊ីបាន"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "á\9e¢á\9f\8aá\9e¸á\9e\9fá\9f\92á\9e\9bá\9e\84á\9f\8b"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "á\9e¢á\9f\8aá\9e¸á\9e\80á\9e\94á\9e¼"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1972,250 +2790,105 @@ msgstr "អ៊ីស្លង់"
 msgid "Ido"
 msgstr "អ៊ីឌូ"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "á\9e¢á\9f\8aá\9e¸á\9e\80á\9e\94á\9e¼"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "á\9e\9fá\9f\8aá\9e¸â\80\8bá\9e\85á\9e½á\9e\93á\9e¢á\9f\8aá\9e¸"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "អ៊ីចូ"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "អ៊ីនូកទីទូត"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "អ៊ីង​តឺ​លីងគឹ"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "អ៊ីឡូកូ"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "អ៊ិណារី សាម៉ី"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "ឥណ្ឌា"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (សមាគមន៍​ភាសា​ជំនួយ​អន្តរជាតិ)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "អ៊ីនឌិក (ផ្សេង​ទៀត)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "ឥណ្ឌូអឺរ៉ុប (ផ្សេង​ទៀត)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "ឥណ្ឌូនេស៊ី"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "ឥណ្ឌូនេស៊ី"
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "អ៊ីងហ្គូស"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "ការ​ដំឡើង ត្រូវបាន​បោះបង់​ដោយ​ផ្ទាល់ ។"
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (សមាគមន៍​ភាសា​ជំនួយ​អន្តរជាតិ)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "អ៊ីង​តឺ​លីងគឹ"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "អ៊ីនូកទីទូត"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "អ៊ីងអ៊ិយពីយ៉ាក"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "សមាសភាគ %s មិន​ត្រឹមត្រូវ"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "សមាសភាគ %s មិន​ត្រឹមត្រូវ '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "ប៉ារ៉ាម៉ែត្រ​សំណួរ LDAP URL មិន​ត្រឹមត្រូវ '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "ខ្សែអក្សរ​សំណួរ LDAP URL មិន​ត្រឹមត្រូវ"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "គ្រោងការណ៍ Url មិន​ត្រឹមត្រូវ '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "សេចក្ដី​យោង​វត្ថុ Url ទទេ មិន​ត្រឹមត្រូវ"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "សមាសភាគ​របស់​ម៉ាស៊ីន​មិន​ត្រឹមត្រូវ '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "តួអក្សរ​បំបែក​សម្រាប់​ត​អារេ​ប៉ារ៉ាម៉ែត្រ មិន​ត្រឹមត្រូវ"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "តួអក្សរ​បំបែក​សម្រាប់​ពុះ​អារេ​ប៉ារ៉ាម៉ែត្រ មិន​ត្រឹមត្រូវ"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "តួអក្សរ​បំបែក​សម្រាប់​ពុះ​ផែនទី​ប៉ារ៉ាម៉ែត្រ មិន​ត្រឹមត្រូវ"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "សមាសភាគ​ច្រក​មិន​ត្រឹមត្រូវ '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "កន្សោម​ធម្មតា​មិន​ត្រឹមត្រូវ '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "កន្សោម​ធម្មតា​មិនត្រឹមត្រូវ '%s' ៖ regcomp បាន​ត្រឡប់ %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "ឈ្មោះ​ឯកសារ​ឃ្លាំង​មិន​ត្រឹមត្រូវ​នៅ '%s'"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "អ៊ីរ៉ង់"
-
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
-msgstr "អ៊ីរ៉ង់ (ផ្សេង​ទៀត)"
-
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "អ៊ីរ៉ាក់"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "អៀរឡង់"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "អៀរឡង់"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "ឥណ្ឌូអឺរ៉ុប (ផ្សេង​ទៀត)"
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "á\9e¢á\9f\80á\9e\9aá\9e¡á\9e\84á\9f\8b á\9e\80á\9e\8eá\9f\92á\9e\8aá\9e¶á\9e\9b (á\9f©á\9f á\9f -á\9f¡á\9f¢á\9f á\9f )"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "á\9e¢á\9f\8aá\9e¸á\9e\84á\9e á\9f\92á\9e\82á\9e¼á\9e\9f"
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "អៀរឡង់ បុរាណ (ដល់ ៩០០)"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "អ៊ីងអ៊ិយពីយ៉ាក"
+
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
+msgstr "អ៊ីរ៉ង់ (ផ្សេង​ទៀត)"
 
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "ភាសា​អ៊ីរ៉ូគុយអូអ៊ីយ៉ាន"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Isle of Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "អ៊ីស្រាអែល"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "អ៊ីតាលី"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "អ៊ីតាលី"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "ចា​ម៉ៃកា"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "យ៉ាវា"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "á\9e\87á\9e\94á\9f\89á\9e»ន"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "á\9e¡á\9e¼á\9e\94á\9eន"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "ជប៉ុន"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "យ៉ាវា"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "ឈឺស៊ី"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "ហ្ស៊កដង់"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "ជុយឌីអូ-ប៉ឺស៊ីយ៉ាន"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "ជុយឌីអូ-អារ៉ាប់"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "ជុយឌីអូ-ប៉ឺស៊ីយ៉ាន"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "កាបាឌីយ៉ាន"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "ការា-កាល់ប៉ាក់"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2232,11 +2905,6 @@ msgstr "កាឈីន"
 msgid "Kalaallisut"
 msgstr "កាឡាលីសុទ"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "កាល់មីក"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2247,21 +2915,6 @@ msgstr "កាំបា"
 msgid "Kannada"
 msgstr "កិណាដា"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "កានុរី"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "ការា-កាល់ប៉ាក់"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "ការាឆៃ-បាល់ការ"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2272,10 +2925,10 @@ msgstr "ការ៉ែន"
 msgid "Kashmiri"
 msgstr "កាស្មៀរ"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "á\9e\80á\9e¶á\9e\9fá\9f\8aá\9e¼á\9e\94á\9f\8aá\9e¸á\9e\99á\9f\89á\9e¶á\9e\93"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "á\9e\80á\9e¶á\9e\93á\9e»á\9e\9aá\9e¸"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2287,31 +2940,26 @@ msgstr "កាវី"
 msgid "Kazakh"
 msgstr "កាហ្សាក់ស្តង់"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "កាហ្សាក់ស្តង់"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "កេនយ៉ា"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "កាបាឌីយ៉ាន"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "ខាស៊ី"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "ខ្មែរ"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "ខូអ៊ីសាន (ផ្សេង​ទៀត)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "ខ្មែរ"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2322,11 +2970,6 @@ msgstr "ខូតាណេសេ"
 msgid "Kikuyu"
 msgstr "គីគូយូ"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "គីមប៊ុនឌុយ"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2337,15 +2980,15 @@ msgstr "គីនយ៉ាវាន់ដា"
 msgid "Kirghiz"
 msgstr "គៀរ​ហ្គី​ស្តង់"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "á\9e\82á\9e·á\9e\9aá\9e·á\9e\94á\9e¶á\9e\91á\9e¸"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "á\9e\82á\9e¸á\9e\98á\9e\94á\9f\8aá\9e»á\9e\93á\9e\8cá\9e»á\9e\99"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "ខ្លីង​ហ្កន"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "​​កុងកានី"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2357,11 +3000,6 @@ msgstr "កូមី"
 msgid "Kongo"
 msgstr "កុងហ្គោ"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "​​កុងកានី"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2377,11 +3015,21 @@ msgstr "កូស្រាអេយ៉ាន"
 msgid "Kpelle"
 msgstr "ខេឡេ"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "ការាឆៃ-បាល់ការ"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "គ្រុយ"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "គុយរ៊ូខ"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2397,26 +3045,11 @@ msgstr "គុយម៊ិក"
 msgid "Kurdish"
 msgstr "ឃឺដ"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "គុយរ៊ូខ"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "គុយតេណាអ៊ី"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "គុយ​វ៉ែត"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "គៀរហ្គីស្តង់"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2437,133 +3070,71 @@ msgstr "ឡាមបា"
 msgid "Lao"
 msgstr "ឡាវ"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "សាធារណរដ្ឋ​ប្រជាធិបតេយ្យ​ប្រជាមានិត​ឡាវ"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "ឡាតាំង"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "ឡាតវីយ៉ា"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "ឡាតវីយ៉ា"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "លីបង់"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "ឡេសូតូ"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "កម្រិត ១"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "កម្រិត ២"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "កម្រិត ៣"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "ឡេសហ្គីយ៉ាន"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "លីបេរីយ៉ា"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "លីប៊ី"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "លិចទេនស្តែន"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
 msgstr "លីបួគ"
 
-#. language code: lin ln
-#: zypp/LanguageCode.cc:671
-msgid "Lingala"
-msgstr "លីនហ្កា​ឡា"
-
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "លីទុយអានី"
-
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
-msgid "Lithuanian"
-msgstr "លីទុយអានី"
-
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "ទីតាំង '%s' មិន​ដំណើរការ​ជា​បណ្ដោះអាសន្ន ។"
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "ឡូបាន"
+#. language code: lin ln
+#: zypp/LanguageCode.cc:671
+msgid "Lingala"
+msgstr "លីនហ្កា​ឡា"
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "á\9e¢á\9e¶á\9e\9bá\9f\92á\9e\9bá\9eºá\9e\98á\9f\89á\9e\84á\9f\8bâ\80\8bá\9e\80á\9f\92á\9e\9aá\9f\84á\9e\98"
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
+msgid "Lithuanian"
+msgstr "á\9e\9bá\9e¸á\9e\91á\9e»á\9e\99á\9e¢á\9e¶á\9e\93á\9e¸"
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "á\9e\9fá\9e¼á\9e\9aá\9e\94á\9f\8aá\9e¸á\9e\99á\9f\89á\9e¶á\9e\93â\80\8bá\9e\80á\9f\92á\9e\9aá\9f\84á\9e\98"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "á\9e\98á\9f\89á\9e»á\9e\84á\9e á\9f\92á\9e\82á\9f\84"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "ឡូហ្ស៊ី"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "á\9e\9bá\9e¼á\9e\94á\9e¶á\9e\80á\9e¶á\9e\8fá\9e»á\9e\84á\9e á\9f\92á\9e\80á\9e"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "á\9e\9bá\9e»á\9e\85á\9e á\9f\92á\9e\9fá\9f\86á\9e\94á\9e½á\9e\9a"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "លុយបា-លុយលូអា"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "លូបាកាតុងហ្កា"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "ភាង​ហ្គង់​ដា"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "លុយអ៊ីសេណូ"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "ឡូលេ សាម៉ី"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2579,35 +3150,11 @@ msgstr "លុយអូ (កេនយ៉ា និង​តង់ហ្សាន
 msgid "Lushai"
 msgstr "លុយសាអ៊ី"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "លុចហ្សំបួរ"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "លុចហ្សំបួរ"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "ម៉ាកាវ"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "ម៉ាសេដូនី"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "ម៉ាសេដូនី"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "ម៉ាដាហ្គាស្ការ"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2618,6 +3165,11 @@ msgstr "ម៉ាឌុយរ៉េសេ"
 msgid "Magahi"
 msgstr "ម៉ាហ្គាអ៊ិ"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "ម៉ា​ស្យលីស"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2628,269 +3180,126 @@ msgstr "ម៉ាអ៊ីទីលី"
 msgid "Makasar"
 msgstr "ម៉ាកាសារ"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "ម៉ាឡាហ្គាស៊ី"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "ម៉ាឡាវី"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "ម៉ាឡេស៊ី"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "ម៉ាឡាយ៉ាឡាម"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "ម៉ាឡេស៊ី"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "ម៉ាល់ឌីវ"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "URI មាន​ទ្រង់ទ្រាយ​មិនត្រឹមត្រូវ"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "ម៉ាលី"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "ម៉ាល់តា"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "ម៉ាល់តា"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "ម៉ង់ឈូ"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "ម៉ង់ដារ"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "ម៉ង់ដាំងហ្គោ"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "ម៉ានីពូរី"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "ភាសា​ម៉ាណូបូ"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "ម៉ុង"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "ម៉ោរី"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "អូស្ត្រូណេស៊ី (ផ្សេង​ទៀត)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "​​ម៉ារាធី"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "ម៉ារី"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "កោះ​ម៉ាស្យល"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "ម៉ា​ស្យលីស"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "ម៉ារទីនីគ"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "ម៉ារ៉ារី"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "ម៉ាសាអ៊ិ"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "ម៉ូរីតានី"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "ម៉ូរីទុស"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "ភាសា​ម៉ាអ៊ីយ៉ាន"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "ម៉ាយុត"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "ប្រភព​ឧបករណ៍​ផ្ទុក '%s' មិនមាន​ឧបករណ៍​ផ្ទុក​ដែល​ត្រូវការ​ទេ"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "ឧបករណ៍​ផ្ទុក '%s' គឺ​កំពុង​ប្រើ​ដោយ​ឧបករណ៍​ផ្សេង"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "ម៉ាឡេស៊ី"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "មិនបាន​ភ្ជាប់​ឧបករណ៍​ផ្ទុក"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "ម៉ុកសា"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "á\9e§á\9e\94á\9e\80á\9e\9aá\9e\8eá\9f\8dâ\80\8bá\9e\95á\9f\92á\9e\91á\9e»á\9e\80â\80\8bá\9e\98á\9e·á\9e\93á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e¾á\9e\80 á\9e\93á\9f\85á\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\92á\9f\92á\9e\9cá\9e¾â\80\8bá\9e¢á\9f\86á\9e\96á\9e¾ '%s' á\9f\94"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "á\9e\98á\9f\89á\9e\84á\9f\8bá\9e\8aá\9e¶á\9e\9a"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "ម៉ិនដេ"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "ប្រទេស​ចំណុះ​បារាំង"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "ម៉ិចស៊ិក"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "អៀរឡង់ កណ្ដាល (៩០០-១២០០)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
 msgid "Mi'kmaq"
 msgstr "ម៊ិកម៉ា"
 
-#. language code: min
-#: zypp/LanguageCode.cc:737
-msgid "Minangkabau"
-msgstr "ម៊ីណង់កាបាអុយ"
+#. language code: min
+#: zypp/LanguageCode.cc:737
+msgid "Minangkabau"
+msgstr "ម៊ីណង់កាបាអុយ"
+
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
+msgstr "ភាសា​ផ្សេងៗ"
+
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "ខ្មែរ​មន (ផ្សេងទៀត)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "ម៉ាឡាហ្គាស៊ី"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "ម៉ាល់តា"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "ម៉ង់ឈូ"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "á\9e\98á\9e¸á\9e\9aá\9e\84á\9f\8bá\9e\8aá\9f\81á\9e\9fá\9f\81"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "á\9e\98á\9f\89á\9e¶á\9e\93á\9e¸á\9e\96á\9e¼á\9e\9aá\9e¸"
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
-msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84á\9f\97"
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e\98á\9f\89á\9e¶á\9e\8eá\9e¼á\9e\94á\9e¼"
 
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "ម៉ូហាក់"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "ម៉ុកសា"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "ម៉ុល​ដាវី"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "ម៉ុលដូវ៉ា"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "ខ្មែរ​មន (ផ្សេងទៀត)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "ម៉ូណាកូ"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "ម៉ុងហ្គោ"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "ម៉ុងហ្គោលី"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "ម៉ុងហ្គោលី"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "​ម៉ុងតេណេហ្ក្រូ"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "ម៉ុងសេរ៉ា"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "ម៉ារ៉ុក"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "ម៉ូស៊ី"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "ម៉ូហ្សាំប៊ិក"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2901,55 +3310,74 @@ msgstr "ពហុភាសា"
 msgid "Munda languages"
 msgstr "ភាសា​មុនដា"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "ភូមា"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "ក្រេក"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "មីរង់ដេសេ"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "ម៉ារ៉ារី"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "ភាសា​ម៉ាអ៊ីយ៉ាន"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "អេរីយ៉ា"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "ណាអ៊ុយ៉ាល់"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "á\9e\8eá\9e¶á\9e\98á\9e¸á\9e\94á\9f\8aá\9e¸"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "á\9e¥á\9e\8eá\9f\92á\9e\8cá\9e¶â\80\8bá\9e\81á\9e¶á\9e\84â\80\8bá\9e\87á\9e¾á\9e\84 á\9e\94á\9f\82á\9e\94â\80\8bá\9e¢á\9e¶á\9e\98á\9f\81á\9e\9aá\9e·á\9e\80"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "ណូរុ"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "ណេអាប៉ូលីតង់"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "ណាវាហ្សូ"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "នដិបិលិ (ខាង​ជើង)"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "នដិបិលិ (ខាង​ត្បូង)"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "នដិបិលិ (ខាង​ជើង)"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "នដុងហ្កា"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "á\9e\8eá\9f\81á\9e¢á\9e¶á\9e\94á\9f\89á\9e¼á\9e\9bá\9e¸á\9e\8fá\9e\84á\9f\8b"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "á\9e¢á\9e¶á\9e\9bá\9f\92á\9e\9bá\9eºá\9e\98á\9f\89á\9e\84á\9f\8bâ\80\8bá\9e\80á\9f\92á\9e\9aá\9f\84á\9e\98"
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
 msgstr "នេប៉ាល់"
 
 #. language code: new
@@ -2957,154 +3385,66 @@ msgstr "នេប៉ាល់"
 msgid "Nepal Bhasa"
 msgstr "បាសា នេប៉ាល់"
 
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
-msgstr "នេប៉ាល់"
-
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "ហូល្លង់"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "ហូល្លង់ អង់ទីល"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "ញូវ កាលេដូនី"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "ញូវ​ហ្សេលែន"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "សារ​បច្ចុប្បន្នភាព​ថ្មី"
-
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "នីយ៉ាស"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "នីការ៉ាហ្គ័រ"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "នីហ្សេរ"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "នីហ្ស៊េ - ខដូហ្វានីយ៉ាន"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "នីហ្សេរីយ៉ា"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "នីឡូ-សាហារង់ (ផ្សេង​ទៀត)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "នីវ"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "នីអ៊ុយេអាន"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "គ្មាន​កូដ"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "​ន័រវែស ​នីនូស​"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "គ្មាន url នៅ​ក្នុង​ឃ្លាំង ។"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "ន័រវេស បុកម៉ាល់"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
-msgid "Nogai"
-msgstr "ណូហ្គាអ៊ិ"
-
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "កោះ​ណរហ្វក"
-
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
-msgstr "ណូសេ បុរាណ"
-
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "ឥណ្ឌា​ខាង​ជើង បែប​អាមេរិក"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "កូរ៉េ​ខាង​ជើង"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "កោះ​ម៉ារៀណា​ភាគ​ខាង​ជើង"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "សាម៉ីខាង​ជើង"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "សូធូ​ខាង​ជើង"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "ន័រវែស"
+msgid "Nogai"
+msgstr "ណូហ្គាអ៊ិ"
+
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
+msgstr "ណូសេ បុរាណ"
 
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "ន័រវែស"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "ន័រវេស បុកម៉ាល់"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "​ន័រវែស ​នីនូស​"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "មិន​មែន​ជា​ដ្រាយ​ស៊ីឌី​រ៉ូម​ទេ"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "សូធូ​ខាង​ជើង"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "ភាសា​នុយប្យ៉ាន"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "នីវ៉ារី​បុរាណ"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "ឈិចិវា"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3125,11 +3465,6 @@ msgstr "នីអូរ៉ូ"
 msgid "Nzima"
 msgstr "នីម៉ា"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "លែង​ប្រើ %s"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3140,20 +3475,6 @@ msgstr "អុកស៊ីតង់ (ក្រោយ ១៥០០)"
 msgid "Ojibwa"
 msgstr "អុហ្សីបវា"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "អូម៉ង់"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "បាន​ទាមទារ​គុណលក្ខណៈ​មួយ ឬ​ពីរ​របស់ '%s' ឬ '%s' ។"
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "ប្រតិបត្តិការ​មិនបាន​គាំទ្រ​ដោយ​ឧបករណ៍​ផ្ទុក​ទេ"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3174,64 +3495,36 @@ msgstr "អូសា"
 msgid "Ossetian"
 msgstr "អូសសិត្យុង"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "ទួគី អូតូម៉ង់ (១៥០០-១៩២៨)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "ភាសា​អូតូមីយ៉ាន"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr "កញ្ចប់ %s ហាក់​បីជា​​ខូច​ក្នុងការ​ផ្ទេរ ។ តើ​អ្នកចង់​ព្យាយាម​ម្ដង​ទៀត​ទេ ?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "ប៉ាពុយអាន (ផ្សេង​ទៀត)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "ប៉ង់ហ្គាស៊ីណង់"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "ប៉ាឡាវី"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "ប៉ាគីស្ថាន"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "ប៉ាឡូ"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "ប៉ាឡាអ៊ុយ៉ាន"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "ប៉ាឡេស្ទីន"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "បាលី"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "ប៉ាមប៉ង់ហ្គា"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "ប៉ាណាម៉ា"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "ប៉ង់ហ្គាស៊ីណង់"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3242,94 +3535,45 @@ msgstr "ប៉ង់ចាប៊ី"
 msgid "Papiamento"
 msgstr "ប៉ាពីយ៉ាម៉ិនតូ"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "ប៉ាពូញូវហ្គីណេ"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "ប៉ាពុយអាន (ផ្សេង​ទៀត)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "ប៉ារ៉ាហ្គាយ"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "ផ្លូវ '%s' នៅលើ​ឧបករណ៍​ផ្ទុក '%s' មិនមែន​ជា​ថត​ទេ ។"
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "ផ្លូវ '%s' នៅលើ​ឧបករណ៍​ផ្ទុក '%s' មិនមែន​ជា​ឯកសារ​ទេ ។"
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "សិទ្ធិ​ចូល​ដំណើរការ​ទៅ '%s' បាន​បដិសេធ ។"
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "ពឺស៊ាន"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "ប៉ាឡាអ៊ុយ៉ាន"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "ពឺស៊ាន បុរាណ (ca. ៦០០-៤០០ B.C)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "á\9e\94á\9f\89á\9f\81á\9e\9aá\9e¼"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "á\9e\96á\9eºá\9e\9fá\9f\8aá\9e¶á\9e\93"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "ហ្វីលីពីន (ផ្សេង​ទៀត)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "ហ្វីលីពីន"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "ផូអេនីស្យ៉ាន"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "ពីតខាយរិន"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "ប៉ូណេអ៊ីយ៉ាន"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "ប៉ូឡូញ"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "បាលី"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "​ប៉ូឡូញ"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "á\9e\96á\9f\90á\9e\9aá\9e\91á\9e»á\9e\99á\9e á\9f\92á\9e\82á\9e¶á\9e\9bá\9f\8b"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "á\9e\94á\9f\89á\9e¼á\9e\8eá\9f\81á\9e¢á\9f\8aá\9e¸á\9e\99á\9f\89á\9e¶á\9e\93"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3341,83 +3585,20 @@ msgstr "​ព័រទុយហ្គាល់"
 msgid "Prakrit Languages"
 msgstr "ភាសា​ប្រ៉ាក្រិត"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"ការ​កំណត់​បញ្ហា ដែល​មាន​ន័យ​ថា​ការគាំទ្រ​ផ្នែក​បច្ចេកទេស​បាន​រចនា​ដើម្បី​ផ្ដល់​ព័ត៌មាន​​ដែល​ឆប​គ្នា ជំនួយ​ការ​"
-"ដំឡើង ការ​ប្រើការ​គាំទ្រ និង​ការ​ថែទាំ​ដែល​កំពុង​បន្ត និង​កា​រដោះស្រាយ​បញ្ហា​មូលដ្ឋាន ។ កា​រគាំទ្រ​កម្រិត​មួយ​"
-"មិនមានបំណង​កែ​កំហុស​ផលិតផល​ឥតខ្ចោះ​ទេ ។"
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"ការ​បំបែក​បញ្ហា ដែល​មាន​ន័យ​ថា​ការ​គាំទ្រ​ផ្នែក​បច្ចេកទេស​បាន​រចនា​ដើម្បី​ស្ទួន​បញ្ហា​របស់​អតិថិជន បំបែកបញ្ហា​ "
-"និង​ផ្ដល់​ដំណោះស្រាយ​សម្រាប់​បញ្ហា​មិន​បាន​ដោះស្រាយ​ដោយ​ការគាំទ្រ​កម្រិត​ពីរ ។"
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"ការ​ដោះស្រាយ​បញ្ហា ដែល​មានន័យ​ថា ការ​គាំទ្រ​ផ្នែក​បច្ចេកទេស​បាន​រចនា​ដើម្បី​ដោះស្រាយ​បញ្ហា​ស្មុគស្មាញ "
-"ដោយ​ភ្ជាប់​វិស្វរកម្ម​នៅ​ក្នុង​ដំណោះស្រាយ​របស់​ផលិតផល​ដែល​ត្រូ​វបាន​បញ្ជាក់​ដោយ​ការ​គាំទ្រ​កម្រិត​ពីរ ។"
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "ប្រ៉ូវ៉ែនកាល់ បុរាណ (ដល់ ១៥០០)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "ផ្ដល់"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "ព័រតូរីកូ"
-
 #. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
-msgstr "ពុហ្សតូ"
-
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "កាតារ"
-
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
-msgstr "កេទ្ជូអា"
-
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "មិនបាន​គាំទ្រ​ការញែក​ខ្សែអក្សរ​សំណួរ​សម្រាប់ URL នេះ​ឡើយ"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM បាន​បរាជ័យ ៖ "
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
+msgstr "ពុហ្សតូ"
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "á\9e\9aá\9f\89á\9e¶á\9e¢á\9f\81á\9e\8fá\9e¼-á\9e\9aá\9f\89á\9e¼á\9e\98á\9f\89á\9e¶á\9f\86á\9e\84"
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
+msgstr "á\9e\80á\9f\81á\9e\91á\9f\92á\9e\87á\9e¼á\9e¢á\9e"
 
 #. language code: raj
 #: zypp/LanguageCode.cc:885
@@ -3434,45 +3615,19 @@ msgstr "រ៉ាប៉ានុយអ៊ិ"
 msgid "Rarotongan"
 msgstr "រ៉ារ៉ូតុងហ្គង់"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "អនុសាសន៍"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "មិនបាន​អនុញ្ញាត​ផ្លូវ​ដែល​ទាក់ទង​ទេ ប្រសិន​បើ​មាន​អាជ្ញាធរ"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "យក​ឃ្លាំង '%s' ចេញ"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "ឈ្មោះ​ក្លែងក្លាយ​ឃ្លាំង​មិន​អាច​ចាប់​ផ្តើម​ជា​មួយ​ចំណុច (.)បាន​ទេ ។"
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "បាត់​គុណលក្ខណៈ​ដែល​ទាមទារ '%s' ។"
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "ទាមទារ"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "រេអុយញ៉ុង"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "រ៉ូម៉ាំង (ផ្សេង​ទៀត)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "រ៉ាអេតូ-រ៉ូម៉ាំង"
+
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
 msgstr "រ៉ូម៉ានី"
 
 #. language code: rum ron ro
@@ -3480,11 +3635,6 @@ msgstr "រ៉ូម៉ានី"
 msgid "Romanian"
 msgstr "រូម៉ានី"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "រ៉ូម៉ានី"
-
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3495,43 +3645,25 @@ msgstr "រុន្ឌី"
 msgid "Russian"
 msgstr "រុស្ស៊ី"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "សហព័ន្ធ​រុស្ស៊ី"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "រវ៉ាន់ដា"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "សង់​ហេឡេណា"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "សង់ឃីត និង​នេវីស"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "សង់លូស៊ីយ៉ា"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "រ៉ុងឌី"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "សាន់ម៉ាទីន"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "សង់ហ្គោ"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "á\9e\9fá\9e\84á\9f\8bâ\80\8bá\9e\96á\9f\92á\9e\99á\9f\82á\9e\9a á\9e\93á\9e·á\9e\84â\80\8bá\9e\98á\9e¸á\9e\82á\9e»á\9e\99á\9e¢á\9f\81á\9e¡á\9e»á\9e\84"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "á\9e\99á\9f\89á\9e¶á\9e\81á\9eºá\9e\8f"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "á\9e\9fá\9e\84á\9f\8bá\9e\9cá\9e¶á\9f\86á\9e\84á\9e\9fá\9e\84á\9f\8b á\9e\93á\9e·á\9e\84â\80\8bá\9e á\9f\92á\9e\82á\9f\92á\9e\9aá\9e¸á\9e\8eá\9e¶á\9e\8cá\9e¸á\9e\93"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "á\9e¥á\9e\8eá\9f\92á\9e\8cá\9e¶â\80\8bá\9e\81á\9e¶á\9e\84â\80\8bá\9e\8fá\9f\92á\9e\94á\9e¼á\9e\84â\80\8bá\9e\94á\9f\82á\9e\94â\80\8bá\9e¢á\9e¶á\9e\98á\9f\81á\9e\9aá\9e·á\9e\80 (á\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84â\80\8bá\9e\91á\9f\80á\9e\8f)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3543,222 +3675,85 @@ msgstr "ភាសា​សាលីសាន"
 msgid "Samaritan Aramaic"
 msgstr "សាម៉ារីតង់ អារ៉ាម៉ាអ៊ិក"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "ភាសា​សាម៉ី (ផ្សេង​ទៀត)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "សាម៉ូអា"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "សាមូអាន"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "សាន់ម៉ារីណូ"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "រ៉ុងឌី"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "សង់ហ្គោ"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "​សំស្ក្រឹត"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "សង់តាលី"
-
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "សៅតូម និង​ព្រីនស៊ីព"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "សារឌីនង់"
-
 #. language code: sas
 #: zypp/LanguageCode.cc:919
 msgid "Sasak"
 msgstr "សាសាក់"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "អារ៉ាប៊ីសាអ៊ូឌីត"
-
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "ស្កុតថ៍"
-
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "សែលគូប"
-
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "សេម៉ីទិក (ផ្សេង​ទៀត)"
-
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "សេណេហ្គាល់"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "សែប៊ី"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "សង់តាលី"
 
 #. language code: scc srp sr
 #: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
 msgid "Serbian"
 msgstr "សែប៊ី"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "សេរឺ"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "ឈ្មោះ​ក្លែងក្លាយ​សេវាមិន​អាច​​ចាប់​ផ្តើម​​ជាមួយចំណុច ​(.)​បាន​ទេ ។"
-
-#: zypp/repo/RepoException.cc:129
-#, fuzzy
-msgid "Service plugin does not support changing an attribute."
-msgstr "ប្រភេទ​ធនធាន VAR1 មិន​គាំទ្រ​លក្ខណៈ​ពិសេស​បង្ហាញ​ភាពផ្លាស់ប្ដូរ"
-
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "សីស្ហែល"
-
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "ហ្សាន"
-
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "សូណា"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "ស៊ី​ចួនអ៊ី"
-
 #. language code: scn
 #: zypp/LanguageCode.cc:927
 msgid "Sicilian"
 msgstr "ស៊ីស៊ីល្យ៉ាន"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "ស៊ិដាម៉ូ"
-
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "សេរ៉ាឡេអូន"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "ភាសា​សញ្ញា"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "រក​មិនឃើញ​ឯកសារ​ហត្ថលេខា %s ទេ"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "រក​មិនឃើញ​ឯកសារ​ហត្ថលេខា %s ទេ"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "ស្កុតថ៍"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "រក​មិនឃើញ​ឯកសារ​ហត្ថលេខា %s ទេ"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "​ក្រូអាត"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "រក​មិនឃើញ​ឯកសារ​ហត្ថលេខា %s ទេ"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "សែលគូប"
 
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr " បាន​បរាជ័យ​ក្នុងកា​រប្រតិបត្តិ"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "សេម៉ីទិក (ផ្សេង​ទៀត)"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "អៀរឡង់ បុរាណ (ដល់ ៩០០)"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "á\9e\9fá\9f\8aá\9e·á\9e\80á\9e\9fá\9f\8aá\9e¸á\9e\80ា"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e\9fá\9e\89á\9f\92á\9e\89ា"
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "​​ស៊ីន្តី"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "ហ្សាន"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "á\9e\9fá\9e¹á\9e\84á\9f\92á\9e â\80\8bá\9e\94á\9e»á\9e\9aá\9e¸"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "á\9e\9fá\9f\8aá\9e·á\9e\8aá\9e¶á\9e\98á\9f\89á\9e¼"
 
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "ស៊ីនហាឡា​"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "ស៊ីណូ-ទីបេ (ផ្សេង​ទៀត)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "ភាសា​ស៊ិអួន"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "ស្កូលថ៍ សាម៉ី"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "ស្លាវ (អាតាប៉ាសាន)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "ស៊ីណូ-ទីបេ (ផ្សេង​ទៀត)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3770,212 +3765,141 @@ msgstr "ស្លាវិក (ផ្សេង​ទៀត)"
 msgid "Slovak"
 msgstr "ស្លូវ៉ាគី"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "ស្លូវ៉ាគី"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "ស្លូវ៉ានី"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "​​​ស្លូវ៉ានី"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "សាម៉ី​ខាង​ត្បូង"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "សាម៉ីខាង​ជើង"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "ភាសា​សាម៉ី (ផ្សេង​ទៀត)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "ឡូលេ សាម៉ី"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "អ៊ិណារី សាម៉ី"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "សាមូអាន"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "ស្កូលថ៍ សាម៉ី"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "សូណា"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "​​ស៊ីន្តី"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "សូណាំងកេ"
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "សូដ្យ៊ាន"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "កោះ​សូឡូម៉ូន"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "សូម៉ាលី"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "សូម៉ាលី"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "សុងហ្គាយ"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "សូណាំងកេ"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "ភាសា​សរប៊ាន"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "សូមអភ័យទោស កំណែ​នៃ​ libzypp នេះ​ត្រូវ​បាន​ស្ថាបនា​ឡើង​ដោយ​គ្មាន​ការ​គាំទ្រ​ HAL ។"
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "សូធូ​ខាង​ត្បូង"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "អាហ្វ្រិក​ខាង​ត្បូង"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "ឥណ្ឌា​ខាង​ត្បូង​បែប​អាមេរិក (ផ្សេង​ទៀត)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "កោះ​ហ្សកហ្ស៊ី​ខាងត្បូង និង​ស៊េនវិច​ខាងត្បូង"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "កូរ៉េ​ខាង​ត្បូង"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "អាល់តាយខាង​ត្បូង"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "សាម៉ី​ខាង​ត្បូង"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "អេស៉្បាញ"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "អេស្ប៉ាញ"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "á\9e\9fá\9f\92á\9e\9aá\9e¸á\9e\9bá\9e\84á\9f\92á\9e\80á\9e"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "á\9e\9fá\9e¶á\9e\9aá\9e\8cá\9e¸á\9e\93á\9e\84á\9f\8b"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "á\9e\9fá\9f\8aá\9e¼á\9e\8aá\9e\84á\9f\8b"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "á\9e\9fá\9f\81á\9e\9aá\9eº"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "ស្នើ"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "នីឡូ-សាហារង់ (ផ្សេង​ទៀត)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "ស្វាទី"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "ស៊ូគុយម៉ា"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "ស៊ូមេរាន"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "សាន់ដាណេស"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "ការ​បន្ថែម"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "ស៊ូរីណាមី"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "ស៊ូស៊ូ"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "á\9e\9fá\9f\92á\9e\9cá\9e¶á\9e\9bá\9f\8bá\9e\94á\9e¶á\9e\8f á\9e\93á\9e·á\9e\84â\80\8bá\9e á\9f\92á\9e\9fá\9e\84á\9f\8bá\9e\98á\9f\89á\9e¶á\9e\99á\9f\81ន"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "á\9e\9fá\9f\8aá\9e¼á\9e\98á\9f\81á\9e\9aá\9eន"
 
 #. language code: swa sw
-#: zypp/LanguageCode.cc:1007
-msgid "Swahili"
-msgstr "ស្វាហ៊ីលី"
-
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "ស្វាទី"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "ស្វាហ្ស៊ីឡង់"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "ស៊ុយអែត"
+#: zypp/LanguageCode.cc:1007
+msgid "Swahili"
+msgstr "ស្វាហ៊ីលី"
 
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "ស៊ុយអែដ"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "ស្វ៊ីស"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "ស៊ីរី"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "ស៊ីរី"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "ករណី​លើកលែង​ប្រព័ន្ធ '%s' នៅលើ​ឧបករណ៍​ផ្ទុក '%s' ។"
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"កា​រគ្រប់គ្រង​ប្រព័ន្ធ​ត្រូវ​បានចាក់​សោ​ដោយ​កម្មវិធី​ដែល​មាន pid %d (%s) ។\n"
-"សូម​បិទ​កម្មវិធី​នេះ​មុន​នឹង​ព្យាយាម​ម្ដង​ទៀត ។"
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "តាហ្គាឡូក"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3986,36 +3910,11 @@ msgstr "តាហិតង់"
 msgid "Tai (Other)"
 msgstr "តាអ៊ិ (ផ្សេង​ទៀត)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "តៃវ៉ាន់"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "តាដហ្ស៊ីគីស្តង់"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "តាហ្ស៊ីគីស្តង់"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "តាម៉ាហ្សែក"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "តាមីល"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "តង់ហ្សានី"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4026,6 +3925,11 @@ msgstr "​​តាតារ"
 msgid "Telugu"
 msgstr "តេលូហ្គូ"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "ទីមណេ"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4036,33 +3940,21 @@ msgstr "តេរ៉េណូ"
 msgid "Tetum"
 msgstr "តេទូម"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "តាដហ្ស៊ីគីស្តង់"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "តាហ្គាឡូក"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "ថៃ"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "ថៃ"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "កម្រិត​គាំទ្រ​មិន​ត្រូវ​បាន​បញ្ជាក់"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "ក្រុមហ៊ុន​លក់​មិន​បាន​ផ្ដល់​កា​រគាំទ្រ​ទេ ។"
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "អំពើ​នេះ កំពុង​រត់​ដោយ​កម្មវិធី​ផ្សេង​មួយ​ទៀត ។"
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "សំណើ​នេះ​នឹង​ធ្វើ​ឲ្យ​ប្រព័ន្ធ​របស់​អ្នក​ខូច !"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4078,46 +3970,25 @@ msgstr "ធីហ្គ្រី"
 msgid "Tigrinya"
 msgstr "ទី​គ្រីនយ៉ា"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "អស់​ពេល​លើល​ពេល​ចូល​ដំណើរការ '%s' ។"
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "ទីមណេ"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "ទីវ"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "ខ្លីង​ហ្កន"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "លីងហ្គីត"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "តូហ្គោ"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "តូកេឡាអ៊ូ"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "តុងហ្គា"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "តាម៉ាហ្សែក"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4129,691 +4000,823 @@ msgstr "តុងហ្គា (និយ៉ាសា)"
 msgid "Tonga (Tonga Islands)"
 msgstr "តុងហ្គា (កោះ​តុងហ្គា)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, fuzzy, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "នាំចូល​សោ %s ដែល​មិនមាន​ទៅ​ក្នុង keyring %s"
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "ទ្រីនីដាដ និង​តូបាហ្គោ"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "ស៊ីមស្យ៊ាន"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "ស្វាណា"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "សុងហ្កា"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "á\9e\9fá\9f\92á\9e\9cá\9e¶á\9e\8eá\9e"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "á\9e\91á\9e½á\9e\82á\9e\98á\9f\81á\9e\93á\9e¸á\9e\9fá\9f\92á\9e\8fá\9e\84á\9f\8b"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "ទុមប៊ុយកា"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "ទុយណេស៊ី"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "ភាសា​ទុយពិ"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "ទួរគី"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "ទួរគី"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "á\9e\91á\9e½á\9e\82á\9e¸ á\9e¢á\9e¼á\9e\8fá\9e¼á\9e\98á\9f\89á\9e\84á\9f\8b (á\9f¡á\9f¥á\9f á\9f -á\9f¡á\9f©á\9f¢á\9f¨)"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "á\9e¢á\9e¶á\9e\9bá\9f\8bá\9e\8fá\9e¶á\9e¢á\9f\8aá\9e·á\9e\80 (á\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84â\80\8bá\9e\91á\9f\80á\9e\8f)"
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "ទួគមេនីស្តង់"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "ទ្វី"
+
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "ទុយវីនៀន"
+
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "អ៊ុដម៉ឺត"
+
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "យូហ្គារីទីក"
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "វីហ្គៀរ"
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "​​​អ៊ុយក្រែន"
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "អ៊ូមប៊ុនឌុយ"
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "មិន​អាច​កំណត់"
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "អ៊ូ​រ្ឌូ"
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "អ៊ូហ្សបេគីស្តង់"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "វ៉ាយ"
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "វង់ដា"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "វៀតណាម"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "វ៉ូឡាពូក"
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "វ៉ូទិក"
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "á\9e\91á\9e½á\9e\82á\9e\98á\9f\81á\9e\93á\9e¸á\9e\9fá\9f\92á\9e\8fá\9e\84á\9f\8b"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e\9cá\9f\89á\9e¶á\9e\80á\9e¶á\9e á\9f\92á\9e\9fá\9e¶á\9e\93"
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "á\9e\80á\9f\84á\9f\87â\80\8bá\9e\91á\9e½á\9e\80 á\9e\93á\9e·á\9e\84â\80\8bá\9e\80á\9f\83á\9e\80á\9e¼á\9e\9f"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "á\9e\9cá\9f\89á\9e¶á\9e¡á\9e¶á\9e\98á\9f\89á\9e¼"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "ទុយវ៉ាលុយ"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "វ៉ារ៉ាយ"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "á\9e\91á\9e»á\9e\99á\9e\9cá\9e¸á\9e\93á\9f\80á\9e\93"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "á\9e\9cá\9f\89á\9e¶á\9e\9fá\9e¼"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "á\9e\91á\9f\92á\9e\9cá\9e¸"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "á\9e\9cá\9f\82á\9e\9b"
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "á\9e¢á\9f\8aá\9e»á\9e\8aá\9e\98á\9f\89á\9eºá\9e\8f"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e\9fá\9e\9aá\9e\94á\9f\8aá\9e¶á\9e\93"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "á\9e¢á\9f\8aá\9e¼á\9e á\9f\92á\9e\82á\9e\84á\9f\8bá\9e\8aá\9e"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "á\9e\9cá\9f\89á\9e¶á\9e¡á\9e»á\9e\84"
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "á\9e\99á\9e¼á\9e á\9f\92á\9e\82á\9e¶á\9e\9aá\9e¸á\9e\91á\9e¸á\9e\80"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "á\9e\9cá\9e¼á\9e¡á\9e»á\9e á\9f\92á\9e\9c"
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "á\9e\9cá\9e¸á\9e á\9f\92á\9e\82á\9f\80á\9e\9a"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "á\9e\80á\9e¶á\9e\9bá\9f\8bá\9e\98á\9e¸á\9e\80"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "á\9e¢á\9f\8aá\9e»á\9e\99á\9e\80á\9f\92á\9e\9aá\9f\82á\9e\93"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "á\9e\83á\9e\9fá\9e"
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "​​​អ៊ុយក្រែន"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "យ៉ាវ"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "á\9e¢á\9f\8aá\9e¼á\9e\98á\9e\94á\9f\8aá\9e»á\9e\93á\9e\8cá\9e»á\9e\99"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "á\9e\99á\9f\89á\9e¶á\9e\94á\9f\89á\9f\81á\9e\9fá\9f\81"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "មិនអាច​ក្លូន​វត្ថុ Url បាន​ឡើយ"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "យីឌីហ្ស"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "មិនអាច​បង្កើត​ការ​តភ្ជាប់ dbus"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "យរូបា"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "មិនអាច​ចាប់ផ្ដើម​បរិបទ HAL បានឡើយ -- hald មិន​កំពុង​រត់​ទេឬ ?"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "ភាសា​យូពិក"
 
-# ###############################################################################
-# Old yast2-agents.po
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "មិនអាច​ញែក​សមាសភាគ Url បាន​ឡើយ"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "ហ្សាប៉ូតិក"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8b"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "á\9e á\9f\92á\9e\9fá\9f\8aá\9f\81á\9e\8eá\9e¶á\9e á\9f\92á\9e\82á\9e"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "ប្រភេទ​ឃ្លាំង​ដែល​មិន​បាន​ដោះស្រាយ"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "ចួង"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "á\9e¢á\9e¶á\9e\9aá\9f\89á\9e¶á\9e\94á\9f\8bâ\80\8bá\9e\9aá\9e½á\9e\98"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "á\9e á\9f\92á\9e\9fá\9e\84á\9f\8bá\9e\8aá\9f\81"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "á\9e\85á\9e\80á\9f\92á\9e\9aâ\80\8bá\9e\97á\9e\96â\80\8bá\9e¢á\9e\84á\9f\8bá\9e\82á\9f\92á\9e\9bá\9f\81á\9e\9f"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "á\9e á\9f\92á\9e\9fá\9f\8aá\9e¼á\9e\9bá\9e¼"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "á\9e\9fá\9e á\9e\9aá\9e\8aá\9f\92á\9e\8bá\9e¢á\9e¶á\9e\98á\9f\81á\9e\9aá\9e·á\9e\80"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "á\9e á\9f\92á\9e\9fá\9f\8aá\9e¼á\9e\93á\9e¸"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "កោះ​ឆ្ងាយៗ​របស់​សហរដ្ឋ​អាមេរិក"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, fuzzy, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "នាំចូល​សោ %s ដែល​មិនមាន​ទៅ​ក្នុង keyring %s"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "á\9e\94á\9f\92á\9e\9aá\9e\91á\9f\81á\9e\9fâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\9fá\9f\92á\9e\82á\9e¶á\9e\9bá\9f\8b á\9f\96 "
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\9bá\9e»á\9e\94â\80\8bá\9e\9fá\9f\84 á\9f\94"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "មាន​កំហុស​ដែល​មិន​ស្គាល់​ក្នុង​ការ​អាន​ពី '%s'"
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "មិន​ស្គាល់​ភាសា ៖ "
+msgid "Signature file %s not found"
+msgstr "រក​មិនឃើញ​ឯកសារ​ហត្ថលេខា %s ទេ"
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "មិន​ស្គាល់​របៀប​ផ្គូផ្គង '%s'"
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "មិនអាច​ផ្ដល់​ឯកសារ '%s' ពី​ឃ្លាំង '%s' បានទេ"
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "គ្មាន url នៅ​ក្នុង​ឃ្លាំង ។"
+
+#: zypp/repo/RepoException.cc:129
+#, fuzzy
+msgid "Service plugin does not support changing an attribute."
+msgstr "ប្រភេទ​ធនធាន VAR1 មិន​គាំទ្រ​លក្ខណៈ​ពិសេស​បង្ហាញ​ភាពផ្លាស់ប្ដូរ"
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "មិន​ស្គាល់​របៀប​ផ្គូផ្គង '%s' សម្រាប់​លំនាំ '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr "កញ្ចប់ %s ហាក់​បីជា​​ខូច​ក្នុងការ​ផ្ទេរ ។ តើ​អ្នកចង់​ព្យាយាម​ម្ដង​ទៀត​ទេ ?"
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr " បាន​បរាជ័យ​ក្នុងកា​រប្រតិបត្តិ"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "មិន​ស្គាល់​ជម្រើស​គាំទ្រ ។ មិនមាន​សេចក្ដីអធិប្បាយ"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "បាន​បរាជ័យ​ក្នុងកា​រផ្ដល់​កញ្ចប់ %s ។ តើអ្នក​ចង់​ព្យាយាម​យក​ម្ដង​ទៀត​ទេ ?"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "ការ​ពិនិត្យ applydeltarpm បាន​បរាជ័យ ។"
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm បាន​បរាជ័យ ។"
+
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "មិនបាន​គាំទ្រ​វិធីសាស្ត្រ​ផ្ទៀងផ្ទាត់​ភាពត្រឹមត្រូវ HTTP '%s' ឡើយ"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"កា​រគ្រប់គ្រង​ប្រព័ន្ធ​ត្រូវ​បានចាក់​សោ​ដោយ​កម្មវិធី​ដែល​មាន pid %d (%s) ។\n"
+"សូម​បិទ​កម្មវិធី​នេះ​មុន​នឹង​ព្យាយាម​ម្ដង​ទៀត ។"
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:975
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "គ្រោងការណ៍ URI ដែល​មិនបាន​គាំទ្រ​នៅ​ក្នុង '%s' ។"
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "អាប​ផើ សូ​បៀន"
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s មិនមែនជា​របស់​ឃ្លាំង distupgrade នោះ​ទេ"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "អ៊ូ​រ្ឌូ"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s មាន​​​ស្ថាបត្យកម្ម​ទាប​ជាង"
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "á\9e\82á\9f\92á\9e\9aá\9f\84á\9e\84á\9e\80á\9e¶á\9e\9aá\9e\8eá\9f\8d Url á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e\93á\9e»á\9e\89á\9f\92á\9e\89á\9e¶á\9e\8f %s á\9e\91á\9f\81"
+msgid "problem with installed package %s"
+msgstr "á\9e\94á\9e\89á\9f\92á\9e á\9e¶â\80\8bá\9e\87á\9e¶á\9e\98á\9e½á\9e\99â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84 %s"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "á\9e\82á\9f\92á\9e\9aá\9f\84á\9e\84á\9e\80á\9e¶á\9e\9aá\9e\8eá\9f\8d Url á\9e\98á\9e·á\9e\93á\9e¢á\9e\93á\9e»á\9e\89á\9f\92á\9e\89á\9e¶á\9e\8fâ\80\8bá\9e\9fá\9e\98á\9e¶á\9e\9fá\9e\97á\9e¶á\9e\82â\80\8bá\9e\9aá\9e\94á\9e\9fá\9f\8bâ\80\8bá\9e\98á\9f\89á\9e¶á\9e\9fá\9f\8aá\9e¸á\9e\93â\80\8bá\9e¡á\9e¾á\9e\99"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "á\9e\9fá\9f\86á\9e\8eá\9e¾â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\94á\9f\89á\9f\87á\9e\91á\9e\84á\9f\92á\9e\82á\9e·á\9e\85"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "á\9e\82á\9f\92á\9e\9aá\9f\84á\9e\84á\9e\80á\9e¶á\9e\9aá\9e\8eá\9f\8d Url á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e\93á\9e»á\9e\89á\9f\92á\9e\89á\9e¶á\9e\8fâ\80\8bá\9e\96á\9e¶á\9e\80á\9f\92á\9e\99â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\84á\9e¶á\9e\8fá\9f\8bâ\80\8bá\9e¡á\9e¾á\9e\99"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "á\9e\94á\9e\89á\9f\92á\9e á\9e¶â\80\8bá\9e\97á\9e¶á\9e\96â\80\8bá\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8bá\9e\98á\9e½á\9e\99â\80\8bá\9e\85á\9f\86á\9e\93á\9e½á\9e\93"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "គ្រោងការណ៍ Url មិន​អនុញ្ញាត​ច្រក​ឡើយ"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "គ្មាន​អ្វី​ផ្ដល់ %s ដែលបាន​ស្នើ​ទេ"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "á\9e\82á\9f\92á\9e\9aá\9f\84á\9e\84á\9e\80á\9e¶á\9e\9aá\9e\8eá\9f\8d Url á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e\93á\9e»á\9e\89á\9f\92á\9e\89á\9e¶á\9e\8fâ\80\8bá\9e\88á\9f\92á\9e\98á\9f\84á\9f\87â\80\8bá\9e¢á\9f\92á\9e\93á\9e\80á\9e\94á\9f\92á\9e\9aá\9e¾â\80\8bá\9e¡á\9e¾á\9e\99"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "á\9e\8fá\9e¾â\80\8bá\9e¢á\9f\92á\9e\93á\9e\80â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e¾á\9e\80â\80\8bá\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84â\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\9fá\9f\92á\9e\93á\9e¾â\80\8bá\9e\91á\9e¶á\9f\86á\9e\84á\9e¢á\9e\9fá\9f\8bâ\80\8bá\9e á\9e¾á\9e\99á\9e¬á\9e\93á\9f\85 ?"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "គ្រោងការណ៍ Url មិនមែន​ជា​សមាសភាគ​ដែល​បាន​ទាមទារ​ឡើយ"
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "មិនមាន​ព័ត៌មាន​បម្រុង​ទុក​ទេ"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "គ្រោងការណ៍ Url ទាមទារ​សមាសភាគ​របស់​ម៉ាស៊ីន"
+#: zypp/solver/detail/SATResolver.cc:1000
+#, fuzzy
+msgid "unsupported request"
+msgstr "មិន​បានគាំទ្រ"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "គ្រោងការណ៍ Url ទាមទារ​ឈ្មោះ​ផ្លូវ"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s ជាប់សោ និង​មិន​អាច​លុប​បាន​ឡើយ ។"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "អ៊ុយរ៉ាហ្គាយ"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s មិនអាច​ដំឡើងបាន"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "á\9e¢á\9f\8aá\9e¼á\9e á\9f\92á\9e\9fá\9e\94á\9f\81á\9e\82á\9e¸á\9e\9fá\9f\92á\9e\8fá\9e\84á\9f\8b"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "á\9e\82á\9f\92á\9e\98á\9e¶á\9e\93â\80\8bá\9e¢á\9f\92á\9e\9cá\9e¸â\80\8bá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8b %s á\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\8aá\9f\84á\9e\99 %s á\9e\91á\9f\81"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "á\9e¢á\9f\8aá\9e¼á\9e á\9f\92á\9e\9fá\9e\94á\9f\81á\9e\82á\9e¸á\9e\9fá\9f\92á\9e\8fá\9e\84á\9f\8b"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\91á\9e¶á\9f\86á\9e\84 %s á\9e\93á\9e·á\9e\84 %s"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "វ៉ាយ"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s ប៉ះទង្គិច​ជាមួយ %s ដែល​បាន​ផ្ដល់​ដោយ %s"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-#, fuzzy
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "រក​មិន​ឃើញ​ទិន្នន័យ​មេតា​ដែល​ត្រឹមត្រូវ​នៅ URL ដែល​បាន​បញ្ជាក់"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s លែងប្រើ %s ដែល​ផ្ដល់ដោយ %s"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "វ៉ានុយអាទុយ"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s ដែល​បាន​ដំឡើង​លែង​ប្រើ %s ដែល​ផ្ដល់​ដោយ %s ហើយ"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "á\9e\9cá\9e\84á\9f\8bá\9e\8aá\9e"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\94á\9f\89á\9f\87á\9e\91á\9e\84á\9f\92á\9e\82á\9e·á\9e\85 %s á\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\8aá\9f\84á\9f\87á\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\87á\9e¶â\80\8bá\9e\98á\9e½á\9e\99 %s á\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8bâ\80\8bá\9e\8aá\9f\84á\9e\99â\80\8bá\9e\81á\9f\92á\9e\9bá\9e½á\9e\93â\80\8bá\9e\9cá\9e¶â\80\8bá\9e\95á\9f\92á\9e\91á\9e¶á\9e\9bá\9f\8b"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "វេណេហ៊្សុយអេឡា"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s ត្រូវការ %s ប៉ុន្តែ​តម្រូវការ​នេះ​មិនអាច​ផ្ដល់​បានទេ"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "វៀតណាម"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "ក្រុមហ៊ុន​ផ្ដល់​ដែល​បាន​លុប ៖ "
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "វៀតណាម"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"លុបក្រុមហ៊ុនផ្ដល់ ៖ "
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "á\9e\80á\9f\84á\9f\87â\80\8bá\9e\9cá\9eºá\9e\87á\9e¸á\9e\93 á\9e¢á\9e¶á\9e\98á\9f\81á\9e\9aá\9e·á\9e\80"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "á\9e\80á\9f\92á\9e\9aá\9e»á\9e\98á\9e á\9f\8aá\9e»á\9e\93â\80\8bá\9e\9bá\9e\80á\9f\8bâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\9bá\9e»á\9e\94á\9e\94á\9e¶á\9e\93 á\9f\96 "
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
-"មើល​មជ្ឈមណ្ឌល​អតិថិជន​របស់ Novell ដើម្បីពិនិត្យ​មើល​ថាតើ ការ​ចុះឈ្មោះ​ត្រឹមត្រូវ ហើយមិនបាន​ផុត​កំណត់ ។"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "វ៉ូឡាពូក"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "កុំ​ដំឡើង %s"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "វ៉ូទិក"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "រក្សា %s"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e\9cá\9f\89á\9e¶á\9e\80á\9e¶á\9e á\9f\92á\9e\9fá\9e¶á\9e\93"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "á\9e\80á\9e»á\9f\86â\80\8bá\9e á\9e¶á\9e\98â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\93á\9f\83 %s"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "á\9e\9cá\9f\89á\9e¶á\9e¡á\9e¶á\9e\98á\9f\89á\9e¼"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "á\9e\9fá\9f\86á\9e\8eá\9e¾â\80\8bá\9e\93á\9f\81á\9f\87â\80\8bá\9e\93á\9e¹á\9e\84â\80\8bá\9e\92á\9f\92á\9e\9cá\9e¾â\80\8bá\9e²á\9f\92á\9e\99â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\96á\9f\90á\9e\93á\9f\92á\9e\92â\80\8bá\9e\9aá\9e\94á\9e\9fá\9f\8bâ\80\8bá\9e¢á\9f\92á\9e\93á\9e\80â\80\8bá\9e\81á\9e¼á\9e\85 !"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "á\9e\9cá\9f\89á\9e¶á\9e\9bá\9e¸á\9e\9f á\9e\93á\9e·á\9e\84â\80\8bá\9e á\9f\8aá\9f\92á\9e\9cá\9e¼â\80\8bá\9e\91á\9e»á\9e\99á\9e\8eá\9e"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¾á\9e\96á\9e¾â\80\8bá\9e\93á\9e¹á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\96á\9f\92á\9e\9aá\9e\98á\9e¶á\9e\93â\80\8bá\9e\9aá\9e\94á\9e\9fá\9f\8bâ\80\8bá\9e\94á\9f\92á\9e\9aá\9e\96á\9f\90á\9e\93á\9f\92á\9e\92â\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\81á\9e¼á\9e\85"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "á\9e\9cá\9f\89á\9e¶á\9e¡á\9e»á\9e\84"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "á\9e\80á\9e»á\9f\86â\80\8bá\9e\9fá\9f\92á\9e\93á\9e¾â\80\8bá\9e²á\9f\92á\9e\99â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\8aá\9f\84á\9f\87á\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99â\80\8bá\9e\8aá\9f\84á\9e\99â\80\8bá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8b %s"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "á\9e\9cá\9f\89á\9e¶á\9e\9aá\9f\89á\9e¶á\9e\99"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "á\9e\80á\9e»á\9f\86â\80\8bá\9e\9fá\9f\92á\9e\93á\9e¾â\80\8bá\9e²á\9f\92á\9e\99â\80\8bá\9e\9bá\9e»á\9e\94â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\8aá\9f\84á\9f\87á\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99â\80\8bá\9e\91á\9e¶á\9f\86á\9e\84á\9e¢á\9e\9fá\9f\8bâ\80\8bá\9e\8aá\9f\84á\9e\99â\80\8bá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8b %s"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "á\9e\9cá\9f\89á\9e¶á\9e\9fá\9e¼"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "á\9e\80á\9e»á\9f\86â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\80á\9f\86á\9e\8eá\9f\82â\80\8bá\9e\90á\9f\92á\9e\98á\9e¸á\9e\9aá\9e\94á\9e\9fá\9f\8b %s"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "á\9e\9cá\9f\82á\9e\9b"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "á\9e\91á\9e»á\9e\80 %s á\9e\91á\9f\84á\9f\87â\80\8bá\9e\94á\9e¸â\80\8bá\9e\87á\9e¶â\80\8bá\9e\9fá\9f\92á\9e\90á\9e¶á\9e\94á\9e\8fá\9f\92á\9e\99á\9e\80á\9e\98á\9f\92á\9e\98â\80\8bá\9e\91á\9e¶á\9e\94â\80\8bá\9e\80á\9f\8fâ\80\8bá\9e\8aá\9f\84á\9e\99"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "សាហារ៉ា​ខាង​លិច"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "ដំឡើង %s ទោះ​បីជា​ស្ថាបត្យកម្ម​ទាប​ក៏​ដោយ"
+
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "លែង​ប្រើ %s"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "á\9e\9cá\9e¼á\9e¡á\9e»á\9e á\9f\92á\9e\9c"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "á\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84 %s á\9e\96á\9e¸â\80\8bá\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84â\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9e\80â\80\8bá\9e\85á\9f\81á\9e\89"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "á\9e\83á\9e\9fá\9e"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\94 %s á\9e\91á\9f\85 %s"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "á\9e\99á\9f\89á\9e¶á\9e\81á\9eºá\9e\8f"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\95á\9f\92á\9e\9bá\9e¶á\9e\9fá\9f\8bá\9e\94á\9f\92á\9e\8aá\9e¼á\9e\9aâ\80\8bá\9e\9fá\9f\92á\9e\90á\9e¶á\9e\94á\9e\8fá\9f\92á\9e\99á\9e\80á\9e\98á\9f\92á\9e\98â\80\8bá\9e\93á\9f\83 %s á\9e\91á\9f\85 %s"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "យ៉ាវ"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"ដំឡើង %s (ដោយ​មានការ​ផ្លាស់ប្ដូរ​របស់​អ្នក​លក់)\n"
+"  %s  -->  %s"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "á\9e\99á\9f\89á\9e¶á\9e\94á\9f\89á\9f\81á\9e\9fá\9f\81"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\87á\9f\86á\9e\93á\9e½á\9e\9f %s á\9e\87á\9e¶á\9e\98á\9e½á\9e\99 %s"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "á\9e\99á\9f\81á\9e\98á\9f\82á\9e\93"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\9bá\9e»á\9e\94â\80\8bá\9e\93á\9f\83 %s"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "យីឌីហ្ស"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "បំបែក %s ដោយ​មិនអើពើ​ភាព​អាស្រ័យ​របស់​វា​មួយ​ចំនួន"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "á\9e\99á\9e\9aá\9e¼á\9e\94á\9e"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "á\9e\87á\9e¶â\80\8bá\9e\91á\9e¼á\9e\91á\9f\85â\80\8bá\9e\98á\9e·á\9e\93á\9e¢á\9e¾á\9e\96á\9e¾â\80\8bá\9e\93á\9e¹á\9e\84â\80\8bá\9e\97á\9e¶á\9e\96â\80\8bá\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8bá\9e\98á\9e½á\9e\99â\80\8bá\9e\85á\9f\86á\9e\93á\9e½á\9e\93"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "á\9e\97á\9e¶á\9e\9fá\9e¶â\80\8bá\9e\99á\9e¼á\9e\96á\9e·á\9e\80"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "á\9e\94á\9e¶á\9e\8fá\9f\8bâ\80\8bá\9e\82á\9e»á\9e\8eá\9e\9bá\9e\80á\9f\92á\9e\81á\9e\8eá\9f\88â\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\91á\9e¶á\9e\98á\9e\91á\9e¶á\9e\9a '%s' á\9f\94"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "á\9e á\9f\92á\9e\9fá\9e¶á\9f\86á\9e\94á\9f\8aá\9e¸"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "á\9e\94á\9e¶á\9e\93â\80\8bá\9e\91á\9e¶á\9e\98á\9e\91á\9e¶á\9e\9aâ\80\8bá\9e\82á\9e»á\9e\8eá\9e\9bá\9e\80á\9f\92á\9e\81á\9e\8eá\9f\88â\80\8bá\9e\98á\9e½á\9e\99 á\9e¬â\80\8bá\9e\96á\9e¸á\9e\9aâ\80\8bá\9e\9aá\9e\94á\9e\9fá\9f\8b '%s' á\9e¬ '%s' á\9f\94"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "á\9e á\9f\92á\9e\9fá\9e\84á\9f\8bá\9e\8aá\9f\81"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e¾á\9e\80â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\9fá\9f\84 á\9f\96 %s"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "ហ្សាប៉ូតិក"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "អំពើ​នេះ កំពុង​រត់​ដោយ​កម្មវិធី​ផ្សេង​មួយ​ទៀត ។"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "á\9e á\9f\92á\9e\9fá\9f\8aá\9f\81á\9e\8eá\9e¶á\9e á\9f\92á\9e\82á\9e"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "á\9e\94á\9f\92á\9e\9aá\9e\9cá\9e\8fá\9f\92á\9e\8fá\9e·Â á\9f\96"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "á\9e\85á\9e½á\9e\84"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e\9fá\9f\92á\9e\82á\9e¶á\9e\9bá\9f\8bâ\80\8bá\9e\9aá\9e\94á\9f\80á\9e\94â\80\8bá\9e\95á\9f\92á\9e\82á\9e¼á\9e\95á\9f\92á\9e\82á\9e\84 '%s'"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "á\9e á\9f\92á\9e\9fá\9f\8aá\9e¸á\9e\98á\9e\94á\9e¶á\9e\9cá\9f\89á\9f\81"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e\9fá\9f\92á\9e\82á\9e¶á\9e\9bá\9f\8bâ\80\8bá\9e\9aá\9e\94á\9f\80á\9e\94â\80\8bá\9e\95á\9f\92á\9e\82á\9e¼á\9e\95á\9f\92á\9e\82á\9e\84 '%s' á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8bâ\80\8bá\9e\9bá\9f\86á\9e\93á\9e¶á\9f\86 '%s'"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "á\9e á\9f\92á\9e\9fá\9f\8aá\9e¼á\9e\9bá\9e¼"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "á\9e\80á\9e\93á\9f\92á\9e\9fá\9f\84á\9e\98â\80\8bá\9e\92á\9e\98á\9f\92á\9e\98á\9e\8fá\9e¶â\80\8bá\9e\98á\9e·á\9e\93á\9e\8fá\9f\92á\9e\9aá\9e¹á\9e\98á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9c '%s' á\9f\96 regcomp á\9e\94á\9e¶á\9e\93â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¡á\9e\94á\9f\8b %d"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "á\9e á\9f\92á\9e\9fá\9f\8aá\9e¼á\9e\93á\9e¸"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "á\9e\80á\9e\93á\9f\92á\9e\9fá\9f\84á\9e\98â\80\8bá\9e\92á\9e\98á\9f\92á\9e\98á\9e\8fá\9e¶â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¹á\9e\98á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9c '%s'"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "ការ​ពិនិត្យ applydeltarpm បាន​បរាជ័យ ។"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm បាន​បរាជ័យ ។"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "បាន​ទាមទារ​ការ​ផ្ទៀងផ្ទាត់​ភាព​ត្រឹមត្រូវ​សម្រាប់ '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\95á\9f\92á\9e\9bá\9e¶á\9e\9fá\9f\8bá\9e\94á\9f\92á\9e\8aá\9e¼á\9e\9aâ\80\8bá\9e\9fá\9f\92á\9e\90á\9e¶á\9e\94á\9e\8fá\9f\92á\9e\99á\9e\80á\9e\98á\9f\92á\9e\98â\80\8bá\9e\93á\9f\83 %s á\9e\91á\9f\85 %s"
+msgid "Failed to mount %s on %s"
+msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\98á\9f\89á\9f\84á\9e\93 %s á\9e\9bá\9e¾ %s"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "á\9e\94á\9f\86á\9e\94á\9f\82á\9e\80 %s á\9e\8aá\9f\84á\9e\99â\80\8bá\9e\98á\9e·á\9e\93á\9e¢á\9e¾á\9e\96á\9e¾â\80\8bá\9e\97á\9e¶á\9e\96â\80\8bá\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8bá\9e\9aá\9e\94á\9e\9fá\9f\8bâ\80\8bá\9e\9cá\9e¶â\80\8bá\9e\98á\9e½á\9e\99â\80\8bá\9e\85á\9f\86á\9e\93á\9e½á\9e\93"
+msgid "Failed to unmount %s"
+msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e¢á\9e¶á\9e\93á\9f\8bá\9e\98á\9f\89á\9f\84á\9e\93 %s"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\91á\9e¶á\9f\86á\9e\84 %s á\9e\93á\9e·á\9e\84 %s"
+msgid "Bad file name: %s"
+msgstr "á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\81á\9e¼á\9e\85â\80\8bá\9e\88á\9f\92á\9e\98á\9f\84á\9f\87 á\9f\96 %s"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "សំណើ​ការ​ប៉ះទង្គិច"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "ឧបករណ៍​ផ្ទុក​មិនបាន​បើក នៅពេល​ធ្វើ​អំពើ '%s' ។"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8fâ\80\8bá\9e\96á\9f\90á\9e\8fá\9f\8cá\9e\98á\9e¶á\9e\93â\80\8bá\9e\94á\9e\98á\9f\92á\9e\9aá\9e»á\9e\84 %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "á\9e\9aá\9e\80â\80\8bá\9e\98á\9e·á\9e\93á\9e\83á\9e¾á\9e\89â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a '%s' á\9e\93á\9f\85â\80\8bá\9e\9bá\9e¾â\80\8bá\9e§á\9e\94á\9e\80á\9e\9aá\9e\8eá\9f\8dâ\80\8bá\9e\95á\9f\92á\9e\91á\9e»á\9e\80â\80\8bá\9e\91á\9f\81 '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\9bá\9e»á\9e\94â\80\8bá\9e\93á\9f\83 %s"
+msgid "Cannot write file '%s'."
+msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9aâ\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a '%s' á\9e\94á\9e¶á\9e\93á\9e\91á\9f\81 á\9f\94"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "á\9e\80á\9f\92á\9e\9aá\9e»á\9e\98á\9e á\9f\8aá\9e»á\9e\93â\80\8bá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8bâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\9bá\9e»á\9e\94 á\9f\96 "
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "á\9e\98á\9e·á\9e\93á\9e\94á\9e¶á\9e\93â\80\8bá\9e\97á\9f\92á\9e\87á\9e¶á\9e\94á\9f\8bâ\80\8bá\9e§á\9e\94á\9e\80á\9e\9aá\9e\8eá\9f\8dâ\80\8bá\9e\95á\9f\92á\9e\91á\9e»á\9e\80"
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "កុំ​ស្នើ​ឲ្យ​លុប​កញ្ចប់​ដោះស្រាយ​ទាំងអស់​ដោយ​ផ្ដល់ %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "ចំណុច​ភ្ជាប់​ឧបករណ៍​ផ្ទុក​មិនត្រឹមត្រូវ"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "á\9e\80á\9e»á\9f\86â\80\8bá\9e\9fá\9f\92á\9e\93á\9e¾â\80\8bá\9e²á\9f\92á\9e\99â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\8aá\9f\84á\9f\87á\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99â\80\8bá\9e\8aá\9f\84á\9e\99â\80\8bá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8b %s"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "á\9e\91á\9e¶á\9e\89á\9e\99á\9e\80â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\85á\9e¶á\9e\94á\9f\8bá\9e\95á\9f\92á\9e\8aá\9e¾á\9e\98â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "á\9e\80á\9e»á\9f\86â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84 %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "á\9e\80á\9e\9aá\9e\8eá\9e¸â\80\8bá\9e\9bá\9e¾á\9e\80á\9e\9bá\9f\82á\9e\84â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\96á\9f\90á\9e\93á\9f\92á\9e\92 '%s' á\9e\93á\9f\85á\9e\9bá\9e¾â\80\8bá\9e§á\9e\94á\9e\80á\9e\9aá\9e\8eá\9f\8dâ\80\8bá\9e\95á\9f\92á\9e\91á\9e»á\9e\80 '%s' á\9f\94"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "á\9e\80á\9e»á\9f\86â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\80á\9f\86á\9e\8eá\9f\82â\80\8bá\9e\90á\9f\92á\9e\98á\9e¸á\9e\9aá\9e\94á\9e\9fá\9f\8b %s"
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "á\9e\95á\9f\92á\9e\9bá\9e¼á\9e\9c '%s' á\9e\93á\9f\85á\9e\9bá\9e¾â\80\8bá\9e§á\9e\94á\9e\80á\9e\9aá\9e\8eá\9f\8dâ\80\8bá\9e\95á\9f\92á\9e\91á\9e»á\9e\80 '%s' á\9e\98á\9e·á\9e\93á\9e\98á\9f\82á\9e\93â\80\8bá\9e\87á\9e¶â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\91á\9f\81 á\9f\94"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\94 %s á\9e\91á\9f\85 %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "á\9e\95á\9f\92á\9e\9bá\9e¼á\9e\9c '%s' á\9e\93á\9f\85á\9e\9bá\9e¾â\80\8bá\9e§á\9e\94á\9e\80á\9e\9aá\9e\8eá\9f\8dâ\80\8bá\9e\95á\9f\92á\9e\91á\9e»á\9e\80 '%s' á\9e\98á\9e·á\9e\93á\9e\98á\9f\82á\9e\93â\80\8bá\9e\87á\9e¶â\80\8bá\9e\90á\9e\8fâ\80\8bá\9e\91á\9f\81 á\9f\94"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "ជា​ទូទៅ​មិនអើពើ​នឹង​ភាព​អាស្រ័យ​មួយ​ចំនួន"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "URI មាន​ទ្រង់ទ្រាយ​មិនត្រឹមត្រូវ"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "ឈ្មោះ​ម៉ាស៊ីន​ទទេ​ក្នុង URI"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "ប្រព័ន្ធ​ឯកសា​ទទេ​នៅ​ក្នុង URI"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "គោលដៅ​ទទេ​នៅ​ក្នុង URI"
+
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "គ្រោងការណ៍ URI ដែល​មិនបាន​គាំទ្រ​នៅ​ក្នុង '%s' ។"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "មិនអើពើ​នឹង​ការ​ព្រមាន​របស់​ប្រព័ន្ធ​ដែល​ខូច"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "ប្រតិបត្តិការ​មិនបាន​គាំទ្រ​ដោយ​ឧបករណ៍​ផ្ទុក​ទេ"
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
-"ដំឡើង %s (ដោយ​មានការ​ផ្លាស់ប្ដូរ​របស់​អ្នក​លក់)\n"
-"  %s  -->  %s"
+"ទាញយក​កំហុស​សម្រាប់ '%s' ៖\n"
+"កូដ​កំហុស ៖ %s\n"
+"សារ​កំហុស ៖ %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "á\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84 %s á\9e\91á\9f\84á\9f\87â\80\8bá\9e\94á\9e¸á\9e\87á\9e¶â\80\8bá\9e\9fá\9f\92á\9e\90á\9e¶á\9e\94á\9e\8fá\9f\92á\9e\99á\9e\80á\9e\98á\9f\92á\9e\98â\80\8bá\9e\91á\9e¶á\9e\94â\80\8bá\9e\80á\9f\8fâ\80\8bá\9e\8aá\9f\84á\9e\99"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\93á\9f\85á\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bâ\80\8bá\9e\87á\9e\98á\9f\92á\9e\9aá\9e¾á\9e\9fâ\80\8bá\9e\91á\9e¶á\9e\89á\9e\99á\9e\80â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b '%s' á\9f\96"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "á\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84 %s á\9e\96á\9e¸â\80\8bá\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84â\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9e\80â\80\8bá\9e\85á\9f\81á\9e\89"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "á\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8bá\9e§á\9e\94á\9e\80á\9e\9aá\9e\8eá\9f\8dâ\80\8bá\9e\95á\9f\92á\9e\91á\9e»á\9e\80 '%s' á\9e\98á\9e·á\9e\93á\9e\98á\9e¶á\9e\93â\80\8bá\9e§á\9e\94á\9e\80á\9e\9aá\9e\8eá\9f\8dâ\80\8bá\9e\95á\9f\92á\9e\91á\9e»á\9e\80â\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\91á\9f\81"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s ដែល​បាន​ដំឡើង​លែង​ប្រើ %s ដែល​ផ្ដល់​ដោយ %s ហើយ"
+msgid "Medium '%s' is in use by another instance"
+msgstr "ឧបករណ៍​ផ្ទុក '%s' គឺ​កំពុង​ប្រើ​ដោយ​ឧបករណ៍​ផ្សេង"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "មិន​ត្រឹមត្រូវ"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "មិនអាច​ច្រាន​ឧបករណ៍​ផ្ទុក​ណាមួយ​ចេញ​ឡើយ"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "á\9e\9aá\9e\80á\9f\92á\9e\9fá\9e¶ %s"
+msgid "Cannot eject media '%s'"
+msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\85á\9f\92á\9e\9aá\9e¶á\9e\93â\80\8bá\9e§á\9e\94á\9e\80á\9e\9aá\9e\8eá\9f\8dâ\80\8bá\9e\95á\9f\92á\9e\91á\9e»á\9e\80 '%s' á\9e\85á\9f\81á\9e\89á\9e\94á\9e¶á\9e\93á\9e\91á\9f\81"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "á\9e\91á\9e»á\9e\80 %s á\9e\91á\9f\84á\9f\87â\80\8bá\9e\94á\9e¸â\80\8bá\9e\87á\9e¶â\80\8bá\9e\9fá\9f\92á\9e\90á\9e¶á\9e\94á\9e\8fá\9f\92á\9e\99á\9e\80á\9e\98á\9f\92á\9e\98â\80\8bá\9e\91á\9e¶á\9e\94â\80\8bá\9e\80á\9f\8fâ\80\8bá\9e\8aá\9f\84á\9e\99"
+msgid "Permission to access '%s' denied."
+msgstr "á\9e\9fá\9e·á\9e\91á\9f\92á\9e\92á\9e·â\80\8bá\9e\85á\9e¼á\9e\9bâ\80\8bá\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\91á\9f\85 '%s' á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\8aá\9e·á\9e\9fá\9f\81á\9e\92 á\9f\94"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "លែង​ប្រើ %s"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new ៖ មិនអាច​បង្កើត​បរិបទ libhal បានឡើយ"
-
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection ៖ មិនអាច​​កំណត់​ការ​តភ្ជាប់ dbus បានឡើយ"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "អស់​ពេល​លើល​ពេល​ចូល​ដំណើរការ '%s' ។"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "á\9e\82á\9f\92á\9e\98á\9e¶á\9e\93â\80\8bá\9e¢á\9f\92á\9e\9cá\9e¸â\80\8bá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8b %s á\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\8aá\9f\84á\9e\99 %s á\9e\91á\9f\81"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "á\9e\91á\9e¸á\9e\8fá\9e¶á\9f\86á\9e\84 '%s' á\9e\98á\9e·á\9e\93â\80\8bá\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\87á\9e¶â\80\8bá\9e\94á\9e\8eá\9f\92á\9e\8aá\9f\84á\9f\87á\9e¢á\9e¶á\9e\9fá\9e\93á\9f\92á\9e\93 á\9f\94"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "គ្មាន​អ្វី​ផ្ដល់ %s ដែលបាន​ស្នើ​ទេ"
-
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "មិនមាន​ព័ត៌មាន​បម្រុង​ទុក​ទេ"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr " បញ្ហា​វិញ្ញាបនបត្រ SSL ផ្ទៀងផ្ទាត់​ថា​វិញ្ញាបនបត្រ CA គឺ​ត្រឹមត្រូវ​សម្រាប់ '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "បញ្ហា​ជាមួយ​កញ្ចប់​ដែល​បាន​ដំឡើង %s"
-
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "កុំ​ហាម​ការ​ដំឡើង​នៃ %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr "មិន​អាច​រក​ឧបករណ៍​ដែល​មាន​ដើម្បីម៉ោន​ឯកសារ​រូបភាព​ពី '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr ""
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "មិនបាន​គាំទ្រ​វិធីសាស្ត្រ​ផ្ទៀងផ្ទាត់​ភាពត្រឹមត្រូវ HTTP '%s' ឡើយ"
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "ការ​ជំនួស %s ជាមួយ %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"មើល​មជ្ឈមណ្ឌល​អតិថិជន​របស់ Novell ដើម្បីពិនិត្យ​មើល​ថាតើ ការ​ចុះឈ្មោះ​ត្រឹមត្រូវ ហើយមិនបាន​ផុត​កំណត់ ។"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm បាន​បង្កើត %s ជា %s ប៉ុន្តែ​វា​មិន​អាច​កំណត់​ភាព​ខុស​គ្នា"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "មិនអាច​បង្កើត sat-pool បានទេ ។"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm បាន​កំណត់ %s ជា %s ។\n"
-"នេះ​ជា​បន្ទាត់ ២៥ ជួរ​ដំបូង​ខុសគ្នា ៖​\n"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm បានរ​ក្សា​ទុក %s ជា %s ប៉ុន្តែ​វា​អាច​កំណត់​ភាព​ខុស​គ្នា"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm បាន​រក្សាទុក %s ជា %s ។\n"
-"នេះ​ជា​បន្ទាត់ ២៥ ជួរ​ដំបូង​ខុសគ្នា៖\n"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "ការ​ប៉ះទង្គិច %s ដែល​អាច​ដោះស្រាយ​បាន​ជា​មួយ %s ដែល​បាន​ផ្ដល់​ដោយ​ខ្លួន​វា​ផ្ទាល់"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "បញ្ហា​ភាព​អាស្រ័យ​មួយ​ចំនួន"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "ក្រុមហ៊ុន​លក់​ដែល​អាច​លុបបាន ៖ "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "មិន​ស្គាល់"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "មិន​បានគាំទ្រ"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-#, fuzzy
-msgid "unsupported request"
-msgstr "មិន​បានគាំទ្រ"
+#~ msgid "do not keep %s installed"
+#~ msgstr "កុំ​ទុក %s ឲ្យ​នៅ​ដំឡើង"
 
 #~ msgid "Cannot create public key %s from %s keyring to file %s"
 #~ msgstr "មិនអាច​បង្កើត​សោ​សាធារណៈ %s ពី keyring %s ទៅ​ឯកសារ %s បានទេ"
@@ -4842,6 +4845,3 @@ msgstr "មិន​បានគាំទ្រ"
 
 #~ msgid "Failed to download %s from %s"
 #~ msgstr "បាន​បរាជ័យ​ក្នុងកា​រទាញយក %s ពី %s"
-
-#~ msgid "do not keep %s installed"
-#~ msgstr "កុំ​ទុក %s ឲ្យ​នៅ​ដំឡើង"
index e263d05..ddbdf21 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# KOREAN message file for YaST2 (@memory@).
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002 SuSE Linux AG.
+# Copyright (C) 2000, 2001 SuSE GmbH.
+# Hwang, Sang-Jin <violiet@suse.de>
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: zypp\n"
+"Project-Id-Version: zypp.ko\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 17:02\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2015-07-09 13:07+0900\n"
+"Last-Translator: Yunseok Choi <xein@naver.com>\n"
+"Language-Team: Korean <xein@naver.com>\n"
+"Language: ko\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+"X-Generator: Poedit 1.8.2\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"설치 불가능한 공급자: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal 예외"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "잘못된 LDAP URL 쿼리 문자"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr " SSL 인증서 문제, '%s'의 CA 인증서에 문제가 없는지 확인하십시오."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "잘못된 LDAP URL 쿼리 매개변수 '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "URL 개체를 복제 할 수 없음"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "잘못된 비어있는 URL 개체 참조"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "URL 부분을 해석 할 수 없음"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "상호 배타 기능의 속성을 초기화 할 수 없음"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "재귀 상호 배타 기능의 속성을 설정 할 수 없음"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "재귀 상호 배타 기능을 초기화 할 수 없음"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "상호 배타 기능의 권리를 취득 할 수 없음"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "상호 배타 기능의 권리를 개방 할 수 없음"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "제공"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "전제조건"
+
+#  tree node string
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "필요"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "경합"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "오래된것"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "권장사항"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "제안"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "기능강화"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "보충"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "의심스러운 형식 '%s'(%u 바이트 체크섬 '%s'에 대한)"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
-msgstr " 실행됨"
+msgstr "실행 되어 있음"
 
 #: zypp/target/TargetImpl.cc:332
 msgid " execution failed"
-msgstr " 실행 실패됨"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " 중단하는 중 실행 건너뜀"
+msgstr "실행에 실패"
 
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
@@ -48,1570 +125,2518 @@ msgstr " 중단하는 중 실행 건너뜀"
 msgid "%s already executed as %s)"
 msgstr "%s이(가) 이미 %s(으)로 실행되었습니다."
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s이(가) %s(%s에서 제공)과(와) 충돌합니다."
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr "중단 중에 실행을 생략"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s이(가) 배포 업그레이드 리포지토리에 속해 있지 않습니다."
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "업데이트 메시지 알림 전달 중 오류."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s에 하위 아키텍처가 있습니다."
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "새 업데이트 메시지"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s을(를) 설치할 수 없습니다."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "지시대로 설치가 중단되었습니다."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s은(는) 시스템에서 제공되며 지울 수 없습니다."
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "죄송합니다. 이 libzypp의 버전은 HAL 지원 없이 빌드되었습니다."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s이(가) %s(%s에서 제공)을(를) 폐기합니다."
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext 가 연결되지 않음"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s에 %s이(가) 필요하지만, 이 요구사항을 제공할 수 없습니다."
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive 는 초기화되지 않음"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(만료됨)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume 은 초기화되지 않음"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(만료되지 않음)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "dbus 연결을 만들 수 없음"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(24시간 내 만료)"
-msgstr[1] "(24시간 내 만료)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: libhal 문맥을 만들수 없음"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(24시간 내 만료)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: dbus 연결 설정을 할 수 없음"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "압카즈어"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "HAL 문맥을 초기화 할 수 없음 -- hald 가 동작하지 않습니까?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "아체어"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "CD-ROM 드라이브가 아님"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "아콜리어"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM 실패함: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "아당메어"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "%s 파일로 부터 공개 키 가져오기 실패: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "'%s' 리포지토리 추가 중"
+msgid "Failed to remove public key %s: %s"
+msgstr "%s 공개 키 제거에 실패: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "추가 고객 계약 필수"
+#  progress stage
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "%s 의 설정 파일 변경됨:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "RPM은 %s 를 %s 로 저장했지만, 차이점을 구분 할 수 없음"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"RPM은 %s 를 %s 로 저장했습니다.\n"
+"다음은 최초 25 행의 다른점입니다:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "RPM은 %s 를 %s 로 만들었지만, 차이점을 구분 할 수 없음"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"RPM은 %s 를 %s 로 만들었습니다.\n"
+"다음은 최초 25 행의 다른점입니다:\n"
 
+#  dialog caption
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
 #: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
 msgid "Additional rpm output"
 msgstr "추가 RPM 출력"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "아닥헤어"
-
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "아파르어"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "%s 백업을 만듬"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "ì\95\84í\94\84ê°\80ë\8b\88ì\8a¤í\83\84"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "ì\84\9cëª\85 ì \95ì\83\81"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "ì\95\84í\94\84리í\9e\88리ì\96´"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "ì\95\8c ì\88\98 ì\97\86ë\8a\94 ì\84\9cëª\85 ì\9c í\98\95"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "ì\95\84í\94\84리칸ì\8a¤ì\96´"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "ì\84\9cëª\85ì\9d\84 í\99\95ì\9d¸í\95  ì\88\98 ì\97\86ì\9d\8c"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "ì\95\84ì\8b\9cì\95\84\95\84í\94\84리카ì\96´(기í\83\80)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "ì\84\9cëª\85ì\9d´ ì \95ì\83\81ì\9d´ì§\80ë§\8c í\82¤ë¥¼ ì\8b ë¢°í\95  ì\88\98 ì\97\86ì\9d\8c"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "ì\95\84ì\9d´ë\88\84ì\96´"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "ì\84\9cëª\85 ê³µì\9a© í\82¤ ì\82¬ì\9a© ë¶\88ê°\80"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "아칸어"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "파일이 존재하지 않거나 서명을 확인할 수 없음"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "아카드어"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "다음의 동작을 실행함:"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "올란드 제도"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "리포지토리 디렉토리 '%1%'을(를) 읽을 수 없음: 사용 권한 거부됨"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "알바니아"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "'%s' 디렉터리 읽기에 실패"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "알바니아어"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "리포지토리 파일 '%1%'을(를) 읽을 수 없음: 사용 권한 거부됨"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "알류트어"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "허용할 저장소는 첫문자로 점을 쓸 수 없습니다."
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "알제리"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "허용할 서비스는 첫문자로 점을 쓸 수 없습니다."
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "알곤킨어"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "기록하기 위한 '%s' 파일을 열 수 없습니다."
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "알타이어(기타)"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr "알 수 없는 서비스 '%1%': 독립 서비스 리포지토리 '%2%' 제거 중"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "미국령 사모아"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "지정한 URL 에는 유효한 메타데이터가 없음"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "암하라어"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "%s을(를) 생성할 수 없음"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "지원을 받으려면 추가 고객 계약이 필요합니다."
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "메타 데이터 캐시 디렉토리를 생성할 수 없습니다."
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "안도라"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "'%s' 저장소 캐시 빌드 중"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "앙골라"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "%s 에 캐시를 생성할 수 없음 - 쓰기 권한이 없습니다."
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "ì\95\99ê·\88ë\9d¼"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "ì \80ì\9e¥ì\86\8c(%d) ìº\90ì\8b\9cì\97\90 ì\8b¤í\8c¨í\96\88ì\8aµë\8b\88ë\8b¤."
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "남극"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "알려지지 않은 저장소 형식"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "앤티가 바부다"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "'%s'로 부터 읽기 시도 오류"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "아파치어"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "알 수 없는 읽기 오류 '%s'"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "아랍어"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "'%s' 저장소 추가 중"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "아라곤어"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "잘못된 '%s' 의 저장소 파일 이름"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "아람어"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "'%s' 저장소 제거 중"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "아라파호어"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "저장소가 저장된 위치를 구분 할 수 없습니다."
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "아라우칸어"
+#  Frame title for installation target hard disk / partition(s)
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "'%s' 를 삭제할 수 없음"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "아라와크어"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "서비스가 저장된 위치를 구분 할 수 없습니다."
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "아르헨티나"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "URL 스키마는 %s 를 허용하지 않음"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "ì\95\84르ë©\94ë\8b\88ì\95\84"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "ì\9e\98못ë\90\9c %s ë¶\80ë¶\84 '%s'"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "ì\95\84르ë©\94ë\8b\88ì\95\84ì\96´"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "ì\9e\98못ë\90\9c %s ë¶\80ë¶\84"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "기계어(기타)"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "이 URL에 대한 쿼리 문자 해석은 지원되지 않음"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "아루바"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "URL 스키마는 필수 항목"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "ì\95\84ì\83\98ì\96´"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "ì\9e\98못ë\90\9c URL ì\8a¤í\82¤ë§\88 '%s'"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "아스투리아어"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "URL 스키마는 사용자이름을 허용하지 않음"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "아타파스카어"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "URL 스키마는 열쇠글을 허용하지 않음"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "호주"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "URL 스키마는 호스트 부분이 필요"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "호주 언어"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "URL 스키마는 호스트 부분 지정을 허용하지 않음"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "ì\98¤ì\8a¤í\8a¸ë¦¬ì\95\84"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "ì\9e\98못ë\90\9c í\98¸ì\8a¤í\8a¸ ë¶\80ë¶\84 '%s'"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "남도어(기타)"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "URL 스키마는 포트를 허용하지 않음"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "'%s'에 대한 인증 필요"
+msgid "Invalid port component '%s'"
+msgstr "잘못된 포트 부분 '%s'"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "아바릭어"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "URL 스키마는 경로 이름이 필요"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "아베스타어"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "권한 부분이 존재하는 경우 상대 경로는 허용되지 않음"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "아와히어"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "출력된 문자열애 NUL 바이트가 포함"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "아이마라어"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "잘못된 매개변수 배열 단락 문자"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "아제르바이잔"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "잘못된 매개변수 맵 단락 문자"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "아제르바이잔어"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "잘못된 매개변수 배열 결합 문자"
 
-#: zypp/media/MediaException.cc:47
+#: zypp/ExternalProgram.cc:258
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "잘못된 파일 이름: %s"
+msgid "Can't open pty (%s)."
+msgstr "pty (%s)를 열 수 없습니다."
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "잘못된 미디어 연결점"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "pipe (%s)를 열 수 없습니다."
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "바하마"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "'%s' (%s)에 chroot 할 수 없습니다."
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "바레인"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "'%s'(chroot '%s' 내부)(%s)(으)로 chdir할 수 없습니다."
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "발리어"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "'%s' (%s)에 chdir 할 수 없습니다."
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "발트어(기타)"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "'%s' (%s)를 실행 할 수 없습니다."
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "발루치어"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "fork (%s) 할 수 없습니다."
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "밤바라어"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "상태 %d와 함께 명령이 종료되었습니다."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "ë°\94미ë \88ì¼\80ì\96´"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "ëª\85ë ¹ì\9d´ ì\8b í\98¸ %d (%s)ì\97\90 ì\9d\98í\95´ ì£½ì\97\88ì\8aµë\8b\88ë\8b¤."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "반다어"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "알 수 없는 오류와 함께 명령이 종료되었습니다."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "방글라데시"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(만료되지 않음)"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "반투어(기타)"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(만료됨)"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "바베이도스"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(24시간 내 만료)"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "바사어"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(24시간 내 만료)"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "바슈키르어"
+#  translators: fallback name for a module at command line
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "알 수 없음"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "바스크어"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "지원하지 않음"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "바타크어(인도네시아)"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "단계 1"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "베자어"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "단계 2"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "벨라루스"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "단계 3"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "벨로루시어"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "추가 고객 계약이 필요"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "벨기에"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "잘못됨"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "벨리즈"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "지원 레벨이 지정되어 있지 않음"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "벰바어"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "제조사가 지원을 제공하지 않습니다."
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "벵골어"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Problem determination, 이것은 호환성에 관한 정보나 설치 지원, 사용방법의 대응"
+"이나 진행 중의 보수, 기본적인 문제 해결 등의 기술 지원을 지칭합니다. 레벨 1 "
+"지원은 제품 결함에 의한 문제를 수정하지 않습니다."
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "베냉"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Problem isolation, 이것은 고객이 문제를 공유하여 영역을 분리 레벨 1 지원에서 "
+"해결되지 않은 문제에 대해 해결방법을 제공하는 기술 지원을 지칭합니다."
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "베르베르어(기타)"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Problem resolution, 이것은 복잡한 문제에 대해 기술자를 파견하여 레벨 2 지원으"
+"로 정의되지 않은 제품 결함을 해결하는 기술 지원을 지칭합니다."
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "버뮤다"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "지원 받으려면 추가 고객 계약이 필요합니다."
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "호즈푸리어"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "알 수 없는 지원 옵션입니다. 설명을 사용할 수 없음"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "부탄"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "알 수 없는 국가: "
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "비하르어"
+#  TextEntry label for phone network Areacode (german Vorwahl)
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "코드 없음"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "비콜어"
+# AD
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "안도라"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "비니어"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "아랍 에미리트 연방"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "비슬라마어"
+# AF
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "아프가니스탄"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "브린어"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "앤티가 바부다"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "볼리비아"
+# AO
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "앙귈라"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "보스니아 헤르체코비나"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "알바니아"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "보스니아어"
+# AM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "아르메니아"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "보츠ì\99\80ë\82\98"
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "ë\84¤ë\8d\9cë\9e\80ë\93\9cë ¹ ì\95\88í\8b¸ë \88ì\8a¤"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "부베이 섬"
+# AO
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "앙골라"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "ë¸\8cë\9d¼ì\96´"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "ë\82¨ê·¹"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "브라질"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "아르젠티나"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "브르타뉴어"
+# AS
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "미국령 사모아"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "ì\98\81ì\9d¸ë\8f\84 ì \9cë\8f\84"
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "ì\98¤ì\8a¤í\8a¸ë¦¬ì\95\84"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "ì\98\81êµ­ë ¹ ë²\84ì§\84 ì\95\84ì\9d¼ë\9e\9cë\93\9c"
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "ì\98¤ì\8a¤í\8a¸ë \88ì\9d¼ë¦¬ì\95\84"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "브루나이"
+# CU
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "아루바"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "부기어"
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "올란드 제도"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "리포지토리 '%s' 캐시 빌드 중"
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "아제르바이잔"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "ë\88ê°\80리ì\95\84"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "ë³´ì\8a¤ë\8b\88ì\95\84 í\97¤ë¥´ì²´ì½\94ë¹\84ë\82\98"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "ë\88ê°\80리ì\95\84ì\96´"
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "ë°\9cë°\94ë\8f\84ì\8a¤"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "부리아타"
+# BD
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "방글라데시"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "벨기에"
 
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
-msgstr "부르키나파소"
+msgstr "부르키나 파소"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "버마어"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "불가리아"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "바레인"
 
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "부룬디"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "카도어"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "베냉"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "캄보디아"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "버뮤다"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "카메룬"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "브루나이"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "sat-pool을 생성할 수 없습니다."
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "볼리비아"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "mutex 잠금을 획득할 수 없습니다."
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "브라질"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "'%s'(%s)(으)로 chdir할 수 없습니다."
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "바하마"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "'%s'(chroot '%s' 내부)(%s)(으)로 chdir할 수 없습니다."
+# BT
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "부탄"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "'%s'(%s)에 대해 chroot할 수 없습니다."
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "나라자료 부베 섬"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "%s을(를) 생성할 수 없음"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "보스와나"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "%s에서 캐시를 생성할 수 없음 - 쓰기 권한이 없습니다."
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "벨라루스"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "메타 데이터 캐시 디렉토리를 생성할 수 없습니다."
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "벨리즈"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "'%s'을(를) 삭제할 수 없습니다."
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "캐나다"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "'%s'(%s)을(를) 실행할 수 없습니다."
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "코코스 (킬링) 제도"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "리포지토리가 저장된 위치를 알 수 없습니다."
+# CG
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "콩고"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "서비스가 저장된 위치를 알 수 없습니다."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "fork(%s)할 수 없습니다."
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "중앙 아프리카 공화국"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "mutex 특성을 초기화할 수 없습니다."
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "스위스"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "순환 mutex를 초기화할 수 없습니다."
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "코트 디부아르"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "쓰기 위한 파일 '%s'을(를) 열 수 없습니다."
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "쿡 제도"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "ì\9e ê¸\88 í\8c\8cì\9d¼ %sì\9d\84(를) ì\97´ ì\88\98 ì\97\86ì\8aµë\8b\88ë\8b¤."
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "ì¹ ë \88"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "파이프(%s)를 열 수 없습니다."
+# CM
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "카메룬"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "pty(%s)를 열 수 없습니다."
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "중국"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "파일 '%s'을(를) 리포지토리 '%s'에서 제공할 수 없습니다."
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "콜롬비아"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "mutex 잠금을 해제할 수 없습니다."
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "코스타리카"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "순환 mutex 특성을 설정할 수 없습니다."
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "쿠바"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "ìº\90ë\82\98ë\8b¤"
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "ì¹´ë³´ ë² ë¥´ë\8d°"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "미디어를 꺼낼 수 없습니다."
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "크리스마스 섬"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "미디어 '%s'을(를) 꺼낼 수 없습니다."
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "키프로스"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"'%s'에서 이미지 파일을 탑재하기 위해 사용 가능한 루프 장치를 찾을 수 없습니"
-"다."
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "체코 공화국"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "리í\8f¬ì§\80í\86 ë¦¬ ë\94\94ë \89í\86 ë¦¬ '%1%'ì\9d\84(를) ì\9d½ì\9d\84 ì\88\98 ì\97\86ì\9d\8c: ì\82¬ì\9a© ê¶\8cí\95\9c ê±°ë¶\80ë\90¨"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "ë\8f\85ì\9d¼"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "리í\8f¬ì§\80í\86 ë¦¬ í\8c\8cì\9d¼ '%1%'ì\9d\84(를) ì\9d½ì\9d\84 ì\88\98 ì\97\86ì\9d\8c: ì\82¬ì\9a© ê¶\8cí\95\9c ê±°ë¶\80ë\90¨"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "ë\94\94ë³´ì\9a°í\8b°"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "'%s' 파일을 쓸 수 없습니다."
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "덴마크"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "카보베르데"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "도미니카"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "카리브어"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "도미니카 공화국"
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "ì¹´í\83\88ë¡\9cë\8b\88ì\95\84ì\96´"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "ì\95\8cì \9c리ì\95\84"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "ì¹´í\94\84ì¹´ì\8a¤ì\96´(기í\83\80)"
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "ì\97\90ì¿ ì\95\84ë\8f\84르"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "ì¼\80ì\9d´ë§¨ ì \9cë\8f\84"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "ì\97\90ì\8a¤í\86 ë\8b\88ì\95\84"
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "ì\84¸ë¶\80ì\95\84ë\85¸ì\96´"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "ì\9d´ì§\91í\8a¸"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "ì¼\88í\8a¸ì\96´(기í\83\80)"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "ì\84\9cë¶\80 ì\82¬í\95\98ë\9d¼"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "ì¤\91ì\95\99ì\95\84í\94\84리카 ê³µí\99\94êµ­"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "ì\97\90리í\8a¸ë \88ì\95\84"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "ì¤\91ì\95\99ì\95\84ë©\94리카 ì\9d¸ë\94\94ì\95\88ì\96´(기í\83\80)"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "ì\8a¤í\8e\98ì\9d¸"
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "차드"
+# ET
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "에티오피아"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "차가타이어"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "핀란드"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "카믹어"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "피지"
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "차모로어"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "포클랜드 제도"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "%s에 대한 구성 파일을 변경함:"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "미크로네시아 연방"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "체첸어"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "파로에 아일란드"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "체로키어"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "프랑스"
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "샤이엔어"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "메트로폴리탄 프랑스"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "치브차어"
+# GA
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "가봉"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "ì¹\98ì¸\84ì\96´"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "ì\98\81êµ­"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "칠레"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "그라나다"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "ì¤\91êµ­"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "ì¡°ì§\80ì\95\84"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "중국어"
+# GF
+# fuzzy
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "파푸아뉴기니"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "치누크 혼합어"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "건지"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "치페우얀"
+# GH
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "가나"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "ì´\89í\86 ì\96´"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "ì§\80ë¸\8cë\9e\84í\84°"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "크리스마스 섬"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "그린란드"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "교회슬라브어"
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "잠비아"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "츄케스어"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "기니"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "추바시어"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "과델로프"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "네와르어(고전)"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "적도 기니"
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "코코스 군도"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "그리스"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "ì½\9c롬ë¹\84ì\95\84"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "ì\82¬ì\9a°ì\8a¤ì¡°ì§\80ì\95\84 ì\82¬ì\9a°ì\8a¤ì\83\8cë\93\9cì\9c\84ì¹\98 ì \9cë\8f\84"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "상태 %d(으)로 명령이 종료되었습니다."
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "과테말라"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "알 수 없는 오류와 함께 명령이 종료되었습니다."
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "괌"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "명령이 신호 %d(%s)에 의해 종료되었습니다."
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "기니비사우"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "코모로"
+# GH
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "가이아나"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "충돌"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "홍콩"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "콩고"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "허드 앤 맥도날드 제도"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "ì¿¡ ì \9cë\8f\84"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "ì\98¨ë\91\90ë\9d¼ì\8a¤"
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "콥트어"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "크로아티아"
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "콘월어"
+# HT
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "하이티"
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "코르시카어"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "헝가리"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "ì½\94ì\8a¤í\83\80리카"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "ì\9d¸ë\8f\84ë\84¤ì\8b\9cì\95\84"
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "ì½\94í\8a¸ë\94\94ë¶\80ì\99\80르"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "ì\95\84ì\9d¼ë\9e\80ë\93\9c"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "크리어"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "이스라엘"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "크리크어"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "맨 섬"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "크레오리스와 피긴스어(기타)"
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "인도"
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "크레오리스와 피긴스어, 영어 기반(기타)"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "영국령 인도양 지역"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "크레오리스와 피긴스어, 프랑스어 기반(기타)"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "이라크"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "크레오리스와 피긴스어, 포르투갈어 기반(기타)"
+# IR
+# fuzzy
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "이라크"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "크리민 타타르어"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "아이스란드"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "크로아티아"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "이태리"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "크로아티아어"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "져지"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "쿠바"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "자메이카"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr "ì¿ ì\8b\9cì\96´(기í\83\80)"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "ì\9a\94르ë\8b¨"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "ì\82¬ì\9d´í\94\84ë\9f¬ì\8a¤"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "ì\9d¼ë³¸"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "체코어"
+# KE
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "케냐"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "체코 공화국"
+# KG
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "카자흐스탄"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "다코타어"
+# KH
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "캄보디아"
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "덴마크어"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "키리바시"
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr "다르그와어"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "코모로"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr "다야크어"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "세인트키츠 네비스"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "델라웨어어"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "조선민주주의인민공화국"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "ë\8d´ë§\88í\81¬"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "ë\8c\80í\95\9c민국"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "딩카어"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "쿠웨이트"
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "디베히어"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "케이맨 제도"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "지부티"
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "카자흐스탄"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "도그리어"
+# CD
+# fuzzy
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "라오스 공화국"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "ë\8f\84그리ë¸\8cì\96´"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "ë \88ë°\94ë\85¼"
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "도미니카"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "세인트 루시아"
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "ë\8f\84미ë\8b\88ì¹´ ê³µí\99\94êµ­"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "리í\9e\88í\85\90ì\8a¤í\83\80ì\9d¸"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"'%s'에 대한 다운로드(CURL) 오류:\n"
-"오류 코드: %s\n"
-"오류 메시지: %s\n"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "스리랑카"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "'%s'에 대한 다운로드(CURL) 초기화 실패"
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "라이베리아"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "ë\93\9cë\9d¼ë¹\84ë\8b¤ì\96´(기í\83\80)"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "ë \88ì\86\8cí\86 "
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "ë\93\9cì\99\80ë\9d¼ì\96´"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "리í\88¬ì\95\84ë\8b\88ì\95\84"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "모호한 유형 '%s'(%u바이트 체크섬 '%s'에 대해)"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "룩셈부르그"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "ë\84¤ë\8d\9cë\9e\80ë\93\9cì\96´"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "ë\9d¼í\8a¸ë¹\84ì\95\84"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "네덜란드어, 중세(ca.1050-1350)"
+# LY
+# fuzzy
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "라이베리아"
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr "ë\93\9cì\9c¨ë\9d¼ì\96´"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "모ë¡\9cì½\94"
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "종카어"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "모나코"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "ë\8f\99í\8b°ëª¨ë¥´"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "몰ë\8f\84ë°\94"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "에콰도르"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "몬테그로"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "이픽어"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "세인트 마틴"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "이집트"
+# MG
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "마다가스카르"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "이집트어(고대)"
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "마셜 제도"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "이카죽어"
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "마케도니아"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "엘살바도르"
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "말리"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "엘람어"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "미얀마"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "URI의 대상이 비어 있습니다."
+# MN
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "몽골라"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "URI의 파일 시스템이 비어 있습니다."
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "마카오"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "URI의 호스트 이름이 비어 있습니다."
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "북마리아나 제도"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "인코드 스트링에 NUL 바이트가 포함되어 있습니다."
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "마티니크"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "영어"
+# MU
+# fuzzy
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "모리타니"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "영어, 중세(1100-1500)"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "몬트세랫"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "고대 영어(ca.450-1100)"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "말타"
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "기능 향상"
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "나우루"
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "적도 기니"
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "말리"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "에리트레아"
+# ML
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "말라위"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "'%s'에 대한 다운로드(curl) 옵션을 설정하는 동안 오류가 발생했습니다:"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "멕시코"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "업데이트 메시지 알림을 보내는 중에 오류가 발생했습니다."
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "말레이시아"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "'%s'에서 읽기를 시도하는 중에 오류가 발생했습니다."
+# MZ
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "모잠비크"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "엘즈야어"
+# NA
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "나미비아"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "에스페란토어"
+#  help text for option 'value'
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "누벨칼레도니"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "에스토니아"
+# NG
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "니제르"
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "에스토니아어"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "노퍽 섬"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "에티오피아"
+# NG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "나이지리아"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "에웨어"
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "니카라구아"
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "이원도어"
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "네델란드"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "리í\8f¬ì§\80í\86 ë¦¬(%d)를 ìº\90ì\8b\9cí\95\98ì§\80 ëª»í\96\88ì\8aµë\8b\88ë\8b¤."
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "ë\85¸ë¥´ì\9b¨ì\9d´"
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "키를 삭제하지 못했습니다."
+# NP
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "네팔"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "%s 파일에서 공개 키를 임포트하지 못했습니다. %s"
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "나우루"
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "%s을(를) %s에 마운트하지 못했습니다."
+#  table header label
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "니우에"
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "패키지 %s을(를) 제공하지 못했습니다. 다시 검색하시겠습니까?"
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "뉴질랜드"
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "디렉토리 '%s'을(를) 읽지 못했습니다."
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "오만"
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "%s 공개 키를 제거하지 못했습니다. %s"
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "파나마"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "%s을(를) 마운트 해제하지 못했습니다."
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "페루"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "포클랜드 제도"
+# GF
+# fuzzy
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "프랑스령 폴리네시아"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "팡그어"
+# PG
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "파푸아뉴기니"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "í\8c\90í\8b°ì\96´"
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "í\95\84리í\95\80"
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "파로에 아일랜드"
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "파키스탄"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "í\8e\98ë¡\9cì\8a¤ì\96´"
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "í\8f´ë\9e\80ë\93\9c"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "마이크로네시아"
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "생피에르 미클롱"
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "피"
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "피트카이른"
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "í\94¼ì§\80ì\96´"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "í\91¸ì\97\90르í\86 ë¦¬ì½\94"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"%2%\n"
-"  설치의\n"
-"     %1% 파일이\n"
-"  %4%\n"
-"     설치의\n"
-"  %3%\n"
-"     파일과 충돌합니다."
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "팔레스타인"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "포르투갈"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "파라과이"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "파라과이"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "카타르"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "레위니옹"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "루마니아"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "세르비아"
+
+# RU
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "러시아"
+
+# UG
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "르완다"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "사우디 아라비아"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "솔로몬 제도"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "세이셸"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "수단"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "스웨덴"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "싱가포르"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "세인트헬레나"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "슬로베니아"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "스발바르 얀마옌"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "슬로바키아"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "시에라리온"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "산마리노"
+
+# SN
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "세네갈"
+
+# SO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "소말리아"
+
+# SR
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "수리남"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "상투메 프린시페"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "엘살바도르"
+
+# SY
+# fuzzy
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "수리남"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "스와질란드"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "터크스 케이커스 제도"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "차드"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "프랑스령 남부 지역"
+
+# TG
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "통고"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "태국"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "타지크스탄"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "토켈라우"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "투르크메니스탄"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "투니시아"
+
+# TO
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "통가"
+
+#  Textentry label - lease time for IPs in the range
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "동티모르"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "터어키"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "트리니다드 토바고"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "투발루어"
+
+# TW
+# fuzzy
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "태국"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "탄자니아"
+
+#  "TW" : _("Taiwan R.O.C."),
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "우크라니아"
+
+# UG
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "우간다"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "미국령 군소 제도"
+
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "미국"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "우루과이"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "우즈베키스탄"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "교황청 (바티칸 시)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "세인트빈센트 그레나딘"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "베네주엘라"
+
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "영국령 버진 아일랜드"
+
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "핀란드"
+
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "베트남"
+
+# src/isdn/interface.ycp:258 src/isdn/lowlevel.ycp:52
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "바누아투"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "월리스푸투나"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "사모아"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "예멘"
+
+#  Combobox - DNS adding zone - Type Master
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "마요트"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "남아프리카공화국"
+
+# ZM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "잠비아"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "짐바브웨"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "알 수 없는 언어: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "아파르어"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "압하스어"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "아체어"
+
+#  power saving scheme name, combo box and default contents of text entry
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "아촐리어"
+
+#  tree node string
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "아당메어"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "아디게어"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "아프리카아시아어족 (기타)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "아프리힐리어"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "아프리칸스어"
+
+#  entry of bootloader menu - only a-z, A-Z, 0-9, _ and blank space
+#  are allowed, otherwise translartion won't be used
+#  try to keep short, may be shortened due to bootloader limitations
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "아이누어"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "아칸어"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "아카드어"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "알바니아어"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "알류트어"
+
+# src/config/proxy.y2cc:21
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "알공킨어"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "남부 알타이어"
+
+#  Combobox item
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "암하라어"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "영어 (고대) (450년-1100년경)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "아파치 제어"
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "아라비아어"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "아람어"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "아라곤어"
+
+# AM
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "아르메니아어"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "아라우칸어"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "아라파호어"
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "인공 언어 (기타)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "아라와크어"
+
+# src/isdn/complex.ycp:266 src/modem/complex.ycp:207
+# src/provider/complex.ycp:186
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "아삼어"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "아스투리아스어"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "아타파스카어군"
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "오스트레일리아어족"
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "아바르어"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "아베스타어"
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "아와드어"
+
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "아이마라어"
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "아제르바이잔어"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "반다어"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "바밀레케어계"
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "바슈키르어"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "발루치어"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "밤바라어"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "발리어"
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "바스크어"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "바사어"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "발트어파 (기타)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "베자어"
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "벨로루시어"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "벰바어"
+
+# SN
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "벵골어"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "베르베르어파 (기타)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "보지푸르어"
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "비하르어"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "비콜어"
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "비니어"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "비슐라마어"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "식시카어"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "반투어군 (기타)"
+
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "보스니아어"
+
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "브라지어"
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "프랑스어"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "인도네시아어"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "부리아트어"
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "부기어"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "불가리아어"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "브루나이"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "블린어"
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "카도어"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "중앙아메리카 인디언 제어 (기타)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "카리브어"
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "카탈로니아어"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "카프카스 제어 (기타)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "세부아노어"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "켈트어파 (기타)"
+
+# CM
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "차모로어"
+
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "치브차어"
+
+#  tree node string
+#  tree node string - CPU information
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "체첸어"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "차가타이어"
+
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "중국어"
+
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "추크어"
+
+# ML
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "마리어"
+
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "치누크 통상어"
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "촉토어"
+
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "치페위안어"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "체로키어"
+
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "슬라브어(고대 교회)"
+
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "추바슈어"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"%2%\n"
-"  설치의\n"
-"     %1% 파일이\n"
-"  %4%\n"
-"     패키지의\n"
-"  %3%\n"
-"     파일과 충돌합니다."
+#  textentry label
+#  table header 1/2
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "샤이엔어"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"%2%\n"
-"  설치의\n"
-"     %1% 파일이\n"
-"  %3%\n"
-"     설치의 파일과 충돌합니다."
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "참어군"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"%2%\n"
-"  설치의\n"
-"     %1% 파일이\n"
-"  %3%\n"
-"     패키지의 파일과 충돌합니다."
+# src/config/routing.y2cc:11
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "콥트어"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"%2%\n"
-"  패키지의\n"
-"     %1% 파일이\n"
-"  %4%\n"
-"     설치의\n"
-"  %3%\n"
-"     파일과 충돌합니다."
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "콘월어"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"%2%\n"
-"  패키지의\n"
-"     %1% 파일이\n"
-"  %4%\n"
-"     패키지의\n"
-"  %3%\n"
-"     파일과 충돌합니다."
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "코르시카어"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr "크리올어 및 피진어 (영어를 바탕으로 한 기타)"
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr "크리올어 및 피진어 (프랑스어를 바탕으로 한 기타)"
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr "크리올어 및 피진어 (포르투갈어를 바탕으로 한 기타)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "크리어"
+
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "크림 타타르어"
+
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "크리올어 및 피진어 (이외의 언어를 바탕으로 한 기타)"
+
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "카슈브어"
+
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr "쿠시어파 (기타)"
+
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "체코어"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "다코타어"
+
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "덴마크어"
+
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr "다르과어"
+
+#  combo box item
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr "다야크어"
+
+# src/isdn/complex.ycp:260
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "델라웨어어"
+
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "슬레이비어 (아타파스카)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "도그리브어"
+
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "딩카어"
+
+#  tree node string - means "hardware driver"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "디베히어"
+
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "도그라어"
+
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "드라비다어족 (기타)"
+
+#  combo box item
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "소르비아어 (저지)"
+
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "두알라어"
+
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "네덜란드어 (중세) (1050년-1350년경)"
+
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "화란어"
+
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
+msgstr "듈라어"
+
+# TO
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "종카어"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "에피크어"
+
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "이집트어 (고대)"
+
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "에카주크어"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "엘람어"
+
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "영어"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "영어 (중세) (1100년-1500년)"
+
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "에스페란토어"
+
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "에스토니아어"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"%2%\n"
-"  패키지의\n"
-"     %1% 파일이\n"
-"  %3%\n"
-"     설치의 파일과 충돌합니다."
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "어웨어"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"%2%\n"
-"  패키지의\n"
-"     %1% 파일이\n"
-"  %3%\n"
-"     패키지의 파일과 충돌합니다."
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "에원도어"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "'%s' 파일을 '%s' 미디어에서 찾을 수 없습니다."
+#  tree node string
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "팡어"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "파일이 존재하지 않거나 서명을 확인할 수 없음"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "페로스어"
+
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "판티어"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "피지어"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "필리핀어"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "핀란드"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1620,97 +2645,49 @@ msgstr "핀란드어"
 #. language code: fiu
 #: zypp/LanguageCode.cc:441
 msgid "Finno-Ugrian (Other)"
-msgstr "피노우그리아어(기타)"
-
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "다음 작업이 수행됨:"
+msgstr "핀우고르어파 (기타)"
 
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "폰어"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "프랑스"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "프랑스어"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "파푸아뉴기니"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "프랑스령 폴리네시아"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "프랑스 남부 지역"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
-msgstr "프랑스어, 중세(ca.1400-1600)"
+msgstr "프랑스 (중세) (1400년-1600년경)"
 
 #. language code: fro
 #: zypp/LanguageCode.cc:451
 msgid "French, Old (842-ca.1400)"
-msgstr "프랑스어, 고대(842-ca.1400)"
+msgstr "프랑스 (고대) (842년-1400년경)"
 
 #. language code: fry fy
 #: zypp/LanguageCode.cc:453
 msgid "Frisian"
 msgstr "프리지아어"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "프리우리안어"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "풀라어"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "프릴리안어"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "가어"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "가봉"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "게일어"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "갈리시아어"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "잠비아"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "간다어"
-
+# GA
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1721,64 +2698,67 @@ msgstr "가요어"
 msgid "Gbaya"
 msgstr "그바야어"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "게이즈어"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "그루지아"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "게르만어파 (기타)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
 msgid "Georgian"
-msgstr "그루ì§\80ì\95\84어"
+msgstr "그루ì§\80ì\95¼어"
 
 #. language code: ger deu de
 #: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
 msgid "German"
-msgstr "독일어"
+msgstr "독어"
+
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "게에즈어"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "키리바스어"
+
+# ML
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "게일어"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "아일랜드어"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "갈리시아어"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "맨어; 맹크스어"
 
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
-msgstr "독일어, 중세 고지(ca.1050-1500)"
+msgstr "독일어 (중세 고지) (1050년-1500년경)"
 
 #. language code: goh
 #: zypp/LanguageCode.cc:489
 msgid "German, Old High (ca.750-1050)"
-msgstr "독일어, 고대 고지(ca.750-1050)"
-
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "독일어(기타)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "독일"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "가나"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "지브롤터"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "키리바시어"
+msgstr "독일어 (고대 고지) (750년-1050년경)"
 
+# GA
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
-msgstr "곤ë\94\94어"
+msgstr "곤ë\93\9c어"
 
 #. language code: gor
 #: zypp/LanguageCode.cc:493
@@ -1790,136 +2770,59 @@ msgstr "고론탈로어"
 msgid "Gothic"
 msgstr "고트어"
 
+# GA
 #. language code: grb
 #: zypp/LanguageCode.cc:497
 msgid "Grebo"
-msgstr "그리보어"
-
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "그리스"
+msgstr "그레보어"
 
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
-msgstr "그리스어, 고대(1453년까지)"
+msgstr "그리스어 (고대) (1453년 이전)"
 
 #. language code: gre ell el
 #: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
 msgid "Greek, Modern (1453-)"
-msgstr "그리스어, 현대(1453년 이후)"
-
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "그린랜드"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "그라나다"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "과들루프"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "괌"
+msgstr "그리스어 (현대) (1453년 이후)"
 
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
-msgstr "구아라니어"
-
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "과테말라"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "건지"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "기니"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "기니비사우"
+msgstr "과라니어"
 
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "구자라트어"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "가이아나"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
-msgstr "ê·¸ì\9c\84ì¹\9c어"
+msgstr "ê·\80í\8b´어"
 
+# src/isdn/complex.ycp:260
 #. language code: hai
 #: zypp/LanguageCode.cc:511
 msgid "Haida"
 msgstr "하이다어"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "아이티"
-
+# HT
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
-msgstr "아이티어"
-
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal 예외"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext가 연결되지 않았음"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive가 초기화되지 않았음"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume이 초기화되지 않았음"
+msgstr "아이티 크리올어"
 
+#  combo box item
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
-msgstr "하우자어"
-
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "요청한 모든 리포지토리를 활성화했습니까?"
+msgstr "하우사어"
 
 #. language code: haw
-#: zypp/LanguageCode.cc:517
-msgid "Hawaiian"
-msgstr "하와이어"
-
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "허드 섬 및 맥도날드 군도"
+#: zypp/LanguageCode.cc:517
+msgid "Hawaiian"
+msgstr "하와이어"
 
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
@@ -1934,28 +2837,19 @@ msgstr "헤레로어"
 #. language code: hil
 #: zypp/LanguageCode.cc:523
 msgid "Hiligaynon"
-msgstr "í\97¤ë¦¬ê°\80ë\87¬어"
+msgstr "í\9e\90리ê°\80ì\9d´ë\85¸어"
 
 #. language code: him
 #: zypp/LanguageCode.cc:525
 msgid "Himachali"
-msgstr "í\9e\88ë§\88차리어"
+msgstr "í\9e\88ë§\88ì°°어"
 
 #. language code: hin hi
 #: zypp/LanguageCode.cc:527
 msgid "Hindi"
 msgstr "힌디어"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "히리 모투어"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "이력:"
-
+# HT
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1964,47 +2858,40 @@ msgstr "히타이트어"
 #. language code: hmn
 #: zypp/LanguageCode.cc:531
 msgid "Hmong"
-msgstr "흐몽어"
-
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "바티칸 시국"
+msgstr "몽어"
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "온두라스"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "히리 모투어"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "홍콩"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "소르비아어 (고지대)"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "헝가리어"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "헝가리"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
 msgstr "후파어"
 
+# IR
+# fuzzy
 #. language code: iba
 #: zypp/LanguageCode.cc:541
 msgid "Iban"
 msgstr "이반어"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "아이슬란드"
+#  combo box item
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "이그보어"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2014,257 +2901,113 @@ msgstr "아이슬란드어"
 #. language code: ido io
 #: zypp/LanguageCode.cc:549
 msgid "Ido"
-msgstr "이도"
+msgstr "이도"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "ì\9d´ê·¸ë³´ì\96´"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "ì\93°ì´¨ ì\9d´ì\96´"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "이조어"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "이누이트어"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "인테르링구에"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
-msgstr "이로코어"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "이나리 사미어"
+msgstr "일로코어"
 
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "인도"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "인터링 (국제 보조언어 협회)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
-msgstr "인도어(기타)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "인도유럽어(기타)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "인도네시아"
+msgstr "인도아리아어군 (기타)"
 
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "인도네시아어"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "인도유럽어족 (기타)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
-msgstr "인귀시어"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "설치가 지시된 대로 중단되었습니다."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "국제어(국제보조어협회)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "인터링게어"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "이눅티투트어"
+msgstr "인구시어"
 
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "이누피아크어"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "%s 구성요소가 잘못되었습니다."
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "%s 구성요소 '%s'이(가) 잘못되었습니다."
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "LDAP URL 쿼리 파라미터 '%s'이(가) 잘못되었습니다."
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "LDAP URL 쿼리 스트링이 잘못되었습니다."
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "URL 구성표 '%s'이(가) 잘못되었습니다."
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "빈 URL 객체 참조는 잘못되었습니다."
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "호스트 구성요소 '%s'이(가) 잘못되었습니다."
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "파라미터 배열 조인 구분 문자가 잘못되었습니다."
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "파라미터 배열 분할 구분 문자가 잘못되었습니다."
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "파라미터 맵 분할 구분 문자가 잘못되었습니다."
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "포트 구성요소 '%s'이(가) 잘못되었습니다."
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "잘못된 정규식 '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "잘못된 정규식 '%s': regcomp가 %d을(를) 반환했습니다."
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "'%s'에서 리포지토리 파일 이름이 잘못되었습니다."
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "이란"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
-msgstr "이란어(기타)"
-
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "이라크"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "아일랜드"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "아일랜드어"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "아일랜드어, 중세(900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "아일랜드어, 고대(900년까지)"
+msgstr "이란어군 (기타)"
 
+# src/config/proxy.y2cc:21
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
-msgstr "이러쿼이어"
-
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "맨 섬"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "이스라엘"
+msgstr "이로쿼이어족"
 
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
-msgstr "이탈리아어"
-
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "이탈리아"
+msgstr "이태리어"
 
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "자메이카"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "자바어"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "일본"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "로지반"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "일본어"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "자바어"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "저지"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "요르단"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "유대페르시아어"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
-msgstr "유대-아라비아어"
-
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "유대-페르시아어"
+msgstr "유대아랍어"
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "ì¹´ë°\94르ë\94\94어"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "ì¹´ë\9d¼ì¹¼í\8c\8cí\81¬어"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
 msgid "Kabyle"
-msgstr "커ë°\94ì\9d¼어"
+msgstr "ì¹´ë¹\8c어"
 
 #. language code: kac
 #: zypp/LanguageCode.cc:593
@@ -2276,35 +3019,15 @@ msgstr "카친어"
 msgid "Kalaallisut"
 msgstr "그린란드어"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "칼미크어"
-
-#. language code: kam
-#: zypp/LanguageCode.cc:597
-msgid "Kamba"
-msgstr "캄바어"
-
-#. language code: kan kn
-#: zypp/LanguageCode.cc:599
-msgid "Kannada"
-msgstr "칸나다어"
-
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "카누리어"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "카라칼파크어"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "카라챠이-발카르어"
+#. language code: kam
+#: zypp/LanguageCode.cc:597
+msgid "Kamba"
+msgstr "캄바어"
+
+#. language code: kan kn
+#: zypp/LanguageCode.cc:599
+msgid "Kannada"
+msgstr "칸나다어"
 
 #. language code: kar
 #: zypp/LanguageCode.cc:601
@@ -2316,96 +3039,84 @@ msgstr "카렌어"
 msgid "Kashmiri"
 msgstr "카슈미르어"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "카슈비아어"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "카누리어"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
 msgid "Kawi"
 msgstr "카위어"
 
+# KZ
+# fuzzy
 #. language code: kaz kk
 #: zypp/LanguageCode.cc:609
 msgid "Kazakh"
 msgstr "카자흐어"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "카자흐스탄"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "케냐"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "카바르디아어"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "카시어"
 
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
+msgstr "코이산어족 (기타)"
+
 #. language code: khm km
 #: zypp/LanguageCode.cc:617
 msgid "Khmer"
 msgstr "크메르어"
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
-msgstr "코이산어(기타)"
-
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
-msgstr "코탄스어"
+msgstr "호탄어"
 
 #. language code: kik ki
 #: zypp/LanguageCode.cc:621
 msgid "Kikuyu"
-msgstr "키쿠유어"
-
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "킴분두어"
+msgstr "키쿠유어; 기쿠유어"
 
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
-msgstr "키냐르완다어"
+msgstr "르완다어"
 
 #. language code: kir ky
 #: zypp/LanguageCode.cc:625
 msgid "Kirghiz"
 msgstr "키르기스어"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "í\82¤ë¦¬ë°\94ì\8b\9c"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "í\82´ë¶\84ë\91\90ì\96´"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "클링곤어"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "콘칸어"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
 msgid "Komi"
 msgstr "코미어"
 
+# CG
 #. language code: kon kg
 #: zypp/LanguageCode.cc:633
 msgid "Kongo"
 msgstr "콩고어"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "코카니어"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2414,62 +3125,59 @@ msgstr "한국어"
 #. language code: kos
 #: zypp/LanguageCode.cc:637
 msgid "Kosraean"
-msgstr "ì½\94ì\8a¤ë\9d¼ì\9d´ì\97\94어"
+msgstr "ì½\94ì\8a¤ë\9d¼ì\97\90어"
 
 #. language code: kpe
 #: zypp/LanguageCode.cc:639
 msgid "Kpelle"
-msgstr "크펠르어"
+msgstr "크펠레어"
+
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "카라차이발카르어"
 
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
-msgstr "크루어"
+msgstr "쿠루크어"
+
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "쿠루크어"
 
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
-msgstr "ì¿ ì\95\88ì\95¼마어"
+msgstr "ì½°ë\83\90마어"
 
 #. language code: kum
 #: zypp/LanguageCode.cc:649
 msgid "Kumyk"
-msgstr "쿠믹어"
+msgstr "쿠미í\81¬어"
 
 #. language code: kur ku
 #: zypp/LanguageCode.cc:651
 msgid "Kurdish"
-msgstr "루르드어"
-
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "쿠르크어"
+msgstr "쿠르드어"
 
+# KE
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
-msgstr "쿠터네이어"
-
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "쿠웨이트"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "키르기스스탄"
+msgstr "쿠테나이어"
 
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
 msgstr "라디노어"
 
+# UG
 #. language code: lah
 #: zypp/LanguageCode.cc:657
 msgid "Lahnda"
-msgstr "ë\9d¼í\95\9c다어"
+msgstr "ë\9e\80다어"
 
 #. language code: lam
 #: zypp/LanguageCode.cc:659
@@ -2481,132 +3189,74 @@ msgstr "람바어"
 msgid "Lao"
 msgstr "라오어"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "라오스"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "라틴어"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "라트비아"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "라트비아어"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "레바논"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "레소토"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "단계 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "단계 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "단계 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
-msgstr "레즈기안어"
-
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "라이베리아"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "리비아"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "리히텐슈타인"
+msgstr "레즈긴어"
 
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
-msgstr "림ë²\84ê±°어"
+msgstr "림ë·\94르í\9d\90어"
 
+# AO
 #. language code: lin ln
 #: zypp/LanguageCode.cc:671
 msgid "Lingala"
 msgstr "링갈라어"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "리투아니아"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "리투아니아어"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "위치 '%s'에 일시적으로 액세스할 수 없습니다."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "로반어"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "저지 독일어"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "소르비아어(저지)"
+# CG
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "몽고어"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "로지어"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "루ë°\94-ì¹´í\83\84ê°\80어"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "룩ì\85\88ë¶\80르í\81¬어"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
-msgstr "루바-룰루아어"
+msgstr "루바룰루아어"
+
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "루바카탕가어"
+
+# GH
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "간다어"
 
+#  translators: table entry for Listen statements
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
-msgstr "루이세노어"
-
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "룰레 사미어"
+msgstr "루이세뇨어"
 
 #. language code: lun
 #: zypp/LanguageCode.cc:689
@@ -2616,234 +3266,119 @@ msgstr "룬다어"
 #. language code: luo
 #: zypp/LanguageCode.cc:691
 msgid "Luo (Kenya and Tanzania)"
-msgstr "루오어(케냐 및 탄자니아)"
+msgstr "루오어 (케냐와 탄자니아)"
 
 #. language code: lus
 #: zypp/LanguageCode.cc:693
 msgid "Lushai"
 msgstr "루샤이어"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "룩셈부르크"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "룩셈부르크어"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "마카오"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "마케도니아"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "마케도니아어"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "마다가스카르"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
-msgstr "ë§\88ë\91\90ë \88ì\84¸"
+msgstr "ë§\88ë\91\90ë\9d¼ì\96´"
 
+# src/isdn/interface.ycp:258 src/isdn/lowlevel.ycp:52
 #. language code: mag
 #: zypp/LanguageCode.cc:701
 msgid "Magahi"
-msgstr "마가히"
+msgstr "마가드어"
+
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "마셜어"
 
+# ML
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
-msgstr "ë§\88ì\9d´í\8b¸ë¦¬"
+msgstr "ë§\88ì\9d´í\8b¸ë\9d¼ì\96´"
 
+# MG
 #. language code: mak
 #: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr "마카사어"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "마다가스카르어"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "말라위"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "말레이어"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "말라얄람어"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "말레이시아"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "몰디브"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "잘못된 URI"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "말리"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "말타"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "몰타어"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "만주어"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "만다르어"
+msgid "Makasar"
+msgstr "마카사르어"
+
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "말라얄람어"
 
+#  this string is usually used as headline of a popup
+#  update warning
+#  the user has selected a 64bit partition (x86_64) for update
+#  but booted with the 32bit DVD (x86)
+#  This will replace all 64bit packages with 32bit counterparts.
+#  It is technically possibly but probably not what the user intended.
+#  update warning
+#  the user has selected a 32bit partition on a x86-64 computer for update
+#  but booted with the 64bit DVD (x86-64)
+#  This will replace all 64bit packages with 32bit counterparts.
+#  It is technically possibly but probably not what the user intended.
+#  install warning
+#  the computer system has a 64bit (x86-64) bit processor but
+#  the user booted from a 32bit installation medium
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
-msgstr "만딩고어"
-
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "마니푸리어"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "마노보어"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "맹크스어"
+msgstr "만데어"
 
+#  tree node string
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "마오리어"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "오스트로네시아어족 (기타)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
-msgstr "마라티어"
-
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "마리어"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "마샬 군도"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "마셜제도어"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "마티니크"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "마르와리어"
+msgstr "마라타어"
 
+# ML
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "마사이어"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "모리타니아"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "모리셔스"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "마야어"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "마요티"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "미디어 소스 '%s'에 원하는 매체가 없습니다."
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "미디어 '%s'이(가) 다른 인스턴스에서 사용 중입니다."
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "말레이어"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "미디어가 연결되지 않음"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "모크샤어"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "'%s' 작업을 수행할 때 미디어를 열 수 없습니다."
+# UG
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "만다르어"
 
+# According to QIM Screenshot
+# -ke-
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "멘데어"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "프랑스 본국"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "멕시코"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "아일랜드어 (중세) (900년-1200년경)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2853,302 +3388,225 @@ msgstr "미크맥어"
 #. language code: min
 #: zypp/LanguageCode.cc:737
 msgid "Minangkabau"
-msgstr "미낭카바우"
-
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "마란데어"
+msgstr "미낭카바우어"
 
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "기타 언어"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "몬크메르어파 (기타)"
+
+# MG
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "마다가스카르어"
+
+# MV
+# fuzzy
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "몰타어"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "만주어"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "마니푸르어"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "마노보어군"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "모호크어"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "모크샤어"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
-msgstr "몰다비아어"
-
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "몰도바"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "몬크메르어(기타)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "모나코"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "몽고어"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "몽골"
+msgstr "몰도바어"
 
+# MN
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "몽골어"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "몬테네그로"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "몬트세라트"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "모로코"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "모시어"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "모잠비크"
-
+#  PushButton label
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
-msgstr "다어"
+msgstr "다중 언어"
 
 #. language code: mun
 #: zypp/LanguageCode.cc:763
 msgid "Munda languages"
-msgstr "문다어"
+msgstr "문다어"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "미얀마"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "무스코지어"
+
+# FM
+# fuzzy
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "미란데어"
+
+# src/isdn/complex.ycp:260
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "마르와르어"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "마야어족"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "에르지아어"
 
+# src/isdn/interface.ycp:258 src/isdn/lowlevel.ycp:52
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
-msgstr "ë\82\98ì\9a°ì\95\84í\8b\80ì\96´"
+msgstr "ë\82\98ì\99\80ì\96´"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "ë\82\98미ë¹\84ì\95\84"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "ë\81ì\95\84ë©\94리카 ì\9d¸ë\94\94ì\96¸ ì \9cì\96´"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "나우루"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "나폴리어"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "나바조"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "은데벨레어, 북부"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
-msgstr "은데벨레어, 남부"
+msgstr "은데벨레어 (남)"
+
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "은데벨레어 (북)"
 
+# TO
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
-msgstr "느동가어"
-
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "나폴리어"
+msgstr "은동가어"
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "네팔"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "네와르어"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "저지 색슨어"
 
+# NP
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "네팔어"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "네덜란드"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "네덜란드령 안틸리스"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "뉴 칼레도니아"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "뉴질랜드"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "새 업데이트 메시지"
+# NP
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "네와르어"
 
+#  Translators: table column headings
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "니아스어"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "니카라과"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "니제르"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
-msgstr "니제르-코르도파니아어(기타)"
-
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "나이지리아"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "니로-사하람어(기타)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "니우에"
+msgstr "니제르코르도판어족 (기타)"
 
+#  Tv frequency table
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
-msgstr "ë\8b\88ì\9b¨ì\96¸어"
+msgstr "ë\8b\88ì\9a°ì\97\90어"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "코드 없음"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "노르웨이어 (뉘노르스크)"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "리포지토리에 URL이 없습니다."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "노르웨이어 (보크몰)"
 
+# TO
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "노가이어"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "노퍽 섬"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
-msgstr "노르웨이어, 고대"
-
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "북아메리카 인디언어"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "북한"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "북마리아나 군도"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "북부 사미어"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "소토어, 북부"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "노르웨이"
+msgstr "노르드어 (고대)"
 
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "노르웨이어"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "보크말 노르웨이어"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "뉘노르스크 노르웨이어"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "CD-ROM 드라이브가 아님"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "소토어 (북)"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
-msgstr "누비안어"
+msgstr "누비아어군"
+
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "네와르어(고전)"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "니안자어"
 
+# src/isdn/complex.ycp:266 src/modem/complex.ycp:207
+# src/provider/complex.ycp:186
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3157,51 +3615,36 @@ msgstr "니암웨지어"
 #. language code: nyn
 #: zypp/LanguageCode.cc:823
 msgid "Nyankole"
-msgstr "니안콜어"
+msgstr "은콜레어"
 
 #. language code: nyo
 #: zypp/LanguageCode.cc:825
 msgid "Nyoro"
-msgstr "ë\89´로어"
+msgstr "ë\8b\88ì\98¤로어"
 
 #. language code: nzi
 #: zypp/LanguageCode.cc:827
 msgid "Nzima"
-msgstr "느지마어"
-
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "폐기사항"
+msgstr "은제마어"
 
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
-msgstr "옥시트어(1500년 이후)"
+msgstr "프로방스어 (1500년 이후)"
 
 #. language code: oji oj
 #: zypp/LanguageCode.cc:831
 msgid "Ojibwa"
-msgstr "오지브웨이어"
-
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "오만"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "'%s' 또는 '%s' 속성 중 하나, 또는 둘 다가 필요합니다. "
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "미디어에서 지원되지 않는 작업입니다."
+msgstr "오지브와어"
 
+# SY
+# fuzzy
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
 msgstr "오리야어"
 
+#  User name for user: "root"
 #. language code: orm om
 #: zypp/LanguageCode.cc:835
 msgid "Oromo"
@@ -3215,255 +3658,115 @@ msgstr "오세이지어"
 #. language code: oss os
 #: zypp/LanguageCode.cc:839
 msgid "Ossetian"
-msgstr "오세티아어"
+msgstr "오세트어"
+
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "튀르크어 (오스만); 오스만 투르크어 (1500년경-1928년)"
 
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
-msgstr "ì\98¤í\86 ë¯¸ì\95\88ì\96´"
+msgstr "ì\98¤í\86 ë¯¸ì\96´êµ°"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr "패키지 %s이(가) 전송 중에 손상된 것 같습니다. 다시 검색하시겠습니까?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "파푸아 제어 (기타)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "팡가시난어"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "팔레비어"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "파키스탄"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "팔라우"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "파라우안어"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "팔레스타인"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "팔리어"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "팜팡가어"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "파나마"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "판가시난어"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
-msgstr "í\8e\80ì\9e¡어"
+msgstr "í\8e\80ì\9e\90ë¸\8c어"
 
 #. language code: pap
 #: zypp/LanguageCode.cc:855
 msgid "Papiamento"
-msgstr "파피아먼토어"
-
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "파푸아뉴기니"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "파푸아어(기타)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "파라과이"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "'%s' 경로('%s' 미디어에 있음)가 디렉토리가 아닙니다."
+msgstr "파피아멘토어"
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "'%s' 경로('%s' 미디어에 있음)가 파일이 아닙니다."
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "팔라우어"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "'%s' 액세스 권한이 거부되었습니다."
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
+msgstr "페르시아어 (고대) (BC 600년-BC 400년경)"
 
 #. language code: per fas fa
 #: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
 msgid "Persian"
 msgstr "페르시아어"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr "페르시안 고대어(ca.600-400 B.C.)"
-
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "페루"
-
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
-msgstr "필리핀어(기타)"
-
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "필리핀"
+msgstr "필리핀 제어 (기타)"
 
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "페니키아어"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "피트카이른"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "'lsof' 패키지를 먼저 설치하십시오."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "폼페이어"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "폴란드"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "팔리어"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "폴란드어"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "í\8f¬ë¥´í\88¬ê°\88"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "í\8f°í\8e\98ì\9d´ì\96´"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
 msgid "Portuguese"
-msgstr "포르투어"
+msgstr "포르투어"
 
 #. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
-msgstr "프라크리트어"
-
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "전제조건"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Problem determination(문제 결정) - 호환성 정보, 설치 기술 지원, 사용 지원, 지"
-"속적인 유지보수 및 기본적인 문제해결를 위한 기술 지원을 의미합니다. 레벨 1 지"
-"원은 제품 결함 오류를 해결하기 위한 지원이 아닙니다. "
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Problem isolation(문제 격리) - 중복되는 문제, 문제 영역 격리, 그리고 레벨 1 "
-"지원에서 해결할 수 없는 문제에 대한 해답 제공을 위해 만들어진 기술 지원 서비"
-"스입니다."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Problem resolution(문제 해결) - 레벨 2 지원에서 식별된 제품 결함을 해결하기 "
-"위해 엔지니어링 작업을 통해 복잡한 문제를 해결하도록 만들어진 기술 지원 서비"
-"스입니다."
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
+msgstr "프라크리트 제어"
 
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
-msgstr "프로벤칼어, 고대(1500년까지)"
-
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "제공"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "푸에르토리코"
+msgstr "프로방스어 (고대) (1500년 이전)"
 
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
-msgstr "푸시토어"
-
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "카타르"
+msgstr "파슈토어"
 
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "케추아어"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "이 URL에 대해 쿼리 스트링 구문 분석이 지원되지 않습니다."
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM 실패: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "레토로만어"
-
+# KZ
+# fuzzy
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3472,64 +3775,34 @@ msgstr "라자스탄어"
 #. language code: rap
 #: zypp/LanguageCode.cc:887
 msgid "Rapanui"
-msgstr "ë\9d¼í\8c\8cë\89´ì\9d´"
+msgstr "ë\9d¼í\8c\8cë\88\84ì\9d´ì\96´"
 
+# src/config/routing.y2cc:11
 #. language code: rar
 #: zypp/LanguageCode.cc:889
 msgid "Rarotongan"
-msgstr "파로톤간어"
-
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "권장사항"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "기관이 있는 경우 상대 경로는 허용되지 않습니다."
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "'%s' 리포지토리 제거 중"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "리포지토리 별칭은 점(.)으로 시작할 수 없습니다."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "필수 특성 '%s'이(가) 누락되었습니다."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "필수"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "리유니언"
+msgstr "라로통가어"
 
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
-msgstr "로망스어(기타)"
+msgstr "로망스어군 (기타)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "루마니아"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "레토로망어"
+
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "롬어"
 
 #. language code: rum ron ro
 #: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
 msgid "Romanian"
 msgstr "루마니아어"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "집시어"
-
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3540,482 +3813,268 @@ msgstr "룬디어"
 msgid "Russian"
 msgstr "러시아어"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "러시아 연방"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "르완다"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "세인트 헬레나"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "세인트 크리스토퍼 니비스"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "세인트 루시아"
+#  list item
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "산다웨어"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "산마리노"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "상고어"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "ì\84¸ì\9d¸í\8a¸ í\94¼ì\97\90르 ë¯¸ì¼\88ë¡ "
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "ì\95¼ì¿ í\8a¸ì\96´"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "세인트 빈센트 그레나딘스"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "남아메리카 인디언 제어 (기타)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
 msgid "Salishan Languages"
-msgstr "ì\83\90리ì\8b\9cì\96´ì\96´"
+msgstr "ì\82´ë¦¬ì\8b\9cì\96´ì¡±"
 
 #. language code: sam
 #: zypp/LanguageCode.cc:915
 msgid "Samaritan Aramaic"
-msgstr "사마리아 아랍어"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "사미어(기타)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "사모아"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "사모아어"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "산마리노"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "산다웨어"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "산고어"
+msgstr "사마리아 아람어"
 
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "산스크리트어"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "산탈리어"
-
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "상투메 프린시페"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "사르디니아어"
-
 #. language code: sas
 #: zypp/LanguageCode.cc:919
 msgid "Sasak"
 msgstr "사사크어"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "사우디아라비아"
-
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "스코틀랜드어"
-
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "셀쿠프어"
-
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "셈어(기타)"
-
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "세네갈"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "세르비아"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "산탈어"
 
 #. language code: scc srp sr
 #: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
 msgid "Serbian"
 msgstr "세르비아어"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "세셀어"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "서비스 별칭은 점(.)으로 시작할 수 없습니다."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "서비스 플러그인이 특성 변경을 지원하지 않습니다."
-
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "세이셸"
-
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "샨어"
-
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "쇼나어"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "시츄안 이어"
-
 #. language code: scn
 #: zypp/LanguageCode.cc:927
 msgid "Sicilian"
 msgstr "시칠리아어"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "시다모어"
-
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "시에라리온"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "수화"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "서명을 확인할 수 없음"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "서명 파일 %s을(를) 찾을 수 없습니다."
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "스코트어"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "서명 정상"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "크로아티아어"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "ì\84\9cëª\85ì\9d´ ì \95ì\83\81ì\9d´ì§\80ë§\8c í\82¤ë¥¼ ì\8b ë¢°í\95  ì\88\98 ì\97\86ì\9d\8c"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "ì\85\80ì¿ í\94\84ì\96´"
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "서명 확인 실패"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "셈어파 (기타)"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "ì\84\9cëª\85 ê³µì\9a© í\82¤ ì\82¬ì\9a© ë¶\88ê°\80"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "ì\95\84ì\9d¼ë\9e\9cë\93\9cì\96´ (ê³ ë\8c\80) (900ë\85\84 ì\9d´ì \84)"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "ì\8b\9dì\8b\9cì¹´ì\96´"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "ì\88\98í\99\94\89\8b話)"
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "신디어"
+# GH
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "샨어"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "ì\8b±ê°\80í\8f¬ë¥´"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "ì\8b\9cë\8b¤ëª¨ì\96´"
 
+#  text entry
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
-msgstr "신할라어"
-
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "시노티베트어(기타)"
+msgstr "싱할라어"
 
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
-msgstr "수족어"
-
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "스콜트 사미어"
+msgstr "수어족"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "ì\8a¬ë\9d¼ë¸\8cì\96´(ì\95\84í\83\80í\8c\8cì\8a¤ì¹´ì\96´)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "ì\8b\9cë\85¸í\8b°ë² í\8a¸ì\96´ì¡± (기í\83\80)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
 msgid "Slavic (Other)"
-msgstr "슬라브어(기타)"
+msgstr "슬라브어파 (기타)"
 
 #. language code: slo slk sk
 #: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
 msgid "Slovak"
 msgstr "슬로바키아어"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "슬로바키아"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "슬로베니아"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "슬로베니아어"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "ì\86\8cê·¸ë\94\94ì\97\94ì\96´"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "ì\82¬ë¯¸ì\96´ (ë\82¨)"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "ì\86\94ë¡\9c몬 ì \9cë\8f\84"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "ì\82¬ë¯¸ì\96´ (ë¶\81)"
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "ì\86\8cë§\90리ì\95\84ì\96´"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "ì\82¬ë¯¸ì\96´ê³\84 (기í\83\80)"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "ì\86\8cë§\90리ì\95\84"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "ì\82¬ë¯¸ì\96´ (룰ë \88)"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "송가이족어"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "사미어(이나리)"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "사모아어"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "사미어 (스콜트)"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "쇼나어"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "신드어"
 
 #. language code: snk
 #: zypp/LanguageCode.cc:979
 msgid "Soninke"
 msgstr "소닌케어"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "소르브어"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "소그드어"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "이 버전의 libzypp는 HAL 지원 없이 작성되었습니다."
+# SO
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "소말리어"
+
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "송가이어"
 
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
-msgstr "소토어, 남부"
-
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "남아프리카공화국"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "남아메리카 인디언어(기타)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "사우스조지아 및 사우스샌드위치 군도"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "대한민국"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "남부 알타이어"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "남부 사미어"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "스페인"
+msgstr "소토어 (남)"
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "스페인어"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "ì\8a¤ë¦¬ë\9e\91ì¹´"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "ì\82¬ë¥´ë\8d°ë\83\90ì\96´"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "ì\88\98ë\8b¨"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "ì\84¸ë \88르ì\96´"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "제안"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "나일사하라어족 (기타)"
+
+# HT
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "스와티어"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
-msgstr "수쿠마족어"
-
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "수메르어"
+msgstr "수쿠마어"
 
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
-msgstr "순단어"
-
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "보충"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "수리남"
+msgstr "순다어"
 
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "수수어"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "ì\8a¤ë°\9cë°\94르ë\93\9c ì\96\80ë§\88ì\9d´ì\97\94"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "ì\88\98ë©\94르ì\96´"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "스와힐리어"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "스와티어"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "스와질란드"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "스웨덴"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "스웨덴어"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "스위스"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "시리아"
-
+# SY
+# fuzzy
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "시리아어"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "시스템 예외 '%s'이(가) 미디어 '%s'에서 발생했습니다."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"시스템 관리가 응용 프로그램에서 pid %d(%s)과(와) 함께 잠겼습니다.\n"
-"다시 시도하기 전에 이 응용 프로그램을 닫으십시오."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "타갈로그어"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4023,39 +4082,15 @@ msgstr "타히티어"
 
 #. language code: tai
 #: zypp/LanguageCode.cc:1015
-msgid "Tai (Other)"
-msgstr "태국어(기타)"
-
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "대만"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "타지크어"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "타지크스탄"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "타마섹어"
+msgid "Tai (Other)"
+msgstr "타이어군 (기타)"
 
+#  tree node string - CPU information
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "타밀어"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "탄자니아"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4066,43 +4101,38 @@ msgstr "타타르어"
 msgid "Telugu"
 msgstr "텔루구어"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "템네어"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
-msgstr "í\85\8cë \88ë\85¸어"
+msgstr "í\85\8cë \88ë\82\98어"
 
 #. language code: tet
 #: zypp/LanguageCode.cc:1027
 msgid "Tetum"
 msgstr "테툼어"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "타지크어"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "타갈로그어"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "태국어"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "태국"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "지원 레벨이 지정되지 않았습니다."
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "제조업체에서 지원을 제공하지 않습니다."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "이 동작은 이미 다른 프로그램에서 실행 중입니다."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "이 요청은 시스템을 손상시킵니다!"
-
+# TW
+# fuzzy
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4113,174 +4143,116 @@ msgstr "티베트어"
 msgid "Tigre"
 msgstr "티그레어"
 
+# NG
 #. language code: tir ti
 #: zypp/LanguageCode.cc:1041
 msgid "Tigrinya"
 msgstr "티그리냐어"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "'%s'에 액세스할 때 제한 시간이 초과되었습니다."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "팀니어"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
-msgstr "티비어"
+msgstr "티브어"
+
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "클링온어"
 
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
-msgstr "틀링기트어"
-
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "토고"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "토크 피신어"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "토켈라우"
+msgstr "틀링깃어"
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "í\86µê°\80"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "í\83\80ë§\88ì\85°í\81¬ì\96´"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
 msgid "Tonga (Nyasa)"
-msgstr "통가어(니아사)"
+msgstr "통가어 (니아사)"
 
 #. language code: ton to
 #: zypp/LanguageCode.cc:1055
 msgid "Tonga (Tonga Islands)"
-msgstr "통가어(통가섬)"
-
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "기존 키 %s을(를) 키링 %s(으)로 임포트하려고 했습니다."
+msgstr "통가어 (통가 제도)"
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "트리니다드 토바고"
+#  combo box entry, networking technology name
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "톡 피신어"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
-msgstr "트심시안어"
+msgstr "침시아어"
+
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "츠와나어"
 
+# TO
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "총가어"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "츠와나어"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "터키어"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "툼부카어"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "튀니지"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
-msgstr "투피어"
-
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "터키"
+msgstr "투피어족"
 
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "터어키어"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "터키어, 오스만(1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "투르크멘어"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "투르크메니스탄"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "터크스케이커스 제도"
-
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "투발루"
-
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "투비니안어"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "알타이어족 (기타)"
 
 #. language code: twi tw
 #: zypp/LanguageCode.cc:1077
 msgid "Twi"
 msgstr "트위어"
 
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "투바어"
+
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "우드무르트어"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "우간다"
-
+# HT
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
-msgstr "ì\9c ê°\80리í\8b±어"
+msgstr "ì\9a°ê°\80리í\8a¸어"
 
 #. language code: uig ug
 #: zypp/LanguageCode.cc:1085
 msgid "Uighur"
 msgstr "위구르어"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "우크라이나"
-
+#  "TW" : _("Taiwan R.O.C."),
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4289,564 +4261,832 @@ msgstr "우크라이나어"
 #. language code: umb
 #: zypp/LanguageCode.cc:1089
 msgid "Umbundu"
-msgstr "ì\9c¤ë²\88두어"
+msgstr "ì\9b\80ë¶\84두어"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "URL 객체를 복제할 수 없습니다."
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "미확인 언어"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "dbus 연결을 생성할 수 없음"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "우르두어"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "HAL 컨텍스트를 초기화할 수 없습니다. hald가 실행되고 있지 않습니까?"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "우즈베크어"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "URL 구성요소를 구문 분석할 수 없습니다."
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "바이어"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "결정되지 않음"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "벤다어"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "리포지토리 유형이 처리되지 않았습니다."
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "베트남어"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "볼라퓌크"
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "보트어"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "와카시어족"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "왈라모어"
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "와라이어"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "와쇼어"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "웨일스어"
+
+# src/config/proxy.y2cc:21
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "소르비아어계"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "왈론어"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "월로프어"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "칼미크어"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "코사어"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "야오어"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "야프어"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "이디시어"
+
+# CU
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "요루바어"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "유피크어군"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "사포텍어"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "ì\95\84ë\9e\8dì\97\90미리í\8a¸"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "ì \9cë\82\98ê°\80ì\96´"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "영국"
+# BT
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "좡어"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "미국"
+#  Table header item - DNS listing zones
+#  table header
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "잔데어"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "미국령 소군도"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "줄루"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "알 수 없는 국가:"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "주니어"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "'%s'에서 읽는 중에 알 수 없는 오류가 발생했습니다."
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "기존 키 %s을(를) 키링 %s(으)로 임포트하려고 했습니다."
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "알 수 없는 언어:"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "키를 삭제하는데 실패했습니다"
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "ì\95\8c ì\88\98 ì\97\86ë\8a\94 ì\9d¼ì¹\98 ëª¨ë\93\9c '%s'"
+msgid "Signature file %s not found"
+msgstr "ì\84\9cëª\85 í\8c\8cì\9d¼ %s ê°\80 ì\97\86ì\9d\8c"
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "알 수 없는 일치 모드 '%s'(패턴 '%s')"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr "알 수 없는 서비스 '%1%': 독립 서비스 리포지토리 '%2%' 제거 중"
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "'%s'('%s'로 부터) 를 제공 할 수 없음"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "ì\95\8c ì\88\98 ì\97\86ë\8a\94 ì§\80ì\9b\90 ì\98µì\85\98ì\9e\85ë\8b\88ë\8b¤. ì\84¤ëª\85ì\9d\84 ì\82¬ì\9a©í\95  ì\88\98 없습니다."
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "ì \80ì\9e¥ì\86\8cì\97\90 URLì\9d´ 없습니다."
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "알 수 없는 서명 유형"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "서비스 플러그인은 속성 변경을 지원하지 않습니다."
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "지원하지 않는 HTTP 인증 방법 '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr "%s 꾸러미가 전송되는 동안 깨진것 같습니다. 다시 전송 하시겠습니까?"
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "서명 확인 실패"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "'%s'에서 지원되지 않는 URI 구성표입니다."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "꾸러미 %s 의 제공에 실패했습니다. 다시 시도 하시겠습니까?"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "소르비아어(고지)"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm 확인에 실패했습니다."
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "우르두어"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm 가 실패했습니다."
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "URL 구성표는 %s을(를) 허용하지 않습니다."
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"시스템 관리는 응용프로그램 pid %d (%s) 에 의해 잠겨 있습니다.\n"
+"다시 시도 하기 전에 이 응용프로그램을 종료하세요."
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "URL 구성표가 호스트 구성요소를 허용하지 않습니다."
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s는 distupgrade 저장소에 속해 있지 않음"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "URL 구성표가 비밀번호를 허용하지 않습니다."
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s는 하위 아키텍쳐입니다."
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "URL 구성표가 포트를 허용하지 않습니다."
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "설치된 %s 꾸러미에 문제가 있음"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "URL 구성표가 사용자 이름을 허용하지 않습니다."
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "요구가 모순됨"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "URL 구성표는 필수 구성요소입니다."
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "일부 의존성 문제"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "URL 구성표에 호스트 구성요소가 필요합니다."
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "요구한 %s 는 어디에서도 제공되지 않음"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "URL 구성표에 경로 이름이 필요합니다."
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "요청한 모든 저장소를 활성화 하시겠습니까?"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "우루과이"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "%s 꾸러미는 없음"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "우즈벡어"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "지원하지 않는 요청"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "우즈베키스탄"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s 는 지울 수 없음과 동시에 시스템에 의해 제공됨"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "바이어"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s 는 설치 할 수 없음"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s(%s 로 필요로 하는)은 어디에서도 제공되지 않음"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "바누아투"
+#  Frame title for installation target hard disk / partition(s)
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "%s 와 %s 둘다 모두 설치 할 수 없음"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "벤다어"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s 는 %s(%s에 의해 제공되는)와 충돌"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "베네수엘라"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s 는 %s(%s에 의해 제공되는)를 폐기"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "베트남"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "설치된 %s이(가) %s(%s에서 제공)을(를) 제거합니다."
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "베트남어"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "해결방법 %s 는 제공되는 %s 와 충돌"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "미국령 버진 아일랜드"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s 는 %s 가 필요, 이 요구를 해결하는 방법이 없음"
 
-#: zypp/media/MediaCurl.cc:1008
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "지워진 제공자: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"\n"
+"uninstallable providers: "
 msgstr ""
-"등록이 유효하고 만료되지 않았는지 확인하려면 Novell 고객 센터에 문의하십시오."
+"\n"
+"설치 불가능한 제공자: "
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "볼라퓌크어"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "설치 할 수 없는 제공자:"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "보틱어"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "잠금 해제로 %s 제거 허용"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "와카샨어"
+#  Frame title for installation target hard disk / partition(s)
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "%s 설치하지 않음"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "왈라모어"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "%s 유지"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "ì\9b\94리ì\8a¤ í\91¸í\88¬ë\82\98"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "ì\9e ê¸\88 í\95´ì \9cë¡\9c %s ì\84¤ì¹\98 í\97\88ì\9a©"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "ì\99\88ë¡ ì\96´"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "ì\9d´ ì\9a\94구ì\82¬í\95­ì\9d\80 ì\8b\9cì\8a¤í\85\9cì\9d\84 ë§\9dê°\80í\8a¸ë¦´ ì\88\98 ì\9e\88ì\8aµë\8b\88ë\8b¤!"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "ì\99\80ë\9d¼ì\9d´ì\96´"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ì\8b\9cì\8a¤í\85\9c ê³ ì\9e¥ì\97\90 ë\8c\80í\95\9c ì£¼ì\9d\98를 ë¬´ì\8b\9c"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "와쇼어"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "%s 로 제공되는 해결방법의 설치에 대해 묻지 않음"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "웨일즈어"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "%s 로 제공되는 사항의 삭제에 대해 묻지 않음"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "서사하라"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "%s 의 최신버전을 설치 하지 않음"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "올로프어"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "하위의 아키텍쳐라도 %s 를 유지"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "코사족어"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "하위의 아키텍쳐라도 %s 를 설치"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "ì\95¼í\81\90í\8a¸ì\96´"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "ì\98\88ì \84 %s ë¥¼ ì\9c ì§\80"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "ì\95¼ì\98¤ì¡±ì\96´"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "ì \9cì\99¸ë\90\9c ì \80ì\9e¥ì\86\8cë¡\9cë¶\80í\84° %s ë¥¼ ì\84¤ì¹\98"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "얍페세어"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "%s 를 %s 로 다운그레이드"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "ì\98\88ë©\98"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "ì\95\84í\82¤í\85\8dì²\98를 %s ë¡\9c ë¶\80í\84° %s ë¡\9c ë³\80ê²½"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "이디시어"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"%s를 설치(제조사 변경)\n"
+"  %s  -->  %s"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "요루바어"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "%s 를 %s 로 옮김"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "야픽어"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "%s 의 설치제거"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "잠비아"
+#  text is shown in a column of a package list entry
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "일부 의존성을 무시하여 %s를 부숩니다."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "잔데어"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "일부 종속을 일반적으로 무시"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "사포테크어"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "필요한 '%s' 속성이 빠졌습니다."
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "제나가어"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "'%s' 또는 '%s' (혹은 모두)의 속성이 필요합니다."
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "주ì\95\99ì\96´"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "ì\9e ê¸´ í\8c\8cì\9d¼ì\9d\84 ì\97´ ì\88\98 ì\97\86ì\9d\8c: %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "짐바브웨"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "이 동작은 다른 프로그램으로 실행되고 있습니다."
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "줄루"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "기록:"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "주ë\8b\88ì\96´"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "ì\95\8c ì\88\98 ì\97\86ë\8a\94 í\95´ë\8b¹ '%s' ëª¨ë\93\9c"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm 검사 실패."
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "'%s' 패턴에 대한 알 수 없는 '%s' 모드"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm 실패."
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "잘못된 정규 표현 '%s': regcomp 는 %d 를 반환"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "%s에서 %s(으)로 아키텍처 변경"
+msgid "Invalid regular expression '%s'"
+msgstr "잘못된 정규 표현 '%s'"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "‘lsof’ 꾸러미를 먼저 설치해주세요."
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "일부 종속성을 무시하여 %s을(를) 구분합니다."
+msgid "Authentication required for '%s'"
+msgstr "%s 에 대한 인증 요청"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "%s과(와) %s을(를) 모두 설치할 수 없습니다."
+msgid "Failed to mount %s on %s"
+msgstr "%s를 %s로 마운트에 실패"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "요청 충돌"
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "%s의 마운트 해제에 실패"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "백업 %s을(를) 만들었음"
+msgid "Bad file name: %s"
+msgstr "잘못된 파일 이름: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "%s 설치 제거"
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "'%s' 의 동작을 실행 할 때 매체를 열지 않습니다."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "삭제된 공급자: "
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "'%s' 파일은 '%s' 미디어에 없음"
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#  Frame title for installation target hard disk / partition(s)
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "%s을(를) 제공하는 모든 solvable 삭제를 묻지 않음"
+msgid "Cannot write file '%s'."
+msgstr "'%s' 파일을 기록 할 수 없습니다."
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "미디어가 삽입되고 있지 않음"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "올바르지 않은 미디어 결합 포인트"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "%s을(를) 제공하는 solvable 설치를 묻지 않음"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "'%s' 애 대한 다운로드 (curl) 초기화에 실패"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "%s 설치 안 함"
+msgid "System exception '%s' on medium '%s'."
+msgstr "시스템 예외 '%s' 가 '%s' 에서 발생했습니다."
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "%s의 최신 버전을 설치하지 않음"
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "'%s' 경로('%s'매체의)는 파일이 아닙니다."
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "%s을(를) %s(으)로 다운그레이드"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "경로 '%s'('%s' 매체의) 는 디렉터리가 아닙니다."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "ì\9d¼ë¶\80 ì¢\85ì\86\8dì\9d\84 ì\9d¼ë°\98ì \81ì\9c¼ë¡\9c ë¬´ì\8b\9c"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "ì\98¬ë°\94르ì§\80 ì\95\8aì\9d\80 URI"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "손상된 시스템에 대한 경고를 무시합니다."
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "URI 에 호스트 이름이 비어있음"
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "URI 에 파일시스템이 비어있음"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "URI 에 목표가 비어있음"
+
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "'%s' 내에 지원되지 않는 URI 스키마가 있습니다."
+
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "조작은 매체를 지원하지 않음"
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
-"%s 설치(벤더 변경)\n"
-"  %s  -->  %s"
+"'%s' 에 대한 다운로드 (curl) 오류 :\n"
+"오류 코드: %s\n"
+"오류 메시지: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "하위 아키텍처인 경우에도 %s 설치"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "'%s'의 다운로드 (curl) 옵션을 설정 할 때 오류 발생:"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "제외된 리포지토리에서 %s 설치"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "'%s' 미디어 소스에는 필요한 매체가 없음"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "설치된 %s이(가) %s(%s에서 제공)을(를) 제거합니다."
+msgid "Medium '%s' is in use by another instance"
+msgstr "매체 '%s' 는 다른 프로그램에 의해 사용되고 있음"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "잘못됨"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "미디어를 꺼낼 수 없음"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#  Frame title for installation target hard disk / partition(s)
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "%s 유지"
+msgid "Cannot eject media '%s'"
+msgstr "'%s' 미디어를 꺼낼 수 없음"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "하위 아키텍처인 경우에도 %s 유지"
+msgid "Permission to access '%s' denied."
+msgstr "'%s' 에 접근할 권한이 없습니다."
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "구식 %s 유지"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: libhal 컨텍스트를 생성할 수 없음"
-
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: dbus 연결을 설정할 수 없음"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "'%s'에 접근 할 수 있는 제한시간이 초과되었습니다."
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s(%s에서 필요)이(가) 제공되지 않습니다."
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "'%s' 는 일시적으로 접근 할 수 없게 되어있습니다."
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "요청한 %s이(가) 제공되지 않습니다."
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" SSL 인증서에 문제, '%s'에 임해서 증명 기관에 문제가 있는지 확인 해보세요."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "%s 패키지가 존재하지 않습니다."
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"'%s' 로부터 이미지 파일 마운트에 필요한 사용할 수 있는 루프 장치를 찾을 수 없"
+"음"
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "ì\84¤ì¹\98ë\90\9c í\8c¨í\82¤ì§\80 %sì\97\90 ë¬¸ì \9cê°\80 ë°\9cì\83\9dí\96\88ì\8aµë\8b\88ë\8b¤."
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "ì§\80ì\9b\90í\95\98ì§\80 ì\95\8aë\8a\94 HTTP ì\9d¸ì¦\9d ë°©ì\8b\9d '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "잠금 해제로 %s 설치 허용"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"등록이 유효하고 만료되지 않았는지 확인하려면 Novell 고객 센터에 문의하십시오."
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "잠금 해제로 %s 제거 허용"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "sat-pool을 작성 할 수 없습니다."
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "%s을(를) %s(으)로 대체"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"%2%\n"
+"  패키지의\n"
+"     %1% 파일이\n"
+"  %3%\n"
+"     패키지의 파일과 충돌합니다."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "RPM은 %s을(를) %s(으)로 생성했지만, 차이점을 구분할 수 없습니다."
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"%2%\n"
+"  패키지의\n"
+"     %1% 파일이\n"
+"  %3%\n"
+"     설치의 파일과 충돌합니다."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"RPM이 %s을(를) %s(으)로 만들었습니다.\n"
-"다음은 차이에 대한 처음 25개 행입니다.\n"
+"%2%\n"
+"  설치의\n"
+"     %1% 파일이\n"
+"  %3%\n"
+"     패키지의 파일과 충돌합니다."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "RPM은 %s을(를) %s(으)로 저장했지만, 차이점을 구분할 수 없습니다."
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"%2%\n"
+"  설치의\n"
+"     %1% 파일이\n"
+"  %3%\n"
+"     설치의 파일과 충돌합니다."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
-"RPM이 %s을(를) %s(으)로 저장했습니다.\n"
-"다음은 차이에 대한 처음 25개 행입니다.\n"
+"%2%\n"
+"  패키지의\n"
+"     %1% 파일이\n"
+"  %4%\n"
+"     패키지의\n"
+"  %3%\n"
+"     파일과 충돌합니다."
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "Solvable %s이(가) 자체적으로 제공된 %s과(와) 충돌합니다."
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"%2%\n"
+"  패키지의\n"
+"     %1% 파일이\n"
+"  %4%\n"
+"     설치의\n"
+"  %3%\n"
+"     파일과 충돌합니다."
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "일부 종속성 문제"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"%2%\n"
+"  설치의\n"
+"     %1% 파일이\n"
+"  %4%\n"
+"     패키지의\n"
+"  %3%\n"
+"     파일과 충돌합니다."
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "설치할 수 없는 공급자:"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"%2%\n"
+"  설치의\n"
+"     %1% 파일이\n"
+"  %4%\n"
+"     설치의\n"
+"  %3%\n"
+"     파일과 충돌합니다."
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "알 수 없음"
+#  Frame title for installation target hard disk / partition(s)
+#~ msgid "do not keep %s installed"
+#~ msgstr "%s 의 설치를 그대로 두지 않음"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "지원하지 않음"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr "공개 키 %s(%s 키링으로 부터)를 %s 파일에 생성 할 수 없음"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "지원되지 않는 요청"
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "'%s' 에 대한 다운로드 (메타링크 curl) 초기화에 실패"
+
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "'%s' 에 대한 다운로드 (메타링크 curl) 오류 :\n"
+#~ "오류 코드: %s\n"
+#~ "오류 메시지: %s\n"
+
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "다운로드가 중단됨(%d%%)"
+
+#, fuzzy
+#~ msgid "Download interrupted by user"
+#~ msgstr "다운로드가 중단됨(%d%%)"
+
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr "'%s' 에 대한 다운로드 (메타링크 curl) 옵션을 설정 할 때 오류 발생:"
+
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "%s로부터 %s로 다운로드에 실패"
+
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "세르비아 몬테네그로"
index 67274af..0660665 100644 (file)
--- a/po/ku.po
+++ b/po/ku.po
@@ -15,16 +15,95 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+#, fuzzy
+msgid "Hal Exception"
+msgstr "Salix"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr ""
+
+#: zypp/Url.cc:300
+#, fuzzy
+msgid "Unable to clone Url object"
+msgstr "&Venebû"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr ""
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+#, fuzzy
+msgid "Unable to parse Url components"
+msgstr "&Venebû"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr ""
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Peydeker"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Pêwist"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr ""
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -37,10 +116,6 @@ msgstr "Bixebitîne"
 msgid " execution failed"
 msgstr "Nivîsandina mîhengan têk çû"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -49,92 +124,117 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "Saz neke"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+#, fuzzy
+msgid "Installation has been aborted as directed."
+msgstr "Sazkirina di nav Pelrêç de"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:117
+#, fuzzy
+msgid "HalContext not connected"
+msgstr "(negirêdayî)"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
+#: zypp/target/hal/HalContext.cc:229
 #, fuzzy
-msgid "(does not expire)"
-msgstr "Bikarhêner tuneye."
+msgid "Unable to create dbus connection"
+msgstr "Nekarî pelrêça '%1' biafirîne."
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abxazî"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Açînezî"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Akolî"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Zimanê Adangme"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr ""
+
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
 #, fuzzy, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Arşîva %1 tê Afirandin"
+msgid "Changed configuration files for %s:"
+msgstr "Veavakirina IrDA biguherîne"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
 #. report additional rpm output in finish
@@ -144,20 +244,1715 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "Zêdetir vebijark"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Zimanê Adyghe"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Zimanê Afar"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "Pel nehat dîtin."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "Pel nehat dîtin."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "Pel nehat dîtin."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Nekarî pelrêça '%1' biafirîne."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+#, fuzzy
+msgid "Repository alias cannot start with dot."
+msgstr "Arşîv nederbasdar e."
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Pela '%1' nayê vekirin"
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "%1$s Biafirîne"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "Pelrêç nayê afirandin"
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr ""
+
+#: zypp/RepoManager.cc:1377
+#, fuzzy
+msgid "Unhandled repository type"
+msgstr "Çavkaniyê &Çalak Bike"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, fuzzy, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Di nivîsandina pela '%1' de çewtî çêbû"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1611
+#, fuzzy, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Arşîva %1 tê Afirandin"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1740
+#, fuzzy, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Arşîvan Rake"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Bi rastî bila '%1' jê bibe?"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:173
+#, fuzzy, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Vebijêrka nederbasdar: %1"
+
+#: zypp/url/UrlBase.cc:180
+#, fuzzy, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Vebijêrka nederbasdar: %1"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:824
+#, fuzzy
+msgid "Url scheme is a required component"
+msgstr "Navê bikarhêner pêwist e"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1049
+#, fuzzy, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Vebijêrka nederbasdar: %1"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1081
+#, fuzzy, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Vebijêrka nederbasdar: %1"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "%s nehat vebûn."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Pela %1 nayê vekirin"
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "%s nehat vebûn."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+#, fuzzy
+msgid "(does not expire)"
+msgstr "Bikarhêner tuneye."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "nenas"
+
+#: zypp/VendorSupportOptions.cc:17
+#, fuzzy
+msgid "unsupported"
+msgstr "Piştgirî"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+#, fuzzy
+msgid "invalid"
+msgstr "URL ya nederbasdar"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+#, fuzzy
+msgid "Unknown support option. Description not available"
+msgstr "tu rave tuneye "
+
+#: zypp/CountryCode.cc:50
+#, fuzzy
+msgid "Unknown country: "
+msgstr "Vebijêrka nenas: %1"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+#, fuzzy
+msgid "No Code"
+msgstr "Kod"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andora"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Mîrtiyên Ereb ên Yekbûyî"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Efxanistan"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr ""
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Angîla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Arnavût"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+#, fuzzy
+msgid "Armenia"
+msgstr "Ermenî"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+#, fuzzy
+msgid "Netherlands Antilles"
+msgstr "Holanda"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+#, fuzzy
+msgid "Angola"
+msgstr "Mongolî"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+#, fuzzy
+msgid "Antarctica"
+msgstr "Bixweber"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Arjantîn"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr ""
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Awusturya"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Awustralya"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+#, fuzzy
+msgid "Aland Islands"
+msgstr "Giravên Kayman"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+#, fuzzy
+msgid "Azerbaijan"
+msgstr "Azerbaycanî"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr ""
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladeş"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belçîka"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr ""
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaristan"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrayîn"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+#, fuzzy
+msgid "Burundi"
+msgstr "Rundî"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr ""
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermûda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr ""
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolîvya"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brezîlya"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr ""
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr ""
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+#, fuzzy
+msgid "Bouvet Island"
+msgstr "Giravên Faroye"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Belarus"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belîze"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr ""
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+#, fuzzy
+msgid "Congo"
+msgstr "Kongoyî"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+#, fuzzy
+msgid "Central African Republic"
+msgstr "Sûriye"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Swîsre"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr ""
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+#, fuzzy
+msgid "Cook Islands"
+msgstr "Giravên Faroye"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Sîlî"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+#, fuzzy
+msgid "Cameroon"
+msgstr "Kamera"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+#, fuzzy
+msgid "China"
+msgstr "Çînî"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolombiya"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Kosta Rîka"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr ""
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Kap Verde"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Girava Noel"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr ""
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Komara Çek"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Almanya"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Cîbutî"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danîmarka"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Domînîka"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Komara Domînîk"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Cezayîr"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ekvator"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonya"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Misir"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr ""
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr ""
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spanya"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr ""
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Fînlandiya"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fîjî"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr ""
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr ""
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Giravên Faroye"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Fransa"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr ""
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr ""
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Şahitiya Yekbuyî"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Girava Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Gurcistan"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+#, fuzzy
+msgid "French Guiana"
+msgstr "Fransî (Kanada)"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr ""
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Cebelîtariq"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Greenland"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr ""
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr ""
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadelûp"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr ""
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Yewnanistan"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr ""
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr ""
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr ""
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Hirvatistan"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+#, fuzzy
+msgid "Haiti"
+msgstr "Zimanê Haitian"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Macaristan"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Endonezya"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Îrlanda"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Îsraîl"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Girava Man"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Hindistan"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr ""
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Iraq"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr ""
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Îzlanda"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Îtalya"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamayîka"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Urdin"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japonya"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr ""
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr ""
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr ""
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr ""
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr ""
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts û Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+#, fuzzy
+msgid "North Korea"
+msgstr "Amerîkaya Bakur"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+#, fuzzy
+msgid "South Korea"
+msgstr "Efrîka Basur"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kûveyt"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Giravên Kayman"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+#, fuzzy
+msgid "Kazakhstan"
+msgstr "Qazaxî"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr ""
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Lubnan"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Lihtenstayn"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr ""
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr ""
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr ""
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lîtvanya"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luksemburg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latviya"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr ""
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Fas"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monako"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "San Marîno"
+
+#: zypp/CountryCode.cc:298
+#, fuzzy
+msgid "Madagascar"
+msgstr "Zimanê Malagasy"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+#, fuzzy
+msgid "Marshall Islands"
+msgstr "Giravên Faroye"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonya"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr ""
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+#, fuzzy
+msgid "Mongolia"
+msgstr "Mongolî"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Makao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr ""
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinîk"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+#, fuzzy
+msgid "Mauritania"
+msgstr "Morîtiyus"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Morîtiyus"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Giravên Maldiv"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+#, fuzzy
+msgid "Malawi"
+msgstr "Zimanê Malay"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexîko"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malezya"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+#, fuzzy
+msgid "Mozambique"
+msgstr "Martinîk"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr ""
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+#, fuzzy
+msgid "New Caledonia"
+msgstr "Makedonya"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr ""
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+#, fuzzy
+msgid "Norfolk Island"
+msgstr "Giravên Faroye"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+#, fuzzy
+msgid "Nigeria"
+msgstr "Cezayîr"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nîkaragûa"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Holanda"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norweç"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+#, fuzzy
+msgid "Nepal"
+msgstr "Zimanê Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Naûrû"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Nîûe"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Zelandaya Nû"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Uman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Perû"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr ""
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr ""
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Fîlîpîn"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polonya"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr ""
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitkayirn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Porto Rîko"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr ""
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portekîz"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palawu"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reûnyon"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romanya"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Sirbîstan"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr ""
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+#, fuzzy
+msgid "Rwanda"
+msgstr "Zimanê Banda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Si'ûdî Erebistan"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+#, fuzzy
+msgid "Solomon Islands"
+msgstr "Giravên Kayman"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr ""
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sûdan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Swêd"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Sîngapur"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+#, fuzzy
+msgid "Saint Helena"
+msgstr "Saint Lucia"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenya"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr ""
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovakya"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr ""
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marîno"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr ""
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+#, fuzzy
+msgid "Somalia"
+msgstr "Zimanê Somalî"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+#, fuzzy
+msgid "Suriname"
+msgstr "Navê Pelê"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr ""
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+#, fuzzy
+msgid "Syria"
+msgstr "Asûrî"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+#, fuzzy
+msgid "Swaziland"
+msgstr "Tayland"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr ""
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr ""
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr ""
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr ""
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tayland"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tacîkistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Zimanê Tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+#, fuzzy
+msgid "Turkmenistan"
+msgstr "Tirkmenî"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tûnis"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+#, fuzzy
+msgid "Tonga"
+msgstr "Zimanê Tsonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr ""
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Tirkiye"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr ""
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Zimanê Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taywan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr ""
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukrayna"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+#, fuzzy
+msgid "Uganda"
+msgstr "Zimanê Banda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr ""
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+#, fuzzy
+msgid "United States"
+msgstr "Mîrtiyên Ereb ên Yekbûyî"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Ozbekîstan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr ""
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+#, fuzzy
+msgid "Saint Vincent and the Grenadines"
+msgstr "Saint Kitts û Nevis"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezûela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr ""
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr ""
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+#, fuzzy
+msgid "Vietnam"
+msgstr "Vietnamî"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+#, fuzzy
+msgid "Vanuatu"
+msgstr "Bi Destan"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr ""
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Yemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayote"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Efrîka Basur"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr ""
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+#, fuzzy
+msgid "Unknown language: "
+msgstr "Zimanê Nayê Zanîn:"
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Zimanê Afar"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Efxanistan"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abxazî"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Açînezî"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Akolî"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Zimanê Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Zimanê Adyghe"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Zimanê Afro-Asyatîk (Yên din)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -169,11 +1964,6 @@ msgstr "Afrîhîlî"
 msgid "Afrikaans"
 msgstr "Zimanê Efrîkî"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Zimanê Afro-Asyatîk (Yên din)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -189,17 +1979,6 @@ msgstr "Zimanê Akan"
 msgid "Akkadian"
 msgstr "Akadî"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-#, fuzzy
-msgid "Aland Islands"
-msgstr "Giravên Kayman"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Arnavût"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -210,61 +1989,25 @@ msgstr "Albanî"
 msgid "Aleut"
 msgstr "Zimanê Aleut"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Cezayîr"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "Zimanên Algonquyî"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-#, fuzzy
-msgid "Altaic (Other)"
-msgstr "Baltîk (Yên din)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr ""
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Altaya Başûrî"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "Amharî"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andora"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-#, fuzzy
-msgid "Angola"
-msgstr "Mongolî"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Angîla"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-#, fuzzy
-msgid "Antarctica"
-msgstr "Bixweber"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr ""
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Îngilîzî, Kevn (ca.450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -276,56 +2019,40 @@ msgstr "Zimanên Apaçî"
 msgid "Arabic"
 msgstr "Erebî"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Zimanê Aragonese"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "Aramaîkî"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Zimanê Arapaho"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Zimanê Aragonese"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Ermenî"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "Arûkanî"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawakî"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Arjantîn"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-#, fuzzy
-msgid "Armenia"
-msgstr "Ermenî"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Ermenî"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Zimanê Arapaho"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "Zêdehî (Yên din)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawakî"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -342,32 +2069,11 @@ msgstr "Asturî"
 msgid "Athapascan Languages"
 msgstr "Zimanên Atapaskanî"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Awustralya"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "Zimanên Awustralî"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Awusturya"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Awustranezî (Yên din)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -388,45 +2094,25 @@ msgstr "Awadî"
 msgid "Aymara"
 msgstr "Zimanê Aymara"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-#, fuzzy
-msgid "Azerbaijan"
-msgstr "Azerbaycanî"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Azerbaycanî"
 
-#: zypp/media/MediaException.cc:47
-#, fuzzy, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Navê &pelê:"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr ""
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrayîn"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Zimanê Banda"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Baliyî"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Zimanên Bamileke"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltîk (Yên din)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Zimanê Başkir"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -438,76 +2124,36 @@ msgstr "Beluçî"
 msgid "Bambara"
 msgstr "Zimanê Bambara"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Zimanên Bamileke"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Zimanê Banda"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladeş"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (Yên din)"
-
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
-
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Zimanê Basa"
-
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Zimanê Başkir"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Baliyî"
 
 #. language code: baq eus eu
 #: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 msgid "Basque"
 msgstr "Baskî"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Endonezya)"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Zimanê Basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltîk (Yên din)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "Zimanê Beja"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belarus"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "Belarusî"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belçîka"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belîze"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -518,315 +2164,101 @@ msgstr "Zimanê Bemba"
 msgid "Bengali"
 msgstr "Bengalî"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr ""
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "Berber (Yên din)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermûda"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "Zimanê Bhojpuri"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr ""
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
 msgstr "Biharî"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Zimanê Bikol"
-
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Zimanê Bînî"
-
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Zimanê Bislama"
-
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Zimanê Blinî"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolîvya"
-
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr ""
-
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosnayî"
-
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-#, fuzzy
-msgid "Bouvet Island"
-msgstr "Giravên Faroye"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Zimanê Braj"
-
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brezîlya"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Zimanê Breton"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr ""
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr ""
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr ""
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Bugînî"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaristan"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgarî"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriatî"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr ""
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Zimanê Burmese"
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-#, fuzzy
-msgid "Burundi"
-msgstr "Rundî"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Zimanê Caddo"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr ""
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-#, fuzzy
-msgid "Cameroon"
-msgstr "Kamera"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "Pelrêç nayê afirandin"
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr ""
-
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "%s nehat vebûn."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "%1$s Biafirîne"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "Pelrêç nayê afirandin"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Bi rastî bila '%1' jê bibe?"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr ""
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr ""
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Pela '%1' nayê vekirin"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Zimanê Bikol"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Pela %1 nayê vekirin"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Zimanê Bînî"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Pela %1 nayê vekirin"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Zimanê Bislama"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "%s nehat vebûn."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Zimanê Siksika"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr ""
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (Yên din)"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr ""
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosnayî"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr ""
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Zimanê Braj"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Zimanê Breton"
 
-#: zypp/media/MediaException.cc:182
-#, fuzzy
-msgid "Cannot eject any media"
-msgstr "Nikare cîhazan bibîne."
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Endonezya)"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Nikare cîhazan bibîne."
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriatî"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Bugînî"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgarî"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Zimanê Burmese"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Pela '%1' nayê vekirin"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Zimanê Blinî"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Kap Verde"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Zimanê Caddo"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+#, fuzzy
+msgid "Central American Indian (Other)"
+msgstr "Dravîdî (Yên din)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -843,11 +2275,6 @@ msgstr "Katalan"
 msgid "Caucasian (Other)"
 msgstr "Caucasian (Yên din)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Giravên Kayman"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -858,171 +2285,80 @@ msgstr "Zimanê Cebuano"
 msgid "Celtic (Other)"
 msgstr "Seltîk (Yên din)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-#, fuzzy
-msgid "Central African Republic"
-msgstr "Sûriye"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-#, fuzzy
-msgid "Central American Indian (Other)"
-msgstr "Dravîdî (Yên din)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr ""
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Zimanê Çaxatay"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Zimanên Çamîk"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Zimanê Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, fuzzy, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Veavakirina IrDA biguherîne"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Çeçenî"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Çerokî"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Çeyenî"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Zimanê Çibça"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Zimanê Chichewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Sîlî"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Çeçenî"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-#, fuzzy
-msgid "China"
-msgstr "Çînî"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Zimanê Çaxatay"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Çînî"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Zimanê Çukezî"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Marî"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Zimanê Çînok Cargon"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Çipewyanî"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
-msgstr "Çoktawî"
-
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Girava Noel"
-
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "Silavîka Dêrê"
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Zimanê Çukezî"
-
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Çuvaşî"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Newariya Klasîk"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr ""
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolombiya"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr ""
+msgstr "Çoktawî"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Çipewyanî"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr ""
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Çerokî"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Silavîka Dêrê"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-#, fuzzy
-msgid "Congo"
-msgstr "Kongoyî"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Çuvaşî"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-#, fuzzy
-msgid "Cook Islands"
-msgstr "Giravên Faroye"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Çeyenî"
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Zimanên Çamîk"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1039,32 +2375,6 @@ msgstr "Cornişî"
 msgid "Corsican"
 msgstr "Korsîkî"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Kosta Rîka"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr ""
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Zimanê Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Zimanê Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-#, fuzzy
-msgid "Creoles and Pidgins (Other)"
-msgstr "Dravîdî (Yên din)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1080,46 +2390,37 @@ msgstr ""
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Zimanê Cree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Tatarî ya Kirimî"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Hirvatistan"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Zimanê Xirwatî"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+#, fuzzy
+msgid "Creoles and Pidgins (Other)"
+msgstr "Dravîdî (Yên din)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr ""
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kaşûbî"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Kûştîk (Yên din)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr ""
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Çekî"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Komara Çek"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1145,10 +2446,15 @@ msgstr "Zimanê Dayak"
 msgid "Delaware"
 msgstr "Zimanê Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danîmarka"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Zimanê Slave (Athapascan)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Zimanê Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1160,71 +2466,36 @@ msgstr "Zimanê Dinka"
 msgid "Divehi"
 msgstr "Divehî"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Cîbutî"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Zimanê Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Zimanê Dogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Domînîka"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Komara Domînîk"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Dravîdî (Yên din)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Sorbiya Jêrîn"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Zimanê Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Felemenkî, Navîn (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Felemenkî"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Felemenkî, Navîn (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1235,139 +2506,46 @@ msgstr "Zimanê Dyula"
 msgid "Dzongkha"
 msgstr "Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr ""
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ekvator"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Zimanê Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Misir"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
 msgstr "Misirî (Kevn)"
 
 #. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "Zimanê Ekajuk"
-
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Zimanê Elamite"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr ""
-
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Îngilîzî"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Îngilîzî, Navîn (1100-1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Îngilîzî, Kevn (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr ""
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, fuzzy, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "Demê afirandina arşîvê de çewtiyek çêbû."
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "Zimanê Ekajuk"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Zimanê Elamite"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, fuzzy, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Di nivîsandina pela '%1' de çewtî çêbû"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Îngilîzî"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Zimanê Erzya"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Îngilîzî, Navîn (1100-1500)"
 
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonya"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estonî"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr ""
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1378,209 +2556,31 @@ msgstr "Zimanê Ewe"
 msgid "Ewondo"
 msgstr "Zimanê Ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr ""
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Sepandina delta RPM têk çû"
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr ""
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Nekarî pelrêça '%1' biafirîne."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Jibergirtina %s pêk nehat."
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr ""
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Zimanê Fang"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Zimanê Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Giravên Faroye"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "Zimanê Faeroese"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr ""
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fîjî"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Zimanê Fanti"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "Zimanê Fijian"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Pakêta %1 derdorê nehat dîtin."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Zimanê Filipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Fînlandiya"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1591,40 +2591,15 @@ msgstr "Fînikî"
 msgid "Finno-Ugrian (Other)"
 msgstr "Finno-Ugrian (Yên din)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
-msgstr "Zimanê Fon"
-
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Fransa"
-
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
-msgstr "Frensî"
-
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-#, fuzzy
-msgid "French Guiana"
-msgstr "Fransî (Kanada)"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr ""
+msgstr "Zimanê Fon"
 
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr ""
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
+msgstr "Frensî"
 
 #. language code: frm
 #: zypp/LanguageCode.cc:449
@@ -1641,46 +2616,21 @@ msgstr "Frensî, Kevn (842-ca.1400)"
 msgid "Frisian"
 msgstr "Zimanê Frisian"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friulyan"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Zimanê Fulah"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friulyan"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Zimanê Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr ""
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaelî"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Zimanê Galisî"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr ""
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganga"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1691,15 +2641,10 @@ msgstr "Zimanê Gayo"
 msgid "Gbaya"
 msgstr "Zimanê Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Zimanê Geez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Gurcistan"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Almanîkî (Yên din)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1711,6 +2656,36 @@ msgstr "Gurcî"
 msgid "German"
 msgstr "Almanî"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Zimanê Geez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Zimanê Gilbertese"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaelî"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Îrlandî"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Zimanê Galisî"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Zimanê Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1721,30 +2696,6 @@ msgstr "Almanî, Navîn Bilind (ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Almanî, Kevn Bilind (ca.750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Almanîkî (Yên din)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Almanya"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr ""
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Cebelîtariq"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Zimanê Gilbertese"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1765,11 +2716,6 @@ msgstr "Gotîk"
 msgid "Grebo"
 msgstr "Zimanê Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Yewnanistan"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1780,61 +2726,16 @@ msgstr "Grekî, Kevnare (heta 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Grekî, Nûjen (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Greenland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Girava Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadelûp"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guaranî"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr ""
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr ""
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gucaratî"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1845,55 +2746,21 @@ msgstr "Zimanê Gwich'in"
 msgid "Haida"
 msgstr "Zimanê Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-#, fuzzy
-msgid "Haiti"
-msgstr "Zimanê Haitian"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Zimanê Haitian"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-#, fuzzy
-msgid "Hal Exception"
-msgstr "Salix"
-
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "(negirêdayî)"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Zimanê Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawayî"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr ""
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1919,17 +2786,6 @@ msgstr "Zimanê Himachali"
 msgid "Hindi"
 msgstr "Hindî"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Zimanê Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-#, fuzzy
-msgid "History:"
-msgstr "Pelrêça Mal:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1940,31 +2796,21 @@ msgstr "Hîtîtî"
 msgid "Hmong"
 msgstr "Zimanê Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr ""
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Zimanê Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Zimanê Sorbiana Jorîn"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Macarî"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Macaristan"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1975,10 +2821,10 @@ msgstr "Zimanê Hupa"
 msgid "Iban"
 msgstr "Zimanê Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Îzlanda"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Zimanê Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1990,252 +2836,105 @@ msgstr "Zimanê Îzlandî"
 msgid "Ido"
 msgstr "Zimanê Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Zimanê Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Zimanê Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Zimanê Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Zimanê Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Zimanê Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Zimanê Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Hindistan"
-
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Hîndîk (Yên din)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Hîndo-Ewropa (Yên din)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Endonezya"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Endonezî"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Hîndo-Ewropa (Yên din)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Zimanê Ingush"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-#, fuzzy
-msgid "Installation has been aborted as directed."
-msgstr "Sazkirina di nav Pelrêç de"
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Zimanê Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Zimanê Inuktitut"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Zimanê Inupiak"
 
-#: zypp/url/UrlBase.cc:180
-#, fuzzy, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Vebijêrka nederbasdar: %1"
-
-#: zypp/url/UrlBase.cc:173
-#, fuzzy, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Vebijêrka nederbasdar: %1"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr ""
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1049
-#, fuzzy, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Vebijêrka nederbasdar: %1"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, fuzzy, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Vebijêrka nederbasdar: %1"
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Derbirîna bi Pergal(an)"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr ""
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr ""
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Îranî (Yên din)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Iraq"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Îrlanda"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Îrlandî"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Îrîşî, Navîn (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-#, fuzzy
-msgid "Irish, Old (to 900)"
-msgstr "Provenkal, Kevn (heta 1500)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Zimanên Iraqî"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Girava Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Îsraîl"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Îtalyanî"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Îtalya"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamayîka"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Cavanezî"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japonya"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Zimanê Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japonî"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Cavanezî"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Urdin"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Cudî-Farsî"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Cudî-Erebî"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Cudî-Farsî"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Zimanê Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Zimanê Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2252,11 +2951,6 @@ msgstr "Zimanê Kaçîn"
 msgid "Kalaallisut"
 msgstr "Zimanê Kalaallîsut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr ""
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2267,21 +2961,6 @@ msgstr "Zimanê Kamba"
 msgid "Kannada"
 msgstr "Kannadî"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanurî"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Zimanê Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karaçay-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2292,10 +2971,10 @@ msgstr "Zimanê Karen"
 msgid "Kashmiri"
 msgstr "Kaşmîrî"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kaşûbî"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanurî"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2307,32 +2986,26 @@ msgstr "Zimanê Kawi"
 msgid "Kazakh"
 msgstr "Qazaxî"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-#, fuzzy
-msgid "Kazakhstan"
-msgstr "Qazaxî"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr ""
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Zimanê Kabardian"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
-msgid "Khasi"
-msgstr "Zimanê Khasi"
-
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Kamboçî"
+msgid "Khasi"
+msgstr "Zimanê Khasi"
 
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Xosî (Yên din)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Kamboçî"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2343,11 +3016,6 @@ msgstr "Xotanezî"
 msgid "Kikuyu"
 msgstr "Kikuyuyî"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Zimanê Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2358,15 +3026,15 @@ msgstr "Zimanê Kinyarwanda"
 msgid "Kirghiz"
 msgstr "Qirxizî"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr ""
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Zimanê Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingonî"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Zimanê Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2378,11 +3046,6 @@ msgstr "Komî"
 msgid "Kongo"
 msgstr "Kongoyî"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Zimanê Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2398,11 +3061,21 @@ msgstr "Kosranî"
 msgid "Kpelle"
 msgstr "Zimanê Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karaçay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Zimanê Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Zimanê Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2418,26 +3091,11 @@ msgstr "Zimanê Kumyk"
 msgid "Kurdish"
 msgstr "Kurdî"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Zimanê Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Zimanê Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kûveyt"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr ""
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2458,68 +3116,21 @@ msgstr "Zimanê Lamba"
 msgid "Lao"
 msgstr "Zimanê Lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr ""
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latîn"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latviya"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Latvianî"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Lubnan"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Zimanê Lezghian"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr ""
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr ""
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Lihtenstayn"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2530,61 +3141,46 @@ msgstr "Ziman Liburgianisch"
 msgid "Lingala"
 msgstr "Zimanê Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lîtvanya"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Lîtwanî"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Zimanê Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Almaniya Jêr"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Sorbiya Jêrîn"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Zimanê Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Zimanê Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Zimanê Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburgişî"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Zimanê Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Zimanê Luba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganga"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Zimanê Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr ""
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2600,36 +3196,11 @@ msgstr "Zimanê Luo (Kenya û Tanzania)"
 msgid "Lushai"
 msgstr "Zimanê Luşayî"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luksemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburgişî"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Makao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonya"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Makedonî"
 
-#: zypp/CountryCode.cc:298
-#, fuzzy
-msgid "Madagascar"
-msgstr "Zimanê Malagasy"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2640,6 +3211,11 @@ msgstr "Madurezî"
 msgid "Magahi"
 msgstr "Zimanê Magahî"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Zimanê Marshallesisch"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2650,181 +3226,60 @@ msgstr "Maratî"
 msgid "Makasar"
 msgstr "Zimanê Makasar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Zimanê Malagasy"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-#, fuzzy
-msgid "Malawi"
-msgstr "Zimanê Malay"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Zimanê Malay"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Zimanê Malayalam"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malezya"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Giravên Maldiv"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr ""
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Zimanê Maltese"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Zimanê Manchu"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Zimanê Mandar"
-
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
-msgstr "Zimanê Mandingo"
-
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipurî"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Zimanên Manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Zimanê Manx"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
+msgstr "Zimanê Mandingo"
 
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maorî"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Awustranezî (Yên din)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Maratî"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Marî"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-#, fuzzy
-msgid "Marshall Islands"
-msgstr "Giravên Faroye"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Zimanê Marshallesisch"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinîk"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwarî"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Zimanê Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-#, fuzzy
-msgid "Mauritania"
-msgstr "Morîtiyus"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Morîtiyus"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Zimanên Mayan"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayote"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Zimanê Malay"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Zimanê Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Zimanê Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Zimanê Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr ""
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexîko"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Îrîşî, Navîn (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2836,88 +3291,61 @@ msgstr "Zimanê Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Zimanê Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandezî"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Zimanên Cur bi cur"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Khmer (Yên din)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Zimanê Malagasy"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Zimanê Maltese"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Zimanê Manchu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipurî"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Zimanên Manobo"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Zimanê Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Zimanê Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Zimanê Moldavya"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Khmer (Yên din)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monako"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Zimanê Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-#, fuzzy
-msgid "Mongolia"
-msgstr "Mongolî"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongolî"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Fas"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Zimanê Mossî"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-#, fuzzy
-msgid "Mozambique"
-msgstr "Martinîk"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2929,220 +3357,142 @@ msgstr "Zimanên Piranî"
 msgid "Munda languages"
 msgstr "Zimanên Munda"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Zimanê Creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandezî"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwarî"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Zimanên Mayan"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Zimanê Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Zimanê Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr ""
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+#, fuzzy
+msgid "North American Indian"
+msgstr "Amerîkaya Bakur"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Naûrû"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Napolitanî"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Zimanê Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Zimanê Ndebele, Bakur"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Zimanê Ndebele, Başûr"
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
-msgstr "Zimanê Ndonga"
-
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Napolitanî"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-#, fuzzy
-msgid "Nepal"
-msgstr "Zimanê Nepal"
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Zimanê Ndebele, Bakur"
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Zimanê Nepal Bhasa"
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
+msgstr "Zimanê Ndonga"
+
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Almaniya Jêr"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Zimanê Nepal"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Holanda"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-#, fuzzy
-msgid "Netherlands Antilles"
-msgstr "Holanda"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-#, fuzzy
-msgid "New Caledonia"
-msgstr "Makedonya"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Zelandaya Nû"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Zimanê Nepal Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Zimanê Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nîkaragûa"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr ""
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Nijer-Kordofanî (Yên din)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-#, fuzzy
-msgid "Nigeria"
-msgstr "Cezayîr"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-#, fuzzy
-msgid "Nilo-Saharan (Other)"
-msgstr "Finno-Ugrian (Yên din)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Nîûe"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Zimanê Niuean"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-#, fuzzy
-msgid "No Code"
-msgstr "Kod"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Norwecî ya  Nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-#, fuzzy
-msgid "No url in repository."
-msgstr "Çavkanî hilbijêre."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Norwecî ya Bokmal"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Zimanê Nogaî"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-#, fuzzy
-msgid "Norfolk Island"
-msgstr "Giravên Faroye"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Norzî, Kevn"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-#, fuzzy
-msgid "North American Indian"
-msgstr "Amerîkaya Bakur"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-#, fuzzy
-msgid "North Korea"
-msgstr "Amerîkaya Bakur"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr ""
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Samî ya Bakurî"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Sothoya Bakurî"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norweç"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norveçkî"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Norwecî ya Bokmal"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Norwecî ya  Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr ""
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Sothoya Bakurî"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Zimanên Nubian"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Newariya Klasîk"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Zimanê Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3163,10 +3513,6 @@ msgstr "Zimanê Nyoro"
 msgid "Nzima"
 msgstr "Zimanê Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr ""
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3177,20 +3523,6 @@ msgstr "Ossetî (piştî 1500)"
 msgid "Ojibwa"
 msgstr "Zimanê Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Uman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3211,162 +3543,85 @@ msgstr "Zimanê Osage"
 msgid "Ossetian"
 msgstr "Osetî"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Tirkî, Osmanî (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Zimanên Osmanî"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr "Pehlevî"
-
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palawu"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Zimanê Palauan"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr ""
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Palî"
-
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "Zimanê Pampanga"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papuanî (Yên din)"
 
 #. language code: pag
 #: zypp/LanguageCode.cc:847
 msgid "Pangasinan"
 msgstr "Pangazînanî"
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "Pêncabî"
-
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "Zimanê Papiamento"
-
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr ""
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papuanî (Yên din)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr "Pehlevî"
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "Zimanê Pampanga"
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "Pêncabî"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr ""
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "Zimanê Papiamento"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Farsî"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Zimanê Palauan"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Farisî, Kevn (ca.600-400 P.Z)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Perû"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Farsî"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Fîlîpînî (Yên din)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Fîlîpîn"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Fonîcî"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitkayirn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Fonpeynî"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polonya"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Palî"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Polonî"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portekîz"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Fonpeynî"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3378,77 +3633,21 @@ msgstr "Portekîzî"
 msgid "Prakrit Languages"
 msgstr "Zimanên Prakrît"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Provenkal, Kevn (heta 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Peydeker"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Porto Rîko"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Puşto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Zimanê Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr ""
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Reto-Romanî"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3464,140 +3663,35 @@ msgstr "Rapanûyî"
 msgid "Rarotongan"
 msgstr "Rarotonganî"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, fuzzy, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Arşîvan Rake"
-
-#: zypp/RepoManager.cc:338
-#, fuzzy
-msgid "Repository alias cannot start with dot."
-msgstr "Arşîv nederbasdar e."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Pêwist"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reûnyon"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Romanî (Yên din)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romanya"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Romanî"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Reto-Romanî"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Romî"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundî"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Rûsî"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr ""
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-#, fuzzy
-msgid "Rwanda"
-msgstr "Zimanê Banda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-#, fuzzy
-msgid "Saint Helena"
-msgstr "Saint Lucia"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts û Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
-
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "San Marîno"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr ""
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-#, fuzzy
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Kitts û Nevis"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Zimanên Salîşî"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr ""
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-#, fuzzy
-msgid "Sami Languages (Other)"
-msgstr "Zimanên Çamîk"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Zimanê Samoan"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Romanî"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marîno"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundî"
+
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Rûsî"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3609,41 +3703,63 @@ msgstr "Sazndawî"
 msgid "Sango"
 msgstr "Zimanê Sangro"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Yakutî"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+#, fuzzy
+msgid "South American Indian (Other)"
+msgstr "Îranî (Yên din)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Zimanên Salîşî"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr ""
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Zimanê Sanskrit"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr ""
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr ""
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Zimanê Sardinisch"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr ""
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Sirpkî"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Si'ûdî Erebistan"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+#, fuzzy
+msgid "Sicilian"
+msgstr "Friulyan"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr ""
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Zimanê Xirwatî"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3655,39 +3771,17 @@ msgstr ""
 msgid "Semitic (Other)"
 msgstr "Seltîk (Yên din)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr ""
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Sirbîstan"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Sirpkî"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
+#. language code: sga
+#: zypp/LanguageCode.cc:939
 #, fuzzy
-msgid "Serer"
-msgstr "Zimanê Herero"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
+msgid "Irish, Old (to 900)"
+msgstr "Provenkal, Kevn (heta 1500)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr ""
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+#, fuzzy
+msgid "Sign Languages"
+msgstr "Zimanên Salîşî"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
@@ -3695,113 +3789,27 @@ msgstr ""
 msgid "Shan"
 msgstr "Şangay"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Zimanê Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Zimanê Sichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-#, fuzzy
-msgid "Sicilian"
-msgstr "Friulyan"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr ""
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-#, fuzzy
-msgid "Sign Languages"
-msgstr "Zimanên Salîşî"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "Pel nehat dîtin."
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Pel nehat dîtin."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "Pel nehat dîtin."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "Pel nehat dîtin."
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "Nivîsandina mîhengan têk çû"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Zimanê Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Zimanê Sind"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Sîngapur"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Sînhala"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-#, fuzzy
-msgid "Sino-Tibetan (Other)"
-msgstr "Finno-Ugrian (Yên din)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 #, fuzzy
 msgid "Siouan Languages"
 msgstr "Zimanên Salîşî"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
+#. language code: sit
+#: zypp/LanguageCode.cc:951
 #, fuzzy
-msgid "Skolt Sami"
-msgstr "Samî ya Bakurî"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Zimanê Slave (Athapascan)"
+msgid "Sino-Tibetan (Other)"
+msgstr "Finno-Ugrian (Yên din)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3814,221 +3822,148 @@ msgstr "Baltîk (Yên din)"
 msgid "Slovak"
 msgstr "Slovakî"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovakya"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Slovenî"
+
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+#, fuzzy
+msgid "Southern Sami"
+msgstr "Samî ya Bakurî"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Samî ya Bakurî"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+#, fuzzy
+msgid "Sami Languages (Other)"
+msgstr "Zimanên Çamîk"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr ""
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr ""
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Zimanê Samoan"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+#, fuzzy
+msgid "Skolt Sami"
+msgstr "Samî ya Bakurî"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Zimanê Shona"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenya"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Zimanê Sind"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Slovenî"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr ""
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr ""
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-#, fuzzy
-msgid "Solomon Islands"
-msgstr "Giravên Kayman"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Zimanê Somalî"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-#, fuzzy
-msgid "Somalia"
-msgstr "Zimanê Somalî"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 #, fuzzy
 msgid "Songhai"
 msgstr "Şangay"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr ""
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-#, fuzzy
-msgid "Sorbian Languages"
-msgstr "Zimanên Nubian"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Zimanê Sesotho"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Efrîka Basur"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-#, fuzzy
-msgid "South American Indian (Other)"
-msgstr "Îranî (Yên din)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr ""
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-#, fuzzy
-msgid "South Korea"
-msgstr "Efrîka Basur"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Altaya Başûrî"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-#, fuzzy
-msgid "Southern Sami"
-msgstr "Samî ya Bakurî"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spanya"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Spanî"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr ""
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Zimanê Sardinisch"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sûdan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+#, fuzzy
+msgid "Serer"
+msgstr "Zimanê Herero"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr ""
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+#, fuzzy
+msgid "Nilo-Saharan (Other)"
+msgstr "Finno-Ugrian (Yên din)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swatî"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-#, fuzzy
-msgid "Sumerian"
-msgstr "Asturî"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sudanî"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-#, fuzzy
-msgid "Suriname"
-msgstr "Navê Pelê"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr ""
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+#, fuzzy
+msgid "Sumerian"
+msgstr "Asturî"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Zimanê Swahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swatî"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-#, fuzzy
-msgid "Swaziland"
-msgstr "Tayland"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Swêd"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Swêdî"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Swîsre"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-#, fuzzy
-msgid "Syria"
-msgstr "Asûrî"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Asûrî"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalogî"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4040,36 +3975,11 @@ msgstr "Zimanê Tahitî"
 msgid "Tai (Other)"
 msgstr "Baltîk (Yên din)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taywan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tajikî"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tacîkistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamîlî"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4080,6 +3990,11 @@ msgstr "Tatarî"
 msgid "Telugu"
 msgstr "Zimanê Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4090,33 +4005,21 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tajikî"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalogî"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Tayî"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tayland"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr ""
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4132,49 +4035,27 @@ msgstr "Tigre"
 msgid "Tigrinya"
 msgstr "Zimanê Tigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 #, fuzzy
 msgid "Tiv"
 msgstr "Zimanê Twi"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingonî"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Zimanê Tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-#, fuzzy
-msgid "Tonga"
-msgstr "Zimanê Tsonga"
-
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
 #, fuzzy
@@ -4186,15 +4067,9 @@ msgstr "Zimanê Tonga (Giravên Toga)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Zimanê Tonga (Giravên Toga)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4202,90 +4077,58 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Zimanê Tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Zimanê Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Zimanê Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Tirkmenî"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tûnis"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 #, fuzzy
 msgid "Tupi Languages"
 msgstr "Zimanên Nubian"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Tirkiye"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Tirkî"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Tirkî, Osmanî (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Tirkmenî"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
 #, fuzzy
-msgid "Turkmenistan"
-msgstr "Tirkmenî"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr ""
+msgid "Altaic (Other)"
+msgstr "Baltîk (Yên din)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Zimanê Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Zimanê Twi"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Zimanê Twi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-#, fuzzy
-msgid "Uganda"
-msgstr "Zimanê Banda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4296,11 +4139,6 @@ msgstr "Ugaritikî"
 msgid "Uighur"
 msgstr "Zimanê Uighur"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukrayna"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4312,577 +4150,743 @@ msgstr "Ukraynî"
 msgid "Umbundu"
 msgstr "Zimanê Kimbundu"
 
-#: zypp/Url.cc:300
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Zimanê Urdu"
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Ozbekî"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
 #, fuzzy
-msgid "Unable to clone Url object"
-msgstr "&Venebû"
+msgid "Vai"
+msgstr "Derbasdar"
 
-#: zypp/target/hal/HalContext.cc:229
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Zimanê Venda"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnamî"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr ""
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr ""
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
 #, fuzzy
-msgid "Unable to create dbus connection"
-msgstr "Nekarî pelrêça '%1' biafirîne."
+msgid "Wakashan Languages"
+msgstr "Zimanên Salîşî"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr ""
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr ""
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Zimanê Welş"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
 #, fuzzy
-msgid "Unable to parse Url components"
-msgstr "&Venebû"
+msgid "Sorbian Languages"
+msgstr "Zimanên Nubian"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Walloonî"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolofî"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhosî"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
 #, fuzzy
-msgid "Unhandled repository type"
-msgstr "Çavkaniyê &Çalak Bike"
+msgid "Yao"
+msgstr "Zimanê Lao"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Mîrtiyên Ereb ên Yekbûyî"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Şahitiya Yekbuyî"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Eskenazî"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Zimanê Yoruba"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
 #, fuzzy
-msgid "United States"
-msgstr "Mîrtiyên Ereb ên Yekbûyî"
+msgid "Yupik Languages"
+msgstr "Zimanên Nubian"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr ""
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr ""
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zimanê Zhuang"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-#, fuzzy
-msgid "Unknown country: "
-msgstr "Vebijêrka nenas: %1"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zimanê Zulu"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr ""
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
+#: zypp/KeyRing.cc:566
 #, fuzzy
-msgid "Unknown language: "
-msgstr "Zimanê Nayê Zanîn:"
+msgid "Failed to delete key."
+msgstr "Sepandina delta RPM têk çû"
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Servîsa '%1' nayê zanîn "
+msgid "Signature file %s not found"
+msgstr "Pel nehat dîtin."
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr ""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
+#: zypp/repo/RepoProvideFile.cc:265
 #, fuzzy
-msgid "Unknown support option. Description not available"
-msgstr "tu rave tuneye "
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
+msgid "No url in repository."
+msgstr "Çavkanî hilbijêre."
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Zimanê Sorbiana Jorîn"
-
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Zimanê Urdu"
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "Nivîsandina mîhengan têk çû"
 
-#: zypp/url/UrlBase.cc:154
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-#, fuzzy
-msgid "Url scheme is a required component"
-msgstr "Navê bikarhêner pêwist e"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Ozbekî"
-
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Ozbekîstan"
-
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-#, fuzzy
-msgid "Vai"
-msgstr "Derbasdar"
-
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-#, fuzzy
-msgid "Vanuatu"
-msgstr "Bi Destan"
-
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Zimanê Venda"
-
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezûela"
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "Sazkirina pakêtên hewce pêk nehat."
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
+#: zypp/solver/detail/SATResolver.cc:986
 #, fuzzy
-msgid "Vietnam"
-msgstr "Vietnamî"
-
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnamî"
+msgid "conflicting requests"
+msgstr "Pakêtên nakokiyên wan hene"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "Pela %1 tune ye. "
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
+#: zypp/solver/detail/SATResolver.cc:1000
 #, fuzzy
-msgid "Wakashan Languages"
-msgstr "Zimanên Salîşî"
-
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr ""
+msgid "unsupported request"
+msgstr "Piştgirî"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Walloonî"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "Saz neke"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Zimanê Welş"
-
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolofî"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhosî"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Yakutî"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-#, fuzzy
-msgid "Yao"
-msgstr "Zimanê Lao"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Yemen"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Eskenazî"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Zimanê Yoruba"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-#, fuzzy
-msgid "Yupik Languages"
-msgstr "Zimanên Nubian"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, fuzzy, c-format, boost-format
+msgid "do not install %s"
+msgstr "Saz neke"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "Sazkirina nivîsbariyê"
+
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zimanê Zhuang"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, fuzzy, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "Ji bo nû ve sazkirina guhertoya cuda"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zimanê Zulu"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
+#: zypp/solver/detail/SATResolver.cc:1318
+#, fuzzy, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "kêmkirin"
+
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr ""
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Moda Sazkirinê"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr ""
+
+#: zypp/parser/RepoindexFileReader.cc:197
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
+
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Pela %1 nayê vekirin"
+
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
 #, fuzzy
-msgid "conflicting requests"
-msgstr "Pakêtên nakokiyên wan hene"
+msgid "History:"
+msgstr "Pelrêça Mal:"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Servîsa '%1' nayê zanîn "
+
+#: zypp/base/StrMatcher.cc:153
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
+
+#: zypp/base/StrMatcher.cc:158
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Moda Sazkirinê"
+msgid "Invalid regular expression '%s'"
+msgstr "Derbirîna bi Pergal(an)"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Failed to mount %s on %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:41
 #, fuzzy, c-format, boost-format
-msgid "do not install %s"
-msgstr "Saz neke"
+msgid "Failed to unmount %s"
+msgstr "Jibergirtina %s pêk nehat."
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:47
 #, fuzzy, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "Ji bo nû ve sazkirina guhertoya cuda"
+msgid "Bad file name: %s"
+msgstr "Navê &pelê:"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
+
+#: zypp/media/MediaException.cc:60
 #, fuzzy, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "kêmkirin"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Pakêta %1 derdorê nehat dîtin."
+
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Pela '%1' nayê vekirin"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-#, fuzzy
-msgid "invalid"
-msgstr "URL ya nederbasdar"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, c-format, boost-format
-msgid "keep obsolete %s"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, fuzzy, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "Demê afirandina arşîvê de çewtiyek çêbû."
+
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "Pela %1 tune ye. "
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "Sazkirina pakêtên hewce pêk nehat."
+#: zypp/media/MediaException.cc:182
+#, fuzzy
+msgid "Cannot eject any media"
+msgstr "Nikare cîhazan bibîne."
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "Sazkirina nivîsbariyê"
+msgid "Cannot eject media '%s'"
+msgstr "Nikare cîhazan bibîne."
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
+
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "Pelrêç nayê afirandin"
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "nenas"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-#, fuzzy
-msgid "unsupported"
-msgstr "Piştgirî"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
 #, fuzzy
-msgid "unsupported request"
-msgstr "Piştgirî"
+#~ msgid "do not keep %s installed"
+#~ msgstr "Saz neke"
 
 #, fuzzy
 #~ msgid ""
@@ -4892,7 +4896,3 @@ msgstr "Piştgirî"
 #, fuzzy
 #~ msgid "Failed to download %s from %s"
 #~ msgstr "Daxistina delta RPM têk çû: %1"
-
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "Saz neke"
index b2ae223..e6724f7 100644 (file)
--- a/po/lo.po
+++ b/po/lo.po
@@ -15,832 +15,812 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-#, fuzzy
-msgid " execution failed"
-msgstr "DBI Execution failed: %s"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr ""
+#: zypp/target/TargetImpl.cc:332
+#, fuzzy
+msgid " execution failed"
+msgstr "DBI Execution failed: %s"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
 msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
 msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
 msgstr ""
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
 msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
 msgstr ""
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
 msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
 msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
 msgstr ""
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr ""
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
 msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr ""
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Couldn't open file: %s."
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
 msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr ""
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Couldn't open file: %s."
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
 msgstr ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
 msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
 msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
+msgid "Error trying to read from '%s'"
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
 msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
 msgstr ""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Couldn't open file: %s."
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
 msgstr ""
 
-#: zypp/media/MediaException.cc:47
+#: zypp/url/UrlBase.cc:154
 #, c-format, boost-format
-msgid "Bad file name: %s"
+msgid "Url scheme does not allow a %s"
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
 msgstr ""
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
 msgstr ""
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
 msgstr ""
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
 msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
 msgstr ""
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
 msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
 msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
 msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
 msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
 msgstr ""
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr ""
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr ""
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Couldn't open file: %s."
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
 msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr ""
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Couldn't open file: %s."
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
 msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
 msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
 msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
 msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr ""
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
 msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
 msgstr ""
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
 msgstr ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
 msgstr ""
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
 msgstr ""
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
 msgstr ""
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
 msgstr ""
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
 msgstr ""
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
 msgstr ""
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
 msgstr ""
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
 msgstr ""
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
 msgstr ""
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
 msgstr ""
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
 msgstr ""
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
 msgstr ""
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
 msgstr ""
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
 msgstr ""
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
 msgstr ""
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
 msgstr ""
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
 msgstr ""
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
 msgstr ""
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Couldn't open file: %s."
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Couldn't open file: %s."
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Couldn't open file: %s."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Couldn't open file: %s."
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr ""
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Couldn't open file: %s."
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr ""
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
 msgstr ""
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
 msgstr ""
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
 msgstr ""
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
 msgstr ""
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Couldn't open file: %s."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr ""
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
 msgstr ""
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
 msgstr ""
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
 msgstr ""
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
 msgstr ""
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
 msgstr ""
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
 msgstr ""
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
 msgstr ""
 
 #. :COD:180:
@@ -848,61 +828,19 @@ msgstr ""
 msgid "Central African Republic"
 msgstr ""
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
 msgstr ""
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
 msgstr ""
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr ""
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr ""
-
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr ""
-
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr ""
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr ""
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr ""
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr ""
-
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr ""
-
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
 msgstr ""
 
 #. :COK:184:
@@ -910,29 +848,34 @@ msgstr ""
 msgid "Chile"
 msgstr ""
 
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr ""
+
 #. :CMR:120:
 #: zypp/CountryCode.cc:204
 msgid "China"
 msgstr ""
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
 msgstr ""
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
 msgstr ""
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
 msgstr ""
 
 #. :CPV:132:
@@ -940,2779 +883,2840 @@ msgstr ""
 msgid "Christmas Island"
 msgstr ""
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
 msgstr ""
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
 msgstr ""
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
 msgstr ""
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
 msgstr ""
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
 msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
 msgstr ""
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
 msgstr ""
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
 msgstr ""
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
 msgstr ""
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
 msgstr ""
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
 msgstr ""
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
 msgstr ""
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
 msgstr ""
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
 msgstr ""
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
 msgstr ""
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
 msgstr ""
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
 msgstr ""
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
 msgstr ""
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
 msgstr ""
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
 msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
 msgstr ""
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
 msgstr ""
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
 msgstr ""
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
 msgstr ""
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
 msgstr ""
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
 msgstr ""
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
 msgstr ""
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
 msgstr ""
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
 msgstr ""
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
 msgstr ""
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
 msgstr ""
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
 msgstr ""
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
 msgstr ""
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
 msgstr ""
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
 msgstr ""
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
 msgstr ""
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
 msgstr ""
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
 msgstr ""
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
 msgstr ""
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
+#: zypp/CountryCode.cc:261
+msgid "India"
 msgstr ""
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
 msgstr ""
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
 msgstr ""
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
 msgstr ""
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
 msgstr ""
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
 msgstr ""
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
 msgstr ""
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
 msgstr ""
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
 msgstr ""
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
 msgstr ""
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
 msgstr ""
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
 msgstr ""
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
 msgstr ""
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
 msgstr ""
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
 msgstr ""
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
 msgstr ""
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
 msgstr ""
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
 msgstr ""
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
 msgstr ""
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
 msgstr ""
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
 msgstr ""
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr ""
 
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr ""
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
 msgstr ""
 
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Failed to parse: %s."
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr ""
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Failed to parse: %s."
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
 msgstr ""
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
 msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
 msgstr ""
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
 msgstr ""
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
 msgstr ""
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
 msgstr ""
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr ""
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr ""
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr ""
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr ""
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr ""
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr ""
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr ""
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr ""
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr ""
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr ""
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr ""
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr ""
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr ""
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr ""
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr ""
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr ""
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr ""
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr ""
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr ""
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr ""
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr ""
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
 msgstr ""
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
 msgstr ""
 
-#. language code: fil
-#: zypp/LanguageCode.cc:437
-msgid "Filipino"
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
 msgstr ""
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
 msgstr ""
 
-#. language code: fin fi
-#: zypp/LanguageCode.cc:439
-msgid "Finnish"
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
 msgstr ""
 
-#. language code: fiu
-#: zypp/LanguageCode.cc:441
-msgid "Finno-Ugrian (Other)"
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
 msgstr ""
 
-#. language code: fon
-#: zypp/LanguageCode.cc:443
-msgid "Fon"
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
 msgstr ""
 
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
 msgstr ""
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
 msgstr ""
 
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
 msgstr ""
 
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
 msgstr ""
 
-#. language code: frm
-#: zypp/LanguageCode.cc:449
-msgid "French, Middle (ca.1400-1600)"
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
 msgstr ""
 
-#. language code: fro
-#: zypp/LanguageCode.cc:451
-msgid "French, Old (842-ca.1400)"
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
 msgstr ""
 
-#. language code: fry fy
-#: zypp/LanguageCode.cc:453
-msgid "Frisian"
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
 msgstr ""
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
 msgstr ""
 
-#. language code: gaa
-#: zypp/LanguageCode.cc:459
-msgid "Ga"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
 msgstr ""
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
 msgstr ""
 
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
 msgstr ""
 
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
 msgstr ""
 
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
 msgstr ""
 
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
 msgstr ""
 
-#. language code: gay
-#: zypp/LanguageCode.cc:461
-msgid "Gayo"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
 msgstr ""
 
-#. language code: gba
-#: zypp/LanguageCode.cc:463
-msgid "Gbaya"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
 msgstr ""
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
 msgstr ""
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
 msgstr ""
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-msgid "German"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
 msgstr ""
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
 msgstr ""
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
 msgstr ""
 
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
 msgstr ""
 
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
 msgstr ""
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
 msgstr ""
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
 msgstr ""
 
-#. language code: gon
-#: zypp/LanguageCode.cc:491
-msgid "Gondi"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
 msgstr ""
 
-#. language code: gor
-#: zypp/LanguageCode.cc:493
-msgid "Gorontalo"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
 msgstr ""
 
-#. language code: got
-#: zypp/LanguageCode.cc:495
-msgid "Gothic"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
 msgstr ""
-
-#. language code: grb
-#: zypp/LanguageCode.cc:497
-msgid "Grebo"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
 msgstr ""
 
-#. language code: grc
-#: zypp/LanguageCode.cc:499
-msgid "Greek, Ancient (to 1453)"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
 msgstr ""
 
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
 msgstr ""
 
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
 msgstr ""
 
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
 msgstr ""
 
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
 msgstr ""
 
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
 msgstr ""
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
 msgstr ""
 
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
 msgstr ""
 
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
 msgstr ""
 
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
 msgstr ""
 
-#. language code: guj gu
-#: zypp/LanguageCode.cc:507
-msgid "Gujarati"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
 msgstr ""
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
 msgstr ""
 
-#. language code: gwi
-#: zypp/LanguageCode.cc:509
-msgid "Gwich'in"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
 msgstr ""
 
-#. language code: hai
-#: zypp/LanguageCode.cc:511
-msgid "Haida"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
 msgstr ""
 
-#. language code: hat ht
-#: zypp/LanguageCode.cc:513
-msgid "Haitian"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
 msgstr ""
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
 msgstr ""
 
-#. language code: hau ha
-#: zypp/LanguageCode.cc:515
-msgid "Hausa"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
 msgstr ""
 
-#. language code: haw
-#: zypp/LanguageCode.cc:517
-msgid "Hawaiian"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
 msgstr ""
 
-#. language code: heb he
-#: zypp/LanguageCode.cc:519
-msgid "Hebrew"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-#. language code: her hz
-#: zypp/LanguageCode.cc:521
-msgid "Herero"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#. language code: hil
-#: zypp/LanguageCode.cc:523
-msgid "Hiligaynon"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#. language code: him
-#: zypp/LanguageCode.cc:525
-msgid "Himachali"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
 msgstr ""
 
-#. language code: hin hi
-#: zypp/LanguageCode.cc:527
-msgid "Hindi"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#. language code: hit
-#: zypp/LanguageCode.cc:529
-msgid "Hittite"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. language code: hmn
-#: zypp/LanguageCode.cc:531
-msgid "Hmong"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
 msgstr ""
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
 msgstr ""
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#. language code: hun hu
-#: zypp/LanguageCode.cc:537
-msgid "Hungarian"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
 msgstr ""
 
-#. language code: hup
-#: zypp/LanguageCode.cc:539
-msgid "Hupa"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#. language code: iba
-#: zypp/LanguageCode.cc:541
-msgid "Iban"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
 msgstr ""
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
 msgstr ""
 
-#. language code: ice isl is
-#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
-msgid "Icelandic"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
 msgstr ""
 
-#. language code: ido io
-#: zypp/LanguageCode.cc:549
-msgid "Ido"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
 msgstr ""
 
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
 msgstr ""
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-#: zypp/CountryCode.cc:261
-msgid "India"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
 msgstr ""
 
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
 msgstr ""
 
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
 msgstr ""
 
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
 msgstr ""
 
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
 msgstr ""
 
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
 msgstr ""
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
 msgstr ""
 
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
 msgstr ""
 
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
 msgstr ""
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
 msgstr ""
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
 msgstr ""
 
-#. language code: iro
-#: zypp/LanguageCode.cc:575
-msgid "Iroquoian Languages"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. language code: ita it
-#: zypp/LanguageCode.cc:577
-msgid "Italian"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
 msgstr ""
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
 msgstr ""
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
 msgstr ""
 
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
 msgstr ""
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
 msgstr ""
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
-#. language code: kab
-#: zypp/LanguageCode.cc:591
-msgid "Kabyle"
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
 msgstr ""
 
-#. language code: kac
-#: zypp/LanguageCode.cc:593
-msgid "Kachin"
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
 msgstr ""
 
-#. language code: kal kl
-#: zypp/LanguageCode.cc:595
-msgid "Kalaallisut"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
 msgstr ""
 
-#. language code: kam
-#: zypp/LanguageCode.cc:597
-msgid "Kamba"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
 msgstr ""
 
-#. language code: kan kn
-#: zypp/LanguageCode.cc:599
-msgid "Kannada"
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
 msgstr ""
 
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
 msgstr ""
 
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. language code: kar
-#: zypp/LanguageCode.cc:601
-msgid "Karen"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
 msgstr ""
 
-#. language code: kas ks
-#: zypp/LanguageCode.cc:603
-msgid "Kashmiri"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
 msgstr ""
 
-#. language code: kaw
-#: zypp/LanguageCode.cc:607
-msgid "Kawi"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. language code: kaz kk
-#: zypp/LanguageCode.cc:609
-msgid "Kazakh"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. language code: kha
-#: zypp/LanguageCode.cc:613
-msgid "Khasi"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
 msgstr ""
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-#. language code: kho
-#: zypp/LanguageCode.cc:619
-msgid "Khotanese"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
 msgstr ""
 
-#. language code: kik ki
-#: zypp/LanguageCode.cc:621
-msgid "Kikuyu"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
 msgstr ""
 
-#. language code: kin rw
-#: zypp/LanguageCode.cc:623
-msgid "Kinyarwanda"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
 msgstr ""
 
-#. language code: kir ky
-#: zypp/LanguageCode.cc:625
-msgid "Kirghiz"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
 msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
-#. language code: kom kv
-#: zypp/LanguageCode.cc:631
-msgid "Komi"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
 
-#. language code: kon kg
-#: zypp/LanguageCode.cc:633
-msgid "Kongo"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
 msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-#. language code: kor ko
-#: zypp/LanguageCode.cc:635
-msgid "Korean"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
 msgstr ""
 
-#. language code: kos
-#: zypp/LanguageCode.cc:637
-msgid "Kosraean"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
 msgstr ""
 
-#. language code: kpe
-#: zypp/LanguageCode.cc:639
-msgid "Kpelle"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
 msgstr ""
 
-#. language code: kro
-#: zypp/LanguageCode.cc:643
-msgid "Kru"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
 msgstr ""
 
-#. language code: kua kj
-#: zypp/LanguageCode.cc:647
-msgid "Kuanyama"
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
 msgstr ""
 
-#. language code: kum
-#: zypp/LanguageCode.cc:649
-msgid "Kumyk"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
 msgstr ""
 
-#. language code: kur ku
-#: zypp/LanguageCode.cc:651
-msgid "Kurdish"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
 msgstr ""
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
 msgstr ""
 
-#. language code: kut
-#: zypp/LanguageCode.cc:653
-msgid "Kutenai"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
 msgstr ""
 
-#. language code: lad
-#: zypp/LanguageCode.cc:655
-msgid "Ladino"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
 msgstr ""
 
-#. language code: lah
-#: zypp/LanguageCode.cc:657
-msgid "Lahnda"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
 msgstr ""
 
-#. language code: lam
-#: zypp/LanguageCode.cc:659
-msgid "Lamba"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
 msgstr ""
 
-#. language code: lao lo
-#: zypp/LanguageCode.cc:661
-msgid "Lao"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
 msgstr ""
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
 msgstr ""
 
-#. language code: lat la
-#: zypp/LanguageCode.cc:663
-msgid "Latin"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
 msgstr ""
 
-#. language code: lav lv
-#: zypp/LanguageCode.cc:665
-msgid "Latvian"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#. language code: lez
-#: zypp/LanguageCode.cc:667
-msgid "Lezghian"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
 msgstr ""
 
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
 msgstr ""
 
-#. language code: lim li
-#: zypp/LanguageCode.cc:669
-msgid "Limburgan"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. language code: lin ln
-#: zypp/LanguageCode.cc:671
-msgid "Lingala"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
 
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
-msgid "Lithuanian"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
 msgstr ""
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
+#. language code: fil
+#: zypp/LanguageCode.cc:437
+msgid "Filipino"
 msgstr ""
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
+#. language code: fin fi
+#: zypp/LanguageCode.cc:439
+msgid "Finnish"
 msgstr ""
 
-#. language code: loz
-#: zypp/LanguageCode.cc:677
-msgid "Lozi"
+#. language code: fiu
+#: zypp/LanguageCode.cc:441
+msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
+#. language code: fon
+#: zypp/LanguageCode.cc:443
+msgid "Fon"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
 msgstr ""
 
-#. language code: lui
-#: zypp/LanguageCode.cc:687
-msgid "Luiseno"
+#. language code: frm
+#: zypp/LanguageCode.cc:449
+msgid "French, Middle (ca.1400-1600)"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
+#. language code: fro
+#: zypp/LanguageCode.cc:451
+msgid "French, Old (842-ca.1400)"
 msgstr ""
 
-#. language code: lun
-#: zypp/LanguageCode.cc:689
-msgid "Lunda"
+#. language code: fry fy
+#: zypp/LanguageCode.cc:453
+msgid "Frisian"
 msgstr ""
 
-#. language code: luo
-#: zypp/LanguageCode.cc:691
-msgid "Luo (Kenya and Tanzania)"
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
 msgstr ""
 
-#. language code: lus
-#: zypp/LanguageCode.cc:693
-msgid "Lushai"
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
+#. language code: gaa
+#: zypp/LanguageCode.cc:459
+msgid "Ga"
 msgstr ""
 
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
+#. language code: gay
+#: zypp/LanguageCode.cc:461
+msgid "Gayo"
 msgstr ""
 
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
+#. language code: gba
+#: zypp/LanguageCode.cc:463
+msgid "Gbaya"
 msgstr ""
 
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
 msgstr ""
 
-#. language code: mac mkd mk
-#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
-msgid "Macedonian"
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
 msgstr ""
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+msgid "German"
 msgstr ""
 
-#. language code: mad
-#: zypp/LanguageCode.cc:699
-msgid "Madurese"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
 msgstr ""
 
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
 msgstr ""
 
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
 msgstr ""
 
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
 msgstr ""
 
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
 msgstr ""
 
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
 msgstr ""
 
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
+#. language code: gon
+#: zypp/LanguageCode.cc:491
+msgid "Gondi"
 msgstr ""
 
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
+#. language code: gor
+#: zypp/LanguageCode.cc:493
+msgid "Gorontalo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
+#. language code: got
+#: zypp/LanguageCode.cc:495
+msgid "Gothic"
 msgstr ""
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
+#. language code: grb
+#: zypp/LanguageCode.cc:497
+msgid "Grebo"
 msgstr ""
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
+#. language code: grc
+#: zypp/LanguageCode.cc:499
+msgid "Greek, Ancient (to 1453)"
 msgstr ""
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
 msgstr ""
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
+#. language code: guj gu
+#: zypp/LanguageCode.cc:507
+msgid "Gujarati"
 msgstr ""
 
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
+#. language code: gwi
+#: zypp/LanguageCode.cc:509
+msgid "Gwich'in"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
+#. language code: hai
+#: zypp/LanguageCode.cc:511
+msgid "Haida"
 msgstr ""
 
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
+#. language code: hat ht
+#: zypp/LanguageCode.cc:513
+msgid "Haitian"
 msgstr ""
 
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
+#. language code: hau ha
+#: zypp/LanguageCode.cc:515
+msgid "Hausa"
 msgstr ""
 
-#. language code: mao mri mi
-#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
-msgid "Maori"
+#. language code: haw
+#: zypp/LanguageCode.cc:517
+msgid "Hawaiian"
 msgstr ""
 
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
-msgid "Marathi"
+#. language code: heb he
+#: zypp/LanguageCode.cc:519
+msgid "Hebrew"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
+#. language code: her hz
+#: zypp/LanguageCode.cc:521
+msgid "Herero"
 msgstr ""
 
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
+#. language code: hil
+#: zypp/LanguageCode.cc:523
+msgid "Hiligaynon"
 msgstr ""
 
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
+#. language code: him
+#: zypp/LanguageCode.cc:525
+msgid "Himachali"
 msgstr ""
 
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
+#. language code: hin hi
+#: zypp/LanguageCode.cc:527
+msgid "Hindi"
 msgstr ""
 
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
+#. language code: hit
+#: zypp/LanguageCode.cc:529
+msgid "Hittite"
 msgstr ""
 
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
+#. language code: hmn
+#: zypp/LanguageCode.cc:531
+msgid "Hmong"
 msgstr ""
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
 msgstr ""
 
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
+#. language code: hun hu
+#: zypp/LanguageCode.cc:537
+msgid "Hungarian"
 msgstr ""
 
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
+#. language code: hup
+#: zypp/LanguageCode.cc:539
+msgid "Hupa"
 msgstr ""
 
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
+#. language code: iba
+#: zypp/LanguageCode.cc:541
+msgid "Iban"
 msgstr ""
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: ice isl is
+#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
+msgid "Icelandic"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: ido io
+#: zypp/LanguageCode.cc:549
+msgid "Ido"
 msgstr ""
 
-#. language code: men
-#: zypp/LanguageCode.cc:731
-msgid "Mende"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
 msgstr ""
 
-#. language code: mic
-#: zypp/LanguageCode.cc:735
-msgid "Mi'kmaq"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
 msgstr ""
 
-#. language code: min
-#: zypp/LanguageCode.cc:737
-msgid "Minangkabau"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr ""
+
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
 msgstr ""
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
 msgstr ""
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
 msgstr ""
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
 msgstr ""
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
 msgstr ""
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: iro
+#: zypp/LanguageCode.cc:575
+msgid "Iroquoian Languages"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
+#. language code: ita it
+#: zypp/LanguageCode.cc:577
+msgid "Italian"
 msgstr ""
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
 msgstr ""
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
 msgstr ""
 
-#. language code: mon mn
-#: zypp/LanguageCode.cc:757
-msgid "Mongolian"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
 msgstr ""
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
 msgstr ""
 
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
-#. language code: mos
-#: zypp/LanguageCode.cc:759
-msgid "Mossi"
+#. language code: kab
+#: zypp/LanguageCode.cc:591
+msgid "Kabyle"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
+#. language code: kac
+#: zypp/LanguageCode.cc:593
+msgid "Kachin"
 msgstr ""
 
-#. language code: mul
-#: zypp/LanguageCode.cc:761
-msgid "Multiple Languages"
+#. language code: kal kl
+#: zypp/LanguageCode.cc:595
+msgid "Kalaallisut"
 msgstr ""
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
+#. language code: kam
+#: zypp/LanguageCode.cc:597
+msgid "Kamba"
 msgstr ""
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
+#. language code: kan kn
+#: zypp/LanguageCode.cc:599
+msgid "Kannada"
 msgstr ""
 
-#. language code: nah
-#: zypp/LanguageCode.cc:775
-msgid "Nahuatl"
+#. language code: kar
+#: zypp/LanguageCode.cc:601
+msgid "Karen"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
+#. language code: kas ks
+#: zypp/LanguageCode.cc:603
+msgid "Kashmiri"
 msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
-#. language code: nav nv
-#: zypp/LanguageCode.cc:783
-msgid "Navajo"
+#. language code: kaw
+#: zypp/LanguageCode.cc:607
+msgid "Kawi"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
+#. language code: kaz kk
+#: zypp/LanguageCode.cc:609
+msgid "Kazakh"
 msgstr ""
 
-#. language code: nbl nr
-#: zypp/LanguageCode.cc:785
-msgid "Ndebele, South"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
+#. language code: kha
+#: zypp/LanguageCode.cc:613
+msgid "Khasi"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
 msgstr ""
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
 msgstr ""
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
+#. language code: kho
+#: zypp/LanguageCode.cc:619
+msgid "Khotanese"
 msgstr ""
 
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
+#. language code: kik ki
+#: zypp/LanguageCode.cc:621
+msgid "Kikuyu"
 msgstr ""
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
+#. language code: kin rw
+#: zypp/LanguageCode.cc:623
+msgid "Kinyarwanda"
 msgstr ""
 
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
+#. language code: kir ky
+#: zypp/LanguageCode.cc:625
+msgid "Kirghiz"
 msgstr ""
 
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: kom kv
+#: zypp/LanguageCode.cc:631
+msgid "Komi"
 msgstr ""
 
-#. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
+#. language code: kon kg
+#: zypp/LanguageCode.cc:633
+msgid "Kongo"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
+#. language code: kor ko
+#: zypp/LanguageCode.cc:635
+msgid "Korean"
 msgstr ""
 
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
+#. language code: kos
+#: zypp/LanguageCode.cc:637
+msgid "Kosraean"
 msgstr ""
 
-#. language code: nic
-#: zypp/LanguageCode.cc:799
-msgid "Niger-Kordofanian (Other)"
+#. language code: kpe
+#: zypp/LanguageCode.cc:639
+msgid "Kpelle"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
 msgstr ""
 
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
+#. language code: kro
+#: zypp/LanguageCode.cc:643
+msgid "Kru"
 msgstr ""
 
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
 msgstr ""
 
-#. language code: niu
-#: zypp/LanguageCode.cc:801
-msgid "Niuean"
+#. language code: kua kj
+#: zypp/LanguageCode.cc:647
+msgid "Kuanyama"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
+#. language code: kum
+#: zypp/LanguageCode.cc:649
+msgid "Kumyk"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: kur ku
+#: zypp/LanguageCode.cc:651
+msgid "Kurdish"
 msgstr ""
 
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
+#. language code: kut
+#: zypp/LanguageCode.cc:653
+msgid "Kutenai"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
+#. language code: lad
+#: zypp/LanguageCode.cc:655
+msgid "Ladino"
 msgstr ""
 
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
+#. language code: lah
+#: zypp/LanguageCode.cc:657
+msgid "Lahnda"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
+#. language code: lam
+#: zypp/LanguageCode.cc:659
+msgid "Lamba"
 msgstr ""
 
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
+#. language code: lao lo
+#: zypp/LanguageCode.cc:661
+msgid "Lao"
 msgstr ""
 
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
+#. language code: lat la
+#: zypp/LanguageCode.cc:663
+msgid "Latin"
 msgstr ""
 
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
+#. language code: lav lv
+#: zypp/LanguageCode.cc:665
+msgid "Latvian"
 msgstr ""
 
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
+#. language code: lez
+#: zypp/LanguageCode.cc:667
+msgid "Lezghian"
 msgstr ""
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
+#. language code: lim li
+#: zypp/LanguageCode.cc:669
+msgid "Limburgan"
 msgstr ""
 
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
+#. language code: lin ln
+#: zypp/LanguageCode.cc:671
+msgid "Lingala"
 msgstr ""
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
+msgid "Lithuanian"
 msgstr ""
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: loz
+#: zypp/LanguageCode.cc:677
+msgid "Lozi"
 msgstr ""
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
-msgid "Nubian Languages"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
 msgstr ""
 
-#. language code: nym
-#: zypp/LanguageCode.cc:821
-msgid "Nyamwezi"
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
 msgstr ""
 
-#. language code: nyn
-#: zypp/LanguageCode.cc:823
-msgid "Nyankole"
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: nyo
-#: zypp/LanguageCode.cc:825
-msgid "Nyoro"
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
 msgstr ""
 
-#. language code: nzi
-#: zypp/LanguageCode.cc:827
-msgid "Nzima"
+#. language code: lui
+#: zypp/LanguageCode.cc:687
+msgid "Luiseno"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
+#. language code: lun
+#: zypp/LanguageCode.cc:689
+msgid "Lunda"
 msgstr ""
 
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
+#. language code: luo
+#: zypp/LanguageCode.cc:691
+msgid "Luo (Kenya and Tanzania)"
 msgstr ""
 
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
+#. language code: lus
+#: zypp/LanguageCode.cc:693
+msgid "Lushai"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
+#. language code: mac mkd mk
+#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
+msgid "Macedonian"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
+#. language code: mad
+#: zypp/LanguageCode.cc:699
+msgid "Madurese"
 msgstr ""
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
 msgstr ""
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
 msgstr ""
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
 msgstr ""
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
-msgid "Osage"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
 msgstr ""
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
 msgstr ""
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
 msgstr ""
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: mao mri mi
+#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
+msgid "Maori"
 msgstr ""
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+msgid "Marathi"
 msgstr ""
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
 msgstr ""
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
 msgstr ""
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
 msgstr ""
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
+#. language code: men
+#: zypp/LanguageCode.cc:731
+msgid "Mende"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
+#. language code: mic
+#: zypp/LanguageCode.cc:735
+msgid "Mi'kmaq"
+msgstr ""
+
+#. language code: min
+#: zypp/LanguageCode.cc:737
+msgid "Minangkabau"
 msgstr ""
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
 msgstr ""
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
 msgstr ""
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
 msgstr ""
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
 msgstr ""
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
 msgstr ""
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
+#. language code: mon mn
+#: zypp/LanguageCode.cc:757
+msgid "Mongolian"
 msgstr ""
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
+#. language code: mos
+#: zypp/LanguageCode.cc:759
+msgid "Mossi"
 msgstr ""
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
+#. language code: mul
+#: zypp/LanguageCode.cc:761
+msgid "Multiple Languages"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
 msgstr ""
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
 msgstr ""
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
 msgstr ""
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
 msgstr ""
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
+#. language code: nah
+#: zypp/LanguageCode.cc:775
+msgid "Nahuatl"
 msgstr ""
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
 msgstr ""
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
+#. language code: nav nv
+#: zypp/LanguageCode.cc:783
+msgid "Navajo"
 msgstr ""
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
+#. language code: nbl nr
+#: zypp/LanguageCode.cc:785
+msgid "Ndebele, South"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
 msgstr ""
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
 msgstr ""
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
+#. language code: nic
+#: zypp/LanguageCode.cc:799
+msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+msgid "Niuean"
 msgstr ""
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
 msgstr ""
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
 msgstr ""
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
 msgstr ""
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
+#. language code: nub
+#: zypp/LanguageCode.cc:815
+msgid "Nubian Languages"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
 msgstr ""
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
+#. language code: nym
+#: zypp/LanguageCode.cc:821
+msgid "Nyamwezi"
 msgstr ""
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
+#. language code: nyn
+#: zypp/LanguageCode.cc:823
+msgid "Nyankole"
+msgstr ""
+
+#. language code: nyo
+#: zypp/LanguageCode.cc:825
+msgid "Nyoro"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
+#. language code: nzi
+#: zypp/LanguageCode.cc:827
+msgid "Nzima"
 msgstr ""
 
-#: zypp/Dep.cc:98
-msgid "Requires"
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
 msgstr ""
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
 msgstr ""
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
 msgstr ""
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+msgid "Osage"
 msgstr ""
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
 msgstr ""
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
 msgstr ""
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
 msgstr ""
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
 msgstr ""
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
 msgstr ""
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
 msgstr ""
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
 msgstr ""
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
 msgstr ""
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
 msgstr ""
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
 msgstr ""
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
 msgstr ""
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
 msgstr ""
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
 msgstr ""
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
 msgstr ""
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
 msgstr ""
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
 msgstr ""
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
 msgstr ""
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
 msgstr ""
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
 msgstr ""
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
 msgstr ""
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
 msgstr ""
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
 msgstr ""
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
 msgstr ""
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
 msgstr ""
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
 msgstr ""
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
 msgstr ""
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
 msgstr ""
 
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
 msgstr ""
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
 msgstr ""
 
 #. language code: sin si
@@ -3720,24 +3724,14 @@ msgstr ""
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr ""
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -3750,98 +3744,79 @@ msgstr ""
 msgid "Slovak"
 msgstr ""
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr ""
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr ""
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr ""
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr ""
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr ""
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
 msgstr ""
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
 msgstr ""
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
 msgstr ""
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
 msgstr ""
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
 msgstr ""
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
 msgstr ""
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
 msgstr ""
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
 msgstr ""
 
 #. language code: spa es
@@ -3849,18 +3824,24 @@ msgstr ""
 msgid "Spanish"
 msgstr ""
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
 msgstr ""
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
 msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
 #. language code: suk
@@ -3868,53 +3849,24 @@ msgstr ""
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr ""
-
 #. language code: sun su
-#: zypp/LanguageCode.cc:1001
-msgid "Sundanese"
-msgstr ""
-
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr ""
-
-#. language code: sus
-#: zypp/LanguageCode.cc:1003
-msgid "Susu"
-msgstr ""
-
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr ""
-
-#. language code: swa sw
-#: zypp/LanguageCode.cc:1007
-msgid "Swahili"
+#: zypp/LanguageCode.cc:1001
+msgid "Sundanese"
 msgstr ""
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
+#. language code: sus
+#: zypp/LanguageCode.cc:1003
+msgid "Susu"
 msgstr ""
 
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
+#. language code: swa sw
+#: zypp/LanguageCode.cc:1007
+msgid "Swahili"
 msgstr ""
 
 #. language code: swe sv
@@ -3922,38 +3874,11 @@ msgstr ""
 msgid "Swedish"
 msgstr ""
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr ""
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr ""
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr ""
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3964,36 +3889,11 @@ msgstr ""
 msgid "Tai (Other)"
 msgstr ""
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr ""
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr ""
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr ""
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr ""
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4004,6 +3904,11 @@ msgstr ""
 msgid "Telugu"
 msgstr ""
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4014,31 +3919,19 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr ""
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
 msgstr ""
 
 #. language code: tib bod bo
@@ -4056,45 +3949,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4107,15 +3979,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4123,14 +3989,19 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr ""
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr ""
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
 msgstr ""
 
 #. language code: tum
@@ -4138,654 +4009,783 @@ msgstr ""
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr ""
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr ""
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr ""
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr ""
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
 msgstr ""
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
 msgstr ""
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr ""
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr ""
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr ""
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr ""
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr ""
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr ""
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
 msgstr ""
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
 msgstr ""
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
 msgstr ""
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
 msgstr ""
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
 msgstr ""
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
 msgstr ""
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
 msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
 msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
 msgstr ""
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
+
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid "Signature file %s not found"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
 msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
 msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Couldn't open file: %s."
+
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:31
+#, fuzzy, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "deinstallation of %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Couldn't open file: %s."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep obsolete %s"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#, fuzzy
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Failed to parse: %s."
 
 #, fuzzy
 #~ msgid "Can't open solv-file: "
 #~ msgstr "Couldn't open file: %s."
-
-#, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Failed to parse: %s."
index 4786864..ed8c8e2 100644 (file)
--- a/po/lt.po
+++ b/po/lt.po
@@ -23,20 +23,93 @@ msgstr ""
 "%10>=2 && (n%100<10 || n%100>=20) ? 2 : 3);\n"
 "X-Generator: Lokalize 1.5\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"netinkami įdiegti pasiūlymai: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal išimtis"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Netinkama LDAP URL užklausos eilutė"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Netinkamas LDAP URL užklausos parametras „%s“"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Nepavyksta klonuoti Url objekto"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
-" SSL liudijimo problema, patikrinkite liudijimų įstaigos tvarkingumą „%s“."
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Nepavyksta išnagrinėti Url komponentų"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr ""
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Pateikia"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Pirmiau reikalauja"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Reikalauja"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Konfliktuoja"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Pasenę"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Pataria"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Siūlo"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Pagerina"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Papildo"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Abejotinas tipas „%s“, skirtas %u bitų kontrolinei santraukai „%s“"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -46,10 +119,6 @@ msgstr " įvykdyta"
 msgid " execution failed"
 msgstr " įvykdyti nepavyko"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " nutraukiant vykdymas sustabdytas"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -58,1599 +127,2504 @@ msgstr " nutraukiant vykdymas sustabdytas"
 msgid "%s already executed as %s)"
 msgstr "%s jau įvykdytas kaip %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s konfliktuoja su %s, kurį pateikia %s"
-
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s nepriklauso platinamojo paketo naujovinimo (distupgrade) saugyklai"
-
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s yra kitos architektūros"
-
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s neįdiegiamas"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " nutraukiant vykdymas sustabdytas"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s pateikia sistema, jo negalima pašalinti"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Siunčiant atnaujinimo pranešimą įvyko klaida."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s pakeičia %s, kurį pateikė %s"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Naujas atnaujinimo pranešimas"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s reikalauja „%s“, bet reikalavimo negalima išpildyti"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Diegimas buvo nutrauktas pagal nurodymą."
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(NEBEGALIOJA)"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "Atleiskite, ši libzypp versija sukompiliuota su HAL palaikymu."
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(galiojimas nepasibaigia)"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(baigsis po %d d.)"
-msgstr[1] "(baigsis po %d d.)"
-msgstr[2] "(baigsis po %d d.)"
-msgstr[3] "(baigsis po %d d.)"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(baigsis per 24 valandas)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abchazų"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Nepavyksta sukurti dbus ryšio"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
-#, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Pridedama saugykla „%s“"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Tai ne CD nuskaitymo įrenginys"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Reikalinga papildoma kliento sutartis"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM klaida:"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "Papildoma rpm išvestis"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Nepavyko įkelti viešojo rakto iš rinkmenos %s: %s"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr ""
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Nepavyko pašalinti viešojo rakto %s: %s"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afarų"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Pakeistos %s konfigūracijos rinkmenos:"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistanas"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm išsaugojo %s kaip %s, bet neįmanoma nustatyti skirtumo"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Afrihili"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm išsaugojo %s kaip %s.\n"
+"Pateikiamos pirmosios 25 skirtumų eilutės:\n"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Būrų"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm sukūrė %s kaip %s, bet neįmanoma nustatyti skirtumo"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-Aziatų (Kita)"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm sukūrė %s kaip %s.\n"
+"Pateikiamos pirmosios 25 skirtumų eilutės:\n"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Ainų"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "Papildoma rpm išvestis"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Akanų"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "padaryta %s atsarginė kopija"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Akadų"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "Parašas geras"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Alandų salos"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albanija"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "Parašas nepatikrinamas. "
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albanų"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "Parašas geras, bet raktas nepatikimas"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aleutų"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "Paašo viešasis raktas neprieinamas"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Alžyras"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "Nėra rinkmenos arba negalima patikrinti parašo"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr ""
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Bus atlikti šie veiksmai:"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altajaus (Kita)"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "Nepavyko perskaityti katalogo „%1%“: nepakanka leidimų"
 
-# AS
-# fuzzy
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Šiaurės Samoa"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Nepavyko nuskaityti katalogo „%s“"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amharų"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "Nepavyko perskaityti rinkmenos „%1%“: nepakanka leidimų"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Norint gauti palaikymą, reikalinga papildoma kliento sutartis."
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Saugyklos pseudonimas negali prasidėti tašku."
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andora"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Paslaugos pseudonimas negali prasidėti tašku."
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Nepavyksta atverti rinkmenos „%s“ įrašymui."
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Angilija"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarkika"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Nurodytu URL nerasta tinkamų meta duomenų"
+msgstr[1] "Nurodytuose URL nerasta tinkamų meta duomenų"
+msgstr[2] "Nurodytuose URL nerasta tinkamų meta duomenų"
+msgstr[3] "Nurodytuose URL nerasta tinkamų meta duomenų"
 
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antikva ir Barbuda"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Nepavyksta sukurti %s"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Apačių kalbos"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Nepavyko sukurti metaduomenų podėlio katalogo."
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Arabų"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Kuriamas saugyklos „%s“ podėlis"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Aramėjų"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Nepavyko įkelti į saugyklų podėlį (%d)."
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr ""
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Nesutvarkytas saugyklos tipas"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Mapudungunų"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Klaida bandant nuskaityti „%s“"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr ""
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Nežinoma klaida skaitant iš „%s“"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Pridedama saugykla „%s“"
 
-# AM
-# fuzzy
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armėnija"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armėnų"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Netinkamas saugyklos pavadinimas „%s“"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Dirbtinė (kita)"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Pašalinama saugykla „%s“"
 
-# CU
-# fuzzy
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Nepavyksta nustatyti, kur patalpinta ši saugykla"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Asamų"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Nepavyksta pašalinti „%s“"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Asturianų"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Nepavyksta nustatyti, kur patalpinta ši paslauga"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr ""
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Url schema neleidžia %s"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australija"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Netinkamas %s komponentas „%s“"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Australijos kalbos"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Netinkamas %s komponentas"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austrija"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Užklausos eilutės nagrinėjimas nepalaikomas šiam URL"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr ""
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Url schema yra reikalingas komponentas"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:830
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "%s reikalauja autentifikacijos"
+msgid "Invalid Url scheme '%s'"
+msgstr "Netinkama Url schema „%s“"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr ""
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Url schema neleidžia naudotojo vardo"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Avestan"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Url schema neleidžia slaptažodžio"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr ""
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Url schemai reikia kompiuterio komponento"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr ""
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Url schema neleidžia kompiuterio komponento"
 
-# AZ
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaidžanas"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Netinkamas kompiuterio komponentas „%s“."
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Azerbaidžaniečių"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Url schema neleidžia prievado"
 
-#: zypp/media/MediaException.cc:47
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Netinkamas rinkmenos pavadinimas: %s"
+msgid "Invalid port component '%s'"
+msgstr "Netinkamas prievado komponentas „%s“"
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Netinkama laikmenos prijungimo vieta"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Url schema reikalauja kelio pavadinimo"
 
-# BS
-# fuzzy
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamai"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Santykinis kelias neleidžiamas, jei naudojamas tapatybės nustatymas"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahreinas"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balio"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltų (Kita)"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Bambara"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Nepavyksta atverti pty (%s)."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Nepavyksta atverti kanalo (%s)."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
 
-# BD
-# fuzzy
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladešas"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Nepavyksta keisti pakeisti aplanko į „%s“ (%s)."
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (kita)"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Nepavyksta įvykdyti „%s“ (%s)."
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbadosas"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Komanda baigta būsenoje %d."
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Baškirų"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Komanda nutraukta naudojant signalą %d (%s)."
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baskų"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Komanda pasibaigė su nežinoma klaida."
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonezija)"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(galiojimas nepasibaigia)"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Beža"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(NEBEGALIOJA)"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Gudija"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(baigsis per 24 valandas)"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Gudų"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(baigsis po %d d.)"
+msgstr[1] "(baigsis po %d d.)"
+msgstr[2] "(baigsis po %d d.)"
+msgstr[3] "(baigsis po %d d.)"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgija"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "nežinoma"
 
-# BZ
-# fuzzy
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belizas"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "nepalaikoma"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Bemba"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "1 lygis"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengalų"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "2 lygis"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Beninas"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "3 lygis"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Berberų (Kita)"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Reikalinga papildoma kliento sutartis"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermudų"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "netinkama"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr ""
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Palaikymo lygis nenurodytas"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Butanas"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Gamintojas nesuteikia palaikymo."
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihari"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Problemos apibrėžimas, kuris reiškia techninį palaikymą, skirtą pateikti "
+"suderinamumo informaciją, diegimo pagalbą, naudojimo palaikymą, atvykstančio "
+"aptarnavimo ir pagrindinių nesklandumų šalinimo. 1 lygio palaikymas nesiekia "
+"taisyti pačio produkto klaidų."
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikol"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Problemos izoliavimas, kuris reiškia techninį palaikymą, skirtą dubliuoti "
+"klientų problemas, izoliuoti problemos sritis ir pateikti problemų "
+"sprendimus, kurių neišsprendė 1 lygio palaikymas."
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Bini"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Problemos sprendimas, kuris reiškia techninį palaikymą, skirtą spręsti "
+"kompleksines problemas, užsiimant produkto defektais, tapatinamas su 2 lygio "
+"palaikymu."
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "Norint gauti palaikymą, reikalinga papildoma kliento sutartis."
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr ""
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Nežinomo palaikymo parinktis. Aprašas neprieinamasq"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivija"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Nežinoma šalis: "
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnija ir Hercogovina"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Nėra kodo"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosnių"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andora"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botsvana"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Jungtiniai Arabų Emyratai"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Buvė sala"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistanas"
 
-# BR
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr ""
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antikva ir Barbuda"
 
-# BR
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brazilija"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Angilija"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretonų"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albanija"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Britanijos teritorijos Indijos vandenyne"
+# AM
+# fuzzy
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armėnija"
 
-# VI
+# AN
 # fuzzy
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Britanijos Mergelių salos"
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Olandijos Antilai"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunėjus Darusalamas"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Bugi"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarkika"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Kuriamas saugyklos „%s“ podėlis"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgarija"
+# AS
+# fuzzy
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Šiaurės Samoa"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgarų"
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austrija"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr ""
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australija"
+
+# CU
+# fuzzy
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Alandų salos"
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaidžanas"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnija ir Hercogovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbadosas"
+
+# BD
+# fuzzy
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladešas"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgija"
 
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
 msgstr "Burkina Fasas"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Birmiečių"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgarija"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahreinas"
 
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "Burundis"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr ""
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Beninas"
 
-# KH
-# fuzzy
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodža"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermudų"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerūnas"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunėjus Darusalamas"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr ""
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivija"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr ""
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brazilija"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Nepavyksta keisti pakeisti aplanko į „%s“ (%s)."
+# BS
+# fuzzy
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamai"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Butanas"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Buvė sala"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Nepavyksta sukurti %s"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botsvana"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Gudija"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Nepavyko sukurti metaduomenų podėlio katalogo."
+# BZ
+# fuzzy
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belizas"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Nepavyksta pašalinti „%s“"
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Nepavyksta įvykdyti „%s“ (%s)."
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Kokosų (Kilingo) salos"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Nepavyksta nustatyti, kur patalpinta ši saugykla"
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongas"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Nepavyksta nustatyti, kur patalpinta ši paslauga"
+# CF
+# fuzzy
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Centrinės Afrikos Respublika"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr ""
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Šveicarija"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr ""
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Dramblio kaulo krantas"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr ""
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Kuko salos"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Nepavyksta atverti rinkmenos „%s“ įrašymui."
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Čilė"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Nepavyksta atverti užrakintos rinkmenos: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Nepavyksta atverti kanalo (%s)."
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Nepavyksta atverti pty (%s)."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Nepavyksta pateikti rinkmenos „%s“ iš saugyklos „%s“"
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr ""
-
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr ""
-
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
-
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Nepavyksta išmesti jokios laikmenos"
-
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Nepavyksta išmesti laikmenos „%s“"
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerūnas"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Nepavyko rasti ciklinio įrenginio , prie kurio prijungtume atvaizdį iš „%s“"
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Kinija"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "Nepavyko perskaityti katalogo „%1%“: nepakanka leidimų"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolumbija"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "Nepavyko perskaityti rinkmenos „%1%“: nepakanka leidimų"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Kosta Rika"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Nepavyksta įrašyti rinkmenos „%s“."
+# CU
+# fuzzy
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuba"
 
 #. :CUB:192:
 #: zypp/CountryCode.cc:208
 msgid "Cape Verde"
 msgstr "Žaliasis kyšulys"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "Karibų"
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Kalėdų sala"
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Katalonų"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Kipras"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "Kaukazo (kita)"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Čekijos Respublika"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Kaimanų salos"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Vokietija"
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr ""
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Džibutis"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Keltų (Kita)"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danija"
 
-# CF
-# fuzzy
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Centrinės Afrikos Respublika"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominika"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Centrinės Amerikos indėnų (Kita)"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikos respublika"
 
-# TD
-# fuzzy
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Čadas"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Alžyras"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr ""
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ekvadoras"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr ""
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estija"
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "Chamoro"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egiptas"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Pakeistos %s konfigūracijos rinkmenos:"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Vakarų Sachara"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Čečėnų"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrėja"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Čerokių"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Ispanija"
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Šajenas"
+# ET
+# fuzzy
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopija"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr ""
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Suomija"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr ""
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidži"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Čilė"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Folklandų salos (Malvinai)"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Kinija"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Mikronezijos Federacinės Valstijos"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Kinų"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Farerų salos"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr ""
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Prancūzija"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr ""
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Žemyninė Prancūzija"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr ""
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabonas"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Kalėdų sala"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Jungtinė Karalystė"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "Bažnytinė slavų"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr ""
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Gruzija"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Čiuvašų"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Prancūzų Gviana"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokosų (Kilingo) salos"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolumbija"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Komanda baigta būsenoje %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Komanda pasibaigė su nežinoma klaida."
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Komanda nutraukta naudojant signalą %d (%s)."
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Komorai"
+# GH
+# fuzzy
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Gana"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Konfliktuoja"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltaras"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongas"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grenlandija"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Kuko salos"
+# GM
+# fuzzy
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambija"
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "Koptų"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Gvinėja"
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "Kornų"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Gvadelupa"
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "Korsikiečių"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Pusiaujo Gvinėja"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Kosta Rika"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Graikija"
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Dramblio kaulo krantas"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Pietų Džordžija ir Pietų Sandvičo salos"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr ""
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Gvatemala"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr ""
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guamas"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Kreolai ir pidginai (kiti)"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Bisau Gvinėja"
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "Kreolai ir pidginai, anglų k. pagrindu (kiti)"
+# GH
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Gajana"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "Kreolai ir pidginai, prancūzų k. pagrindu (kiti)"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Honkongas"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "Kreolai ir pidginai, portugalų k. pagrindu (kiti)"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Herdo sala ir Makdonaldo salos"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "Krymo totorių"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Hondūras"
 
 #. :HND:340:
 #: zypp/CountryCode.cc:254
 msgid "Croatia"
 msgstr "Kroatija"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Kroatų"
-
-# CU
-# fuzzy
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuba"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haitis"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr ""
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Vengrija"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Kipras"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonezija"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "Čekų"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Airija"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Čekijos Respublika"
-
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "Dakota"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Izraelis"
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "Danų"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Meno Sala"
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr ""
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Indija"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr ""
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Britanijos teritorijos Indijos vandenyne"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "Deleveras"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irakas"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danija"
+# IR
+# fuzzy
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iranas"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "Dinka"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islandija"
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "Divehi"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italija"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Džibutis"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Džersis"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "Dogri"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaika"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordanija"
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominika"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japonija"
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikos respublika"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenija"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"„%s“ parsiuntimo (curl) klaida:\n"
-"Klaidos kodas: %s\n"
-"Klaidos pranešimas: %s\n"
+# KZ
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgiztanas"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "„%s“ parsiuntimo (curl) iniciacijuoti nepavyko.."
+# KH
+# fuzzy
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodža"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "Dravidų (kita)"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribatis"
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "Duala"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Komorai"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Abejotinas tipas „%s“, skirtas %u bitų kontrolinei santraukai „%s“"
+# KN
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Sent Kitsas ir Nevis"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Olandų"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Šiaurės Korėja"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Olandų, Vidurinioji (apie 1050-1350)"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Pietų Korėja"
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr ""
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuveitas"
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr ""
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Kaimanų salos"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Rytų Timoras"
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazachstanas"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ekvadoras"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Laoso Liaudies Demokratinė Respublika"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "Efik"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanas"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egiptas"
+# LC
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "Egipto (Senovės)"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Lichtenšteinas"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr ""
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Šri Lanka"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "Salvadoras"
+# LR
+# fuzzy
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberija"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr ""
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotas"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "URL adrese tuščia paskirtis"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lietuva"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "URL adrese tuščia rinkmenų sistema"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Liuksemburgas"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Tuščias pagrindinio kompiuterio vardas URL adrese"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latvija"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr ""
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libija"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Anglų"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marokas"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Anglų, Vidurinioji (1100-1500)"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monakas"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Anglų, Senoji (apie 450-1100)"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Pagerina"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Juodkalnija"
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Pusiaujo Gvinėja"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Sent Martinas"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrėja"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskaras"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Maršalo salos"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Siunčiant atnaujinimo pranešimą įvyko klaida."
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonija"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Klaida bandant nuskaityti „%s“"
+# ML
+# fuzzy
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Malis"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr ""
+# MM
+# fuzzy
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Mianmaras"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Esperanto"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolija"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estija"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Makao"
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Estų"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Šiaurės Marianų salos"
 
-# ET
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinika"
+
+# MR
 # fuzzy
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopija"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritanija"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr ""
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montseratas"
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr ""
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Nepavyko įkelti į saugyklų podėlį (%d)."
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauricijus"
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Rakto nepavyko pašalinti."
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldyvai"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Nepavyko įkelti viešojo rakto iš rinkmenos %s: %s"
+# MW
+# fuzzy
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malavis"
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Nepavyko prijungti %s prie %s"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Meksika"
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Nepavyko pateikti paketo %s. Ar norėtumėte bandyti jį gauti iš naujo?"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaizija"
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Nepavyko nuskaityti katalogo „%s“"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambikas"
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Nepavyko pašalinti viešojo rakto %s: %s"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibija"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Nepavyko atjungti %s"
+# NC
+# fuzzy
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Naujoji Kaledonija"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Folklandų salos (Malvinai)"
+# NG
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Nigeris"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolko salos"
+
+# NG
+# fuzzy
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigerija"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nikaragva"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Olandija"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norvegija"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepalas"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niujė"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Naujoji Zelandija"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Omanas"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Prancūzų Polinezija"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Naujoji Gvinėja"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipinai"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistanas"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Lenkija"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Sen Pjeras ir Mikelonas"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Riko"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestinos teritorija"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugalija"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paragvajus"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Kataras"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunionas"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Rumunija"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbija"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Rusijos Federacija"
+
+# RW
+# fuzzy
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudo Arabija"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Saliamono salos"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seišeliai"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudanas"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Švedija"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapūras"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Šv. Elenos sala"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovėnija"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbardas ir Jan Mayenas"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovakija"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Siera Leonė"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marinas"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegalas"
+
+# SO
+# fuzzy
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalis"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinamas"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "San Tomė ir Prinsipė"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "Salvadoras"
+
+# SY
+# fuzzy
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Sirija"
+
+# SZ
+# fuzzy
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Svazilandas"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Terkso ir Kaiko salos"
+
+# TD
+# fuzzy
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Čadas"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Prancūzų pietinės teritorijos"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togas"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tailandas"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadžikistanas"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmėnistanas"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisas"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tongas"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Rytų Timoras"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turkija"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidadas ir Tobagas"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+# TW
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taivanis"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzanija"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraina"
+
+# UG
+# fuzzy
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+# UM
+# fuzzy
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Jungtinės Valstijos Mažosios Užjūrio Teritorijos"
+
+# US
+# fuzzy
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Jungtinės Amerikos Valstijos"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Urugvajus"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistanas"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Šventasis Sostas (Vatikano miestas valstybė)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Šv. Vincentas ir Grenadinai"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venesuela"
+
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Britanijos Mergelių salos"
+
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Suomija"
+
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnamas"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Valis ir Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemenas"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Majotas"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Pietų Afrika"
+
+# ZM
+# fuzzy
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambija"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabvė"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Nežinoma kalba: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afarų"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abchazų"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr ""
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr ""
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr ""
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr ""
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-Aziatų (Kita)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Afrihili"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Būrų"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Ainų"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Akanų"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Akadų"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albanų"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aleutų"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr ""
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Pietų Altajaus"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amharų"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Anglų, Senoji (apie 450-1100)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Apačių kalbos"
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Arabų"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Aramėjų"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr ""
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armėnų"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Mapudungunų"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr ""
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Dirbtinė (kita)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr ""
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Asamų"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Asturianų"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr ""
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Australijos kalbos"
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr ""
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Avestan"
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr ""
+
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr ""
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Azerbaidžaniečių"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr ""
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Baškirų"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr ""
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Bambara"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balio"
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Baskų"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltų (Kita)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Beža"
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Gudų"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Bemba"
+
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengalų"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Berberų (Kita)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr ""
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Bihari"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikol"
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Bini"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (kita)"
+
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosnių"
+
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr ""
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretonų"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonezija)"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr ""
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Bugi"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgarų"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Birmiečių"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr ""
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr ""
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Centrinės Amerikos indėnų (Kita)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "Karibų"
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "Katalonų"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "Kaukazo (kita)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr ""
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Keltų (Kita)"
+
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "Chamoro"
+
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr ""
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Čečėnų"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr ""
+
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Kinų"
+
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr ""
+
+# ML
+# fuzzy
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "Fang"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Farerų salos"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr ""
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Farerų"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Čerokių"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Mikronezijos Federacinės Valstijos"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Bažnytinė slavų"
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidži"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Čiuvašų"
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fidži"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Šajenas"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
 msgstr ""
-"Rinkmena %1%\n"
-"  iš\n"
-"     %2%\n"
-"  konfliktuoja su rinkmena\n"
-"     %3%\n"
-"  iš\n"
-"     %4%"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "Koptų"
+
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "Kornų"
+
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "Korsikiečių"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr "Kreolai ir pidginai, anglų k. pagrindu (kiti)"
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr "Kreolai ir pidginai, prancūzų k. pagrindu (kiti)"
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr "Kreolai ir pidginai, portugalų k. pagrindu (kiti)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
-"Rinkmena %1%\n"
-"  iš\n"
-"     %2%\n"
-"  konfliktuoja su rinkmena\n"
-"     %3%\n"
-"  iš paketo\n"
-"     %4%"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "Krymo totorių"
+
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Kreolai ir pidginai (kiti)"
+
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kašubų"
+
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
 msgstr ""
-"Rinkmena %1%\n"
-"  iš\n"
-"     %2%\n"
-"  su rinkmena iš\n"
-"     %3%"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "Čekų"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "Dakota"
+
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Danų"
+
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr ""
+
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr ""
+
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "Deleveras"
+
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr ""
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
+
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "Dinka"
+
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "Divehi"
+
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "Dogri"
+
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "Dravidų (kita)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr ""
+
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "Duala"
+
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Olandų, Vidurinioji (apie 1050-1350)"
+
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Olandų"
+
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
-"Rinkmena %1%\n"
-"  iš\n"
-"     %2%\n"
-"  konfliktuoja su rinkmena iš paketo\n"
-"     %3%"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
-"Rinkmena %1%\n"
-"  iš paketo\n"
-"     %2%\n"
-"  konfliktuoja su rinkmena\n"
-"     %3%\n"
-"  iš\n"
-"     %4%"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "Efik"
+
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "Egipto (Senovės)"
+
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
-"Rinkmena %1%\n"
-"  iš paketo\n"
-"     %2%\n"
-"  konfliktuoja su rinkmena\n"
-"     %3%\n"
-"  iš paketo\n"
-"     %4%"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
-"Rinkmena %1%\n"
-"  iš paketo\n"
-"     %2%\n"
-"  konfliktuoja su rinkmena iš\n"
-"     %3%"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Anglų"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Anglų, Vidurinioji (1100-1500)"
+
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Esperanto"
+
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Estų"
+
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
-"Rinkmena %1% ,\n"
-"  esanti pakete\n"
-"     %2% ,\n"
-"  konfliktuoja su rinkmena, esančia pakete\n"
-"     %3%"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Rinkmena „%s“ nerasta laikmenoje „%s“"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "Nėra rinkmenos arba negalima patikrinti parašo"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "Fang"
+
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Farerų"
+
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Fidži"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipinų"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Suomija"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1661,40 +2635,16 @@ msgstr "Suomių"
 msgid "Finno-Ugrian (Other)"
 msgstr "Fino-Ugrų (Kita)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Bus atlikti šie veiksmai:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Prancūzija"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Prancūzų"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Prancūzų Gviana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Prancūzų Polinezija"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Prancūzų pietinės teritorijos"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1710,50 +2660,21 @@ msgstr "Prancūzų, Senoji (842-apie 1400)"
 msgid "Frisian"
 msgstr "Fryzų"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr ""
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr ""
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr ""
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabonas"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gėlų"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galų"
-
-# GM
-# fuzzy
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambija"
-
-# GH
-# fuzzy
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1764,15 +2685,10 @@ msgstr ""
 msgid "Gbaya"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr ""
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Gruzija"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germanų (Kita)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1784,6 +2700,36 @@ msgstr "Gruzinų"
 msgid "German"
 msgstr "Vokiečių"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr ""
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr ""
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gėlų"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Airių"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galų"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1794,32 +2740,6 @@ msgstr ""
 msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germanų (Kita)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Vokietija"
-
-# GH
-# fuzzy
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Gana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltaras"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr ""
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1840,11 +2760,6 @@ msgstr "Gotų"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Graikija"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1855,62 +2770,16 @@ msgstr "Graikų, senovės (iki 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Graikų, šiuolaikinė (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grenlandija"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Gvadelupa"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guamas"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Gvatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr ""
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Gvinėja"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Bisau Gvinėja"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gudžarati"
 
-# GH
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Gajana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1921,52 +2790,21 @@ msgstr ""
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haitis"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haičio"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal išimtis"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Ar įgalinote visas reikiamas saugyklas?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Havajiečių"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Herdo sala ir Makdonaldo salos"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1992,16 +2830,6 @@ msgstr ""
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Istorija:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -2012,31 +2840,21 @@ msgstr "Hetitų"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Šventasis Sostas (Vatikano miestas valstybė)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Hondūras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Honkongas"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr ""
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Vengrų"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Vengrija"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2047,10 +2865,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Ibanų"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islandija"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2062,251 +2880,104 @@ msgstr "Islandų"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
 #. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
-msgstr "Ijo"
-
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr "Iloko"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Inari Sami"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Indija"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr "Indų (Kita)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indoeuropiečių (Kita)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonezija"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "Indoneziečių"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "Ingušų"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Diegimas buvo nutrauktas pagal nurodymą."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (Tarptautinė pagalbinės kalbos asociacija)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingua"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Netinkamas %s komponentas"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Netinkamas %s komponentas „%s“"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Netinkamas LDAP URL užklausos parametras „%s“"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Netinkama LDAP URL užklausos eilutė"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Netinkama Url schema „%s“"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr ""
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
+msgstr "Ijo"
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Netinkamas kompiuterio komponentas „%s“."
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingua"
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr "Iloko"
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (Tarptautinė pagalbinės kalbos asociacija)"
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Netinkamas prievado komponentas „%s“"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr "Indų (Kita)"
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Netinkamas reguliarusis reiškinys „%s“"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "Indoneziečių"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Netinkamas reguliarusis reiškinys „%s“: regcomp grąžino %d"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indoeuropiečių (Kita)"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Netinkamas saugyklos pavadinimas „%s“"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "Ingušų"
 
-# IR
-# fuzzy
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iranas"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr ""
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Iranėnų (kita)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irakas"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Airija"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Airių"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Airių, Vidurinioji (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Airių, Senoji (iki 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Irokėzų kalbos"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Meno Sala"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Izraelis"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italų"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italija"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaika"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javiečių"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japonija"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr ""
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japonų"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javiečių"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Džersis"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordanija"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Žydų-persų"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Žydų-arabų"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Žydų-persų"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
 #. language code: kab
@@ -2324,11 +2995,6 @@ msgstr "Kačinų"
 msgid "Kalaallisut"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr ""
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2339,21 +3005,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr ""
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr ""
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr ""
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2364,10 +3015,10 @@ msgstr ""
 msgid "Kashmiri"
 msgstr "Kašmyro"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kašubų"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2379,33 +3030,26 @@ msgstr ""
 msgid "Kazakh"
 msgstr "Kazakų"
 
-# KZ
-# fuzzy
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazachstanas"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenija"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr ""
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Chmerų"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr ""
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Chmerų"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2416,11 +3060,6 @@ msgstr ""
 msgid "Kikuyu"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2431,15 +3070,15 @@ msgstr ""
 msgid "Kirghiz"
 msgstr "Kirgizų"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribatis"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingonas"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2451,11 +3090,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2471,11 +3105,21 @@ msgstr ""
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr ""
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2487,32 +3131,15 @@ msgid "Kumyk"
 msgstr ""
 
 #. language code: kur ku
-#: zypp/LanguageCode.cc:651
-msgid "Kurdish"
-msgstr "Kurdų"
-
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
+#: zypp/LanguageCode.cc:651
+msgid "Kurdish"
+msgstr "Kurdų"
 
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuveitas"
-
-# KZ
-# fuzzy
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgiztanas"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2533,70 +3160,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Laosiečių"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Laoso Liaudies Demokratinė Respublika"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Lotynų"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latvija"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Latvių"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanas"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotas"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "1 lygis"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "2 lygis"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "3 lygis"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr ""
 
-# LR
-# fuzzy
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberija"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libija"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Lichtenšteinas"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2607,61 +3185,48 @@ msgstr ""
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lietuva"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Lietuvių"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Vieta „%s“ laikinai nepasiekiama."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr ""
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Žemutinė vokiečių"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr ""
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Liuksemburgiečių"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+# GH
+# fuzzy
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lule Sami"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2677,35 +3242,11 @@ msgstr "Luo (Kenija ir Tanzanija)"
 msgid "Lushai"
 msgstr "Lušai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Liuksemburgas"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Liuksemburgiečių"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Makao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonija"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Makedonų"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskaras"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2716,6 +3257,11 @@ msgstr "Madurų"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Maršalų"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2726,190 +3272,60 @@ msgstr "Maitili"
 msgid "Makasar"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Madagaskaras"
-
-# MW
-# fuzzy
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malavis"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malajų"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malajalių"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaizija"
-
-# MV
-# fuzzy
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldyvai"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Blogai suformuluotas URI"
-
-# ML
-# fuzzy
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Malis"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltiečių"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr ""
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Manobo kalbos"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maorių"
 
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
-msgid "Marathi"
-msgstr "Marati"
-
-# ML
-# fuzzy
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Maršalo salos"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Maršalų"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinika"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
 
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Maruari"
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+msgid "Marathi"
+msgstr "Marati"
 
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-# MR
-# fuzzy
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritanija"
-
-# MU
-# fuzzy
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauricijus"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Majų kalbos"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Majotas"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "Laikmenos šaltinis „%s“ neturi norimos laikmenos"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Laikmeną „%s“ naudoja kita programa"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malajų"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Laikmena neįdėta"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Mokša"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Laikmena nebuvo atidaryta, kai bandyta atlikti veiksmą „%s“."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Žemyninė Prancūzija"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Meksika"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Airių, Vidurinioji (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2921,86 +3337,61 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr ""
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Įvairios kalbos"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-chmerų (kita)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Madagaskaras"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltiečių"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr ""
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Manobo kalbos"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Mokša"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldavų"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-chmerų (kita)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monakas"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolija"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongolų"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Juodkalnija"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montseratas"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marokas"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mosi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambikas"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -3011,219 +3402,141 @@ msgstr "Kelios kalbos"
 msgid "Munda languages"
 msgstr "Munda kalbos"
 
-# MM
-# fuzzy
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Mianmaras"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr ""
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr ""
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Maruari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Majų kalbos"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr ""
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibija"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Šiaurės Amerikos indėnų"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Neapolio"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele, Šiaurės"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele, Pietų"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele, Šiaurės"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Neapolio"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepalas"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepalo Bhasa"
-
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
-msgstr "Nepali"
-
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Olandija"
-
-# AN
-# fuzzy
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Olandijos Antilai"
-
-# NC
-# fuzzy
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Naujoji Kaledonija"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Žemutinė vokiečių"
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Naujoji Zelandija"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
+msgstr "Nepali"
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Naujas atnaujinimo pranešimas"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepalo Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nikaragva"
-
-# NG
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Nigeris"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-# NG
-# fuzzy
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigerija"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-Sacharos (kita)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niujė"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niujiečių"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Nėra kodo"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Norvegų Nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Saugykloje nėra url."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Norvegų Bokmal"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolko salos"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Norvegų, senovės"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Šiaurės Amerikos indėnų"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Šiaurės Korėja"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Šiaurės Marianų salos"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Šiaurės Sami"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Šiaurės Sotho"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norvegija"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norvegų"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Norvegų Bokmal"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Norvegų Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Tai ne CD nuskaitymo įrenginys"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Šiaurės Sotho"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Nubiečių kalbos"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr ""
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr ""
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3244,10 +3557,6 @@ msgstr ""
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Pasenę"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3258,20 +3567,6 @@ msgstr ""
 msgid "Ojibwa"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Omanas"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Reikia vieno ar abiejų, „%s“ ar „%s“ atributų."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Laikmena nepalaiko šios operacijos"
-
 # SY
 # fuzzy
 #. language code: ori or
@@ -3294,66 +3589,36 @@ msgstr ""
 msgid "Ossetian"
 msgstr "Osetų"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turkų Osmanų (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Otomų kalbos"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papuasų (Kita)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
-"Regis paketas %s buvo sugadintas perdavimo metu. Ar norėtumėte jį gauti iš "
-"naujo?"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistanas"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palau"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestinos teritorija"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "Pampanga"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr ""
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3364,94 +3629,45 @@ msgstr "Panjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua Naujoji Gvinėja"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papuasų (Kita)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paragvajus"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Kelias „%s“ laikmenoje „%s“ nėra katalogas."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Kelias „%s“ laikmenoje „%s“ nėra rinkmena."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Priėjimas prie „%s“ uždraustas."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persų"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palau"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Persų, Senoji (apie 600-400 pr.m.e)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Per"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Filipinų (kita)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipinai"
-
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
-msgstr "Finikiečių"
-
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Pirmiausia įdiekite „lsof“ paketą."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr ""
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
+msgstr "Finikiečių"
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Lenkija"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Lenkų"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugalija"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr ""
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3463,87 +3679,21 @@ msgstr "Portugalų"
 msgid "Prakrit Languages"
 msgstr "Prakritų kalbos"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Pirmiau reikalauja"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Problemos apibrėžimas, kuris reiškia techninį palaikymą, skirtą pateikti "
-"suderinamumo informaciją, diegimo pagalbą, naudojimo palaikymą, atvykstančio "
-"aptarnavimo ir pagrindinių nesklandumų šalinimo. 1 lygio palaikymas nesiekia "
-"taisyti pačio produkto klaidų."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Problemos izoliavimas, kuris reiškia techninį palaikymą, skirtą dubliuoti "
-"klientų problemas, izoliuoti problemos sritis ir pateikti problemų "
-"sprendimus, kurių neišsprendė 1 lygio palaikymas."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Problemos sprendimas, kuris reiškia techninį palaikymą, skirtą spręsti "
-"kompleksines problemas, užsiimant produkto defektais, tapatinamas su 2 lygio "
-"palaikymu."
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Pateikia"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Riko"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pušto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Kataras"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Kečujų"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Užklausos eilutės nagrinėjimas nepalaikomas šiam URL"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM klaida:"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Reto romanų"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3559,57 +3709,26 @@ msgstr "Rapanui"
 msgid "Rarotongan"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Pataria"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Santykinis kelias neleidžiamas, jei naudojamas tapatybės nustatymas"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Pašalinama saugykla „%s“"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Saugyklos pseudonimas negali prasidėti tašku."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Trūksta reikiamo atributo „%s“."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Reikalauja"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunionas"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Romanų (kita)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Rumunija"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumunų"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Reto romanų"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Čigonų"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumunų"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3620,47 +3739,25 @@ msgstr "Rundi"
 msgid "Russian"
 msgstr "Rusų"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Rusijos Federacija"
-
-# RW
-# fuzzy
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Šv. Elenos sala"
-
-# KN
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Sent Kitsas ir Nevis"
-
-# LC
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandavų"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Sent Martinas"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Sen Pjeras ir Mikelonas"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Jakutų"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Šv. Vincentas ir Grenadinai"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Pietų Amerikos indėnų (Kita)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3672,71 +3769,41 @@ msgstr ""
 msgid "Samaritan Aramaic"
 msgstr "Saramiečių aramėjų"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Sami kalbos (kita)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoa"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marinas"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandavų"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sango"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskrito"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "San Tomė ir Prinsipė"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardiniečių"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbų"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudo Arabija"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Sicilų"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Škotų"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Kroatų"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3747,142 +3814,40 @@ msgstr "Selkup"
 msgid "Semitic (Other)"
 msgstr "Semitų (Kita)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegalas"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbija"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbų"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Sererų"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Paslaugos pseudonimas negali prasidėti tašku."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Airių, Senoji (iki 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seišeliai"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Sign kalbos"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Shan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Sicilų"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Siera Leonė"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Sign kalbos"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "Parašas nepatikrinamas. "
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Parašo rinkmena %s nerasta"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "Parašas geras"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "Parašas geras, bet raktas nepatikimas"
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "Nepavyko patikrinti parašo"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "Paašo viešasis raktas neprieinamas"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapūras"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Sinhala"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-Tibeto (kita)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Siouan kalbos"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Skolt Sami"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr ""
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-Tibeto (kita)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3894,194 +3859,136 @@ msgstr "Slavų (Kita)"
 msgid "Slovak"
 msgstr "Slovakų"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovakija"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovėnija"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Slovėnų"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr ""
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Pietų Sami"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Saliamono salos"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Šiaurės Sami"
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Somalių"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Sami kalbos (kita)"
 
-# SO
-# fuzzy
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalis"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lule Sami"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "Songhai"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Inari Sami"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoa"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Skolt Sami"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindi"
 
 #. language code: snk
 #: zypp/LanguageCode.cc:979
 msgid "Soninke"
 msgstr "Soninke"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Atleiskite, ši libzypp versija sukompiliuota su HAL palaikymu."
-
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "Sotho, Pietų"
-
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Pietų Afrika"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Pietų Amerikos indėnų (Kita)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Pietų Džordžija ir Pietų Sandvičo salos"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Pietų Korėja"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Pietų Altajaus"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Pietų Sami"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Somalių"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Ispanija"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "Songhai"
+
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "Sotho, Pietų"
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Ispanų"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Šri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardiniečių"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudanas"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Sererų"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Siūlo"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-Sacharos (kita)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Svati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Šumerų"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sudaniečių"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Papildo"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinamas"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbardas ir Jan Mayenas"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Šumerų"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Svahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Svati"
-
-# SZ
-# fuzzy
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Svazilandas"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Švedija"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Švedų"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Šveicarija"
-
-# SY
-# fuzzy
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Sirija"
-
 # SY
 # fuzzy
 #. language code: syr
@@ -4089,25 +3996,6 @@ msgstr "Sirija"
 msgid "Syriac"
 msgstr "Sirų"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Sistemos išimtis „%s“ laikmenoje „%s“."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Sistemos tvarkytuvę užrakino programa, kurios pid %d (%s).\n"
-"Užverkite šią programą ir bandykite iš naujo."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalogų"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4118,37 +4006,11 @@ msgstr "Taičio"
 msgid "Tai (Other)"
 msgstr "Tai (kita)"
 
-# TW
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taivanis"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tadžikų"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadžikistanas"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamašekų"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamilų"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzanija"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4159,6 +4021,11 @@ msgstr "Tatar"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timnų"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4169,33 +4036,21 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tadžikų"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalogų"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Tajų"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tailandas"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Palaikymo lygis nenurodytas"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Gamintojas nesuteikia palaikymo."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Šį veiksmą jau paleido kita programa."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Šis veiksmas sugadins jūsų sistemą!"
-
 # TW
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
@@ -4212,46 +4067,25 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Per ilgai jungiamasi prie „%s“."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timnų"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingonas"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togas"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tongas"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamašekų"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4263,106 +4097,66 @@ msgstr "Tongas (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tongas (Tonga salos)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Mėginta importuoti neegzistuojantį raktą %s į raktinę %s"
-
-# TT
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidadas ir Tobagas"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr ""
 
-#. language code: tso ts
-#: zypp/LanguageCode.cc:1063
-msgid "Tsonga"
-msgstr "Tsonga"
-
 #. language code: tsn tn
 #: zypp/LanguageCode.cc:1061
 msgid "Tswana"
 msgstr "Tsvana"
 
-#. language code: tum
-#: zypp/LanguageCode.cc:1067
-msgid "Tumbuka"
-msgstr "Tumbuka"
-
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisas"
-
-#. language code: tup
-#: zypp/LanguageCode.cc:1069
-msgid "Tupi Languages"
-msgstr "Tupi kalbos"
-
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turkija"
-
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "Turkų"
-
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turkų Osmanų (1500-1928)"
+#. language code: tso ts
+#: zypp/LanguageCode.cc:1063
+msgid "Tsonga"
+msgstr "Tsonga"
 
 #. language code: tuk tk
 #: zypp/LanguageCode.cc:1065
 msgid "Turkmen"
 msgstr "Turkmėnų"
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmėnistanas"
+#. language code: tum
+#: zypp/LanguageCode.cc:1067
+msgid "Tumbuka"
+msgstr "Tumbuka"
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Terkso ir Kaiko salos"
+#. language code: tup
+#: zypp/LanguageCode.cc:1069
+msgid "Tupi Languages"
+msgstr "Tupi kalbos"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "Turkų"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr ""
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altajaus (Kita)"
 
 #. language code: twi tw
 #: zypp/LanguageCode.cc:1077
 msgid "Twi"
 msgstr "Tvi"
 
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr ""
+
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Udmurtų"
 
-# UG
-# fuzzy
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4373,11 +4167,6 @@ msgstr "Ugaritik"
 msgid "Uighur"
 msgstr "Uighurų"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraina"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4388,220 +4177,36 @@ msgstr "Ukrainiečių"
 msgid "Umbundu"
 msgstr "Umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Nepavyksta klonuoti Url objekto"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Nepavyksta sukurti dbus ryšio"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Nepavyksta išnagrinėti Url komponentų"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Nenurodyta"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Nesutvarkytas saugyklos tipas"
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Jungtiniai Arabų Emyratai"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Jungtinė Karalystė"
-
-# US
-# fuzzy
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Jungtinės Amerikos Valstijos"
-
-# UM
-# fuzzy
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Jungtinės Valstijos Mažosios Užjūrio Teritorijos"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Nežinoma šalis: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Nežinoma klaida skaitant iš „%s“"
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Nežinoma kalba: "
-
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Nežinoma atitikmens veiksena „%s“"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Nežinoma atitikmens veiksena „%s“ šablonui „%s“"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Nežinomo palaikymo parinktis. Aprašas neprieinamasq"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Nepalaikomas HTTP tapatybės nustatymo būdas „%s“"
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Nepalaikoma URL schema „%s“."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr ""
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "Urdu"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Url schema neleidžia %s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Url schema neleidžia kompiuterio komponento"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Url schema neleidžia slaptažodžio"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Url schema neleidžia prievado"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Url schema neleidžia naudotojo vardo"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Url schema yra reikalingas komponentas"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Url schemai reikia kompiuterio komponento"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Url schema reikalauja kelio pavadinimo"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Urugvajus"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "Uzbekų"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistanas"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "Vai"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "Nurodytu URL nerasta tinkamų meta duomenų"
-msgstr[1] "Nurodytuose URL nerasta tinkamų meta duomenų"
-msgstr[2] "Nurodytuose URL nerasta tinkamų meta duomenų"
-msgstr[3] "Nurodytuose URL nerasta tinkamų meta duomenų"
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "Venda"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venesuela"
-
-# VN
-# fuzzy
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnamas"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "Vietnamo"
 
-# VI
-# fuzzy
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Suomija"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Apsilankykite Novell klientų aptarnavimo centre ir sužinosite, ar Jūsų "
-"registracija dar nėra pasibaigusi."
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4622,16 +4227,6 @@ msgstr "Vakašan kalbos"
 msgid "Walamo"
 msgstr "Valamo"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Valis ir Futuna"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Valonų"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4647,26 +4242,31 @@ msgstr "Vašo"
 msgid "Welsh"
 msgstr "Valų"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Vakarų Sachara"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr ""
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Valonų"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "Volofo"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr ""
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Jakutų"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4677,11 +4277,6 @@ msgstr "Jao"
 msgid "Yapese"
 msgstr "Japesų"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemenas"
-
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
 msgid "Yiddish"
@@ -4697,18 +4292,6 @@ msgstr "Joruba"
 msgid "Yupik Languages"
 msgstr "Jupikų kalbos"
 
-# ZM
-# fuzzy
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambija"
-
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zandų"
-
 #. language code: zap
 #: zypp/LanguageCode.cc:1139
 msgid "Zapotec"
@@ -4719,247 +4302,667 @@ msgstr "Zapotekų"
 msgid "Zenaga"
 msgstr "Zenaga"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zandų"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Mėginta importuoti neegzistuojantį raktą %s į raktinę %s"
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Rakto nepavyko pašalinti."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Parašo rinkmena %s nerasta"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Nepavyksta pateikti rinkmenos „%s“ iš saugyklos „%s“"
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Saugykloje nėra url."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr ""
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Regis paketas %s buvo sugadintas perdavimo metu. Ar norėtumėte jį gauti iš "
+"naujo?"
+
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "Nepavyko patikrinti parašo"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Nepavyko pateikti paketo %s. Ar norėtumėte bandyti jį gauti iš naujo?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm patikrinti nepavyko."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm nepavyko."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"Sistemos tvarkytuvę užrakino programa, kurios pid %d (%s).\n"
+"Užverkite šią programą ir bandykite iš naujo."
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s nepriklauso platinamojo paketo naujovinimo (distupgrade) saugyklai"
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s yra kitos architektūros"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problema su įdiegtu paketu %s"
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "konfliktuojantys reikalavimai"
+
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "kai kurių priklausomybių problema"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "niekas nepateikia reikalaujamo %s"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Ar įgalinote visas reikiamas saugyklas?"
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "paketo %s nėra"
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "nepalaikoma užklausa"
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s pateikia sistema, jo negalima pašalinti"
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s neįdiegiamas"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "niekas nepateikia %s, kurio reikalauja %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "negalima įdiegti ir %s, ir %s"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s konfliktuoja su %s, kurį pateikia %s"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s pakeičia %s, kurį pateikė %s"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "įdiegtas %s pakeičia %s, kurį pateikė %s"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "sprendinys %s konfliktuoja su %s, kurį pats siūlo"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s reikalauja „%s“, bet reikalavimo negalima išpildyti"
+
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "pašalinti galimi pasiūlymai: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"netinkami įdiegti pasiūlymai: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "netinkami diegimui pasiūlymai: "
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "nedrausti pašalinti %s"
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "neįdiegti %s"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "išlaikyti %s"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "nedrausti įdiegti %s"
+
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Šis veiksmas sugadins jūsų sistemą!"
+
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "nepaisyti perspėjimų apie riziką sugadinti sistemą"
+
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "neprašyti įdiegti sprendinių, kuriuos siūlo %s"
+
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "neprašyti pašalinti visų sprendinių, kuriuos siūlo %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabvė"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "neįdiegti pačios naujausios %s versijos"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "išlaikyti %s, nors yra kitos architektūros"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "įdiegti %s, nors yra kitos architektūros"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm patikrinti nepavyko."
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "išlaikyti pasenusį %s"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm nepavyko."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "įdiegti %s iš neįtrauktos saugyklos"
+
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "pasendinti nuo %s iki %s"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr "pakeisti architektūrą iš %s į %s"
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"įdiegti %s (keičiant gamintoją)\n"
+"  %s  -->  %s"
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "%s pakeisti į %s"
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "pašalinti %s "
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "nepaisyti kai kurių priklausomybių ir taip sugadinti %s "
 
-#: zypp/solver/detail/SATResolver.cc:1017
-#, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "negalima įdiegti ir %s, ir %s"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "apskritai ignoruoti kai kurias priklausomybes"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "konfliktuojantys reikalavimai"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "Trūksta reikiamo atributo „%s“."
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/parser/RepoindexFileReader.cc:209
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "padaryta %s atsarginė kopija"
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Reikia vieno ar abiejų, „%s“ ar „%s“ atributų."
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/InterProcessMutex.cc:83
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "pašalinti %s "
+msgid "Can't open lock file: %s"
+msgstr "Nepavyksta atverti užrakintos rinkmenos: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "pašalinti galimi pasiūlymai: "
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Šį veiksmą jau paleido kita programa."
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Istorija:"
+
+#: zypp/base/StrMatcher.cc:152
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "neprašyti pašalinti visų sprendinių, kuriuos siūlo %s"
+msgid "Unknown match mode '%s'"
+msgstr "Nežinoma atitikmens veiksena „%s“"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/base/StrMatcher.cc:153
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "neprašyti įdiegti sprendinių, kuriuos siūlo %s"
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Nežinoma atitikmens veiksena „%s“ šablonui „%s“"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "neįdiegti %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Netinkamas reguliarusis reiškinys „%s“: regcomp grąžino %d"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "neįdiegti pačios naujausios %s versijos"
+msgid "Invalid regular expression '%s'"
+msgstr "Netinkamas reguliarusis reiškinys „%s“"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Pirmiausia įdiekite „lsof“ paketą."
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "pasendinti nuo %s iki %s"
+msgid "Authentication required for '%s'"
+msgstr "%s reikalauja autentifikacijos"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "apskritai ignoruoti kai kurias priklausomybes"
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Nepavyko prijungti %s prie %s"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "nepaisyti perspėjimų apie riziką sugadinti sistemą"
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Nepavyko atjungti %s"
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"įdiegti %s (keičiant gamintoją)\n"
-"  %s  -->  %s"
+msgid "Bad file name: %s"
+msgstr "Netinkamas rinkmenos pavadinimas: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "įdiegti %s, nors yra kitos architektūros"
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Laikmena nebuvo atidaryta, kai bandyta atlikti veiksmą „%s“."
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "įdiegti %s iš neįtrauktos saugyklos"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Rinkmena „%s“ nerasta laikmenoje „%s“"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "įdiegtas %s pakeičia %s, kurį pateikė %s"
+msgid "Cannot write file '%s'."
+msgstr "Nepavyksta įrašyti rinkmenos „%s“."
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "netinkama"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Laikmena neįdėta"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Netinkama laikmenos prijungimo vieta"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "išlaikyti %s"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "„%s“ parsiuntimo (curl) iniciacijuoti nepavyko.."
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "išlaikyti %s, nors yra kitos architektūros"
+msgid "System exception '%s' on medium '%s'."
+msgstr "Sistemos išimtis „%s“ laikmenoje „%s“."
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "išlaikyti pasenusį %s"
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Kelias „%s“ laikmenoje „%s“ nėra rinkmena."
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Kelias „%s“ laikmenoje „%s“ nėra katalogas."
+
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Blogai suformuluotas URI"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Tuščias pagrindinio kompiuterio vardas URL adrese"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "URL adrese tuščia rinkmenų sistema"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "URL adrese tuščia paskirtis"
+
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Nepalaikoma URL schema „%s“."
+
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Laikmena nepalaiko šios operacijos"
+
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
+"„%s“ parsiuntimo (curl) klaida:\n"
+"Klaidos kodas: %s\n"
+"Klaidos pranešimas: %s\n"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "niekas nepateikia %s, kurio reikalauja %s"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Laikmenos šaltinis „%s“ neturi norimos laikmenos"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "niekas nepateikia reikalaujamo %s"
+msgid "Medium '%s' is in use by another instance"
+msgstr "Laikmeną „%s“ naudoja kita programa"
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Nepavyksta išmesti jokios laikmenos"
+
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "paketo %s nėra"
+msgid "Cannot eject media '%s'"
+msgstr "Nepavyksta išmesti laikmenos „%s“"
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problema su įdiegtu paketu %s"
+msgid "Permission to access '%s' denied."
+msgstr "Priėjimas prie „%s“ uždraustas."
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "nedrausti įdiegti %s"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Per ilgai jungiamasi prie „%s“."
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "nedrausti pašalinti %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Vieta „%s“ laikinai nepasiekiama."
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "%s pakeisti į %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" SSL liudijimo problema, patikrinkite liudijimų įstaigos tvarkingumą „%s“."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm sukūrė %s kaip %s, bet neįmanoma nustatyti skirtumo"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Nepavyko rasti ciklinio įrenginio , prie kurio prijungtume atvaizdį iš „%s“"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Nepalaikomas HTTP tapatybės nustatymo būdas „%s“"
+
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
-"rpm sukūrė %s kaip %s.\n"
-"Pateikiamos pirmosios 25 skirtumų eilutės:\n"
+"Apsilankykite Novell klientų aptarnavimo centre ir sužinosite, ar Jūsų "
+"registracija dar nėra pasibaigusi."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm išsaugojo %s kaip %s, bet neįmanoma nustatyti skirtumo"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm išsaugojo %s kaip %s.\n"
-"Pateikiamos pirmosios 25 skirtumų eilutės:\n"
+"Rinkmena %1% ,\n"
+"  esanti pakete\n"
+"     %2% ,\n"
+"  konfliktuoja su rinkmena, esančia pakete\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "sprendinys %s konfliktuoja su %s, kurį pats siūlo"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Rinkmena %1%\n"
+"  iš paketo\n"
+"     %2%\n"
+"  konfliktuoja su rinkmena iš\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "kai kurių priklausomybių problema"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Rinkmena %1%\n"
+"  iš\n"
+"     %2%\n"
+"  konfliktuoja su rinkmena iš paketo\n"
+"     %3%"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "netinkami diegimui pasiūlymai: "
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Rinkmena %1%\n"
+"  iš\n"
+"     %2%\n"
+"  su rinkmena iš\n"
+"     %3%"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "nežinoma"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Rinkmena %1%\n"
+"  iš paketo\n"
+"     %2%\n"
+"  konfliktuoja su rinkmena\n"
+"     %3%\n"
+"  iš paketo\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "nepalaikoma"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Rinkmena %1%\n"
+"  iš paketo\n"
+"     %2%\n"
+"  konfliktuoja su rinkmena\n"
+"     %3%\n"
+"  iš\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "nepalaikoma užklausa"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Rinkmena %1%\n"
+"  iš\n"
+"     %2%\n"
+"  konfliktuoja su rinkmena\n"
+"     %3%\n"
+"  iš paketo\n"
+"     %4%"
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Rinkmena %1%\n"
+"  iš\n"
+"     %2%\n"
+"  konfliktuoja su rinkmena\n"
+"     %3%\n"
+"  iš\n"
+"     %4%"
+
+#~ msgid "do not keep %s installed"
+#~ msgstr "nesistengti išlaikyti įdiegto %s"
 
 #~ msgid "Cannot create public key %s from %s keyring to file %s"
 #~ msgstr "Nepavyksta sukurti viešojo rakto %s iš %s raktinės į rinkmeną %s"
@@ -4972,6 +4975,3 @@ msgstr "nepalaikoma užklausa"
 
 #~ msgid "Failed to download %s from %s"
 #~ msgstr "Nepavyko parsiųsti %s iš %s"
-
-#~ msgid "do not keep %s installed"
-#~ msgstr "nesistengti išlaikyti įdiegto %s"
index 80ccae1..3cca82c 100644 (file)
--- a/po/mk.po
+++ b/po/mk.po
@@ -16,873 +16,2443 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-#, fuzzy
-msgid " execution failed"
-msgstr "DBI Execution failed: %s"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:99
+msgid "Conflicts"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-#, fuzzy
-msgid "Achinese"
-msgstr "Кинески"
-
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
-#, c-format, boost-format
-msgid "Adding repository '%s'"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr ""
+#: zypp/target/TargetImpl.cc:332
+#, fuzzy
+msgid " execution failed"
+msgstr "DBI Execution failed: %s"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Африкански"
-
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-# FO
-# fuzzy
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
+#: zypp/target/hal/HalContext.cc:117
 #, fuzzy
-msgid "Aland Islands"
-msgstr "Ð\98Ñ\80Ñ\81ка"
+msgid "HalContext not connected"
+msgstr "не Ðµ ÐºÐ¾Ð½ÐµÐºÑ\82иÑ\80ано"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-#, fuzzy
-msgid "Albanian"
-msgstr "Романски"
-
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-# DZ
-# fuzzy
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Бугарија"
-
-# AU
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-#, fuzzy
-msgid "Algonquian Languages"
-msgstr "Австралија"
-
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
 msgstr ""
 
-# AS
-# fuzzy
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Америка, Северна"
-
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
 msgstr ""
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua и Barbuda"
-
-# AU
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-#, fuzzy
-msgid "Apache Languages"
-msgstr "Австралија"
-
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Арапски"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-# JM
-# fuzzy
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-#, fuzzy
-msgid "Aramaic"
-msgstr "Јамајка"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-#, fuzzy
-msgid "Araucanian"
-msgstr "Литвански"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-# AR
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Аргентина"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr ""
 
-# AM
-# fuzzy
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Аргентина"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr ""
 
-# AM
-# fuzzy
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-#, fuzzy
-msgid "Armenian"
-msgstr "Аргентина"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
 msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
 msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
 msgstr ""
 
-# AU
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-#, fuzzy
-msgid "Athapascan Languages"
-msgstr "Австралија"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
 
-# AU
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Австралија"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
 
-# AU
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-#, fuzzy
-msgid "Australian Languages"
-msgstr "Австралија"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
 
-# AT
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Австрија"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr ""
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Couldn't open file: %s."
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr ""
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
 
-# AZ
-# fuzzy
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Српски"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Couldn't open file: %s."
 
-# AZ
-# fuzzy
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-#, fuzzy
-msgid "Azerbaijani"
-msgstr "Српски"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr ""
 
-#: zypp/media/MediaException.cc:47
+#: zypp/RepoManager.cc:1282
 #, c-format, boost-format
-msgid "Bad file name: %s"
+msgid "Building repository '%s' cache"
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
 msgstr ""
 
-# BS
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Couldn't open file: %s."
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Couldn't open file: %s."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr ""
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr ""
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr ""
+
+# US
+# fuzzy
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+#, fuzzy
+msgid "United Arab Emirates"
+msgstr "Соединетите Американски Држави"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr ""
+
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua и Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr ""
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr ""
+
+# AM
+# fuzzy
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Аргентина"
+
+# AN
+# fuzzy
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Холандија"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr ""
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr ""
+
+# AR
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Аргентина"
+
+# AS
+# fuzzy
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Америка, Северна"
+
+# AT
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Австрија"
+
+# AU
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Австралија"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr ""
+
+# FO
+# fuzzy
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+#, fuzzy
+msgid "Aland Islands"
+msgstr "Ирска"
+
+# AZ
+# fuzzy
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Српски"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr ""
+
+# BB
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Барбадос"
+
+# BD
+# fuzzy
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Англиска"
+
+# BE
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Белгија"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr ""
+
+# BG
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Бугарија"
+
+# BH
+# fuzzy
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Бразил"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr ""
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr ""
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr ""
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr ""
+
+# BO
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Боливија"
+
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Бразил"
+
+# BS
+# fuzzy
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Панама"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr ""
+
+# FO
+# fuzzy
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+#, fuzzy
+msgid "Bouvet Island"
+msgstr "Ирска"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr ""
+
+# BY
+# fuzzy
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Бретонски"
+
+# BZ
+# fuzzy
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Белгија"
+
+# CA
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Канада"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr ""
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr ""
+
+# CF
+# fuzzy
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Доминиканска Република"
+
+# CH
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Швајцарија"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr ""
+
+# FO
+# fuzzy
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+#, fuzzy
+msgid "Cook Islands"
+msgstr "Ирска"
+
+# CL
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Чиле"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr ""
+
+# CN
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Кина"
+
+# CO
+# fuzzy
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Колумбија"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr ""
+
+# CU
+# fuzzy
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Колумбија"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr ""
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr ""
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr ""
+
+# CZ
+# fuzzy
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Доминиканска Република"
+
+# DE
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Германија"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr ""
+
+# DK
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Данска"
+
+# DM
+# fuzzy
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Романија"
+
+# DO
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Доминиканска Република"
+
+# DZ
+# fuzzy
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Бугарија"
+
+# EC
+# fuzzy
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Еквадор"
+
+# EE
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Естонија"
+
+# EG
+# fuzzy
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Енергија"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr ""
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr ""
+
+# ES
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Шпанија"
+
+# ET
+# fuzzy
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Естонија"
+
+# FI
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Финска"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr ""
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr ""
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr ""
+
+# FO
+# fuzzy
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Ирска"
+
+# FR
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Франција"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr ""
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr ""
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr ""
+
+# GD
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Гренада"
+
+# GE
+# fuzzy
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Србија"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+#, fuzzy
+msgid "French Guiana"
+msgstr "Француски"
+
+# DE
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Германија"
+
+# GH
+# fuzzy
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Кина"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr ""
+
+# GL
+# fuzzy
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Гренада"
+
+# GM
+# fuzzy
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Јамајка"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr ""
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr ""
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr ""
+
+# GR
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Грција"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr ""
+
+# GT
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Гватемала"
+
+# GU
+# fuzzy
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Гватемала"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr ""
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr ""
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr ""
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr ""
+
+# HN
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Хондурас"
+
+# HR
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Хрватска"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr ""
+
+# HU
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Унгарија"
+
+# ID
+# fuzzy
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Икони"
+
+# IE
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Ирска"
+
+# IL
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Израел"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+# IN
+# fuzzy
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Икони"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr ""
+
+# IQ
+# fuzzy
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Израел"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr ""
+
+# IS
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Исланд"
+
+# IT
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Италија"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+# JM
+# fuzzy
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Јамајка"
+
+# JO
+# fuzzy
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Корејски"
+
+# JP
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Јапонија"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr ""
+
+# KZ
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+#, fuzzy
+msgid "Kyrgyzstan"
+msgstr "Тајван"
+
+# KH
+# fuzzy
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Колумбија"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr ""
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr ""
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr ""
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr ""
+
+# ZA
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+#, fuzzy
+msgid "South Korea"
+msgstr "Јужна Африка"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr ""
+
+# FO
+# fuzzy
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+#, fuzzy
+msgid "Cayman Islands"
+msgstr "Ирска"
+
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Тајван"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr ""
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr ""
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr ""
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr ""
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr ""
+
+# LR
+# fuzzy
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Србија"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr ""
+
+# LT
+# fuzzy
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Литвански"
+
+# LU
+# fuzzy
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Луксембург"
+
+# LV
+# fuzzy
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Хрватска"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr ""
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr ""
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr ""
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr ""
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr ""
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr ""
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr ""
+
+# FO
+# fuzzy
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+#, fuzzy
+msgid "Marshall Islands"
+msgstr "Ирска"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+#, fuzzy
+msgid "Macedonia"
+msgstr "Македонски"
+
+# ML
+# fuzzy
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "KStep"
+
+# MM
+# fuzzy
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Панама"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr ""
+
+# MO
+# fuzzy
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "KStep"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr ""
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr ""
+
+# MR
+# fuzzy
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Литвански"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr ""
+
+# MT
+# fuzzy
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "KStep"
+
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Литвански"
+
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "KStep"
+
+# MW
+# fuzzy
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "KStep"
+
+# MX
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Мексико"
+
+# MY
+# fuzzy
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "KStep"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr ""
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr ""
+
+# NC
+# fuzzy
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Македонија"
+
+# NG
+# fuzzy
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+#, fuzzy
+msgid "Niger"
+msgstr "Србија"
+
+# FO
+# fuzzy
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+#, fuzzy
+msgid "Norfolk Island"
+msgstr "Ирска"
+
+# NG
+# fuzzy
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Србија"
+
+# NI
+# fuzzy
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Парагвај"
+
+# NL
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Холандија"
+
+# NO
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Норвешка"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr ""
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr ""
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr ""
+
+# NZ
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Нов Зеланд"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr ""
+
+# PA
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Панама"
+
+# PE
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Перу"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr ""
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr ""
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr ""
+
+# TJ
+# fuzzy
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+#, fuzzy
+msgid "Pakistan"
+msgstr "Тајван"
+
+# PL
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Полска"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr ""
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr ""
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr ""
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr ""
+
+# PT
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Португалија"
+
+# PW
+# fuzzy
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Парагвај"
+
+# PY
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Парагвај"
+
+# QA
+# fuzzy
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "KStep"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr ""
+
+# RO
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Романија"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "Српски"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr ""
+
+# RW
+# fuzzy
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Канада"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr ""
+
+# FO
+# fuzzy
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+#, fuzzy
+msgid "Solomon Islands"
+msgstr "Ирска"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr ""
+
+# SD
+# fuzzy
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Звук"
+
+# SE
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Шведска"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr ""
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr ""
+
+# SI
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Словенија"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr ""
+
+# SK
+# fuzzy
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Словачки"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr ""
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr ""
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr ""
+
+# SO
+# fuzzy
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Романија"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr ""
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr ""
+
+# SV
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "Ел Салвадор"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr ""
+
+# SZ
+# fuzzy
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Тајланд"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr ""
+
+# TD
+# fuzzy
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Кина"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr ""
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr ""
+
+# TH
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Тајланд"
+
+# TJ
+# fuzzy
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Тајван"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr ""
+
+# TJ
+# fuzzy
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+#, fuzzy
+msgid "Turkmenistan"
+msgstr "Тајван"
+
+# TN
+# fuzzy
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Русија"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr ""
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr ""
+
+# TR
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Турција"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Тринидад и Тобаго"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr ""
+
+# TW
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Тајван"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr ""
+
+# UA
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Украина"
+
+# UG
+# fuzzy
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Канада"
+
+# UM
+# fuzzy
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Соединетите Американски Држави"
+
+# US
 # fuzzy
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Ð\9fанама"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "СоединеÑ\82иÑ\82е Ð\90меÑ\80иканÑ\81ки Ð\94Ñ\80жави"
 
-# BH
-# fuzzy
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Бразил"
+# UY
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Уругвај"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
+# TJ
+# fuzzy
+#. :URY:858:
+#: zypp/CountryCode.cc:389
 #, fuzzy
-msgid "Balinese"
-msgstr "Кинески"
-
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr ""
+msgid "Uzbekistan"
+msgstr "Тајван"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr ""
+# VE
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Венецуела"
 
-# RW
+# VI
 # fuzzy
-#. language code: bad
-#: zypp/LanguageCode.cc:237
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
 #, fuzzy
-msgid "Banda"
-msgstr "Ð\9aанада"
+msgid "British Virgin Islands"
+msgstr "ФинÑ\81ка"
 
-# BD
+# VI
 # fuzzy
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Ð\90нглиска"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Финска"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
 msgstr ""
 
-# BB
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Барбадос"
-
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Баскиски"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr ""
 
-# ID
-# fuzzy
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-#, fuzzy
-msgid "Batak (Indonesia)"
-msgstr "Икони"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-# BY
-# fuzzy
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Бретонски"
+# ZA
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Јужна Африка"
 
-# BY
+# ZM
 # fuzzy
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-#, fuzzy
-msgid "Belarusian"
-msgstr "Бретонски"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Јамајка"
 
-# BE
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Белгија"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr ""
 
-# BZ
-# fuzzy
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Белгија"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+#, fuzzy
+msgid "Achinese"
+msgstr "Кинески"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
 msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Африкански"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
 msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+#, fuzzy
+msgid "Albanian"
+msgstr "Романски"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr ""
+# AU
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+#, fuzzy
+msgid "Algonquian Languages"
+msgstr "Австралија"
+
+# ZA
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+#, fuzzy
+msgid "Southern Altai"
+msgstr "Јужна Африка"
 
-# BO
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Боливија"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
+# AU
+#. language code: apa
+#: zypp/LanguageCode.cc:199
 #, fuzzy
-msgid "Bosnian"
-msgstr "Ð\95Ñ\81Ñ\82онÑ\81ки"
+msgid "Apache Languages"
+msgstr "Ð\90вÑ\81Ñ\82Ñ\80алиÑ\98а"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr ""
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Арапски"
 
-# FO
+# JM
 # fuzzy
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
+#. language code: arc
+#: zypp/LanguageCode.cc:203
 #, fuzzy
-msgid "Bouvet Island"
-msgstr "Ð\98Ñ\80Ñ\81ка"
+msgid "Aramaic"
+msgstr "Ð\88амаÑ\98ка"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-# BR
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Бразил"
+# AM
+# fuzzy
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+#, fuzzy
+msgid "Armenian"
+msgstr "Аргентина"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Бретонски"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+#, fuzzy
+msgid "Araucanian"
+msgstr "Литвански"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-# VI
-# fuzzy
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-#, fuzzy
-msgid "British Virgin Islands"
-msgstr "Финска"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr ""
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-#, fuzzy
-msgid "Buginese"
-msgstr "Кинески"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr ""
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
 msgstr ""
 
-# BG
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Бугарија"
+# AU
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+#, fuzzy
+msgid "Athapascan Languages"
+msgstr "Австралија"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Бугарски"
+# AU
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+#, fuzzy
+msgid "Australian Languages"
+msgstr "Австралија"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
 msgstr ""
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
 msgstr ""
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr ""
+# AZ
+# fuzzy
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+#, fuzzy
+msgid "Azerbaijani"
+msgstr "Српски"
 
-# KH
+# RW
 # fuzzy
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Колумбија"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+#, fuzzy
+msgid "Banda"
+msgstr "Канада"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+#, fuzzy
+msgid "Balinese"
+msgstr "Кинески"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Couldn't open file: %s."
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Баскиски"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Couldn't open file: %s."
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr ""
+
+# BY
+# fuzzy
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+#, fuzzy
+msgid "Belarusian"
+msgstr "Бретонски"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Couldn't open file: %s."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-# CA
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Ð\9aанада"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+#, fuzzy
+msgid "Bosnian"
+msgstr "Ð\95Ñ\81Ñ\82онÑ\81ки"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr ""
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Бретонски"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+# ID
+# fuzzy
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+#, fuzzy
+msgid "Batak (Indonesia)"
+msgstr "Икони"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+#, fuzzy
+msgid "Buginese"
+msgstr "Кинески"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Бугарски"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Couldn't open file: %s."
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr ""
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
 #. language code: car
@@ -900,14 +2470,6 @@ msgstr ""
 msgid "Caucasian (Other)"
 msgstr ""
 
-# FO
-# fuzzy
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-#, fuzzy
-msgid "Cayman Islands"
-msgstr "Ирска"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -918,47 +2480,14 @@ msgstr ""
 msgid "Celtic (Other)"
 msgstr ""
 
-# CF
-# fuzzy
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Доминиканска Република"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr ""
-
-# TD
-# fuzzy
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Кина"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr ""
-
-# AU
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-#, fuzzy
-msgid "Chamic Languages"
-msgstr "Австралија"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr ""
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
 msgstr ""
 
 #. language code: che ce
@@ -966,131 +2495,67 @@ msgstr ""
 msgid "Chechen"
 msgstr ""
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr ""
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr ""
-
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr ""
-
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-# CL
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Чиле"
-
-# CN
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Кина"
-
 #. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Кинески"
-
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr ""
-
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr ""
-
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr ""
-
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr ""
-
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr ""
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Кинески"
 
 #. language code: chk
 #: zypp/LanguageCode.cc:327
 msgid "Chuukese"
 msgstr ""
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr ""
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-# CO
-# fuzzy
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Колумбија"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
 msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-# FO
-# fuzzy
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
+# AU
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
 #, fuzzy
-msgid "Cook Islands"
-msgstr "Ð\98Ñ\80Ñ\81ка"
+msgid "Chamic Languages"
+msgstr "Ð\90вÑ\81Ñ\82Ñ\80алиÑ\98а"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1108,31 +2573,6 @@ msgstr "Дански"
 msgid "Corsican"
 msgstr ""
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr ""
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr ""
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr ""
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr ""
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr ""
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1148,51 +2588,36 @@ msgstr ""
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr ""
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr ""
 
-# HR
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Хрватска"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Хрватски"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
 
-# CU
-# fuzzy
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Колумбија"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr ""
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr ""
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Чешки"
 
-# CZ
-# fuzzy
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Доминиканска Република"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1218,11 +2643,15 @@ msgstr ""
 msgid "Delaware"
 msgstr ""
 
-# DK
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Данска"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr ""
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr ""
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1234,62 +2663,30 @@ msgstr ""
 msgid "Divehi"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr ""
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr ""
-
-# DM
-# fuzzy
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Романија"
-
-# DO
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Доминиканска Република"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr ""
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+#, fuzzy
+msgid "Lower Sorbian"
+msgstr "Српски"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
 #. language code: dut nld nl
@@ -1297,11 +2694,6 @@ msgstr ""
 msgid "Dutch"
 msgstr ""
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr ""
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1311,66 +2703,25 @@ msgstr ""
 #: zypp/LanguageCode.cc:407
 msgid "Dzongkha"
 msgstr ""
-
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr ""
-
-# EC
-# fuzzy
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Еквадор"
-
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr ""
-
-# EG
-# fuzzy
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Енергија"
-
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr ""
-
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr ""
-
-# SV
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "Ел Салвадор"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr ""
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
 #. language code: eng en
@@ -1384,76 +2735,16 @@ msgstr "Полски"
 msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr ""
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr ""
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr ""
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Есперанто"
 
-# EE
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Естонија"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Естонски"
 
-# ET
-# fuzzy
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Естонија"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1464,202 +2755,27 @@ msgstr ""
 msgid "Ewondo"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Failed to parse: %s."
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr ""
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr ""
-
-# FO
-# fuzzy
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Ирска"
-
 # FO
 # fuzzy
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 #, fuzzy
-msgid "Faroese"
-msgstr "Ирска"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr ""
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr ""
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+msgid "Faroese"
+msgstr "Ирска"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
 msgstr ""
 
 #. language code: fil
@@ -1667,12 +2783,6 @@ msgstr ""
 msgid "Filipino"
 msgstr ""
 
-# FI
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Финска"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1683,42 +2793,16 @@ msgstr "Фински"
 msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr ""
 
-# FR
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Франција"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Француски"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-#, fuzzy
-msgid "French Guiana"
-msgstr "Француски"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr ""
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr ""
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1734,16 +2818,16 @@ msgstr ""
 msgid "Frisian"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr ""
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr ""
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr ""
+
 # GU
 # fuzzy
 #. language code: gaa
@@ -1752,36 +2836,6 @@ msgstr ""
 msgid "Ga"
 msgstr "Гватемала"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr ""
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr ""
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr ""
-
-# GM
-# fuzzy
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Јамајка"
-
-# RW
-# fuzzy
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-#, fuzzy
-msgid "Ganda"
-msgstr "Канада"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1792,20 +2846,13 @@ msgstr ""
 msgid "Gbaya"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
 msgstr ""
 
 # GE
 # fuzzy
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Србија"
-
-# GE
-# fuzzy
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
 #, fuzzy
@@ -1817,41 +2864,44 @@ msgstr "Србија"
 msgid "German"
 msgstr "Германски"
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
 msgstr ""
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
 msgstr ""
 
-# DE
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Германија"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Ирски"
 
-# GH
-# fuzzy
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Кина"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr ""
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
 msgstr ""
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
+msgstr ""
+
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
 #. language code: gon
@@ -1874,12 +2924,6 @@ msgstr ""
 msgid "Grebo"
 msgstr ""
 
-# GR
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Грција"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1890,69 +2934,16 @@ msgstr ""
 msgid "Greek, Modern (1453-)"
 msgstr ""
 
-# GL
-# fuzzy
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Гренада"
-
-# GD
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Гренада"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr ""
-
-# GU
-# fuzzy
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Гватемала"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr ""
 
-# GT
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Гватемала"
-
-# DE
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Германија"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr ""
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr ""
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr ""
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr ""
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1963,54 +2954,22 @@ msgstr ""
 msgid "Haida"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr ""
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 #, fuzzy
 msgid "Haitian"
 msgstr "Хрватски"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "не е конектирано"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr ""
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -2031,19 +2990,9 @@ msgstr ""
 msgid "Himachali"
 msgstr ""
 
-#. language code: hin hi
-#: zypp/LanguageCode.cc:527
-msgid "Hindi"
-msgstr ""
-
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr ""
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
+#. language code: hin hi
+#: zypp/LanguageCode.cc:527
+msgid "Hindi"
 msgstr ""
 
 #. language code: hit
@@ -2056,33 +3005,22 @@ msgstr ""
 msgid "Hmong"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-# HN
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Хондурас"
-
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr ""
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+#, fuzzy
+msgid "Upper Sorbian"
+msgstr "Српски"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Унгарски"
 
-# HU
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Унгарија"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2093,11 +3031,10 @@ msgstr ""
 msgid "Iban"
 msgstr ""
 
-# IS
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Исланд"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr ""
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2109,49 +3046,44 @@ msgstr "Исландски"
 msgid "Ido"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr ""
+# LT
+# fuzzy
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+#, fuzzy
+msgid "Sichuan Yi"
+msgstr "Литвански"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr ""
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr ""
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr ""
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-# IN
-# fuzzy
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Икони"
-
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr ""
-
-# ID
-# fuzzy
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Икони"
-
 # ID
 # fuzzy
 #. language code: ind id
@@ -2160,141 +3092,26 @@ msgstr "Икони"
 msgid "Indonesian"
 msgstr "Икони"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr ""
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr ""
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr ""
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr ""
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr ""
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr ""
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr ""
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr ""
 
-# IQ
-# fuzzy
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Израел"
-
-# IE
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Ирска"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Ирски"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr ""
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr ""
-
 # AU
 #. language code: iro
 #: zypp/LanguageCode.cc:575
@@ -2302,77 +3119,41 @@ msgstr ""
 msgid "Iroquoian Languages"
 msgstr "Австралија"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-# IL
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Израел"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Италијански"
 
-# IT
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Италија"
-
-# JM
-# fuzzy
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Јамајка"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+#, fuzzy
+msgid "Javanese"
+msgstr "Јапонски"
 
-# JP
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Јапонија"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr ""
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Јапонски"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-#, fuzzy
-msgid "Javanese"
-msgstr "Јапонски"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-# JO
-# fuzzy
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Корејски"
-
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 #, fuzzy
 msgid "Judeo-Arabic"
 msgstr "Арапски"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr ""
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
 #. language code: kab
@@ -2390,11 +3171,6 @@ msgstr ""
 msgid "Kalaallisut"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr ""
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2407,21 +3183,6 @@ msgstr ""
 msgid "Kannada"
 msgstr "Канада"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr ""
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr ""
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr ""
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2432,9 +3193,9 @@ msgstr ""
 msgid "Kashmiri"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
 #. language code: kaw
@@ -2450,16 +3211,9 @@ msgstr ""
 msgid "Kazakh"
 msgstr "Тајван"
 
-# KZ
-# fuzzy
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Тајван"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
 #. language code: kha
@@ -2467,16 +3221,16 @@ msgstr ""
 msgid "Khasi"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr ""
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr ""
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr ""
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 #, fuzzy
@@ -2488,11 +3242,6 @@ msgstr "Кинески"
 msgid "Kikuyu"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr ""
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2503,14 +3252,14 @@ msgstr ""
 msgid "Kirghiz"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
 #. language code: kom kv
@@ -2523,11 +3272,6 @@ msgstr ""
 msgid "Kongo"
 msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr ""
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2543,11 +3287,21 @@ msgstr ""
 msgid "Kpelle"
 msgstr ""
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr ""
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr ""
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr ""
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2563,29 +3317,11 @@ msgstr ""
 msgid "Kurdish"
 msgstr ""
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr ""
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr ""
-
-# KZ
-# fuzzy
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-#, fuzzy
-msgid "Kyrgyzstan"
-msgstr "Тајван"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2606,11 +3342,6 @@ msgstr ""
 msgid "Lao"
 msgstr ""
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr ""
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
@@ -2618,63 +3349,17 @@ msgstr ""
 
 # LV
 # fuzzy
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Хрватска"
-
-# LV
-# fuzzy
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 #, fuzzy
 msgid "Latvian"
 msgstr "Хрватска"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr ""
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr ""
 
-# LR
-# fuzzy
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Србија"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr ""
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr ""
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2685,43 +3370,32 @@ msgstr ""
 msgid "Lingala"
 msgstr ""
 
-# LT
-# fuzzy
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Литвански"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Литвански"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: loz
+#: zypp/LanguageCode.cc:677
+msgid "Lozi"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-#, fuzzy
-msgid "Low German"
-msgstr "Германски"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
+# LU
+# fuzzy
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
 #, fuzzy
-msgid "Lower Sorbian"
-msgstr "СÑ\80пÑ\81ки"
+msgid "Luxembourgish"
+msgstr "Ð\9bÑ\83кÑ\81ембÑ\83Ñ\80г"
 
-#. language code: loz
-#: zypp/LanguageCode.cc:677
-msgid "Lozi"
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
 msgstr ""
 
 #. language code: lub lu
@@ -2729,21 +3403,19 @@ msgstr ""
 msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
-msgstr ""
+# RW
+# fuzzy
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+#, fuzzy
+msgid "Ganda"
+msgstr "Канада"
 
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr ""
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2757,46 +3429,14 @@ msgstr ""
 #. language code: lus
 #: zypp/LanguageCode.cc:693
 #, fuzzy
-msgid "Lushai"
-msgstr "Таи"
-
-# LU
-# fuzzy
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Луксембург"
-
-# LU
-# fuzzy
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-#, fuzzy
-msgid "Luxembourgish"
-msgstr "Луксембург"
-
-# MO
-# fuzzy
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "KStep"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-#, fuzzy
-msgid "Macedonia"
-msgstr "Македонски"
+msgid "Lushai"
+msgstr "Таи"
 
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Македонски"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr ""
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2807,6 +3447,11 @@ msgstr ""
 msgid "Magahi"
 msgstr ""
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr ""
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2819,214 +3464,68 @@ msgstr ""
 
 # MY
 # fuzzy
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-#, fuzzy
-msgid "Malagasy"
-msgstr "KStep"
-
-# MW
-# fuzzy
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "KStep"
-
-# MY
-# fuzzy
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-#, fuzzy
-msgid "Malay"
-msgstr "KStep"
-
-# MY
-# fuzzy
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 #, fuzzy
 msgid "Malayalam"
 msgstr "KStep"
 
-# MY
-# fuzzy
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "KStep"
-
-# MV
-# fuzzy
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "KStep"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-# ML
-# fuzzy
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "KStep"
-
-# MT
-# fuzzy
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "KStep"
-
-# MT
-# fuzzy
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-#, fuzzy
-msgid "Maltese"
-msgstr "KStep"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr ""
-
-# RW
-# fuzzy
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-#, fuzzy
-msgid "Mandar"
-msgstr "Канада"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr ""
-
-# AU
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-#, fuzzy
-msgid "Manobo Languages"
-msgstr "Австралија"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr ""
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Маорски"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr ""
-
-# FO
-# fuzzy
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-#, fuzzy
-msgid "Marshall Islands"
-msgstr "Ирска"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr ""
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr ""
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr ""
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr ""
 
-# MR
-# fuzzy
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Литвански"
-
-# MU
+# MY
 # fuzzy
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Литвански"
-
-# AU
-#. language code: myn
-#: zypp/LanguageCode.cc:771
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
 #, fuzzy
-msgid "Mayan Languages"
-msgstr "Австралија"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr ""
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+msgid "Malay"
+msgstr "KStep"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+# RW
+# fuzzy
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+#, fuzzy
+msgid "Mandar"
+msgstr "Канада"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-# MX
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Мексико"
-
 #. language code: mic
 #: zypp/LanguageCode.cc:735
 msgid "Mi'kmaq"
@@ -3037,11 +3536,6 @@ msgstr ""
 msgid "Minangkabau"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr ""
-
 # AU
 #. language code: mis
 #: zypp/LanguageCode.cc:739
@@ -3049,64 +3543,57 @@ msgstr ""
 msgid "Miscellaneous Languages"
 msgstr "Австралија"
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
-msgstr ""
-
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr ""
-
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
-msgstr ""
-
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr ""
-
 #. language code: mkh
 #: zypp/LanguageCode.cc:741
 msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr ""
+# MY
+# fuzzy
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+#, fuzzy
+msgid "Malagasy"
+msgstr "KStep"
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr ""
+# MT
+# fuzzy
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+#, fuzzy
+msgid "Maltese"
+msgstr "KStep"
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#. language code: mon mn
-#: zypp/LanguageCode.cc:757
-msgid "Mongolian"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
+# AU
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+#, fuzzy
+msgid "Manobo Languages"
+msgstr "Австралија"
+
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
 msgstr ""
 
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
 msgstr ""
 
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
+#. language code: mon mn
+#: zypp/LanguageCode.cc:757
+msgid "Mongolian"
 msgstr ""
 
 #. language code: mos
@@ -3114,11 +3601,6 @@ msgstr ""
 msgid "Mossi"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr ""
-
 # AU
 #. language code: mul
 #: zypp/LanguageCode.cc:761
@@ -3131,27 +3613,46 @@ msgstr "Австралија"
 msgid "Munda languages"
 msgstr ""
 
-# MM
-# fuzzy
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Панама"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr ""
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr ""
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr ""
+
+# AU
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+#, fuzzy
+msgid "Mayan Languages"
+msgstr "Австралија"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr ""
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
 msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
 #. language code: nav nv
@@ -3159,69 +3660,35 @@ msgstr ""
 msgid "Navajo"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr ""
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr ""
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr ""
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr ""
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr ""
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr ""
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+#, fuzzy
+msgid "Low German"
+msgstr "Германски"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr ""
 
-# NL
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Холандија"
-
-# AN
-# fuzzy
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Холандија"
-
-# NC
-# fuzzy
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Македонија"
-
-# NZ
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Нов Зеланд"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
 #. language code: nia
@@ -3229,56 +3696,24 @@ msgstr ""
 msgid "Nias"
 msgstr ""
 
-# NI
-# fuzzy
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Парагвај"
-
-# NG
-# fuzzy
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-#, fuzzy
-msgid "Niger"
-msgstr "Србија"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-# NG
-# fuzzy
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Србија"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr ""
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
 #. language code: nog
@@ -3286,50 +3721,11 @@ msgstr ""
 msgid "Nogai"
 msgstr ""
 
-# FO
-# fuzzy
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-#, fuzzy
-msgid "Norfolk Island"
-msgstr "Ирска"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr ""
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr ""
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr ""
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr ""
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr ""
-
-# NO
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Норвешка"
-
 # NO
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
@@ -3337,18 +3733,9 @@ msgstr "Норвешка"
 msgid "Norwegian"
 msgstr "Норвешка"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr ""
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
 # AU
@@ -3358,6 +3745,16 @@ msgstr ""
 msgid "Nubian Languages"
 msgstr "Австралија"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr ""
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr ""
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3373,13 +3770,9 @@ msgstr ""
 msgid "Nyoro"
 msgstr ""
 
-#. language code: nzi
-#: zypp/LanguageCode.cc:827
-msgid "Nzima"
-msgstr ""
-
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
+#. language code: nzi
+#: zypp/LanguageCode.cc:827
+msgid "Nzima"
 msgstr ""
 
 #. language code: oci oc
@@ -3392,20 +3785,6 @@ msgstr ""
 msgid "Ojibwa"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3426,6 +3805,11 @@ msgstr ""
 msgid "Ossetian"
 msgstr ""
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr ""
+
 # AU
 #. language code: oto
 #: zypp/LanguageCode.cc:843
@@ -3433,12 +3817,14 @@ msgstr ""
 msgid "Otomian Languages"
 msgstr "Австралија"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr ""
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
 #. language code: pal
@@ -3446,55 +3832,11 @@ msgstr ""
 msgid "Pahlavi"
 msgstr ""
 
-# TJ
-# fuzzy
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-#, fuzzy
-msgid "Pakistan"
-msgstr "Тајван"
-
-# PW
-# fuzzy
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Парагвај"
-
-# PW
-# fuzzy
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-#, fuzzy
-msgid "Palauan"
-msgstr "Парагвај"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr ""
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr ""
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr ""
 
-# PA
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Панама"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr ""
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3505,35 +3847,17 @@ msgstr ""
 msgid "Papiamento"
 msgstr ""
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr ""
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr ""
-
-# PY
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
+# PW
+# fuzzy
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+#, fuzzy
+msgid "Palauan"
 msgstr "Парагвај"
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
 #. language code: per fas fa
@@ -3541,62 +3865,30 @@ msgstr ""
 msgid "Persian"
 msgstr ""
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr ""
-
-# PE
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Перу"
-
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr ""
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr ""
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
-# PL
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Полска"
-
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Полски"
 
-# PT
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Португалија"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr ""
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3610,79 +3902,21 @@ msgstr "Португалски"
 msgid "Prakrit Languages"
 msgstr "Австралија"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr ""
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr ""
 
-# QA
-# fuzzy
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "KStep"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr ""
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr ""
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3693,42 +3927,11 @@ msgstr ""
 #: zypp/LanguageCode.cc:887
 #, fuzzy
 msgid "Rapanui"
-msgstr "Јапонија"
-
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr ""
-
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr ""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
+msgstr "Јапонија"
+
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
 msgstr ""
 
 #. language code: roa
@@ -3736,16 +3939,10 @@ msgstr ""
 msgid "Romance (Other)"
 msgstr ""
 
-# RO
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Романија"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Романски"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr ""
 
 # RO
 #. language code: rom
@@ -3754,6 +3951,11 @@ msgstr "Романски"
 msgid "Romany"
 msgstr "Романија"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Романски"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3764,44 +3966,27 @@ msgstr ""
 msgid "Russian"
 msgstr "Руски"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr ""
-
 # RW
 # fuzzy
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+#, fuzzy
+msgid "Sandawe"
 msgstr "Канада"
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr ""
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr ""
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr ""
-
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
 # AU
@@ -3816,68 +4001,29 @@ msgstr "Австралија"
 msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr ""
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr ""
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr ""
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr ""
-
-# RW
-# fuzzy
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-#, fuzzy
-msgid "Sandawe"
-msgstr "Канада"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr ""
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr ""
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr ""
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr ""
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-#, fuzzy
-msgid "Sardinian"
-msgstr "Македонски"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr ""
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Српски"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
 #. language code: sco
@@ -3885,6 +4031,11 @@ msgstr ""
 msgid "Scots"
 msgstr ""
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Хрватски"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3895,38 +4046,14 @@ msgstr ""
 msgid "Semitic (Other)"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr ""
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "Српски"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Српски"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr ""
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
 msgstr ""
 
 #. language code: shn
@@ -3934,152 +4061,98 @@ msgstr ""
 msgid "Shan"
 msgstr ""
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr ""
-
-# LT
-# fuzzy
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-#, fuzzy
-msgid "Sichuan Yi"
-msgstr "Литвански"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr ""
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr ""
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
+# AU
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+#, fuzzy
+msgid "Siouan Languages"
+msgstr "Австралија"
 
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "Словачки"
 
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Словенечки"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
 msgstr ""
 
-# AU
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-#, fuzzy
-msgid "Siouan Languages"
-msgstr "Австралија"
-
 #. language code: sms
 #: zypp/LanguageCode.cc:973
 msgid "Skolt Sami"
 msgstr ""
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
 msgstr ""
 
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "Словачки"
-
-# SK
-# fuzzy
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Словачки"
-
-# SI
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Словенија"
-
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Словенечки"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr ""
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr ""
 
-# FO
-# fuzzy
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-#, fuzzy
-msgid "Solomon Islands"
-msgstr "Ирска"
-
 # SO
 # fuzzy
 #. language code: som so
@@ -4088,100 +4161,41 @@ msgstr "Ирска"
 msgid "Somali"
 msgstr "Романија"
 
-# SO
-# fuzzy
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Романија"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr ""
-
-# AU
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-#, fuzzy
-msgid "Sorbian Languages"
-msgstr "Австралија"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr ""
 
-# ZA
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Јужна Африка"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr ""
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr ""
-
-# ZA
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-#, fuzzy
-msgid "South Korea"
-msgstr "Јужна Африка"
-
-# ZA
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-#, fuzzy
-msgid "Southern Altai"
-msgstr "Јужна Африка"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr ""
-
-# ES
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Шпанија"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 #, fuzzy
 msgid "Spanish"
 msgstr "Дански"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+#, fuzzy
+msgid "Sardinian"
+msgstr "Македонски"
+
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
 msgstr ""
 
-# SD
-# fuzzy
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Звук"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
 #. language code: suk
@@ -4189,33 +4203,19 @@ msgstr ""
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr ""
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr ""
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr ""
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
 #. language code: swa sw
@@ -4223,62 +4223,16 @@ msgstr ""
 msgid "Swahili"
 msgstr ""
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr ""
-
-# SZ
-# fuzzy
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Тајланд"
-
-# SE
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Шведска"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Шведски"
 
-# CH
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Швајцарија"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr ""
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr ""
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 #, fuzzy
@@ -4286,34 +4240,8 @@ msgid "Tahitian"
 msgstr "Хрватски"
 
 #. language code: tai
-#: zypp/LanguageCode.cc:1015
-msgid "Tai (Other)"
-msgstr ""
-
-# TW
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Тајван"
-
-# TJ
-# fuzzy
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-#, fuzzy
-msgid "Tajik"
-msgstr "Тајван"
-
-# TJ
-# fuzzy
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Тајван"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
+#: zypp/LanguageCode.cc:1015
+msgid "Tai (Other)"
 msgstr ""
 
 #. language code: tam ta
@@ -4321,11 +4249,6 @@ msgstr ""
 msgid "Tamil"
 msgstr "Тамилски"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 # QA
 # fuzzy
 #. language code: tat tt
@@ -4339,6 +4262,11 @@ msgstr "KStep"
 msgid "Telugu"
 msgstr ""
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4349,34 +4277,24 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
+# TJ
+# fuzzy
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+#, fuzzy
+msgid "Tajik"
+msgstr "Тајван"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr ""
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Таи"
 
-# TH
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Тајланд"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr ""
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4392,45 +4310,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4443,45 +4340,38 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
-# TT
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Тринидад и Тобаго"
-
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr ""
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr ""
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr ""
+# TR
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+#, fuzzy
+msgid "Turkmen"
+msgstr "Турција"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr ""
 
-# TN
-# fuzzy
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Русија"
-
 # AU
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
@@ -4489,46 +4379,19 @@ msgstr "Русија"
 msgid "Tupi Languages"
 msgstr "Австралија"
 
-# TR
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Турција"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Турски"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr ""
-
-# TR
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-#, fuzzy
-msgid "Turkmen"
-msgstr "Турција"
-
-# TJ
-# fuzzy
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-#, fuzzy
-msgid "Turkmenistan"
-msgstr "Тајван"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
 msgstr ""
 
 #. language code: tyv
@@ -4536,23 +4399,11 @@ msgstr ""
 msgid "Tuvinian"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr ""
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-# UG
-# fuzzy
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Канада"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4564,12 +4415,6 @@ msgid "Uighur"
 msgstr ""
 
 # UA
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Украина"
-
-# UA
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 #, fuzzy
@@ -4581,595 +4426,750 @@ msgstr "Украина"
 msgid "Umbundu"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr ""
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr ""
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr ""
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr ""
+
+# AU
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+#, fuzzy
+msgid "Wakashan Languages"
+msgstr "Австралија"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr ""
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr ""
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr ""
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr ""
+
+# AU
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+#, fuzzy
+msgid "Sorbian Languages"
+msgstr "Австралија"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Валонски"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr ""
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-# US
-# fuzzy
-#. :AND:020:
-#: zypp/CountryCode.cc:159
+# AU
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
 #, fuzzy
-msgid "United Arab Emirates"
-msgstr "СоединеÑ\82иÑ\82е Ð\90меÑ\80иканÑ\81ки Ð\94Ñ\80жави"
+msgid "Yupik Languages"
+msgstr "Ð\90вÑ\81Ñ\82Ñ\80алиÑ\98а"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
 msgstr ""
 
-# US
-# fuzzy
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Соединетите Американски Држави"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr ""
 
-# UM
-# fuzzy
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Соединетите Американски Држави"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
+
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid "Signature file %s not found"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-#, fuzzy
-msgid "Upper Sorbian"
-msgstr "Српски"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-# UY
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Уругвај"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-# TJ
-# fuzzy
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-#, fuzzy
-msgid "Uzbekistan"
-msgstr "Тајван"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
 msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-# VE
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Венецуела"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-# VI
-# fuzzy
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Финска"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-# AU
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-#, fuzzy
-msgid "Wakashan Languages"
-msgstr "Австралија"
-
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Валонски"
-
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-# AU
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-#, fuzzy
-msgid "Yupik Languages"
-msgstr "Австралија"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
 
-# ZM
-# fuzzy
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Јамајка"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Couldn't open file: %s."
+
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:31
+#, fuzzy, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "deinstallation of %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Couldn't open file: %s."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep obsolete %s"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#, fuzzy
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Failed to parse: %s."
 
 #, fuzzy
 #~ msgid "Can't open solv-file: "
 #~ msgstr "Couldn't open file: %s."
 
-# CF
-# fuzzy
-#, fuzzy
-#~ msgid "Centruual African Republic"
-#~ msgstr "Доминиканска Република"
-
 # CL
 #, fuzzy
 #~ msgid "Child of"
 #~ msgstr "Чиле"
 
+# CF
+# fuzzy
 #, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Failed to parse: %s."
+#~ msgid "Centruual African Republic"
+#~ msgstr "Доминиканска Република"
index a33c43e..3abd3b3 100644 (file)
--- a/po/mr.po
+++ b/po/mr.po
@@ -13,17 +13,93 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: KBabel 1.10.2\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal अपवाद"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "अवैध LDAP URL क्वेरी स्ट्रिंग"
+
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "अवैध LDAP URL क्वेरी पॅरामीटर %s"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Url ऑब्जेक्ट क्लोन करण्यात असमर्थ"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "अवैध रिक्त Url ऑब्जेक्ट संदर्भ"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Url भागांचा संबंध जोडण्यात असमर्थ"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "म्युटेक्स अट्रिब्यूट्स सुरू करू शकत नाही"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "रीकर्सिव्ह म्यूटेक्स अट्रिब्यूट स्थापित करु शकत नाही"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "रीकर्सिव्ह म्युटेक्स सुरू करू शकत नाही "
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "म्युटेक्स लॉक मिळवू शकत नाही"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "म्युटेक्स लॉक उघडू शकत नाही"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr ""
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr ""
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
 #, fuzzy
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr "%s चे स्थापित करता येण्याजोगे प्रदाता नाहीत"
+msgid "Obsoletes"
+msgstr "%s :%s ला बाजूला टाकते"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -36,10 +112,6 @@ msgstr "अमलात आणा"
 msgid " execution failed"
 msgstr "DBI Execution failed: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -48,93 +120,117 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s चे %s शी पटत नाही"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+#, fuzzy
+msgid "Error sending update message notification."
+msgstr "की च्या सांकेतिकीकरणादरम्यान चूक आली"
+
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s %s पुरवते, परंतु त्याचे दुसरे स्थापत्य आहे."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "निर्देशानुसार स्थापना मधेच सोडली"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "स्थापित नसलेली"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s ला कुलुप आहे व अस्थापित होऊ शकत नाही"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "हॅलकॉन्टेक्स्ट कनेक्ट केलेले नाही"
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, fuzzy, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s %s ला बाजूला टाकते"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "हॅलड्राईव्हची सुरुवात नाही"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "हॅलव्हाल्यूमची सुरुवात नाही"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "डीबस कनेक्शन निर्माण करणे अशक्य"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: लिभाल कॉन्टेक्स निर्माण करु शकत नाही"
+
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr " libhal_set_dbus_connection: डीबस कनेक्शन निश्चित करू शकत नाही"
+
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "HAL कॉन्टेक्स्ट चा प्रारंभ अशक्य – हाल्ड चालू नाही?"
+
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "CDROM ड्राईव्ह नाही"
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
 #, fuzzy
-msgid "(does not expire)"
-msgstr "'%1' अस्तित्वात नाही."
+msgid "RPM failed: "
+msgstr "अयशस्वी"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "अबखॅजियॅन"
-
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "अचाईनीज"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, fuzzy, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "सार्वजनिक की मिळवणे अशक्य"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "अकोली"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "%s साठी बदललेल्या आकृतीबंध फाईल्स"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "अडँग्मे"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, fuzzy, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm ने %s हे %s म्हणन जतन केले, परंतु फरक सांगणे अशक्य"
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr ""
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr "rpm ने %s हे %s म्हणून जतन केले/nफरकाच्या या पहिल्या 25 ओळी\n"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr ""
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, fuzzy, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm ने %s  हे %s म्हणून जतन केले फरकाच्या या पहिल्या"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr "rpm ने %s हे %s म्हणून जतन केले/nफरकाच्या या पहिल्या 25 ओळी\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -143,20 +239,1671 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "अतिरिक्त rpm आऊटपुट"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "अडायघे"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "बॅकअप %s  निर्माण केले"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "नोंद आढळली नाही"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "नोंद आढळली नाही"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "नोंद आढळली नाही"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+#, fuzzy
+msgid "Repository alias cannot start with dot."
+msgstr " VM चे नाव आकड्याने सुरू होता कामा नये. "
+
+#: zypp/RepoManager.cc:349
+#, fuzzy
+msgid "Service alias cannot start with dot."
+msgstr " VM चे नाव आकड्याने सुरू होता कामा नये. "
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "फाईलरायटिंगसाठी उघडू शकत नाही."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr " डेस्कटॉप आयटेम'%s' उघडू शकत नाही"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "डिरेक्टर %1: %2 निर्माण करता आली नाही."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "फ्लॉपी डिस्कवरुन एरर वाचत आहे."
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "पाठवल्याच्या फाईलचे अवैध नांव"
+
+#: zypp/RepoManager.cc:1740
+#, fuzzy, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "रिसोर्सेस जतन करत आहे"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr " डेस्कटॉप आयटेम'%s' उघडू शकत नाही"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Url स्कीम %sला अनुमती देत नाही"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "अवैध %s कॉम्पोनन्ट %s"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "अवैध %s कॉम्पोनन्ट"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "या URL साठी क्वेरी स्ट्रिंग पार्सिंगचे समर्थन नाही"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "URL स्कीम हा एक आवश्यक भाग आहे"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "अवैध Url स्कीम %s"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Url स्कीम उपभोक्त्याच्या नावाला अनुमती देत नाही"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Url स्कीम पासवर्डला अनुमती देत नाही"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Url स्कीमला मुख्य भागाची गरज असते"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Url स्कीम मुख्य भागाला अनुमती देत नाही"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "अवैध मुख्य भाग %s"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Url स्कीम पोर्टला अनुमती देत नाही"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "अवैध पोर्ट भाग %s"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Url स्कीमला पाथच्या नावाची गरज असते"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "अथॉरिटी उपस्थित असेल तर सापेक्ष पाथला अनुमती नाही"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "एनकोडेड स्ट्रिंगमधे NUL बाईटचा समावेश आहे"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "अवैध पॅरामीटर अरे स्प्लिट सेपरेटर कॅरॅक्टर"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "अवैध पॅरामीटर मॅप स्प्लिट सेपरेटर कॅरॅक्टर"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "अवैध पॅरामीटर अरे जॉईन सेपरेटर कॅरॅक्टर "
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "फाईल उघडता येत नाही %1."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "फाईल उघडता येत नाही %1."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "%s आढळत नाही."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, fuzzy, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "%s आढळत नाही."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr " कनेक्ट करतांना आदेश वापरला "
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+#, fuzzy
+msgid "(does not expire)"
+msgstr "'%1' अस्तित्वात नाही."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "अनोळखी"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+#, fuzzy
+msgid "The vendor does not provide support."
+msgstr "डिस्क अस्तित्वात नाही"
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "अज्ञात देश:"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "कोड नाही"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "अंडोरा"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "संयुक्त अरब अमिराती"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "अफगाणिस्तान"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "ऑन्टिग्वा व बर्बुडा"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "अंग्विला"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "अल्बेनिया"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "आर्मेनिया"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "नेदरलॅन्ड्स अन्टिलेस"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "अंगोला"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "अंटार्क्टिका"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "अर्जेंटिना"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "अमेरिकन सॅमोआ"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "ऑस्ट्रिया"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "आस्ट्रेलिया"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "अरूबा"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "अलॅन्ड बेटे"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "अझरबैजान"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "बोस्निया व हर्जेगोव्हिना"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "बारबॅडॉस"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "बांग्लादेश"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "बेल्जियम"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "बर्किना फासो"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "बल्गेरिया"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "बहारिन"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "बुरूंडी"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "बेनिन"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "बरमुडा"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "ब्रुनेई दारूसलाम"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "बोलिव्हिया"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "ब्राझील"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "बहामास"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "भूतान"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "बोव्हेच बेट"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "बोटस्वाना"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "बेलारूस"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "बेलिझे"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "कॅनडा"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "कॉकस (कीलींग) बेटे"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "काँगो"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "मध्य आफ्रिकी प्रजासत्ताक"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "स्वित्झर्लंड"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "कोट डी आयव्हरी"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "कूक बेटे"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "चिली"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "कॅमेरून"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "चीन"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "कोलंबिया"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "कोस्टा रिका"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "क्युबा"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "केप व्हेर्डे"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "ख्रिसमस बेट"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "सायप्रस"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "चेक प्रजासत्ताक"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "जर्मनी"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "दिजबौती"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "डेनमार्क"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "डॉमिनिका"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "डॉमिनिकन प्रजासत्ताक"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "अल्जेरिया"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "इक्वेडोर"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "एस्टोनिया"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "ईजिप्त"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "पश्चिम सहारा"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "एरिट्रिआ"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "स्पेन"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "इथिओपिया"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "फिनलँड"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "फिजी"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "फाल्कलॅन्ड बेटे (माल्व्हिनास)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "मिक्रोनेशिया फेडरेटेड स्टेट्स"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "फरोई बेटे"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "फ्रान्स"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "मेट्रॉपॉलिटन फ्रान्स"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "गॅबॉन"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr ".युनायटेड किंगडम"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "ग्रेनाडा"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "जॉर्जिया"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "फ्रेच गुआना"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "जर्मनी"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "घाना"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "जिब्राल्टर"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "ग्रीनलॅन्ड"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "गॅम्बिया"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "ग्विनिआ"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "ग्वाडेलोप"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "इक्वेटोरियल गुनिआ"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "ग्रीस"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "दक्षिण जॉर्जिया व दक्षिण सॅन्डविच बेटे"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "ग्वाटेमाला"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "ग्वॅम"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "ग्विनिआ-बिसाऊ"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "गयाना"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "हाँगकाँग"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "हर्ड बेटे व मॅकडॉनल्ड बेटे"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "होंडुरास"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "क्रोएशिया"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "हैती"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "हंगेरी"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "इंडोनेशिया"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "आयर्लंड"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "इस्रेल"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "भारत"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "ब्रिटिश हिंदी महासागर प्रदेश"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "इराक"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "इराण"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "आइसलॅन्ड"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "ईटाली"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "जमैका"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "जॉर्डन"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "जपान"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "केनिया"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "किरगिझस्तान"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "कंबोडिया"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "किरीबती"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "कॉमोरोस"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "सेंट किट्स व नेव्हिस"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "उत्तर कोरिया"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "दक्षिण कोरिया"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "कुवैत"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "केमन बेटे"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "कझाकस्तान"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "लाओ पीपल्स डेमोक्रॅटिक रिपल्बिक"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "लेबनॉन"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "सेंट ल्युसिया"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "लाएचटेन्स्टिन"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "श्रीलंका"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "लायबेरिया"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "लेसोथो"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "लिथुएनिया"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "लक्झेमबर्ग"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "लॅटव्हिया"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "लिबिया"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "मोरोक्को"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "मोनॅको"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "मॉल्दोव्हा"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "मोंगो"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "सॅन मारिनो"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "मादागास्कर"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "मार्शल बेटे"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "मासेडोनिया"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "माली"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "म्यानमार"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "मंगोलिया"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "मकाओ"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "उत्तरी मेरियाना बेटे"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "मार्टिनिक"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "मॉरिटॅनिया"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "माँतेसेरत"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "माल्टा"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "मॉरिशस"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "मालदीव्हज"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "मालावी"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "मेक्सिको"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "मलेशिया"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "मोझाम्बिक"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "नामिबिया"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "न्यू कॅलेडोनिया"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "नायजेर"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "नॉरफॉक बेटे"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "नायजेरिया"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "निकारागुआ"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "नेदरलॅन्डस"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "नॉर्वे"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "नेपाळ"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "नौरू"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "न्यूए"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "न्यूझीलंड"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "ओमान"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "पनामा"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "पेरू"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "फ्रेंच पॉलिनेसिया"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "पापुआ न्यू जिनिव्हा"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "फिलीपीन्स"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "पाकिस्तान"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "पोलंड"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "सेंट पिअर व मिक्वेलॉन"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "पिटकैर्न"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "प्युर्टो रिको"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "पॅलेस्टिनी भूप्रदेश"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "पोर्तुगाल"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "पलाऊ"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "पॅरॅग्वे"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "कतार"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "रीयुनियन"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "रूमेनिया"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "सर्बियन"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "रशियन फेडरेशन"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "रवांडा"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "सौदी अरबस्तान"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "सॉलोमन बेटे"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "सेशेल्स"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "सुदान"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "स्वीडन"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "सिंगापुर"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "सेंट हेलेना"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "स्लोव्हेनिया"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "स्वॅलबार्ड व जन मायेन"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "स्लोव्हाकिया"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "सिएरा लिओन"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "सॅन मारिनो"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "सेनेगल"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "सोमालिया"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "सुरीनाम"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "साओ टोम व प्रिन्सिप"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "एल सॅल्व्हेडोर"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "सायरिया"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "स्वाझिलॅन्ड"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "टर्क्स व कैकॉस बेटे"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "चॅड"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "फ्रेंच दक्षिणी भूप्रदेश"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "टोगो"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "थायलंड"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "ताजिकीस्तान"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "टोकेलाऊ"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "तुर्कमेनिस्तान"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "ट्युनिशिया"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "टोंगा"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "पूर्व तिमोर"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "तुर्कस्तान"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "त्रिनिदाद व टोबॅगो"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "तुवालू"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "तैवान"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "टांझानिया"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "युक्रेन"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "युगांडा"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "अमेरिकेतील छोटी बेटे"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "अमेरिका"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "ऊरुग्वे"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "उझबेकिस्तान"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "होली सी (व्हॅटिकन सिटी देश)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "सेंट विन्सेन्ट व ग्रेनाडिन्स"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "व्हेनेझुएला"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "ब्रिटिश व्हर्जिन बेटे"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "व्हर्जिन आयलंड्स, अमेरिका"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "व्हिएटनाम"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "वानुआतू"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "वॉलिस व फुतुना"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "सॅमोआ"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "येमेन"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "मायोटे"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "दक्षिण आफ्रिका"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "झांबिया"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "झिंबाब्बे"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "अज्ञात भाषा"
 
 #. language code: aar aa
 #: zypp/LanguageCode.cc:161
 msgid "Afar"
 msgstr "अफार"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "अफगाणिस्तान"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "अबखॅजियॅन"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "अचाईनीज"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "अकोली"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "अडँग्मे"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "अडायघे"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "आफ्रो-एशियाटिक (अन्य)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -168,11 +1915,6 @@ msgstr "आफ्रिहिली"
 msgid "Afrikaans"
 msgstr "आफ्रिकान्स"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "आफ्रो-एशियाटिक (अन्य)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -188,16 +1930,6 @@ msgstr "अकान"
 msgid "Akkadian"
 msgstr "अक्कादियॅन"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "अलॅन्ड बेटे"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "अल्बेनिया"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -208,58 +1940,25 @@ msgstr "अल्बेनियन"
 msgid "Aleut"
 msgstr "अलौत"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "अल्जेरिया"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "अल्गोन्क्वियन भाषा"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "अल्ताईक (अन्य)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "अमेरिकन सॅमोआ"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "दक्षिण अल्तई"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "अम्हॅरिक"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "अंडोरा"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "अंगोला"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "अंग्विला"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "अंटार्क्टिका"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "ऑन्टिग्वा व बर्बुडा"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "इंग्रजी जुनी (ca.450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -271,55 +1970,40 @@ msgstr "अपाची भाषा"
 msgid "Arabic"
 msgstr "अरेबिक"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "अरॅगोनीज"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "अरॅमॅइक"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "अरापाहो"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "अरॅगोनीज"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "अर्मेनियन"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "अरौकॅनियन"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "अरावाक"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "अर्जेंटिना"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "आर्मेनिया"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "अर्मेनियन"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "अरापाहो"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "आर्टिफिशियल (अन्य)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "à¤\85रà¥\82बा"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "à¤\85रावाà¤\95"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -336,32 +2020,11 @@ msgstr "अस्टुरियन"
 msgid "Athapascan Languages"
 msgstr "अथापास्कन भाषा"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "आस्ट्रेलिया"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "ऑस्ट्रेलियन भाषा"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "ऑस्ट्रिया"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "ऑस्ट्रोनेशियन (अन्य)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -382,125 +2045,66 @@ msgstr "अवधी"
 msgid "Aymara"
 msgstr "ऐमारा"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "अझरबैजान"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "अझरबैजानी"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "बहामास"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "बहारिन"
-
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "बालीनीज"
-
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "बाल्टिक (अन्य)"
-
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "बलुची"
-
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "बाम्बारा"
-
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "बामिलिक भाषा"
-
 #. language code: bad
 #: zypp/LanguageCode.cc:237
 msgid "Banda"
 msgstr "बांदा"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "बाà¤\82à¤\97à¥\8dलादà¥\87श"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "बामिलिà¤\95 à¤­à¤¾à¤·à¤¾"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "बाà¤\82तà¥\82 (à¤\85नà¥\8dय)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "बशà¤\95à¥\80र"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "बारबà¥\85डà¥\89स"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "बलà¥\81à¤\9aà¥\80"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "बासा"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "बामà¥\8dबारा"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "बशà¤\95à¥\80र"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "बालà¥\80नà¥\80à¤\9c"
 
 #. language code: baq eus eu
 #: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 msgid "Basque"
 msgstr "बास्क"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "बाटक (इंडोनेशिया)"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "बासा"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "बाल्टिक (अन्य)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "बेजा"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "बेलारूस"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "बेलारूसियन"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "बेल्जियम"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "बेलिझे"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -511,311 +2115,100 @@ msgstr "बम्बा"
 msgid "Bengali"
 msgstr "बंगाली"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "बेनिन"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "बर्बर (अन्य)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "बरमुडा"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "भोजपुरी"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "भूतान"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
 msgstr "बिहारी"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "बिकोल"
-
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "बिनी"
-
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "बिस्लामा"
-
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "ब्लिन"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "बोलिव्हिया"
-
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "बोस्निया व हर्जेगोव्हिना"
-
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "बोस्नीयन"
-
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "बोटस्वाना"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "बोव्हेच बेट"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "ब्रज"
-
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "ब्राझील"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "ब्रेटॉन"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "ब्रिटिश हिंदी महासागर प्रदेश"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "ब्रिटिश व्हर्जिन बेटे"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "ब्रुनेई दारूसलाम"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "बगिनीज"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "बल्गेरिया"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "बल्गेरियन"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "बरियत"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "बर्किना फासो"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "बर्मीज"
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "बुरूंडी"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "कॅडो"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "कंबोडिया"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "कॅमेरून"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "फाईल निर्माण करु शकत नाही"
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "म्युटेक्स लॉक मिळवू शकत नाही"
-
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "%s आढळत नाही."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr " डेस्कटॉप आयटेम'%s' उघडू शकत नाही"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "डिरेक्टर %1: %2 निर्माण करता आली नाही."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr " डेस्कटॉप आयटेम'%s' उघडू शकत नाही"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:381
-#, fuzzy, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "%s आढळत नाही."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "म्युटेक्स अट्रिब्यूट्स सुरू करू शकत नाही"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "रीकर्सिव्ह म्युटेक्स सुरू करू शकत नाही "
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "बिकोल"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "फाईलरायटिंगसाठी उघडू शकत नाही."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "बिनी"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "फाà¤\88ल à¤\89à¤\98डता à¤¯à¥\87त à¤¨à¤¾à¤¹à¥\80 %1."
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "बिसà¥\8dलामा"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "फाà¤\88ल à¤\89à¤\98डता à¤¯à¥\87त à¤¨à¤¾à¤¹à¥\80 %1."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "सिà¤\95सिà¤\95ा"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "फाà¤\88ल à¤\89à¤\98डता à¤¯à¥\87त à¤¨à¤¾à¤¹à¥\80 %1."
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "बाà¤\82तà¥\82 (à¤\85नà¥\8dय)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, fuzzy, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "%s वरून %s पुरवू शकत नाही"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "बोस्नीयन"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "म्युटेक्स लॉक उघडू शकत नाही"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "ब्रज"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "रीकर्सिव्ह म्यूटेक्स अट्रिब्यूट स्थापित करु शकत नाही"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "ब्रेटॉन"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "à¤\95à¥\85नडा"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "बाà¤\9fà¤\95 (à¤\87à¤\82डà¥\8bनà¥\87शिया)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "बरियत"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr " डेस्कटॉप आयटेम'%s' उघडू शकत नाही"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "बगिनीज"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "बल्गेरियन"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "बर्मीज"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "ब्लिन"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "फाà¤\88ल %1 à¤²à¤¿à¤¹à¤¿à¤¤à¤¾ à¤¯à¥\87त à¤¨à¤¾à¤¹à¥\80."
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "à¤\95à¥\85डà¥\8b"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "à¤\95à¥\87प à¤µà¥\8dहà¥\87रà¥\8dडà¥\87"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "मधà¥\8dय à¤\85मà¥\87रिà¤\95न à¤\87à¤\82डियन (à¤\85नà¥\8dय)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -832,11 +2225,6 @@ msgstr "कॅटलॅन"
 msgid "Caucasian (Other)"
 msgstr "कॉकेशियन (अन्य)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "केमन बेटे"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -847,167 +2235,80 @@ msgstr "सेबुआनो"
 msgid "Celtic (Other)"
 msgstr "सेल्टिक (अन्य)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "मध्य आफ्रिकी प्रजासत्ताक"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "मध्य अमेरिकन इंडियन (अन्य)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "चॅड"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "चगतई"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "चॅमिक भाषा"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "चॅमोरो"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "%s साठी बदललेल्या आकृतीबंध फाईल्स"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "चेचेन"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "चेरोकी"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "चेयेनी"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "चीबचा"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "चिचेवा"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "चिली"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "चेचेन"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "à¤\9aà¥\80न"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "à¤\9aà¤\97तà¤\88"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "चीनी"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "चुकीज"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "मारी"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "चीनूक जारगॉन"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "चिपेव्यान"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "चोकटा"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "ख्रिसमस बेट"
-
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "चर्च स्लाविक"
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "चुकीज"
-
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "चुवाश"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "क्लासिकल नेवाडी"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "कॉकस (कीलींग) बेटे"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "कोलंबिया"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr " कनेक्ट करतांना आदेश वापरला "
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "चिपेव्यान"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "à¤\95à¥\89मà¥\8bरà¥\8bस"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "à¤\9aà¥\87रà¥\8bà¤\95à¥\80"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "चर्च स्लाविक"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "काँगो"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "चुवाश"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "कूक बेटे"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "चेयेनी"
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "चॅमिक भाषा"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1024,31 +2325,6 @@ msgstr "कोर्निश"
 msgid "Corsican"
 msgstr "कोर्सिकन"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "कोस्टा रिका"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "कोट डी आयव्हरी"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "क्री"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "क्रीक"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "क्रेओलेस व पिडगिन्स (अन्य)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1064,46 +2340,36 @@ msgstr "क्रेओलेस व पिडगिन्स, फ्रें
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "क्रेओलेस व पिडगिन्स, पोर्तुगीजवर आधारित (अन्य)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "क्री"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "क्रिमियन टाटार"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "क्रोएशिया"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "क्रोएशियन"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "क्रेओलेस व पिडगिन्स (अन्य)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "à¤\95à¥\8dयà¥\81बा"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "à¤\95ाशà¥\81बियन"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "कुशिटीक (अन्य)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "सायप्रस"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "चेक"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "चेक प्रजासत्ताक"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1129,10 +2395,15 @@ msgstr "डायाक"
 msgid "Delaware"
 msgstr "डेलावेअर"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "डेनमार्क"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "स्लाव (अथॅपास्कन)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "डोग्रीब"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1144,71 +2415,36 @@ msgstr "डिनका"
 msgid "Divehi"
 msgstr "दिवेही"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "दिजबौती"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "डोगरी"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "डोग्रीब"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "डॉमिनिका"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "डॉमिनिकन प्रजासत्ताक"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "द्रविडियन (अन्य)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "लोअर सर्बियन"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "दुआला"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "डच, मध्य (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "डच"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "डच, मध्य (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1219,26 +2455,11 @@ msgstr "ड्यूला"
 msgid "Dzongkha"
 msgstr "झोंगखा"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "पूर्व तिमोर"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "इक्वेडोर"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "एफिक"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "ईजिप्त"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1249,111 +2470,31 @@ msgstr "इजिप्शियन (प्राचीन)"
 msgid "Ekajuk"
 msgstr "एकाजुक"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "एल सॅल्व्हेडोर"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "इलॅमाइट"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-#, fuzzy
-msgid "Empty host name in URI"
-msgstr "रिक्त CA नांव."
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "एनकोडेड स्ट्रिंगमधे NUL बाईटचा समावेश आहे"
-
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "इंग्रजी"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "इंग्रजी, मध्य (1100-1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "इंग्रजी जुनी (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "इक्वेटोरियल गुनिआ"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "एरिट्रिआ"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-#, fuzzy
-msgid "Error sending update message notification."
-msgstr "की च्या सांकेतिकीकरणादरम्यान चूक आली"
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "इलॅमाइट"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "एरझ्या"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "इंग्रजी"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "इंग्रजी, मध्य (1100-1500)"
 
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "एस्पेरॅन्टो"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "एस्टोनिया"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "एस्टोनियन"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "इथिओपिया"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1364,210 +2505,31 @@ msgstr "इवे"
 msgid "Ewondo"
 msgstr "इवोंडो"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "VM सुरू करण्यात अयशस्वी."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr " %s - %s उघडणे अशक्य\n"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, fuzzy, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"पॅकेज %s एकत्रित तपासणीत अयशस्वी. आपल्याला ते पुन्हा डाऊनलोड करण्याचा प्रयत्न करायचाआहे?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, fuzzy, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "सार्वजनिक की मिळवणे अशक्य"
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "मॉड्युल लोड करण्यात अपयश \"%s\"."
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "फाल्कलॅन्ड बेटे (माल्व्हिनास)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "फँग"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "फान्ती"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "फरोई बेटे"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "फरोसी"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "मिक्रोनेशिया फेडरेटेड स्टेट्स"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "फिजी"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "फान्ती"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "फिजियन"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "भांडारात फाईल %1 आढळली नाही"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "फिलिपिनो"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "फिनलँड"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1578,40 +2540,16 @@ msgstr "फिनिश"
 msgid "Finno-Ugrian (Other)"
 msgstr "फिनो-उग्रीयन (अन्य)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "फॉन"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "फ्रान्स"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "फ्रेंच"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "फ्रेच गुआना"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "फ्रेंच पॉलिनेसिया"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "फ्रेंच दक्षिणी भूप्रदेश"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1623,50 +2561,25 @@ msgid "French, Old (842-ca.1400)"
 msgstr "फ्रेंच, जुनी(842-ca.1400)"
 
 #. language code: fry fy
-#: zypp/LanguageCode.cc:453
-msgid "Frisian"
-msgstr "फ्रिसीयन"
-
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "फ्रुलियन"
+#: zypp/LanguageCode.cc:453
+msgid "Frisian"
+msgstr "फ्रिसीयन"
 
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "फुलाह"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "फ्रुलियन"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "गा"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "गॅबॉन"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "गेलिक"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "गॅलीसियन"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "गॅम्बिया"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "गांडा"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1677,15 +2590,10 @@ msgstr "गायो"
 msgid "Gbaya"
 msgstr "ग्बाया"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "गीझ"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "जॉर्जिया"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "जर्मनिक (अन्य)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1697,6 +2605,36 @@ msgstr "ज़ॉर्जियन"
 msgid "German"
 msgstr "जर्मन"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "गीझ"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "गिल्बर्टीज"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "गेलिक"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "आयरिश"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "गॅलीसियन"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "मँक्स"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1707,30 +2645,6 @@ msgstr "जर्मन , मध्यम जास्त (ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "जर्मन, जुनी जास्त (ca.750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "जर्मनिक (अन्य)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "जर्मनी"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "घाना"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "जिब्राल्टर"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "गिल्बर्टीज"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1751,11 +2665,6 @@ msgstr "गोथिक"
 msgid "Grebo"
 msgstr "ग्रेबो"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "ग्रीस"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1766,62 +2675,16 @@ msgstr "ग्रीक, प्राचीन (1453 पर्यंत)"
 msgid "Greek, Modern (1453-)"
 msgstr "ग्रीक, आधुनिक (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "ग्रीनलॅन्ड"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "ग्रेनाडा"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "ग्वाडेलोप"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "ग्वॅम"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "गुरानी"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "ग्वाटेमाला"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "जर्मनी"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "ग्विनिआ"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "ग्विनिआ-बिसाऊ"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "गुजराती"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "गयाना"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1832,52 +2695,21 @@ msgstr "ग्विच’इन"
 msgid "Haida"
 msgstr "हैदा"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "हैती"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "हैतियन"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal अपवाद"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "हॅलकॉन्टेक्स्ट कनेक्ट केलेले नाही"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "हॅलड्राईव्हची सुरुवात नाही"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "हॅलव्हाल्यूमची सुरुवात नाही"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "हौसा"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "हवाईयन"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "हर्ड बेटे व मॅकडॉनल्ड बेटे"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1903,16 +2735,6 @@ msgstr "हिमाचली"
 msgid "Hindi"
 msgstr "हिन्दी"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "हिरी मोतू"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1923,31 +2745,21 @@ msgstr "हित्तिते"
 msgid "Hmong"
 msgstr "ह्माँग"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "होली सी (व्हॅटिकन सिटी देश)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "होंडुरास"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "हिरी मोतू"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "हाà¤\81à¤\97à¤\95ाà¤\81à¤\97"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "à¤\85पà¥\8dपर à¤¸à¥\89रà¥\8dबियन"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "हंगेरियन"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "हंगेरी"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1958,10 +2770,10 @@ msgstr "हुपा"
 msgid "Iban"
 msgstr "ईबान"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "à¤\86à¤\87सलà¥\85नà¥\8dड"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "à¤\87à¤\97à¥\8dबà¥\8b"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1973,250 +2785,105 @@ msgstr "आईस्लॅन्डिक"
 msgid "Ido"
 msgstr "इडो"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "à¤\87à¤\97à¥\8dबà¥\8b"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "सिà¤\9aà¥\81à¤\86न à¤¯à¥\80"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "ईजो"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "इनुक्तितूत"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "इन्टरलिंग"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "इलोको"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "इनारी सॅमी"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "भारत"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "इन्टरलिंगुआ (आंतरराष्ट्रीय ऑक्सिलरी भाषा संघटना"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "इंडिक (अन्य)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "इंडो-युरोपियन (अन्य)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "इंडोनेशिया"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "इंडोनेशियन"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "इंडो-युरोपियन (अन्य)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "इंगुश"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "निर्देशानुसार स्थापना मधेच सोडली"
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "इन्टरलिंगुआ (आंतरराष्ट्रीय ऑक्सिलरी भाषा संघटना"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "इन्टरलिंग"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "इनुक्तितूत"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "इनुपिआक"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "अवैध %s कॉम्पोनन्ट"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "अवैध %s कॉम्पोनन्ट %s"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "अवैध LDAP URL क्वेरी पॅरामीटर %s"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "अवैध LDAP URL क्वेरी स्ट्रिंग"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "अवैध Url स्कीम %s"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "अवैध रिक्त Url ऑब्जेक्ट संदर्भ"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "अवैध मुख्य भाग %s"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "अवैध पॅरामीटर अरे जॉईन सेपरेटर कॅरॅक्टर "
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "अवैध पॅरामीटर अरे स्प्लिट सेपरेटर कॅरॅक्टर"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "अवैध पॅरामीटर मॅप स्प्लिट सेपरेटर कॅरॅक्टर"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "अवैध पोर्ट भाग %s"
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "अवैध Url स्कीम %s"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "पाठवल्याच्या फाईलचे अवैध नांव"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "इराण"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "इराणीयन (अन्य)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "इराक"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "आयर्लंड"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "आयरिश"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "आयरिश, मध्य (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "आयरिश, जुनी (900 पर्यंत)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "इरोकोईयन भाषा"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "इस्रेल"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "ईटालियन"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "ईटाली"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "जमैका"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "जावानीज"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "à¤\9cपान"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "लà¥\89à¤\9cà¥\8dबन"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "जपानी"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "जावानीज"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "जॉर्डन"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "ज्युडेओ-पर्शियन"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "ज्युडेओ-अरेबिक"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "ज्युडेओ-पर्शियन"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "कबर्डियन"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "कारा-कल्पक"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2233,11 +2900,6 @@ msgstr "काचीन"
 msgid "Kalaallisut"
 msgstr "कलालिसट"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "कल्माइक"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2248,21 +2910,6 @@ msgstr "कांबा"
 msgid "Kannada"
 msgstr "कानाडी"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "कानुरी"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "कारा-कल्पक"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "कराचाय-बल्कर"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2273,10 +2920,10 @@ msgstr "कारेन"
 msgid "Kashmiri"
 msgstr "काश्मिरी"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "à¤\95ाशà¥\81बियन"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "à¤\95ानà¥\81रà¥\80"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2288,31 +2935,26 @@ msgstr "कावी"
 msgid "Kazakh"
 msgstr "कझाक"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "कझाकस्तान"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "केनिया"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "कबर्डियन"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "खासी"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "खमेर"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "खोईसन (अन्य)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "खमेर"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2323,11 +2965,6 @@ msgstr "खोटानीज"
 msgid "Kikuyu"
 msgstr "किकूयू"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "किम्बुन्डू"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2338,15 +2975,15 @@ msgstr "किन्यारवंडा"
 msgid "Kirghiz"
 msgstr "किरगीझ"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "à¤\95िरà¥\80बतà¥\80"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "à¤\95िमà¥\8dबà¥\81नà¥\8dडà¥\82"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "à¤\95à¥\8dलिà¤\82à¤\97à¥\89न"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "à¤\95à¥\8bà¤\95णà¥\80"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2358,11 +2995,6 @@ msgstr "कोमी"
 msgid "Kongo"
 msgstr "काँगो"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "कोकणी"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2378,11 +3010,21 @@ msgstr "कोस्रीयन"
 msgid "Kpelle"
 msgstr "क्पेल्ले"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "कराचाय-बल्कर"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "क्रू"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "कुरुख"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2398,26 +3040,11 @@ msgstr "कुम्यक"
 msgid "Kurdish"
 msgstr "कुर्दिश"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "कुरुख"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "कुतेनाय"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "कुवैत"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "किरगिझस्तान"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2438,68 +3065,21 @@ msgstr "लांबा"
 msgid "Lao"
 msgstr "लाओ"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "लाओ पीपल्स डेमोक्रॅटिक रिपल्बिक"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "लॅटिन"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "लॅटव्हिया"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "लॅटव्हियन"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "लेबनॉन"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "लेसोथो"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "लेझगियान"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "लायबेरिया"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "लिबिया"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "लाएचटेन्स्टिन"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2510,61 +3090,46 @@ msgstr "लिंबुर्गन"
 msgid "Lingala"
 msgstr "लिंगाला"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "लिथुएनिया"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "लिथुएनियन"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "लॉज्बन"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "लो जर्मन"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "लोअर सर्बियन"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "मोंगो"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "लोझी"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "लà¥\81बा-à¤\95à¤\9fà¤\82à¤\97ा"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "लà¤\95à¥\8dà¤\9dà¥\87मà¥\8dबरà¥\8dà¤\97िश"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "लुबा-लुलुआ"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "लुबा-कटंगा"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "गांडा"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "लुईझेनो"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "लुले सॅमी"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2580,35 +3145,11 @@ msgstr "लुओ (केनिया व तांझानिया)"
 msgid "Lushai"
 msgstr "लुशाई"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "लक्झेमबर्ग"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "लक्झेम्बर्गिश"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "मकाओ"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "मासेडोनिया"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "मेसेडोनियन"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "मादागास्कर"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2619,6 +3160,11 @@ msgstr "मदुरीज"
 msgid "Magahi"
 msgstr "मगही"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "मार्शलीज"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2629,178 +3175,60 @@ msgstr "मैथिली"
 msgid "Makasar"
 msgstr "मकासार"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "मलागासी"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "मालावी"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "मलय"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "मल्याळम"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "मलेशिया"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "मालदीव्हज"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "माली"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "माल्टा"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "माल्टीज"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "मांचू"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "मंदार"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "मन्डिंगो"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "मणिपुरी"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "मोनोबो भाषा"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "मँक्स"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
-msgstr "माओरी"
-
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
-msgid "Marathi"
-msgstr "मराठी"
-
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "मारी"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "मार्शल बेटे"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "मार्शलीज"
+msgstr "माओरी"
 
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "मारà¥\8dà¤\9fिनिà¤\95"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "à¤\91सà¥\8dà¤\9fà¥\8dरà¥\8bनà¥\87शियन (à¤\85नà¥\8dय)"
 
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "मारवाडी"
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+msgid "Marathi"
+msgstr "मराठी"
 
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "मसई"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "मॉरिटॅनिया"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "मॉरिशस"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "मायन भाषा"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "मायोटे"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "मलय"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "मोक्षा"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "मंदार"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "मेंडे"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "मेट्रॉपॉलिटन फ्रान्स"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "मेक्सिको"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "आयरिश, मध्य (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2812,87 +3240,61 @@ msgstr "मि’क्माक"
 msgid "Minangkabau"
 msgstr "मिनँगकाबाऊ"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "मिरॅन्डिस"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "किरकोळ अन्य भाषा"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "मॉन-खमेर (अन्य)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "मलागासी"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "माल्टीज"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "मांचू"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "मणिपुरी"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "मोनोबो भाषा"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "मोहॉक"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "मोक्षा"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "मॉल्देव्हियन"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "मॉल्दोव्हा"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "मॉन-खमेर (अन्य)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "मोनॅको"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "मोंगो"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "मंगोलिया"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "मंगोलियन"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "मोंगो"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "माँतेसेरत"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "मोरोक्को"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "मोस्सी"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "मोझाम्बिक"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2903,211 +3305,141 @@ msgstr "अनेक भाषा"
 msgid "Munda languages"
 msgstr "मुंडा भाषा"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "म्यानमार"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "क्रीक"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "मिरॅन्डिस"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "मारवाडी"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "मायन भाषा"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "एरझ्या"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "नाहुआटल"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "नामिबिया"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "à¤\89तà¥\8dतर à¤\85मà¥\87रिà¤\95à¥\80 à¤­à¤¾à¤°à¤¤à¥\80य"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "नौरू"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "नेपोलिटन"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "नाव्हाजो"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "न्डेबेले उत्तर"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "न्डेबेले, दक्षिण"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "न्डेबेले उत्तर"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
-msgid "Ndonga"
-msgstr "न्डोंगा"
-
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "नेपोलिटन"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "नेपाळ"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "नेपाल भासा"
-
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
-msgstr "नेपाळी"
-
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "नेदरलॅन्डस"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "नेदरलॅन्ड्स अन्टिलेस"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "न्यू कॅलेडोनिया"
+msgid "Ndonga"
+msgstr "न्डोंगा"
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "नà¥\8dयà¥\82à¤\9dà¥\80लà¤\82ड"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "लà¥\8b à¤\9cरà¥\8dमन"
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
+msgstr "नेपाळी"
+
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "नेपाल भासा"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "निअस"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "निकारागुआ"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "नायजेर"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "नायजेर-कोर्डोफॅनियन (अन्य)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "नायजेरिया"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "निलो-सहारन (अन्य)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "न्यूए"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "नियुईन"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "कोड नाही"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "नॉर्वेजियन न्योर्स्क"
 
-#: zypp/repo/RepoProvideFile.cc:265
-#, fuzzy
-msgid "No url in repository."
-msgstr "भाà¤\82डारात à¤«à¤¾à¤\88ल %1 à¤\86ढळलà¥\80 à¤¨à¤¾à¤¹à¥\80"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "नà¥\89रà¥\8dवà¥\87à¤\9cियन à¤¬à¥\8bà¤\95मल"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "नोगई"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "नॉरफॉक बेटे"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "नॉर्से, जुनी"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "उत्तर अमेरिकी भारतीय"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "उत्तर कोरिया"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "उत्तरी मेरियाना बेटे"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "उत्तरी सॅमी"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "उत्तरी सोथो"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "नॉर्वे"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "नॉर्वेजियन"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "नॉर्वेजियन बोकमल"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "नॉर्वेजियन न्योर्स्क"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "CDROM ड्राईव्ह नाही"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "उत्तरी सोथो"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "नुबियन भाषा"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "क्लासिकल नेवाडी"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "चिचेवा"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3128,11 +3460,6 @@ msgstr "न्योरो"
 msgid "Nzima"
 msgstr "न्झिमा"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "%s :%s ला बाजूला टाकते"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3143,20 +3470,6 @@ msgstr "ऑसिटन (1500 नंतर)"
 msgid "Ojibwa"
 msgstr "ऑजिब्वा"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "ओमान"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3177,65 +3490,36 @@ msgstr "ओसाज"
 msgid "Ossetian"
 msgstr "ऑसेटियन"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "टर्किश, ओटोमन (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "ऑक्टोमियन भाषा"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, fuzzy, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"पॅकेज %s एकत्रित तपासणीत अयशस्वी. आपल्याला ते पुन्हा डाऊनलोड करण्याचा प्रयत्न करायचाआहे?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "पापुआन (अन्य)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "पांगेसिनन"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "पल्हवी"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "पाकिस्तान"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "पलाऊ"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "पलौअन"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "पॅलेस्टिनी भूप्रदेश"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "पाली"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "पम्पॅन्गा"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "पनामा"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "पांगेसिनन"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3246,94 +3530,45 @@ msgstr "पंजाबी"
 msgid "Papiamento"
 msgstr "पापिअमेन्टो"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "पापुआ न्यू जिनिव्हा"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "पापुआन (अन्य)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "पॅरॅग्वे"
-
-#: zypp/media/MediaException.cc:106
-#, fuzzy, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "%1 ही डिरेक्टरी नाही."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
-
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "परवानगी नाकारली"
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "पर्शियन"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "पलौअन"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "पर्शियन, जुनी (ca.600-400 B.C.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "पà¥\87रà¥\82"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "परà¥\8dशियन"
 
 #. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
-msgstr "फिलीपिनी (अन्य)"
-
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "फिलीपीन्स"
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
+msgstr "फिलीपिनी (अन्य)"
 
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "फोएनिशियन"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "पिटकैर्न"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "पोहमपेइयन"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "पोलंड"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "पाली"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "पोलिश"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "पà¥\8bरà¥\8dतà¥\81à¤\97ाल"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "पà¥\8bहमपà¥\87à¤\87यन"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3345,78 +3580,21 @@ msgstr "पोर्तुगीज"
 msgid "Prakrit Languages"
 msgstr "प्राकृत भाषा"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "प्रॉव्हेन्कल, जुनी (1500 "
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "प्युर्टो रिको"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "पुश्तो"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "कतार"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "क्वेचुआ"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "या URL साठी क्वेरी स्ट्रिंग पार्सिंगचे समर्थन नाही"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "अयशस्वी"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "राएटो-रोमन्स"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3432,58 +3610,26 @@ msgstr "रापानुई"
 msgid "Rarotongan"
 msgstr "रारोटोंगन"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "अथॉरिटी उपस्थित असेल तर सापेक्ष पाथला अनुमती नाही"
-
-#: zypp/RepoManager.cc:1740
-#, fuzzy, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "रिसोर्सेस जतन करत आहे"
-
-#: zypp/RepoManager.cc:338
-#, fuzzy
-msgid "Repository alias cannot start with dot."
-msgstr " VM चे नाव आकड्याने सुरू होता कामा नये. "
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "रीयुनियन"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "रोमन्स (अन्य)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "रूमेनिया"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "रुमेनियन"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "राएटो-रोमन्स"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "रूमेनी"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "रुमेनियन"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3494,44 +3640,25 @@ msgstr "रूंदी"
 msgid "Russian"
 msgstr "रशियन"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "रशियन फेडरेशन"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "रवांडा"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "सेंट हेलेना"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "सेंट किट्स व नेव्हिस"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "सेंट ल्युसिया"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "सॅन्डावे"
 
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "सà¥\85न à¤®à¤¾à¤°à¤¿à¤¨ो"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "साà¤\82à¤\97ो"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "सà¥\87à¤\82à¤\9f à¤ªà¤¿à¤\85र à¤µ à¤®à¤¿à¤\95à¥\8dवà¥\87लà¥\89न"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "याà¤\95à¥\81त"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "सà¥\87à¤\82à¤\9f à¤µà¤¿à¤¨à¥\8dसà¥\87नà¥\8dà¤\9f à¤µ à¤\97à¥\8dरà¥\87नाडिनà¥\8dस"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "दà¤\95à¥\8dषिण à¤\85मà¥\87रिà¤\95न à¤­à¤¾à¤°à¤¤à¥\80य (à¤\85नà¥\8dय)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3543,71 +3670,41 @@ msgstr "सॉलिशन भाषा"
 msgid "Samaritan Aramaic"
 msgstr "समरितान भाषा"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "सॅमी भाषा (अन्य)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "सॅमोआ"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "सॅमोअन"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "सॅन मारिनो"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "सॅन्डावे"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "सांगो"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "संस्कृत"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "सासक"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "संताली"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "साओ टोम व प्रिन्सिप"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "सार्डिनियन"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "सासक"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "सर्बियन"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "सà¥\8cदà¥\80 à¤\85रबसà¥\8dतान"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "सिसà¥\80लियन"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "स्कॉट्स"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "क्रोएशियन"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3618,149 +3715,40 @@ msgstr "सेल्कप"
 msgid "Semitic (Other)"
 msgstr "सेमिटिक (अन्य)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "सेनेगल"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "सर्बियन"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "सर्बियन"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "सेरेर"
-
-#: zypp/RepoManager.cc:349
-#, fuzzy
-msgid "Service alias cannot start with dot."
-msgstr " VM चे नाव आकड्याने सुरू होता कामा नये. "
-
-#: zypp/repo/RepoException.cc:129
-#, fuzzy
-msgid "Service plugin does not support changing an attribute."
-msgstr "बदल वैशिष्ट्ये दाखवाला रिसोर्स प्रकार VAR1 समर्थन देत नाही feature"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "आयरिश, जुनी (900 पर्यंत)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "सà¥\87शà¥\87लà¥\8dस"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "à¤\96à¥\81णाà¤\82à¤\9aà¥\80 à¤­à¤¾à¤·à¤¾"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "शान"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "शोना"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "सिचुआन यी"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "सिसीलियन"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "सिडॅमो"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "सिएरा लिओन"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "खुणांची भाषा"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "नोंद आढळली नाही"
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "नोंद आढळली नाही"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "नोंद आढळली नाही"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "नोंद आढळली नाही"
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "सिकसिका"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "सिंधी"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "सिंगापुर"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "सिंहला"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "सिनो-तिबेटन (अन्य)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "सिओयुअन भाषा"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "स्कॉल्ट सॅमी"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "स्लाव (अथॅपास्कन)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "सिनो-तिबेटन (अन्य)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3772,210 +3760,141 @@ msgstr "स्लेव्हिक (अन्य)"
 msgid "Slovak"
 msgstr "स्लोव्हाक"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "स्लोव्हाकिया"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "स्लोव्हेनिया"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "स्लोव्हेनियन"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "दक्षिण सॅमी"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "उत्तरी सॅमी"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "सॅमी भाषा (अन्य)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "लुले सॅमी"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "इनारी सॅमी"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "सॅमोअन"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "स्कॉल्ट सॅमी"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "शोना"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "सिंधी"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "सोनिंके"
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "सॉग्डियन"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "सॉलोमन बेटे"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "सोमाली"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "सोमालिया"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "साँघई"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "सोनिंके"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "सर्बियन भाषा"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "सोथो, दक्षिणी"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "दक्षिण आफ्रिका"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "दक्षिण अमेरिकन भारतीय (अन्य)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "दक्षिण जॉर्जिया व दक्षिण सॅन्डविच बेटे"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "दक्षिण कोरिया"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "दक्षिण अल्तई"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "दक्षिण सॅमी"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "स्पेन"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "स्पॅनिश"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "श्रीलंका"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "सार्डिनियन"
+
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "सेरेर"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "सà¥\81दान"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "निलà¥\8b-सहारन (à¤\85नà¥\8dय)"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr ""
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "स्वाती"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "सुकुमा"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "सुमेरियन"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "सुदानीज"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "सुरीनाम"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "सुसु"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "सà¥\8dवà¥\85लबारà¥\8dड à¤µ à¤\9cन à¤®à¤¾à¤¯à¥\87न"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "सà¥\81मà¥\87रियन"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "स्वाहिली"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "स्वाती"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "स्वाझिलॅन्ड"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "स्वीडन"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "स्वीडिश"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "स्वित्झर्लंड"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "सायरिया"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "सायरिअक"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "तागालॉग"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3986,36 +3905,11 @@ msgstr "ताहिशियन"
 msgid "Tai (Other)"
 msgstr "ताई (अन्य)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "तैवान"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "ताजिक"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "ताजिकीस्तान"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "तामाशेक"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "तामिल"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "टांझानिया"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4026,6 +3920,11 @@ msgstr "तातार"
 msgid "Telugu"
 msgstr "तेलगू"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "टिम्ने"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4036,35 +3935,21 @@ msgstr "तेरेनो"
 msgid "Tetum"
 msgstr "टेटम"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "ताजिक"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "तागालॉग"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "थाई"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "थायलंड"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-#, fuzzy
-msgid "The vendor does not provide support."
-msgstr "डिस्क अस्तित्वात नाही"
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-#, fuzzy
-msgid "This request will break your system!"
-msgstr "विनंती आधीपासूनच आहे."
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4080,46 +3965,25 @@ msgstr "तिग्री"
 msgid "Tigrinya"
 msgstr "तिग्रीन्या"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "टिम्ने"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "तिव्ह"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "क्लिंगॉन"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "त्लिंगिट"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "टोगो"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "टॉक पिसीन"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "टोकेलाऊ"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "टोंगा"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "तामाशेक"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4131,103 +3995,66 @@ msgstr "टोंगा (न्यासा)"
 msgid "Tonga (Tonga Islands)"
 msgstr "टोंगा (टोंगा बेटे)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "त्रिनिदाद व टोबॅगो"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "टॉक पिसीन"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "त्सिम्सीयॅन"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "त्स्वाना"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "त्सोंगा"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "तà¥\8dसà¥\8dवाना"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "तà¥\81रà¥\8dà¤\95मन"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "टुंबुका"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "ट्युनिशिया"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
-msgid "Tupi Languages"
-msgstr "तुपी भाषा"
-
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "तुर्कस्तान"
-
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "टर्किश"
-
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "टर्किश, ओटोमन (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "तुर्कमन"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "तुर्कमेनिस्तान"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "टर्क्स व कैकॉस बेटे"
+msgid "Tupi Languages"
+msgstr "तुपी भाषा"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "तुवालू"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "टर्किश"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "तà¥\81वà¥\8dहिनियन"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "à¤\85लà¥\8dताà¤\88à¤\95 (à¤\85नà¥\8dय)"
 
 #. language code: twi tw
 #: zypp/LanguageCode.cc:1077
 msgid "Twi"
 msgstr "त्वि"
 
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "तुव्हिनियन"
+
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "उडमर्ट"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "युगांडा"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4238,11 +4065,6 @@ msgstr "युगारिटिक"
 msgid "Uighur"
 msgstr "युईघर"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "युक्रेन"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4253,633 +4075,823 @@ msgstr "युक्रेनियन"
 msgid "Umbundu"
 msgstr "युबुंडु"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Url ऑब्जेक्ट क्लोन करण्यात असमर्थ"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "डीबस कनेक्शन निर्माण करणे अशक्य"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "HAL कॉन्टेक्स्ट चा प्रारंभ अशक्य – हाल्ड चालू नाही?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Url भागांचा संबंध जोडण्यात असमर्थ"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "निश्चित केलेली नाही"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr ""
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "उर्दू"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "सà¤\82यà¥\81à¤\95à¥\8dत à¤\85रब à¤\85मिरातà¥\80"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "à¤\89à¤\9dबà¥\87à¤\95"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr ".युनायटेड किंगडम"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "वाई"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "à¤\85मà¥\87रिà¤\95ा"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "वà¥\87à¤\82दा"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "à¤\85मà¥\87रिà¤\95à¥\87तà¥\80ल à¤\9bà¥\8bà¤\9fà¥\80 à¤¬à¥\87à¤\9fà¥\87"
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "वà¥\8dहिà¤\8fतनामà¥\80à¤\9c"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "अज्ञात देश:"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "व्होलॅपुक"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "व्होटिक"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "वाकाशन भाषा"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "वालॅमो"
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "वॅरे"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "वाशो"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "वेल्श"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "सर्बियन भाषा"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "वॅलून"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "वोलोफ"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "कल्माइक"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "क्झोसा"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "याओ"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "यापीज"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "यिदिश"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "योरूबा"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "युपिक भाषा"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "झापोटेक"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "झेनागा"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "झुएंग"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "झांदे"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "झुलू"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "झुनी"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "VM सुरू करण्यात अयशस्वी."
+
+#: zypp/KeyRing.cc:575
 #, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "फà¥\8dलà¥\89पà¥\80 à¤¡à¤¿à¤¸à¥\8dà¤\95वरà¥\81न à¤\8fरर à¤µà¤¾à¤\9aत à¤\86हà¥\87."
+msgid "Signature file %s not found"
+msgstr "नà¥\8bà¤\82द à¤\86ढळलà¥\80 à¤¨à¤¾à¤¹à¥\80"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "अज्ञात भाषा"
+#: zypp/repo/RepoProvideFile.cc:259
+#, fuzzy, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "%s वरून %s पुरवू शकत नाही"
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/repo/RepoProvideFile.cc:265
+#, fuzzy
+msgid "No url in repository."
+msgstr "भांडारात फाईल %1 आढळली नाही"
+
+#: zypp/repo/RepoException.cc:129
+#, fuzzy
+msgid "Service plugin does not support changing an attribute."
+msgstr "बदल वैशिष्ट्ये दाखवाला रिसोर्स प्रकार VAR1 समर्थन देत नाही feature"
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "अज्ञात आज्ञा"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"पॅकेज %s एकत्रित तपासणीत अयशस्वी. आपल्याला ते पुन्हा डाऊनलोड करण्याचा प्रयत्न करायचाआहे?"
+
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
 
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, fuzzy, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
+"पॅकेज %s एकत्रित तपासणीत अयशस्वी. आपल्याला ते पुन्हा डाऊनलोड करण्याचा प्रयत्न करायचाआहे?"
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm चेक अयशस्वी"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr ""
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm अयशस्वी"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/solver/detail/SATResolver.cc:975
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:979
 #, fuzzy, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "अवैध URL योजना '%1'."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "अप्पर सॉर्बियन"
-
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "उर्दू"
+msgid "%s has inferior architecture"
+msgstr "%s %s पुरवते, परंतु त्याचे दुसरे स्थापत्य आहे."
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Url स्कीम %sला अनुमती देत नाही"
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "पॅकेजेस अस्थापित करण्याचा आदेश"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Url स्कीम मुख्य भागाला अनुमती देत नाही"
+#: zypp/solver/detail/SATResolver.cc:986
+#, fuzzy
+msgid "conflicting requests"
+msgstr "यांच्याशी कनेक्शनची रिक्वेस्ट :"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Url स्कीम पासवर्डला अनुमती देत नाही"
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "अवलंबून असण्याच्या (डिपेन्डन्सी) समस्येमुळे %s स्थापित करु शकत नाही"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Url स्कीम पोर्टला अनुमती देत नाही"
+#: zypp/solver/detail/SATResolver.cc:992
+#, fuzzy, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "कोणतीही गोष्ट %s पुरवत नाही"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Url स्कीम उपभोक्त्याच्या नावाला अनुमती देत नाही"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "URL स्कीम हा एक आवश्यक भाग आहे"
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "डिस्क अस्तित्वात नाही"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Url स्कीमला मुख्य भागाची गरज असते"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Url स्कीमला पाथच्या नावाची गरज असते"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s ला कुलुप आहे व अस्थापित होऊ शकत नाही"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "à¤\8aरà¥\81à¤\97à¥\8dवà¥\87"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "सà¥\8dथापित à¤¨à¤¸à¤²à¥\87लà¥\80"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "उझबेक"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, fuzzy, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s ला %s ची गरज आहे"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "उझबेकिस्तान"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "%s स्थापित करु शकत नाही"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "वाई"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s चे %s शी पटत नाही"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1027
+#, fuzzy, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s %s ला बाजूला टाकते"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "वानुआतू"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s %s ला बाजूला टाकते"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "वेंदा"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s चे %s शी पटत नाही"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "व्हेनेझुएला"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "वà¥\8dहिà¤\8fà¤\9fनाम"
+#: zypp/solver/detail/SATResolver.cc:1070
+#, fuzzy
+msgid "deleted providers: "
+msgstr "à¤\95à¥\8bणतà¥\80हà¥\80 à¤\97à¥\8bषà¥\8dà¤\9f %s à¤ªà¥\81रवत à¤¨à¤¾à¤¹à¥\80"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "व्हिएतनामीज"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+#, fuzzy
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr "%s चे स्थापित करता येण्याजोगे प्रदाता नाहीत"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "व्हर्जिन आयलंड्स, अमेरिका"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "%s चे स्थापित करता येण्याजोगे प्रदाता नाहीत"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "व्होलॅपुक"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "%s स्थापित करु नका"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "व्होटिक"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "%s ठेवा"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "वाकाशन भाषा"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "%s स्थापित करु नका"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "वालॅमो"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+#, fuzzy
+msgid "This request will break your system!"
+msgstr "विनंती आधीपासूनच आहे."
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "वॉलिस व फुतुना"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "वॅलून"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, fuzzy, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "%s चे स्थापित करता येण्याजोगे प्रदाता नाहीत"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "वà¥\85रà¥\87"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "सà¤\82बà¤\82धित à¤°à¤¿à¤\9dà¥\89लà¥\8dवà¥\8dहà¥\87बलà¥\8dस à¤¸à¥\8dथापित à¤\95िà¤\82वा à¤ªà¥\81सà¥\82न à¤\9fाà¤\95à¥\82 à¤¨à¤\95ा"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "वाशो"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "वेल्श"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, fuzzy, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s %s पुरवते, परंतु त्याचे दुसरे स्थापत्य आहे."
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "पश्चिम सहारा"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, fuzzy, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "%s स्थापित करा, जरी ते स्थापत्य बदलत असेल"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "वोलोफ"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%s %s ला बाजूला टाकते"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "क्झोसा"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "याकुत"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, fuzzy, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "% वरून % डाऊनलोड करत आहे"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "याओ"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "यापीज"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "येमेन"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "यिदिश"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "सà¥\8dथापना (à¤\87नà¥\8dसà¥\8dà¤\9fà¥\89लà¥\87शन)"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "योरूबा"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, fuzzy, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "या गरजेकडे येथेच दुर्लक्ष करा"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "यà¥\81पिà¤\95 à¤­à¤¾à¤·ा"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "या à¤\97रà¤\9cà¥\87à¤\95डà¥\87 à¤¯à¥\87थà¥\87à¤\9a à¤¦à¥\81रà¥\8dलà¤\95à¥\8dष à¤\95रा"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "झांबिया"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "झांदे"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "à¤\9dापà¥\8bà¤\9fà¥\87à¤\95"
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "फाà¤\88ल à¤\89à¤\98डता à¤¯à¥\87त à¤¨à¤¾à¤¹à¥\80 %1."
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "झेनागा"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "झुएंग"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "à¤\9dिà¤\82बाबà¥\8dबà¥\87"
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "à¤\85à¤\9cà¥\8dà¤\9eात à¤\86à¤\9cà¥\8dà¤\9eा"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "झुलू"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "झुनी"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm चेक अयशस्वी"
+#: zypp/base/StrMatcher.cc:158
+#, fuzzy, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "अवैध Url स्कीम %s"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm अयशस्वी"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "या गरजेकडे येथेच दुर्लक्ष करा"
+msgid "Failed to mount %s on %s"
+msgstr " %s - %s उघडणे अशक्य\n"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:41
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "%s स्थापित करु शकत नाही"
+msgid "Failed to unmount %s"
+msgstr "मॉड्युल लोड करण्यात अपयश \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:986
-#, fuzzy
-msgid "conflicting requests"
-msgstr "यांच्याशी कनेक्शनची रिक्वेस्ट :"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "बॅकअप %s  निर्माण केले"
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "स्थापना (इन्स्टॉलेशन)"
-
-#: zypp/solver/detail/SATResolver.cc:1070
-#, fuzzy
-msgid "deleted providers: "
-msgstr "कोणतीही गोष्ट %s पुरवत नाही"
+msgid "File '%s' not found on medium '%s'"
+msgstr "भांडारात फाईल %1 आढळली नाही"
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/media/MediaException.cc:67
 #, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "सà¤\82बà¤\82धित à¤°à¤¿à¤\9dà¥\89लà¥\8dवà¥\8dहà¥\87बलà¥\8dस à¤¸à¥\8dथापित à¤\95िà¤\82वा à¤ªà¥\81सà¥\82न à¤\9fाà¤\95à¥\82 à¤¨à¤\95ा"
+msgid "Cannot write file '%s'."
+msgstr "फाà¤\88ल %1 à¤²à¤¿à¤¹à¤¿à¤¤à¤¾ à¤¯à¥\87त à¤¨à¤¾à¤¹à¥\80."
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, fuzzy, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "%s चे स्थापित करता येण्याजोगे प्रदाता नाहीत"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "%s स्थापित करु नका"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, fuzzy, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "% वरून % डाऊनलोड करत आहे"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "%1 ही डिरेक्टरी नाही."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:125
 #, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "या à¤\97रà¤\9cà¥\87à¤\95डà¥\87 à¤¯à¥\87थà¥\87à¤\9a à¤¦à¥\81रà¥\8dलà¤\95à¥\8dष à¤\95रा"
+msgid "Empty host name in URI"
+msgstr "रिà¤\95à¥\8dत CA à¤¨à¤¾à¤\82व."
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:140
 #, fuzzy, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "%s स्थापित करा, जरी ते स्थापत्य बदलत असेल"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "अवैध URL योजना '%1'."
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr ""
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s %s ला बाजूला टाकते"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "%s ठेवा"
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
+
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s %s पुरवते, परंतु त्याचे दुसरे स्थापत्य आहे."
+msgid "Cannot eject media '%s'"
+msgstr " डेस्कटॉप आयटेम'%s' उघडू शकत नाही"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:199
 #, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%s %s ला बाजूला टाकते"
+msgid "Permission to access '%s' denied."
+msgstr "परवानगी नाकारली"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: लिभाल कॉन्टेक्स निर्माण करु शकत नाही"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr " libhal_set_dbus_connection: डीबस कनेक्शन निश्चित करू शकत नाही"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, fuzzy, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s ला %s ची गरज आहे"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, fuzzy, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "कोणतीही गोष्ट %s पुरवत नाही"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "डिस्क अस्तित्वात नाही"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "पॅकेजेस अस्थापित करण्याचा आदेश"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "%s स्थापित करु नका"
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "फाईल निर्माण करु शकत नाही"
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, fuzzy, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm ने %s  हे %s म्हणून जतन केले फरकाच्या या पहिल्या"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr "rpm ने %s हे %s म्हणून जतन केले/nफरकाच्या या पहिल्या 25 ओळी\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, fuzzy, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm ने %s हे %s म्हणन जतन केले, परंतु फरक सांगणे अशक्य"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr "rpm ने %s हे %s म्हणून जतन केले/nफरकाच्या या पहिल्या 25 ओळी\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s चे %s शी पटत नाही"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
 #, fuzzy
-msgid "some dependency problem"
-msgstr "अवलंबून असण्याच्या (डिपेन्डन्सी) समस्येमुळे %s स्थापित करु शकत नाही"
+#~ msgid "do not keep %s installed"
+#~ msgstr "स्थापित नसलेली"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "uninstallable providers: "
-msgstr "%s चे स्थापित करता येण्याजोगे प्रदाता नाहीत"
-
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "अनोळखी"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr " %s - %s उघडणे अशक्य\n"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr ""
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "सर्बिया व माँटेनेग्रो"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "अज्ञात सूची पर्याय"
 
 #, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "निर्भरता रिझॉल्व करु शकलो नाही"
+
 #~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "à¤\85सà¥\87 à¤\95à¥\8bणतà¥\87हà¥\80 à¤¸à¤¾à¤§à¤¨ à¤\89पलबà¥\8dध à¤¨à¤¾à¤¹à¥\80 à¤\9cà¥\87 à¤¯à¤¾ à¤\97रà¤\9cà¥\87ला à¤¸à¤®à¤°à¥\8dथन à¤¦à¥\87तà¥\87."
+#~ "फाईल %s मधे चेकसम नाही.\n"
+#~ "तरà¥\80हà¥\80 à¤«à¤¾à¤\88ल à¤µà¤¾à¤ªà¤°à¤¾à¤¯à¤\9aà¥\80?"
 
 #~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "ही रिझॉल्व्हेबल्स प्रणालीतून पुसून टाकली जातील"
-
-#~ msgid " Error!"
-#~ msgstr "चूक!"
-
-#~ msgid " Important!"
-#~ msgstr "महत्वाचे!"
-
-#~ msgid " fails checksum verification."
-#~ msgstr "चेकसम पडताळणी अयशस्वी"
-
-#~ msgid " miss checksum."
-#~ msgstr "मिस चेकसम"
-
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "%s मधे गायब डिपेन्डन्सीज आहेत."
-
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "%s चे अन्य रिझॉल्व्हेल्बशी पटत नाही"
+#~ "%s फाईल पुढील की बरोबर सचोटी:\n"
+#~ "%s|%s|%s\n"
+#~ "तपासात अयशस्वी तरीही फाईल वापरायची?"
 
 #~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s चे\n"
-#~ "%s शी पटत नाही:"
-
-#~ msgid "%s depended on %s"
-#~ msgstr "%s वर %s अवलंबून"
-
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s वर %s अवलंबून"
-
-#~ msgid "%s depends on %s"
-#~ msgstr "%s %s वर अवलंबून"
+#~ "फाईल %s मधे अवैध चेकसम.\n"
+#~ "अपेक्षित %s,आढळले %s\n"
+#~ "तरीही फाईल वापरायची?"
 
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s इतर रिझॉल्व्हेबल्सवर अवलंबून"
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "फाईल %s मधे अज्ञात चेकसम. %s.\n"
+#~ "तरीही फाईल वापरायची?"
 
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s :%s वर अवलंबून"
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "फाईल %s वर स्वाक्षरी नाही\n"
+#~ "तरीही वापरायची?"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "%s %s च्या डिपेन्डन्सीज पूर्ण करते, परंतु आपल्या प्रणालीवर ठेवण्यात येईल"
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "फाईल %s वर अज्ञात की ची स्वाक्षरी:\n"
+#~ "%s|%s|%s\n"
+#~ "तरीही फाईल वापरायची?"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "गायब डिपेन्डन्सीडमुळे %s स्थापित करु शकत नाही"
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "अविश्वासू की आढळली:\n"
+#~ "%s|%s|%s\n"
+#~ "की वर विश्वास ठेवायचा?"
 
-#~ msgid "%s has missing dependencies"
-#~ msgstr "%sच्या गरजा पूर्ण न होणार्या आहेत"
+#~ msgid "%s remove failed"
+#~ msgstr "%s काढून टाकणे अयशस्वी"
 
-#, fuzzy
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "च्या गरजा पूर्ण न होणार्या"
+#~ msgid "rpm output:"
+#~ msgstr "rpm आऊटपुट"
 
 #~ msgid "%s install failed"
 #~ msgstr "%s स्थापना अयशस्वी"
@@ -4887,122 +4899,81 @@ msgstr ""
 #~ msgid "%s installed ok"
 #~ msgstr "%s  स्थापना ठीक आहे"
 
-#, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s च्या जागी %s"
-
-#, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s ला %s ची गरज आहे"
+#~ msgid "%s remove ok"
+#~ msgstr "%s टाकणे ठीक आहे"
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s गरज %s चुकवत आहे"
-
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "इतर रिझॉल्व्हेबल्सना %s ची गरज आहे"
-
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
-#~ msgstr "%s ला %s ची गरज आहे:/n"
-
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "%s स्थापित नाही व त्यावर स्थापित न करता येणारा अशी खूण आहे"
-
-#, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s ला %s ची गरज आहे"
-
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s च्या जागी %s"
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "%s ही डिपेन्डन्सी पुरवते, परंतु ते स्थापित आयटेमचे स्थापत्य बदलेल"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
-#~ msgstr ""
-#~ "दुसर्या स्थापित होणार्या रिझॉल्व्हेल्बला %s ची गरज आहे, त्यामुळे त्याची लिंक जाणार नाही"
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "%s ही डिपेन्डन्सी पुरवते, परंतु ते स्थापित आयटेमचे स्थापत्य बदलेल"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
-#~ msgstr ""
-#~ "दुसर्या स्थापित होणार्या रिझॉल्व्हेल्बला %s ची गरज आहे, त्यामुळे त्याची लिंक जाणार नाही"
-
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
-#~ msgstr ""
-#~ "दुसर्या स्थापित होणार्या रिझॉल्व्हेल्बला %s ची गरज आहे, त्यामुळे त्याची लिंक जाणार नाही"
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "संबंधित रिझॉल्व्हेबल्स स्थापित किंवा पुसून टाकू नका"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr "%s स्थापित होणार आहे, परंतु डिपेन्डन्सी समस्यांमुळे हे शक्य नाही"
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "%s याआधीच स्थापनेसाठी सज्ज असल्याकडे दुर्लक्ष करा"
 
-#, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s ला %s ची गरज आहे"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr " %s मधील %s ऑब्सोलीटकडे दुर्लक्ष करा"
 
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s ला %s ची गरज आहे"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "%s चा हा विवाद विसरून जा"
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s स्थापित करता येण्यासारखे नाही कारण त्याचे %s शी पटत नाही"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "या गरजेकडे येथेच दुर्लक्ष करा"
 
 #, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr "%s %s ला बाजूला टाकते, परंतु %s पुसता येत नाही कारण ते लॉक्ड आहे"
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "%s स्थापित करा, जरी ते स्थापत्य बदलत असेल"
 
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s अन्य रिझॉल्व्हेबल्सना बाजूला टाकते"
+#~ msgid "Install missing resolvables"
+#~ msgstr "गायब रिझॉल्व्हेबल्स स्थापित करा"
 
-#~ msgid "%s part of %s"
-#~ msgstr "%s हा %s चा भाग आहे"
+#~ msgid "Keep resolvables"
+#~ msgstr "रिझॉल्व्हेबल्स ठेवा"
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s %s पुरवते, परंतु ते ठेवण्यात येणार आहे."
+#~ msgid "Unlock these resolvables"
+#~ msgstr "ही रिझॉल्व्हेबल्स अनलॉक करा"
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr "%s %s पुरवते, परंतु त्या %s ची दुसरी आवृत्ती आधीच स्थापित आहे."
+#~ msgid "delete %s"
+#~ msgstr "%s पुसून टाका"
 
-#, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s %s पुरवते, परंतु त्याचे दुसरे स्थापत्य आहे."
+#~ msgid "install %s"
+#~ msgstr "%s स्थापित करा"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s %s पुरवते, परंतु ते अस्थापित होणार आहे."
+#~ msgid "unlock %s"
+#~ msgstr "%s अनलॉक करा"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s %s पुरवते, परंतु त्याला कुलुप आहे "
+#~ msgid "unlock all resolvables"
+#~ msgstr "सर्व रिझॉल्व्हेबल्स अनलॉक करा"
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s %s पुरवते, परंतु ते स्थापित करण्याजोगे नाही. अधिक माहितीसाठी ते स्वतःहूनच स्थापित "
-#~ "करण्याचा प्रयत्न करा"
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "फाईल उघडता येत नाही %1."
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr "%s ही डिपेन्डन्सी पुरवते, परंतु ते स्थापित आयटेमचे स्थापत्य बदलेल"
+#~ msgid "Error reading solv-file: "
+#~ msgstr "एरर सेक्टर %u वाचत आहे."
 
-#, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr "%s ही डिपेन्डन्सी पुरवते, परंतु ते स्थापित आयटेमचे स्थापत्य बदलेल"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "या URL साठी पाथ पॅरामीटर पार्सिंगचे समर्थन नाही"
 
-#~ msgid "%s remove failed"
-#~ msgstr "%s काढून टाकणे अयशस्वी"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "या URL साठी पाथ पॅरामीटर पार्सिंगचे समर्थन नाही"
 
-#~ msgid "%s remove ok"
-#~ msgstr "%s टाकणे ठीक आहे"
+#~ msgid "Software management is already running."
+#~ msgstr "सॉफ्टवेअर व्यवस्थापन आधीच चालू आहे"
+
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s च्या जागी %s"
 
 #~ msgid "%s replaced by %s"
 #~ msgstr "%s च्या जागी %s "
@@ -5017,348 +4988,377 @@ msgstr ""
 #~ msgid "%s will be installed by the user.\n"
 #~ msgstr "%s अस्थापित होणार नाही कारण ते अजून आवश्यक आहे"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "%s अस्थापित होणार नाही कारण ते अजून आवश्यक आहे"
+#~ msgid "Invalid information"
+#~ msgstr "अवैध माहिती"
 
-#~ msgid ", Action: "
-#~ msgstr "à¤\95à¥\83तà¥\80"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "à¤\87तर à¤°à¤¿à¤\9dà¥\89लà¥\8dवà¥\8dहà¥\87बलà¥\8dसना %s à¤\9aà¥\80 à¤\97रà¤\9c à¤\86हà¥\87"
 
-#~ msgid ", Trigger: "
-#~ msgstr "ट्रिगर"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr "%s ला %s ची गरज आहे:/n"
+
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "%s चे अन्य रिझॉल्व्हेल्बशी पटत नाही"
 
-#, fuzzy
 #~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
-#~ msgstr "%s (%s) विषयीच्या वादामुळे स्थापित होणारे %s काढून टाकणे आवश्यक आहे"
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s चे\n"
+#~ "%s शी पटत नाही:"
+
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s अन्य रिझॉल्व्हेबल्सना बाजूला टाकते"
 
 #~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
 #~ msgstr ""
-#~ "किमान एका स्रोताची आधीच नोंदणी आहे, साठवलेले स्रोत पुन्हा साठवता येऊ शकत नाहीत"
+#~ "\n"
+#~ "ही रिझॉल्व्हेबल्स प्रणालीतून पुसून टाकली जातील"
+
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s इतर रिझॉल्व्हेबल्सवर अवलंबून"
+
+#~ msgid "%s depends on %s"
+#~ msgstr "%s %s वर अवलंबून"
+
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s :%s वर अवलंबून"
+
+#~ msgid "Child of"
+#~ msgstr "चाईल्ड ऑफ"
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
 #~ msgstr ""
-#~ "%s स्थापित करु शकत नाही कारण आधीच त्यावर अस्थापित करण्याची गरज असल्याची खूण केलेली "
-#~ "à¤\86हà¥\87"
+#~ "\n"
+#~ "à¤\85सà¥\87 à¤\95à¥\8bणतà¥\87हà¥\80 à¤¸à¤¾à¤§à¤¨ à¤\89पलबà¥\8dध à¤¨à¤¾à¤¹à¥\80 à¤\9cà¥\87 à¤¯à¤¾ à¤\97रà¤\9cà¥\87ला à¤¸à¤®à¤°à¥\8dथन à¤¦à¥\87तà¥\87."
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
 #~ msgstr ""
-#~ "%s स्थापित करु शकत नाही, कारण आधीच त्यावर अस्थापित करण्याची गरज असल्याची खूण "
-#~ "à¤\95à¥\87लà¥\87लà¥\80 à¤\86हà¥\87  "
+#~ "येऊ घातलेल्या समस्या, ज्या या रिझोल्यूशनच्या वर/खाली नमूद केल्या आहेत, त्यासर्व अवलंबून "
+#~ "à¤\97à¥\8bषà¥\8dà¤\9fà¥\80 à¤¸à¥\8bडवणार à¤¨à¤¾à¤¹à¥\80त"
 
 #, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "%s स्थापित करु शकत नाही, कारण ते या प्रणालीला लागू होत नाही"
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "%s स्थापित करु शकत नाही कारण त्यांचे %s शी पटत नाही"
+
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "%s स्थापित नाही व त्यावर स्थापित न करता येणारा अशी खूण आहे"
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "फाà¤\88ल à¤\89à¤\98डता à¤¯à¥\87त à¤¨à¤¾à¤¹à¥\80 %1."
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "à¤\9aà¥\8dया à¤\97रà¤\9cा à¤ªà¥\82रà¥\8dण à¤¨ à¤¹à¥\8bणारà¥\8dया"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "%s साठी %s ची गरज पूर्ण करु शकत नाही"
+#~ msgid "%s has missing dependencies"
+#~ msgstr "%sच्या गरजा पूर्ण न होणार्या आहेत"
 
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
-#~ msgstr "%s à¤\9aà¥\8dया à¤¡à¤¿à¤ªà¥\87नà¥\8dडनà¥\8dसà¥\80à¤\9c à¤ªà¥\82रà¥\8dण à¤\95रणà¥\8dयासाठà¥\80 %s à¤¸à¥\8dथापित à¤¹à¥\8bà¤\8a à¤¶à¤\95त à¤¨à¤¾à¤¹à¥\80 "
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "%s à¤®à¤§à¥\87 à¤\97ायब à¤¡à¤¿à¤ªà¥\87नà¥\8dडनà¥\8dसà¥\80à¤\9c à¤\86हà¥\87त."
 
-#~ msgid "Cannot create a file needed to perform update installation."
-#~ msgstr "अपडेट स्थापना करण्यासाठी आवश्यक फाईल निर्माण करु शकत नाही"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "गायब डिपेन्डन्सीडमुळे %s स्थापित करु शकत नाही"
 
-#~ msgid "Cannot install %s to fulfil the dependencies of %s"
-#~ msgstr "%s च्या डिपेन्डन्सीज पूर्ण करण्यासाठी %s स्थापित करू शकत नाही"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "%s %s च्या डिपेन्डन्सीज पूर्ण करते, परंतु आपल्या प्रणालीवर ठेवण्यात येईल"
+
+#~ msgid "No need to install %s"
+#~ msgstr "%s स्थापित करण्याची गरज नाही"
 
 #, fuzzy
 #~ msgid "Cannot install %s to fulfill the dependencies of %s"
 #~ msgstr "%s च्या डिपेन्डन्सीज पूर्ण करण्यासाठी %s स्थापित करू शकत नाही"
 
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "%s च्या डिपेन्डन्सीज पूर्ण करण्यासाठी %s स्थापित करू शकत नाही"
+
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "%s अस्थापित होणार नाही कारण ते अजून आवश्यक आहे"
+
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s %s ला बाजूला टाकते, परंतु %s पुसता येत नाही कारण ते लॉक्ड आहे"
+
 #, fuzzy
 #~ msgid "Cannot install %s, because it is conflicting"
 #~ msgstr "%s स्थापित करता येऊ शकत नाही कारण ते विवादास्पद आहे"
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "%s स्थापित करु शकत नाही कारण त्यांचे %s शी पटत नाही"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s स्थापित करता येण्यासारखे नाही कारण त्याचे %s शी पटत नाही"
 
-#~ msgid "Child of"
-#~ msgstr "चाईल्ड ऑफ"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "%s चे अपग्रेडिंग करतांना %s साठी %s ची गरज"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "संबंधित रिझॉल्व्हेबल्स स्थापित किंवा पुसून टाकू नका"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s गरज %s चुकवत आहे"
 
-#~ msgid "Downloading %s"
-#~ msgstr "%s डाऊनलोड करत आहे"
+#~ msgid ", Action: "
+#~ msgstr "कृती"
 
-#, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "येऊ घातलेल्या समस्या, ज्या या रिझोल्यूशनच्या वर/खाली नमूद केल्या आहेत, त्यासर्व अवलंबून "
-#~ "गोष्टी सोडवणार नाहीत"
+#~ msgid ", Trigger: "
+#~ msgstr "ट्रिगर"
 
-#, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "एरर सेक्टर %u वाचत आहे."
+#~ msgid "package"
+#~ msgstr "पॅकेज"
 
-#~ msgid "Establishing %s"
-#~ msgstr "%s प्रस्थापित करत आहे"
+#~ msgid "selection"
+#~ msgstr "निवड"
 
-#, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr " %s - %s उघडणे अशक्य\n"
+#~ msgid "pattern"
+#~ msgstr "नमुना"
 
-#~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "फाईल %s मधे चेकसम नाही.\n"
-#~ "तरीही फाईल वापरायची?"
+#~ msgid "product"
+#~ msgstr "उत्पादन"
 
-#~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "%s फाईल पुढील की बरोबर सचोटी:\n"
-#~ "%s|%s|%s\n"
-#~ "तपासात अयशस्वी तरीही फाईल वापरायची?"
+#~ msgid "patch"
+#~ msgstr "पॅच"
 
-#~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "फाईल %s मधे अवैध चेकसम.\n"
-#~ "अपेक्षित %s,आढळले %s\n"
-#~ "तरीही फाईल वापरायची?"
+#~ msgid "script"
+#~ msgstr "स्क्रिप्ट"
 
-#~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "फाईल %s मधे अज्ञात चेकसम. %s.\n"
-#~ "तरीही फाईल वापरायची?"
+#~ msgid "message"
+#~ msgstr "संदेश"
 
-#~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
-#~ msgstr ""
-#~ "फाईल %s वर स्वाक्षरी नाही\n"
-#~ "तरीही वापरायची?"
+#~ msgid "atom"
+#~ msgstr "अणू (अटम)"
 
-#~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "फाईल %s वर अज्ञात की ची स्वाक्षरी:\n"
-#~ "%s|%s|%s\n"
-#~ "तरीही फाईल वापरायची?"
+#~ msgid "system"
+#~ msgstr "प्रणाली"
 
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "%s याआधीच स्थापनेसाठी सज्ज असल्याकडे दुर्लक्ष करा"
+#~ msgid "Resolvable"
+#~ msgstr "रिझॉल्व्हेबल"
 
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr " %s मधील %s ऑब्सोलीटकडे दुर्लक्ष करा"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "हा रिझोल्यूशनचा प्रयत्न अवैध असल्याची खूण करत आहे"
 
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "%s चा हा विवाद विसरून जा"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "रिझ़ॉल्व्हेबल %s स्थापित करण्यासारखा नसल्याची खूण करत आहे"
 
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "सर्वसाधारणपणे या गरजेकडे दुर्लक्ष करा"
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr "%s स्थापित होणार आहे, परंतु डिपेन्डन्सी समस्यांमुळे हे शक्य नाही"
 
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "या गरजेकडे येथेच दुर्लक्ष करा"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr ""
+#~ "%s स्थापित करु शकत नाही कारण आधीच त्यावर अस्थापित करण्याची गरज असल्याची खूण केलेली "
+#~ "आहे"
+
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "%s स्थापित करु शकत नाही, कारण ते या प्रणालीला लागू होत नाही"
+
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr ""
+#~ "%s स्थापित करु शकत नाही, कारण आधीच त्यावर अस्थापित करण्याची गरज असल्याची खूण "
+#~ "केलेली आहे  "
 
-#, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "%s स्थापित करा, जरी ते स्थापत्य बदलत असेल"
+#~ msgid "This would invalidate %s."
+#~ msgstr "हे %s अवैध करेल"
 
-#~ msgid "Install missing resolvables"
-#~ msgstr "गायब रिझॉल्व्हेबल्स स्थापित करा"
+#~ msgid "Establishing %s"
+#~ msgstr "%s प्रस्थापित करत आहे"
 
 #~ msgid "Installing %s"
 #~ msgstr "%s स्थापित करत आहे"
 
-#~ msgid "Invalid information"
-#~ msgstr "अवैध माहिती"
+#~ msgid "Updating %s to %s"
+#~ msgstr "%s ते %s अपडेट करत आहे"
 
-#~ msgid "Keep resolvables"
-#~ msgstr "रिझॉल्व्हेबल्स ठेवा"
+#, fuzzy
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "%s वगळत आहेः %s याआधीच स्थापित आहे"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "%s वरील विवादावरुन %s अस्थापित असल्याची खूण"
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "%s चे पर्यायी स्थापित प्रदाता नाहीत"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "रिझ़ॉल्व्हेबल %s स्थापित करण्यासारखा नसल्याची खूण करत आहे"
+#~ msgid "for %s"
+#~ msgstr "%s करिता"
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "हा रिझोल्यूशनचा प्रयत्न अवैध असल्याची खूण करत आहे"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "%s काढून टाकणे शक्य नसल्याचे टाळण्यासाठी %sला अपग्रेड करा"
 
-#~ msgid "No need to install %s"
-#~ msgstr "%s स्थापित करण्याची गरज नाही"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s %s पुरवते, परंतु ते अस्थापित होणार आहे."
+
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s %s पुरवते, परंतु त्या %s ची दुसरी आवृत्ती आधीच स्थापित आहे."
 
-#, fuzzy
 #~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "पॅकेज %s एकत्रित तपासणीत अयशस्वी. आपणास ते पुन्हा डाऊनलोड करण्याचा प्रयत्न करायचा "
-#~ "आहे की स्थापना काढून टाकायची?"
-
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "या URL साठी पाथ पॅरामीटर पार्सिंगचे समर्थन नाही"
+#~ "%s %s पुरवते, परंतु ते स्थापित करण्याजोगे नाही. अधिक माहितीसाठी ते स्वतःहूनच स्थापित "
+#~ "करण्याचा प्रयत्न करा"
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "या URL साठी पाथ पॅरामीटर पार्सिंगचे समर्थन नाही"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s %s पुरवते, परंतु त्याला कुलुप आहे "
 
-#~ msgid "Reading filelist from %s"
-#~ msgstr "%s वरून फाईलसूची वाचत आहे"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s %s पुरवते, परंतु ते ठेवण्यात येणार आहे."
 
-#~ msgid "Reading index files"
-#~ msgstr "इंडेक्स फाईल्स वाचत आहे"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s %s पुरवते, परंतु त्याचे दुसरे स्थापत्य आहे."
 
-#~ msgid "Reading packages file"
-#~ msgstr "पॅकेज फाईल वाचत आहे"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "%s साठी %s ची गरज पूर्ण करु शकत नाही"
 
-#~ msgid "Reading packages from %s"
-#~ msgstr "%s वरून पॅकेजेस वाचत आहे"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "दुसर्या स्थापित होणार्या रिझॉल्व्हेल्बला %s ची गरज आहे, त्यामुळे त्याची लिंक जाणार नाही"
 
-#~ msgid "Reading patch %s"
-#~ msgstr "पॅच %s वाचत आहे "
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "दुसर्या स्थापित होणार्या रिझॉल्व्हेल्बला %s ची गरज आहे, त्यामुळे त्याची लिंक जाणार नाही"
 
-#~ msgid "Reading patches index %s"
-#~ msgstr "%s वरून पॅच वाचत आहे"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "%s (%s) विषयीच्या वादामुळे स्थापित होणारे %s काढून टाकणे आवश्यक आहे"
 
-#~ msgid "Reading pattern from %s"
-#~ msgstr "%s à¤µà¤°à¥\82न à¤¨à¤®à¥\81ना à¤µà¤¾à¤\9aत à¤\86हà¥\87"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "%s à¤µà¤°à¥\80ल à¤µà¤¿à¤µà¤¾à¤¦à¤¾à¤µà¤°à¥\81न %s à¤\85सà¥\8dथापित à¤\85सलà¥\8dयाà¤\9aà¥\80 à¤\96à¥\82ण"
 
-#~ msgid "Reading product from %s"
-#~ msgstr "%s à¤µà¤°à¥\82न à¤ªà¥\8dरà¥\89डà¤\95à¥\8dà¤\9f à¤µà¤¾à¤\9aत à¤\86हà¥\87"
+#~ msgid "from %s"
+#~ msgstr "%s à¤µà¤°à¥\81न"
 
-#~ msgid "Reading selection from %s"
-#~ msgstr "%s वरून सिलेक्शन वाचत आहे"
+#~ msgid " Error!"
+#~ msgstr "चूक!"
 
-#~ msgid "Reading translation: %s"
-#~ msgstr "भाषाà¤\82तर à¤µà¤¾à¤\9aत à¤\86हà¥\87: %s"
+#~ msgid " Important!"
+#~ msgstr "महतà¥\8dवाà¤\9aà¥\87!"
 
-#~ msgid "Resolvable"
-#~ msgstr "रिझॉल्व्हेबल"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s वर %s अवलंबून"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "सर्बिया व माँटेनेग्रो"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s ला %s ची गरज आहे"
 
 #, fuzzy
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "%s à¤µà¤\97ळत à¤\86हà¥\87à¤\83 %s à¤¯à¤¾à¤\86धà¥\80à¤\9a à¤¸à¥\8dथापित आहे"
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s à¤²à¤¾ %s à¤\9aà¥\80 à¤\97रà¤\9c आहे"
 
-#~ msgid "Software management is already running."
-#~ msgstr "सॉफ्टवेअर व्यवस्थापन आधीच चालू आहे"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s च्या जागी %s"
 
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "स्क्रिप्ट फाईल चेकसम टेस्टमधे अयशस्वी."
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s ला %s ची गरज आहे"
 
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr "स्वाक्षरीची repomd.xml फाईल स्वाक्षरी तपासण्यात अयशस्वी."
+#~ msgid "%s part of %s"
+#~ msgstr "%s हा %s चा भाग आहे"
 
 #, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "%s चे पर्यायी स्थापित प्रदाता नाहीत"
-
-#~ msgid "This would invalidate %s."
-#~ msgstr "हे %s अवैध करेल"
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s ला %s ची गरज आहे"
 
 #~ msgid "Unable to parse Url authority"
 #~ msgstr "Url अथॉरिटीचा संबंध सांगणे अशक्य"
 
-#~ msgid "Unable to restore all sources."
-#~ msgstr "सर्व स्रोत पुनर्स्थापित करणे अशक्य"
-
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "अज्ञात सूची पर्याय"
-
-#~ msgid "Unlock these resolvables"
-#~ msgstr "ही रिझॉल्व्हेबल्स अनलॉक करा"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "सर्वसाधारणपणे या गरजेकडे दुर्लक्ष करा"
 
 #~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
 #~ msgstr ""
-#~ "अविश्वासू की आढळली:\n"
-#~ "%s|%s|%s\n"
-#~ "की वर विश्वास ठेवायचा?"
+#~ "दुसर्या स्थापित होणार्या रिझॉल्व्हेल्बला %s ची गरज आहे, त्यामुळे त्याची लिंक जाणार नाही"
 
-#~ msgid "Updating %s to %s"
-#~ msgstr "%s ते %s अपडेट करत आहे"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "अपडेट स्थापना करण्यासाठी आवश्यक फाईल निर्माण करु शकत नाही"
 
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "%s काढून टाकणे शक्य नसल्याचे टाळण्यासाठी %sला अपग्रेड करा"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "सर्व स्रोत पुनर्स्थापित करणे अशक्य"
 
-#~ msgid "atom"
-#~ msgstr "अणू (अटम)"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr ""
+#~ "किमान एका स्रोताची आधीच नोंदणी आहे, साठवलेले स्रोत पुन्हा साठवता येऊ शकत नाहीत"
 
-#~ msgid "delete %s"
-#~ msgstr "%s à¤ªà¥\81सà¥\82न à¤\9fाà¤\95ा"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "%s à¤\9aà¥\8dया à¤¡à¤¿à¤ªà¥\87नà¥\8dडनà¥\8dसà¥\80à¤\9c à¤ªà¥\82रà¥\8dण à¤\95रणà¥\8dयासाठà¥\80 %s à¤¸à¥\8dथापित à¤¹à¥\8bà¤\8a à¤¶à¤\95त à¤¨à¤¾à¤¹à¥\80 "
 
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "स्थापित नसलेली"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s वर %s अवलंबून"
 
-#~ msgid "for %s"
-#~ msgstr "%s करिता"
+#~ msgid "Reading index files"
+#~ msgstr "इंडेक्स फाईल्स वाचत आहे"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "%s चे अपग्रेडिंग करतांना %s साठी %s ची गरज"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "स्वाक्षरीची repomd.xml फाईल स्वाक्षरी तपासण्यात अयशस्वी."
 
-#~ msgid "from %s"
-#~ msgstr "%s à¤µà¤°à¥\81न"
+#~ msgid "Reading product from %s"
+#~ msgstr "%s à¤µà¤°à¥\82न à¤ªà¥\8dरà¥\89डà¤\95à¥\8dà¤\9f à¤µà¤¾à¤\9aत à¤\86हà¥\87"
 
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "निर्भरता रिझॉल्व करु शकलो नाही"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "%s वरून फाईलसूची वाचत आहे"
 
-#~ msgid "install %s"
-#~ msgstr "%s à¤¸à¥\8dथापित à¤\95रा"
+#~ msgid "Reading packages from %s"
+#~ msgstr "%s à¤µà¤°à¥\82न à¤ªà¥\85à¤\95à¥\87à¤\9cà¥\87स à¤µà¤¾à¤\9aत à¤\86हà¥\87"
 
-#~ msgid "message"
-#~ msgstr "संदेश"
+#~ msgid "Reading selection from %s"
+#~ msgstr "%s वरून सिलेक्शन वाचत आहे"
 
-#~ msgid "package"
-#~ msgstr "पॅकेज"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "%s वरून नमुना वाचत आहे"
 
-#~ msgid "patch"
-#~ msgstr "पॅच"
+#~ msgid "Reading patches index %s"
+#~ msgstr "%s वरून पॅच वाचत आहे"
 
-#~ msgid "pattern"
-#~ msgstr "नमà¥\81ना"
+#~ msgid "Reading patch %s"
+#~ msgstr "पà¥\85à¤\9a %s à¤µà¤¾à¤\9aत à¤\86हà¥\87 "
 
-#~ msgid "product"
-#~ msgstr "à¤\89तà¥\8dपादन"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "सà¥\8dà¤\95à¥\8dरिपà¥\8dà¤\9f à¤«à¤¾à¤\88ल à¤\9aà¥\87à¤\95सम à¤\9fà¥\87सà¥\8dà¤\9fमधà¥\87 à¤\85यशसà¥\8dवà¥\80."
 
-#~ msgid "rpm output:"
-#~ msgstr "rpm आऊटपुट"
+#~ msgid "Reading packages file"
+#~ msgstr "पॅकेज फाईल वाचत आहे"
 
-#~ msgid "script"
-#~ msgstr "सà¥\8dà¤\95à¥\8dरिपà¥\8dà¤\9f"
+#~ msgid "Reading translation: %s"
+#~ msgstr "भाषाà¤\82तर à¤µà¤¾à¤\9aत à¤\86हà¥\87: %s"
 
-#~ msgid "selection"
-#~ msgstr "निवड"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "पॅकेज %s एकत्रित तपासणीत अयशस्वी. आपणास ते पुन्हा डाऊनलोड करण्याचा प्रयत्न करायचा "
+#~ "आहे की स्थापना काढून टाकायची?"
 
-#~ msgid "system"
-#~ msgstr "पà¥\8dरणालà¥\80"
+#~ msgid " miss checksum."
+#~ msgstr "मिस à¤\9aà¥\87à¤\95सम"
 
-#~ msgid "unlock %s"
-#~ msgstr "%s अनलॉक करा"
+#~ msgid " fails checksum verification."
+#~ msgstr "चेकसम पडताळणी अयशस्वी"
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "सर्व रिझॉल्व्हेबल्स अनलॉक करा"
+#~ msgid "Downloading %s"
+#~ msgstr "%s डाऊनलोड करत आहे"
index 79e6a43..c2b63c3 100644 (file)
--- a/po/nb.po
+++ b/po/nb.po
@@ -23,19 +23,94 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 1.5\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal-unntak"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Ugyldig LDAP URL-spørringsstreng"
+
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Ugyldig LDAP URL-spørringsparameter %s"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Kan ikke klone URL-objekt"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Ugyldig referanse til tomt URL-objekt"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Kan ikke analysere URL-komponenter"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Kan ikke initialisere muteksattributter"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Kan ikke angi rekursive muteksattributter"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Kan ikke initialisere rekursiv muteks"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Kan ikke oppnå mutekslås"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Kan ikke frigi mutekslås"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Inneholder"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
-"\n"
-"uinstallerbare nødvendige pakker: "
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Krever"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Konflikter"
+
+#: zypp/Dep.cc:100
+#, fuzzy
+msgid "Obsoletes"
+msgstr "behold den foreldede pakken %s"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Anbefalt"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Forslag"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Forbedringer"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Tillegg"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr " SSL-sertifikatproblem, bekreft at CA-sertifikat er OK for '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Tvilsom type '%s' for %u byte-kontrollsum '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -45,10 +120,6 @@ msgstr " kjørt"
 msgid " execution failed"
 msgstr " kjøring mislyktes"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " kjøring ikke utført under avbrudd"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -57,114 +128,1885 @@ msgstr " kjøring ikke utført under avbrudd"
 msgid "%s already executed as %s)"
 msgstr "%s allerede kjørt som %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s er i konflikt med %s fra %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " kjøring ikke utført under avbrudd"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s tilhører ikke en pakkebrønn for distribusjonsoppgradering"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Feil ved sending av melding om oppdatering."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s har foreldet arkitektur"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Melding om ny oppdatering"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s kan ikke installeres"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Installasjonen er avbrutt som angitt."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s er beskyttet av systemet, og kan ikke slettes."
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "Beklager, men denne versjonen av libzypp er kompilert uten HAL-støtte."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s foreldede pakker %s fra %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext ikke tilkoblet"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s krever %s, men denne nødvendige filen finnes ikke"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive ikke initialisert"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(UTLØPT)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume ikke initialisert"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(utløper ikke)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Kan ikke opprette dbus-tilkobling"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(utløper innen 24 t)"
-msgstr[1] "(utløper innen 24 t)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Kan ikke opprette libhal-kontekst"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(utløper innen 24 t)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: Kan ikke angi dbus-tilkobling"
 
-# AZ
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhasisk"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Kan ikke initialisere HAL-kontekst, kjører ikke hald?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Akinesisk"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Ikke en CD-ROM-stasjon"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM mislyktes: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Kunne ikke importere offentlig nøkkel fra filen %s: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Legger til pakkebrønn '%s'"
+msgid "Failed to remove public key %s: %s"
+msgstr "Kunne ikke fjerne offentlig nøkkel %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Kundekontrakt kreves"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Endrede konfigurasjonsfiler for %s:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm lagret %s som %s, men det var umulig å finne noen forskjell"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm lagret %s som %s.\n"
+"Her er de 25 første avvikende linjene:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm opprettet %s som %s, men det var umulig å finne noen forskjell"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm opprettet %s som %s.\n"
+"Her er de 25 første avvikende linjene:\n"
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "Flere rpm-resultater"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "opprettet sikkerhetskopi %s"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "Signaturfilen %s ikke funnet"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "Signaturfilen %s ikke funnet"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "Signaturfilen %s ikke funnet"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Følgende handlinger vil bli utført:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Kunnne ikke lese katalogen: '%s'."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Et pakkebrønnalias kan ikke begynne med punktum."
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Tjenestealiaset kan ikke begynne med punktum."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Kan ikke åpne filen '%s' for å skrive til den."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Ingen gyldige metadata funnet på spesifisert(e) nettadresse(r)"
+msgstr[1] "Ingen gyldige metadata funnet på spesifisert(e) nettadresse(r)"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Kan ikke opprette %s"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Kan ikke opprette katalog for metadatamellomlager."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Bygger pakkebrønnmellomlager '%s'"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Kan ikke opprette mellomlager på %s - skrivebeskyttet."
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Kunne ikke mellomlagre pakkebrønn (%d)."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Pakkebrønntypen er ugyldig"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Feil under lesing fra '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Ukjent feil ved lesing fra '%s'"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Legger til pakkebrønn '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Ugyldig pakkebrønnfilnavn på '%s'"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Fjerner pakkebrønnen '%s'"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Finner ikke ut hvor pakkebrønnen er lagret."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Kan ikke slette '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Finner ikke ut hvor tjenesten er lagret."
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Adressestrategi tillater ikke %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Ugyldig %s komponent %s"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Ugyldig %s komponent"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Analyse av spørringsstreng støttes ikke for denne URL-en"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Adressestrategi er en obligatorisk komponent"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Ugyldig adressestrategi %s"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Adressestrategi tillater ikke brukernavn"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Adressestrategi tillater ikke passord"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Adressestrategi krever en vertskomponent"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Adressestrategi tillater ikke en vertskomponent"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Ugyldig vertskomponent %s"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Adressestrategi tillater ikke port"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Ugyldig portkomponent %s"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Adressestrategi krever banenavn"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Relativ sti ikke tillatt hvis autoritet finnes"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Kodet streng inneholder nullbyte"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Ugyldig skilletegn for deling av parametermatrise"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Ugyldig skilletegn for deling av parametertilordning"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Ugyldig skilletegn for sammenføyning av parametermatrise"
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Kunne ikke åpne pty: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Kan ikke åpne pipe (%s)."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Kan ikke kjøre chroot til '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "Kan ikke kjøre chdir til «%s» fra chroot «%s» (%s)."
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Kan ikke kjøre chdir til «%s» (%s)."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Kan ikke kjøre '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Kan ikke splitte (%s)."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Kommandoen ble avsluttet med status %d."
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Kommandoen ble drept av signalet %d (%s)."
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Kommandoen ble avsluttet med en ukjent feil."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(utløper ikke)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(UTLØPT)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(utløper innen 24 t)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(utløper innen 24 t)"
+msgstr[1] "(utløper innen 24 t)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "ukjent"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "støttes ikke"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Nivå 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Nivå 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Nivå 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Kundekontrakt kreves"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "ugyldig"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Brukerstøttenivå er ikke angitt"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Produsenten tilbyr ikke støtte."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Problembeskrivelse, dvs. teknisk støtte som er utformet for å gi informasjon "
+"om kompatibilitet, installasjonshjelp, brukerstøtte, kontinuerlig "
+"vedlikehold og grunnleggende feilsøking. Nivå 1-brukerstøtte omfatter ikke "
+"retting av produktfeil."
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Problemidentifikasjon, dvs. teknisk støtte som er utformet for å gjenskape "
+"kundens problemer, identifisere problemområdet og løse problemer som ikke "
+"blir løst med Nivå 1-brukerstøtte."
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Problemløsning, dvs. teknisk støtte som er utformet for å løse sammensatte "
+"problemer ved hjelp av teknisk ekspertise, og som kan rette produktfeil som "
+"er identifisert med Nivå 2-brukerstøtte."
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "Brukerstøtte krever en tilleggskundekontrakt."
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Ukjent brukerstøttevalg. Ingen beskrivelse tilgjengelig"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Ukjent land: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Ingen kode"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "De forente arabiske emirater"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afghanistan"
+
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua og Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albania"
+
+# AM
+# fuzzy
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Argentina"
+
+# AN
+# fuzzy
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Nederland"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktis"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+# AS
+# fuzzy
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Amerika, Nord"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Østerrike"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australia"
+
+# CU
+# fuzzy
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Åland"
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Aserbadjan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnia og Hercegovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgia"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaria"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
+
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasil"
+
+# BS
+# fuzzy
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvetøya"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Hviterussland"
+
+# BZ
+# fuzzy
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belgia"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Kokosøyene"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
+
+# CF
+# fuzzy
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Den sentralafrikanske republikken"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Sveits"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Elfenbenskysten"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cookøyene"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Kina"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+# CU
+# fuzzy
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Kapp Verde"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Christmasøya"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Kypros"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Tsjekkia"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Tyskland"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danmark"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Den dominikanske republikk"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algerie"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estland"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egypt"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Vest-Sahara"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spania"
+
+# ET
+# fuzzy
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Estonia"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finland"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falklandsøyene (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Mikronesiaføderasjonen"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Færøyene"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Frankrike"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Frankrike (Europa)"
+
+# GH
+# fuzzy
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Storbritannia"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgia"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Fransk Guiana"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+# GH
+# fuzzy
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grønland"
+
+# GM
+# fuzzy
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Jamaica"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Ekvatorial-Guinea"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Hellas"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Sør-Georgia og De sørlige sandwichøyene"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
+
+# GH
+# fuzzy
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heardøya og Mcdonaldøyene"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Kroatia"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Ungarn"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesia"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irland"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Isle of Man"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Britisk territorium i Indiahavet"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+# IR
+# fuzzy
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Israel"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Island"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italia"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordan"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japan"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
+
+# KZ
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgisistan"
+
+# KH
+# fuzzy
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodsja"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Komorene"
+
+# KN
+# fuzzy
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "St. Kitts og Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Nord-Korea"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Sør-Korea"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Caymanøyene"
+
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kasakhstan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Laos"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
+
+# LC
+# fuzzy
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "St. Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+# LR
+# fuzzy
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litauen"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxembourg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latvia"
+
+# LR
+# fuzzy
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libya"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marokko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Saint Martin"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshalløyene"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonia"
+
+# ML
+# fuzzy
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Malta"
+
+# MM
+# fuzzy
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Panama"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolia"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Nord-Marianene"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+# MR
+# fuzzy
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Lituaisk"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Lituaisk"
+
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Malta"
+
+# MW
+# fuzzy
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malta"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexico"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaysia"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mosambik"
+
+# GM
+# fuzzy
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+# NC
+# fuzzy
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Ny-Caledonia"
+
+# NG
+# fuzzy
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolkøyene"
+
+# NG
+# fuzzy
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Nederland"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norge"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "New Zealand"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Fransk Polynesia"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Ny-Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filippinene"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polen"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint Pierre og Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestina"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romania"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbia"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Russland"
+
+# RW
+# fuzzy
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudi-Arabia"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Solomonøyene"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychellene"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Sverige"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapore"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "St. Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenia"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard og Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovakia"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+# SO
+# fuzzy
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome og Principe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+# SY
+# fuzzy
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Serbia"
+
+# SZ
+# fuzzy
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Thailand"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks- og Caicosøyene"
+
+# TD
+# fuzzy
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Tsjad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Sørlige franske territorier"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thailand"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadsjikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisia"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Øst-Timor"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Tyrkia"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad og Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzania"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraina"
+
+# UG
+# fuzzy
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Canada"
+
+# UM
+# fuzzy
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Amerikas forente stater"
+
+# US
+# fuzzy
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Amerikas forente stater"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Usbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Vatikanstaten"
+
+# VC
+# fuzzy
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "St. Vincent og Grenadinene"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Jomfruøyene"
+
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Jomfruøyene, USA"
+
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis og Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Sør-Afrika"
+
+# ZM
+# fuzzy
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Jamaica"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Ukjent språk: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
+
+# AZ
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abkhasisk"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Akinesisk"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "Flere rpm-resultater"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
 
 #. language code: ady
 #: zypp/LanguageCode.cc:171
 msgid "Adyghe"
 msgstr "Adyghe"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
-
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-asiatisk (annet)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -176,11 +2018,6 @@ msgstr "Afrihili"
 msgid "Afrikaans"
 msgstr "Afrikansk"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-asiatisk (annet)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -198,16 +2035,6 @@ msgstr "Akansk"
 msgid "Akkadian"
 msgstr "Akkadisk"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Åland"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albania"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -218,61 +2045,25 @@ msgstr "Albansk"
 msgid "Aleut"
 msgstr "Aleutisk"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algerie"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "Algonquianske språk"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaisk (annet)"
-
-# AS
-# fuzzy
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Amerika, Nord"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Sør-altaisk"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "Amharisk"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Brukerstøtte krever en tilleggskundekontrakt."
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktis"
-
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua og Barbuda"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Engelsk, gammelengelsk (ca. 450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -284,42 +2075,15 @@ msgstr "Apache-språk"
 msgid "Arabic"
 msgstr "Arabisk"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonesisk"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "Arameisk"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
-
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Araucaniansk"
-
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
-
-# AM
-# fuzzy
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Argentina"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonesisk"
 
 # AM
 # fuzzy
@@ -328,17 +2092,25 @@ msgstr "Argentina"
 msgid "Armenian"
 msgstr "Armensk"
 
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Araucaniansk"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
+
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "Kunstspråk (annet)"
 
-# CU
-# fuzzy
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -355,32 +2127,11 @@ msgstr "Asturiansk"
 msgid "Athapascan Languages"
 msgstr "Athapascanske språk"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australia"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "Australske språk"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Østerrike"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronesisk (annet)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Autentisering kreves for '%s'"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -405,47 +2156,25 @@ msgstr "Awadhi"
 msgid "Aymara"
 msgstr "Aymara"
 
-# AZ
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Aserbadjan"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Aserbadjansk"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Ugyldig filnavn: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Ugyldig tilkoblingspunkt for medier"
-
-# BS
-# fuzzy
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinesisk"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Bamileke-språk"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltisk (annet)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bashkirisk"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -457,78 +2186,36 @@ msgstr "Baluchi"
 msgid "Bambara"
 msgstr "Bambara"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Bamileke-språk"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (annet)"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinesisk"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Baskisk"
 
 #. language code: bas
 #: zypp/LanguageCode.cc:253
 msgid "Basa"
 msgstr "Basa"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bashkirisk"
-
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baskisk"
-
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonesia)"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltisk (annet)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "Beja"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Hviterussland"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "Hviterussisk"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgia"
-
-# BZ
-# fuzzy
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belgia"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -539,31 +2226,16 @@ msgstr "Bemba"
 msgid "Bengali"
 msgstr "Bengalsk"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "Berber-språk (annet)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "Bhojpuri"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
@@ -584,272 +2256,71 @@ msgstr "Bini"
 msgid "Bislama"
 msgstr "Bislama"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia og Hercegovina"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (annet)"
 
 #. language code: bos bs
 #: zypp/LanguageCode.cc:281
 msgid "Bosnian"
 msgstr "Bosnisk"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvetøya"
-
 # BR
 #. language code: bra
 #: zypp/LanguageCode.cc:283
 msgid "Braj"
 msgstr "Braj"
 
-# BR
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasil"
-
 #. language code: bre br
 #: zypp/LanguageCode.cc:285
 msgid "Breton"
 msgstr "Bretonsk"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Britisk territorium i Indiahavet"
-
-# VI
-# fuzzy
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Jomfruøyene"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Buginesisk"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Bygger pakkebrønnmellomlager '%s'"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaria"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgarsk"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriat"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Burmesisk"
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Caddo"
-
-# KH
-# fuzzy
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodsja"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Kan ikke opprette sat-pool."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Kan ikke oppnå mutekslås"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Kan ikke kjøre chdir til «%s» (%s)."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "Kan ikke kjøre chdir til «%s» fra chroot «%s» (%s)."
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Kan ikke kjøre chroot til '%s' (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Kan ikke opprette %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Kan ikke opprette mellomlager på %s - skrivebeskyttet."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Kan ikke opprette katalog for metadatamellomlager."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Kan ikke slette '%s'"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Kan ikke kjøre '%s' (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Finner ikke ut hvor pakkebrønnen er lagret."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Finner ikke ut hvor tjenesten er lagret."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Kan ikke splitte (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Kan ikke initialisere muteksattributter"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Kan ikke initialisere rekursiv muteks"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Kan ikke åpne filen '%s' for å skrive til den."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Kan ikke åpne låsefil: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Kan ikke åpne pipe (%s)."
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Kunne ikke åpne pty: %s."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Kan ikke hente filen '%s' i pakkebrønnen '%s'"
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Kan ikke frigi mutekslås"
-
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Kan ikke angi rekursive muteksattributter"
-
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canada"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonesia)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Kan ikke løse ut medium"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriat"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Kan ikke løse ut mediet '%s'"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Buginesisk"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Kan ikke finne noen tilgjengelig loop-enhet for å montere diskbildefilen fra "
-"'%s'"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgarsk"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Burmesisk"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Kan ikke lagre filen '%s'."
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Caddo"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Kapp Verde"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Mellomamerikansk indiansk (annet)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -866,11 +2337,6 @@ msgstr "Katalansk"
 msgid "Caucasian (Other)"
 msgstr "Kaukasisk (annet)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Caymanøyene"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -881,170 +2347,80 @@ msgstr "Cebuano"
 msgid "Celtic (Other)"
 msgstr "Keltisk (annet)"
 
-# CF
-# fuzzy
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Den sentralafrikanske republikken"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Mellomamerikansk indiansk (annet)"
-
-# TD
-# fuzzy
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Tsjad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Chamiske språk"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Endrede konfigurasjonsfiler for %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Tsjetsjensk"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Chibcha"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Tsjetsjensk"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Kina"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Kinesisk"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukese"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Chinook-sjargong"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyan"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Choctaw"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Christmasøya"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "Kirkeslavisk"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukese"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "Chuvash"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Klassisk Newari"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokosøyene"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Kommandoen ble avsluttet med status %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Kommandoen ble avsluttet med en ukjent feil."
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Kommandoen ble drept av signalet %d (%s)."
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Komorene"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Konflikter"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cookøyene"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Chamiske språk"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1061,31 +2437,6 @@ msgstr "Kornisk"
 msgid "Corsican"
 msgstr "Korsikansk"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Elfenbenskysten"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Kreolsk og pidgin (annet)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1101,48 +2452,36 @@ msgstr "Kreolsk og pidgin, franskbasert (annet)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Kreolsk og pidgin, portugisiskbasert (annet)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Krim-tatar"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Kroatia"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Kroatisk"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Kreolsk og pidgin (annet)"
 
-# CU
-# fuzzy
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kashubiansk"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Cushitisk (annet)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Kypros"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Tsjekkisk"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Tsjekkia"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1168,10 +2507,15 @@ msgstr "Dayak"
 msgid "Delaware"
 msgstr "Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danmark"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slavisk (athapascansk)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1183,74 +2527,36 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Divehi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Den dominikanske republikk"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Nedlastingsfeil (curl) for '%s':\n"
-"Feilkode: %s\n"
-"Feilmelding: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Initialisering av nedlasting (curl) mislyktes for '%s'"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Dravidisk (annet)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Sorbiansk, nedre"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Tvilsom type '%s' for %u byte-kontrollsum '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Mellomnederlandsk (ca. 1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Nederlandsk"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Mellomnederlandsk (ca. 1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1261,26 +2567,11 @@ msgstr "Dyula"
 msgid "Dzongkha"
 msgstr "Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Øst-Timor"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egypt"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1291,32 +2582,11 @@ msgstr "Egyptisk (gammelt)"
 msgid "Ekajuk"
 msgstr "Ekajuk"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "Elamitisk"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Destinasjon mangler i URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Filsystem mangler i URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Vertsnavn mangler i URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Kodet streng inneholder nullbyte"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1327,289 +2597,51 @@ msgstr "Engelsk"
 msgid "English, Middle (1100-1500)"
 msgstr "Engelsk, mellomengelsk (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Engelsk, gammelengelsk (ca. 450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Forbedringer"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Ekvatorial-Guinea"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "Feil under definisjon av nedlastingsvalg (curl) for '%s':"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Feil ved sending av melding om oppdatering."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Feil under lesing fra '%s'"
-
-# SY
-# fuzzy
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estland"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estisk"
 
-# ET
-# fuzzy
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Estonia"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Ewe"
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Ewondo"
-
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Kunne ikke mellomlagre pakkebrønn (%d)."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Kunne ikke slette nøkkel."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Kunne ikke importere offentlig nøkkel fra filen %s: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Kunne ikke montere %s på %s"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Kunne ikke hente pakken %s. Vil du førsøke å hente den på nytt?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Kunnne ikke lese katalogen: '%s'."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Kunne ikke fjerne offentlig nøkkel %s: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Kunne ikke avmontere %s"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Ewe"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandsøyene (Malvinas)"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Ewondo"
 
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Fang"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Færøyene"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "Færøyisk"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Mikronesiaføderasjonen"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "Fiji"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Filen '%s' ikke funnet på medium '%s'"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filippinsk"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finland"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1620,40 +2652,16 @@ msgstr "Finsk"
 msgid "Finno-Ugrian (Other)"
 msgstr "Finsk-ugrisk (annet)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Følgende handlinger vil bli utført:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Frankrike"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Fransk"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Fransk Guiana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Fransk Polynesia"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Sørlige franske territorier"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1669,16 +2677,16 @@ msgstr "Fransk, gammelfransk (842-ca. 1400)"
 msgid "Frisian"
 msgstr "Frisisk"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friuliansk"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fulah"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friuliansk"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
@@ -1686,37 +2694,6 @@ msgstr "Ga"
 
 # GH
 # fuzzy
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gælisk"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galisisk"
-
-# GM
-# fuzzy
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Jamaica"
-
-# GH
-# fuzzy
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
-# GH
-# fuzzy
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1727,15 +2704,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Geez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germansk (annet)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1747,6 +2719,36 @@ msgstr "Georgisk"
 msgid "German"
 msgstr "Tysk"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Geez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertesisk"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gælisk"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irsk"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galisisk"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Mansk"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1757,32 +2759,6 @@ msgstr "Tysk, mellomhøytysk (ca. 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Tysk, gammelhøytysk (ca. 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germansk (annet)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Tyskland"
-
-# GH
-# fuzzy
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertesisk"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1803,11 +2779,6 @@ msgstr "Gotisk"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Hellas"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1818,63 +2789,16 @@ msgstr "Gresk, gammelgresk (til 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Gresk, moderne (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grønland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-# GH
-# fuzzy
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1885,52 +2809,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitisk"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal-unntak"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext ikke tilkoblet"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive ikke initialisert"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume ikke initialisert"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Har du aktivert alle nødvendige pakkebrønner?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaiiansk"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heardøya og Mcdonaldøyene"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1956,16 +2849,6 @@ msgstr "Himachali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hirimotu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Historie:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1976,31 +2859,21 @@ msgstr "Hittitisk"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Vatikanstaten"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hirimotu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Sorbiansk, øvre"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Ungarsk"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Ungarn"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2013,10 +2886,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Island"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2028,252 +2901,105 @@ msgstr "Islandsk"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
-msgid "Ijo"
-msgstr "Ijo"
-
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr "Iloko"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Enaresamisk"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr "Indisk (annet)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indoeuropeisk (annet)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesia"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "Indonesisk"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "Ingusj"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Installasjonen er avbrutt som angitt."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (International Auxiliary Language Association)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "Inupiaq"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Ugyldig %s komponent"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Ugyldig %s komponent %s"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Ugyldig LDAP URL-spørringsparameter %s"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Ugyldig LDAP URL-spørringsstreng"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Ugyldig adressestrategi %s"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Ugyldig referanse til tomt URL-objekt"
+msgid "Ijo"
+msgstr "Ijo"
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Ugyldig vertskomponent %s"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Ugyldig skilletegn for sammenføyning av parametermatrise"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Ugyldig skilletegn for deling av parametermatrise"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr "Iloko"
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Ugyldig skilletegn for deling av parametertilordning"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (International Auxiliary Language Association)"
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Ugyldig portkomponent %s"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr "Indisk (annet)"
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Ugyldig regulært uttrykk '%s'"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "Indonesisk"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Ugyldig regulært uttrykk '%s': tilbakemelding 'regcomp'  %d"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indoeuropeisk (annet)"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Ugyldig pakkebrønnfilnavn på '%s'"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "Ingusj"
 
-# IR
-# fuzzy
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Israel"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "Inupiaq"
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Iransk (annet)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irland"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irsk"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Irsk, mellomirsk (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Irsk, gammelirsk (til 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Irokesiske språk"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Isle of Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italiensk"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italia"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javanesisk"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japan"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japansk"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javanesisk"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordan"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Judeopersisk"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Judeoarabisk"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Judeopersisk"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardiansk"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2290,11 +3016,6 @@ msgstr "Kachin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmyk"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2305,21 +3026,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karachay-balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2330,10 +3036,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kashmirsk"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kashubiansk"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2347,33 +3053,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Kasakstansk"
 
-# KZ
-# fuzzy
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kasakhstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardiansk"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Khoisan (annet)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2384,11 +3083,6 @@ msgstr "Khotanesisk"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2399,15 +3093,15 @@ msgstr "Kinyarwanda"
 msgid "Kirghiz"
 msgstr "Kirgisisk"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingonsk"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2419,11 +3113,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2439,11 +3128,21 @@ msgstr "Kosraeansk"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karachay-balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2456,31 +3155,14 @@ msgstr "Kumyk"
 
 #. language code: kur ku
 #: zypp/LanguageCode.cc:651
-msgid "Kurdish"
-msgstr "Kurdisk"
-
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
+msgid "Kurdish"
+msgstr "Kurdisk"
 
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-# KZ
-# fuzzy
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgisistan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2501,72 +3183,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Laotisk"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Laos"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latin"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latvia"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Latvisk"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Nivå 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Nivå 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Nivå 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezghiansk"
 
-# LR
-# fuzzy
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-# LR
-# fuzzy
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libya"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2577,61 +3208,48 @@ msgstr "Limburgansk"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litauen"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Litauisk"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Plasseringen '%s' er midlertidig utilgjengelig."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Lavtysk"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Sorbiansk, nedre"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburgisk"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+# GH
+# fuzzy
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lulesamisk"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2647,35 +3265,11 @@ msgstr "Luo (Kenya og Tanzania)"
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxembourg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburgisk"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Makedonsk"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2686,6 +3280,11 @@ msgstr "Maduresisk"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshallisk"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2696,127 +3295,30 @@ msgstr "Maithili"
 msgid "Makasar"
 msgstr "Makasar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malagasisk"
-
-# MW
-# fuzzy
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malta"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malayisk"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malayalamsk"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaysia"
-
-# MV
-# fuzzy
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Malta"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Feilformatert URI"
-
-# ML
-# fuzzy
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Malta"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltisk"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchu"
-
-# MM
-# fuzzy
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Manobo-språk"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Mansk"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronesisk (annet)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
-msgid "Marathi"
-msgstr "Marathi"
-
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshalløyene"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshallisk"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
+msgid "Marathi"
+msgstr "Marathi"
 
 # MW
 # fuzzy
@@ -2825,63 +3327,32 @@ msgstr "Marwari"
 msgid "Masai"
 msgstr "Masai"
 
-# MR
-# fuzzy
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Lituaisk"
-
-# MU
-# fuzzy
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Lituaisk"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Maya-språk"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "Mediekilde '%s' inneholder ikke ønsket medium"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Mediet '%s' benyttes av en annen prosess"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malayisk"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Medium ikke tilkoblet"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Mediet ble ikke åpnet da handlingen ble forsøkt utført '%s'."
+# MM
+# fuzzy
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Frankrike (Europa)"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexico"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Irsk, mellomirsk (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2893,88 +3364,61 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-# FM
-# fuzzy
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandesisk"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Diverse språk"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Khmer (annet)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malagasisk"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltisk"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manchu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Manobo-språk"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldovisk"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Khmer (annet)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolia"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongolsk"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marokko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mosambik"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2985,222 +3429,145 @@ msgstr "Flere språk"
 msgid "Munda languages"
 msgstr "Munda-språk"
 
-# MM
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+# FM
 # fuzzy
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Panama"
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandesisk"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Maya-språk"
+
+# SY
+# fuzzy
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-# GM
-# fuzzy
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Nordamerikansk indiansk"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Napolitansk"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele, nord"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele, sør"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele, nord"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Napolitansk"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepalsk bhasa"
-
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
-msgstr "Nepalsk"
-
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Nederland"
-
-# AN
-# fuzzy
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Nederland"
-
-# NC
-# fuzzy
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Ny-Caledonia"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Lavtysk"
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "New Zealand"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
+msgstr "Nepalsk"
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Melding om ny oppdatering"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepalsk bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-# NG
-# fuzzy
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Niger-kordofaniansk (annet)"
 
-# NG
-# fuzzy
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilosaharansk (annet)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niueansk"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Ingen kode"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Norsk nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Ingen nettadresse i pakkebrønn."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Norsk bokmål"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolkøyene"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Norrønt, gammelnorrønt"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Nordamerikansk indiansk"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Nord-Korea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Nord-Marianene"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Nordsamisk"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Sotho, nordlig"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norge"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norsk"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Norsk bokmål"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Norsk nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Ikke en CD-ROM-stasjon"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Sotho, nordlig"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Nubiske språk"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Klassisk Newari"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3221,11 +3588,6 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "behold den foreldede pakken %s"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3236,20 +3598,6 @@ msgstr "Oksitansk (etter 1500)"
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Én eller begge attributtene '%s' eller '%s' kreves."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Handlingen støttes ikke av mediet"
-
 # SY
 # fuzzy
 #. language code: ori or
@@ -3272,66 +3620,36 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Ossetisk"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Tyrkisk, ottomansk (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Otomianske språk"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Det ser ut til at pakken %s har blitt skadet under overføring. Vil du prøve "
-"å laste den ned på nytt?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papuansk (annet)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinansk"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauansk"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestina"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "Pampanga"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinansk"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3342,94 +3660,45 @@ msgstr "Panjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua Ny-Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papuansk (annet)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Stien '%s' på mediet '%s' er ikke en katalog."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Stien '%s' på mediet '%s' er ikke en fil."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Tilgang til '%s' avvist."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persisk"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauansk"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Persisk, gammelpersisk (ca. 600-400 B.C.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persisk"
 
 #. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
-msgstr "Filippinsk (annet)"
-
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filippinene"
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
+msgstr "Filippinsk (annet)"
 
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Fønisisk"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Installer pakken 'lsof' først."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeiansk"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polen"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Polsk"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeiansk"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3441,87 +3710,21 @@ msgstr "Portugisisk"
 msgid "Prakrit Languages"
 msgstr "Prakrit-språk"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Problembeskrivelse, dvs. teknisk støtte som er utformet for å gi informasjon "
-"om kompatibilitet, installasjonshjelp, brukerstøtte, kontinuerlig "
-"vedlikehold og grunnleggende feilsøking. Nivå 1-brukerstøtte omfatter ikke "
-"retting av produktfeil."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Problemidentifikasjon, dvs. teknisk støtte som er utformet for å gjenskape "
-"kundens problemer, identifisere problemområdet og løse problemer som ikke "
-"blir løst med Nivå 1-brukerstøtte."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Problemløsning, dvs. teknisk støtte som er utformet for å løse sammensatte "
-"problemer ved hjelp av teknisk ekspertise, og som kan rette produktfeil som "
-"er identifisert med Nivå 2-brukerstøtte."
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Provensalsk, gammelprovensalsk (til 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Inneholder"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pushto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Analyse av spørringsstreng støttes ikke for denne URL-en"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM mislyktes: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Retoromansk"
-
 # KZ
 # fuzzy
 #. language code: raj
@@ -3539,57 +3742,26 @@ msgstr "Rapanui"
 msgid "Rarotongan"
 msgstr "Rarotongansk"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Anbefalt"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Relativ sti ikke tillatt hvis autoritet finnes"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Fjerner pakkebrønnen '%s'"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Et pakkebrønnalias kan ikke begynne med punktum."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Nødvendig attributt '%s' mangler."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Krever"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Romansk (annet)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romania"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumensk"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Retoromansk"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Romsk"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumensk"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3600,51 +3772,25 @@ msgstr "Rundi"
 msgid "Russian"
 msgstr "Russisk"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Russland"
-
-# RW
-# fuzzy
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "St. Helena"
-
-# KN
-# fuzzy
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "St. Kitts og Nevis"
-
-# LC
-# fuzzy
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "St. Lucia"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandawe"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint Martin"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre og Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Yakut"
 
-# VC
-# fuzzy
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "St. Vincent og Grenadinene"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Søramerikansk indiansk (annet)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3656,71 +3802,41 @@ msgstr "Salisjanske språk"
 msgid "Samaritan Aramaic"
 msgstr "Samaritansk arameisk"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Samiske språk (annet)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoisk"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandawe"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sango"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskrit"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "Santali"
-
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome og Principe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardinsk"
-
 #. language code: sas
 #: zypp/LanguageCode.cc:919
 msgid "Sasak"
 msgstr "Sasak"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudi-Arabia"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "Santali"
+
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbisk"
+
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Siciliansk"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Skotsk"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Kroatisk"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3731,147 +3847,40 @@ msgstr "Selkup"
 msgid "Semitic (Other)"
 msgstr "Semittisk (annet)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbia"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbisk"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Tjenestealiaset kan ikke begynne med punktum."
-
-#: zypp/repo/RepoException.cc:129
-#, fuzzy
-msgid "Service plugin does not support changing an attribute."
-msgstr "ressurstypen VAR1 støtter ikke funksjonen 'vis endringer'"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Irsk, gammelirsk (til 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychellene"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Tegnspråk"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Shan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Siciliansk"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Tegnspråk"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "Signaturfilen %s ikke funnet"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Signaturfilen %s ikke funnet"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "Signaturfilen %s ikke funnet"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "Signaturfilen %s ikke funnet"
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr " kjøring mislyktes"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapore"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Sinhala"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sinotibetansk (annet)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Siouanske språk"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Skoltesamisk"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slavisk (athapascansk)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sinotibetansk (annet)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3883,156 +3892,127 @@ msgstr "Slavisk (annet)"
 msgid "Slovak"
 msgstr "Slovakisk"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovakia"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenia"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Slovensk"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "Sogdiansk"
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Solomonøyene"
-
-# SO
-# fuzzy
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Somalisk"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Sørsamisk"
 
-# SO
-# fuzzy
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Nordsamisk"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "Songhai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Samiske språk (annet)"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lulesamisk"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Sorbianske språk"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Enaresamisk"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Beklager, men denne versjonen av libzypp er kompilert uten HAL-støtte."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoisk"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "Sotho, sørlig"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Skoltesamisk"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Sør-Afrika"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Søramerikansk indiansk (annet)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Sør-Georgia og De sørlige sandwichøyene"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Sør-Korea"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "Sogdiansk"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Sør-altaisk"
+# SO
+# fuzzy
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Somalisk"
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Sørsamisk"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "Songhai"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spania"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "Sotho, sørlig"
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Spansk"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardinsk"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Forslag"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilosaharansk (annet)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumerisk"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sudanesisk"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Tillegg"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard og Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumerisk"
 
 # SZ
 # fuzzy
@@ -4041,40 +4021,11 @@ msgstr "Svalbard og Jan Mayen"
 msgid "Swahili"
 msgstr "Swahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati"
-
-# SZ
-# fuzzy
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Thailand"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Sverige"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Svensk"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Sveits"
-
-# SY
-# fuzzy
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Serbia"
-
 # SY
 # fuzzy
 #. language code: syr
@@ -4082,25 +4033,6 @@ msgstr "Serbia"
 msgid "Syriac"
 msgstr "Syrisk"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Systemunntak '%s' på mediet '%s'."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Systemadministrasjonen er låst av programmet med pid %d (%s).\n"
-"Lukk dette programmet før du forsøker igjen."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalogsk"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4111,36 +4043,11 @@ msgstr "Tahitisk"
 msgid "Tai (Other)"
 msgstr "Tai (annet)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tadsjikisk"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadsjikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamasjek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamilsk"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4151,6 +4058,11 @@ msgstr "Tatar"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4161,33 +4073,21 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tadsjikisk"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalogsk"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Thai"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thailand"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Brukerstøttenivå er ikke angitt"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Produsenten tilbyr ikke støtte."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Denne handlingen utføres allerede av et annet program."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Denne kommandoen vil skade systemet!"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4205,46 +4105,25 @@ msgstr "Tigre"
 msgid "Tigrinya"
 msgstr "Tigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Tidsavbrudd under tilgang '%s'."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingonsk"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamasjek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4256,106 +4135,66 @@ msgstr "Tonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Tongaøyene)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Forsøkte å importere ikke-eksisterende nøkkel %s til nøkkelring %s"
-
-# TT
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad og Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimshian"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmensk"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisia"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Tupi-språk"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Tyrkia"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Tyrkisk"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Tyrkisk, ottomansk (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkmensk"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks- og Caicosøyene"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaisk (annet)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "Tuviniansk"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Udmurt"
 
-# UG
-# fuzzy
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Canada"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4366,11 +4205,6 @@ msgstr "Ugaritisk"
 msgid "Uighur"
 msgstr "Uighursk"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraina"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4381,219 +4215,36 @@ msgstr "Ukrainsk"
 msgid "Umbundu"
 msgstr "Umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Kan ikke klone URL-objekt"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Kan ikke opprette dbus-tilkobling"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Kan ikke initialisere HAL-kontekst, kjører ikke hald?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Kan ikke analysere URL-komponenter"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Udefinert"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Pakkebrønntypen er ugyldig"
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "De forente arabiske emirater"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Storbritannia"
-
-# US
-# fuzzy
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Amerikas forente stater"
-
-# UM
-# fuzzy
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Amerikas forente stater"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Ukjent land: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Ukjent feil ved lesing fra '%s'"
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Ukjent språk: "
-
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Ukjent samsvarsmodus '%s'"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Ukjent samsvarsmodus '%s' for mønsteret '%s'."
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Ukjent brukerstøttevalg. Ingen beskrivelse tilgjengelig"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "HTTP-autentiseringsmetode '%s' er ikke støttet"
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "URI-skjema som ikke støttes i '%s'."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Sorbiansk, øvre"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "Urdu"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Adressestrategi tillater ikke %s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Adressestrategi tillater ikke en vertskomponent"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Adressestrategi tillater ikke passord"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Adressestrategi tillater ikke port"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Adressestrategi tillater ikke brukernavn"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Adressestrategi er en obligatorisk komponent"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Adressestrategi krever en vertskomponent"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Adressestrategi krever banenavn"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "Usbekistansk"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Usbekistan"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "Vai"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-#, fuzzy
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "Ingen gyldige metadata funnet på spesifisert(e) nettadresse(r)"
-msgstr[1] "Ingen gyldige metadata funnet på spesifisert(e) nettadresse(r)"
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "Venda"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-# VN
-# fuzzy
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "Vietnamesisk"
 
-# VI
-# fuzzy
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Jomfruøyene, USA"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Besøk Novell kundesenter for å kontrollere om din registrering er gyldig og "
-"ikke er utløpt."
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4614,16 +4265,6 @@ msgstr "Wakasjanske språk"
 msgid "Walamo"
 msgstr "Walamo"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis og Futuna"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Wallonsk"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4639,26 +4280,31 @@ msgstr "Washo"
 msgid "Welsh"
 msgstr "Walisisk"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Vest-Sahara"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Sorbianske språk"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Wallonsk"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "Wolof"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmyk"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "Xhosa"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Yakut"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4669,11 +4315,6 @@ msgstr "Yao"
 msgid "Yapese"
 msgstr "Yapesisk"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
-
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
 msgid "Yiddish"
@@ -4691,273 +4332,632 @@ msgstr "Yoruba"
 msgid "Yupik Languages"
 msgstr "Yupik-språk"
 
-# ZM
-# fuzzy
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Jamaica"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapotec"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
 
 #. language code: znd
 #: zypp/LanguageCode.cc:1145
 msgid "Zande"
 msgstr "Zande"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapotec"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Forsøkte å importere ikke-eksisterende nøkkel %s til nøkkelring %s"
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Kunne ikke slette nøkkel."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Signaturfilen %s ikke funnet"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Kan ikke hente filen '%s' i pakkebrønnen '%s'"
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Ingen nettadresse i pakkebrønn."
+
+#: zypp/repo/RepoException.cc:129
+#, fuzzy
+msgid "Service plugin does not support changing an attribute."
+msgstr "ressurstypen VAR1 støtter ikke funksjonen 'vis endringer'"
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Det ser ut til at pakken %s har blitt skadet under overføring. Vil du prøve "
+"å laste den ned på nytt?"
+
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr " kjøring mislyktes"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Kunne ikke hente pakken %s. Vil du førsøke å hente den på nytt?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm-kontroll mislyktes."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm mislyktes."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"Systemadministrasjonen er låst av programmet med pid %d (%s).\n"
+"Lukk dette programmet før du forsøker igjen."
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s tilhører ikke en pakkebrønn for distribusjonsoppgradering"
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s har foreldet arkitektur"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problem med den installerte pakken %s"
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "kommandokonflikter"
+
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "en konflikt"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "ingenting inneholder den nødvendige %s"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Har du aktivert alle nødvendige pakkebrønner?"
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "pakken %s finnes ikke"
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "forespørselen støttes ikke"
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s er beskyttet av systemet, og kan ikke slettes."
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s kan ikke installeres"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "ingenting inneholder %s som kreves av %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "kan ikke installere både %s og %s"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s er i konflikt med %s fra %s"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s foreldede pakker %s fra %s"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "installert %s foreldede %s fra %s"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "løsningen %s er i konflikt med %s som den selv inneholder"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s krever %s, men denne nødvendige filen finnes ikke"
+
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "slettede leverandører: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"uinstallerbare nødvendige pakker: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "uinstallerbare nødvendige pakker: "
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "Ikke installer %s"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "behold %s"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "ikke forby installasjon av %s"
+
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Denne kommandoen vil skade systemet!"
+
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ignorer advarsel om skadet system"
+
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "ikke be om å installere en nødvendig pakke som gir %s"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "ikke be om å slette alle nødvendige pakker som gir %s"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "ikke installer nyeste versjon av %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "behold %s selv om arkitekturen er feil"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "installer %s selv om arkitekturen ikke er riktig"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "behold den foreldede pakken %s"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm-kontroll mislyktes."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "installer %s fra deaktivert pakkebrønn"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm mislyktes."
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "nedgradering av %s til %s"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr "Arkitekturendring fra %s til %s"
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"installer %s (med produsentendring)\n"
+"  %s  -->  %s"
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "%s erstattes av %s"
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "avinstallasjon av %s"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "ignorer noen avhengigheter selv om %s ikke vil fungere"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "ignorer generelt noen avhengigheter"
+
+#: zypp/parser/RepoindexFileReader.cc:197
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "kan ikke installere både %s og %s"
+msgid "Required attribute '%s' is missing."
+msgstr "Nødvendig attributt '%s' mangler."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "kommandokonflikter"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Én eller begge attributtene '%s' eller '%s' kreves."
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/base/InterProcessMutex.cc:83
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "opprettet sikkerhetskopi %s"
+msgid "Can't open lock file: %s"
+msgstr "Kan ikke åpne låsefil: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Denne handlingen utføres allerede av et annet program."
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Historie:"
+
+#: zypp/base/StrMatcher.cc:152
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "avinstallasjon av %s"
+msgid "Unknown match mode '%s'"
+msgstr "Ukjent samsvarsmodus '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "slettede leverandører: "
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Ukjent samsvarsmodus '%s' for mønsteret '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "ikke be om å slette alle nødvendige pakker som gir %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Ugyldig regulært uttrykk '%s': tilbakemelding 'regcomp'  %d"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "ikke be om å installere en nødvendig pakke som gir %s"
+msgid "Invalid regular expression '%s'"
+msgstr "Ugyldig regulært uttrykk '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Installer pakken 'lsof' først."
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "Ikke installer %s"
+msgid "Authentication required for '%s'"
+msgstr "Autentisering kreves for '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "ikke installer nyeste versjon av %s"
+msgid "Failed to mount %s on %s"
+msgstr "Kunne ikke montere %s på %s"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "nedgradering av %s til %s"
+msgid "Failed to unmount %s"
+msgstr "Kunne ikke avmontere %s"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "ignorer generelt noen avhengigheter"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Ugyldig filnavn: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ignorer advarsel om skadet system"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Mediet ble ikke åpnet da handlingen ble forsøkt utført '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"installer %s (med produsentendring)\n"
-"  %s  -->  %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Filen '%s' ikke funnet på medium '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "installer %s selv om arkitekturen ikke er riktig"
+msgid "Cannot write file '%s'."
+msgstr "Kan ikke lagre filen '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Medium ikke tilkoblet"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Ugyldig tilkoblingspunkt for medier"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "installer %s fra deaktivert pakkebrønn"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Initialisering av nedlasting (curl) mislyktes for '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "installert %s foreldede %s fra %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "Systemunntak '%s' på mediet '%s'."
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "ugyldig"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Stien '%s' på mediet '%s' er ikke en fil."
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Stien '%s' på mediet '%s' er ikke en katalog."
+
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Feilformatert URI"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Vertsnavn mangler i URI"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Filsystem mangler i URI"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Destinasjon mangler i URI"
+
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "URI-skjema som ikke støttes i '%s'."
+
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Handlingen støttes ikke av mediet"
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "behold %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Nedlastingsfeil (curl) for '%s':\n"
+"Feilkode: %s\n"
+"Feilmelding: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "behold %s selv om arkitekturen er feil"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "Feil under definisjon av nedlastingsvalg (curl) for '%s':"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "behold den foreldede pakken %s"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Mediekilde '%s' inneholder ikke ønsket medium"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Kan ikke opprette libhal-kontekst"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "Mediet '%s' benyttes av en annen prosess"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: Kan ikke angi dbus-tilkobling"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Kan ikke løse ut medium"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "ingenting inneholder %s som kreves av %s"
+msgid "Cannot eject media '%s'"
+msgstr "Kan ikke løse ut mediet '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "ingenting inneholder den nødvendige %s"
+msgid "Permission to access '%s' denied."
+msgstr "Tilgang til '%s' avvist."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "pakken %s finnes ikke"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Tidsavbrudd under tilgang '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problem med den installerte pakken %s"
-
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "ikke forby installasjon av %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Plasseringen '%s' er midlertidig utilgjengelig."
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr ""
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr " SSL-sertifikatproblem, bekreft at CA-sertifikat er OK for '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "%s erstattes av %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Kan ikke finne noen tilgjengelig loop-enhet for å montere diskbildefilen fra "
+"'%s'"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm opprettet %s som %s, men det var umulig å finne noen forskjell"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "HTTP-autentiseringsmetode '%s' er ikke støttet"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
-"rpm opprettet %s som %s.\n"
-"Her er de 25 første avvikende linjene:\n"
+"Besøk Novell kundesenter for å kontrollere om din registrering er gyldig og "
+"ikke er utløpt."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm lagret %s som %s, men det var umulig å finne noen forskjell"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Kan ikke opprette sat-pool."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm lagret %s som %s.\n"
-"Her er de 25 første avvikende linjene:\n"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "løsningen %s er i konflikt med %s som den selv inneholder"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "en konflikt"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "uinstallerbare nødvendige pakker: "
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "ukjent"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "støttes ikke"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "forespørselen støttes ikke"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#~ msgid "%s remove failed"
-#~ msgstr "%s avinstallasjon mislyktes"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+
+#~ msgid "do not keep %s installed"
+#~ msgstr "ikke behold %s"
 
 #~ msgid "Cannot create public key %s from %s keyring to file %s"
 #~ msgstr ""
@@ -4991,6 +4991,16 @@ msgstr "forespørselen støttes ikke"
 #~ msgid "Failed to download %s from %s"
 #~ msgstr "Kunne ikke laste ned %s fra %s"
 
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Serbia og Montenegro"
+
+#~ msgid "Unknown Distribution"
+#~ msgstr "Ukjent distribusjon"
+
+#~| msgid "Ignore some dependencies of %s"
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "ignorer noen avhengigheter for '%s'"
+
 #~ msgid ""
 #~ "File %s does not have a checksum.\n"
 #~ "Use the file anyway?"
@@ -5039,15 +5049,6 @@ msgstr "forespørselen støttes ikke"
 #~ "%s|%s|%s\n"
 #~ " Vil du bruke filen likevel?"
 
-#~ msgid "Invalid user name or password."
-#~ msgstr "Ugyldig brukernavn eller passord."
-
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Serbia og Montenegro"
-
-#~ msgid "Unknown Distribution"
-#~ msgstr "Ukjent distribusjon"
-
 #~ msgid ""
 #~ "Untrusted key found:\n"
 #~ "%s|%s|%s\n"
@@ -5057,12 +5058,11 @@ msgstr "forespørselen støttes ikke"
 #~ "%s|%s|%s\n"
 #~ " Skal nøkkelen klareres likevel?"
 
-#~ msgid "do not keep %s installed"
-#~ msgstr "ikke behold %s"
+#~ msgid "%s remove failed"
+#~ msgstr "%s avinstallasjon mislyktes"
 
-#~| msgid "Ignore some dependencies of %s"
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "ignorer noen avhengigheter for '%s'"
+#~ msgid "Invalid user name or password."
+#~ msgstr "Ugyldig brukernavn eller passord."
 
 #~ msgid "rpm output:"
 #~ msgstr "rpm-resultat:"
index e4a96aa..50f9350 100644 (file)
--- a/po/nds.po
+++ b/po/nds.po
@@ -15,831 +15,811 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-msgid " execution failed"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:99
+msgid "Conflicts"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
+#: zypp/target/TargetImpl.cc:332
+msgid " execution failed"
 msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
 msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
 msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
 msgstr ""
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
 msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
 msgstr ""
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
 msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
 msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
 msgstr ""
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
 msgstr ""
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
 msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
 msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
 msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr ""
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
 msgstr ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
 msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
 msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/RepoManager.cc:1366
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
+msgid "Failed to cache repo (%d)."
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
 msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
 msgstr ""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
 msgstr ""
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
 msgstr ""
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
 msgstr ""
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
 msgstr ""
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
 msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
 msgstr ""
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
 msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
 msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
 msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
 msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
 msgstr ""
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
 msgstr ""
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
 msgstr ""
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
 msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
 msgstr ""
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
 msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
 msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
 msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
 msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
 msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr ""
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
 msgstr ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
 msgstr ""
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
 msgstr ""
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
 msgstr ""
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
 msgstr ""
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
 msgstr ""
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
 msgstr ""
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
 msgstr ""
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
 msgstr ""
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
 msgstr ""
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
 msgstr ""
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
 msgstr ""
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
 msgstr ""
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
 msgstr ""
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
 msgstr ""
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
 msgstr ""
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
 msgstr ""
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
 msgstr ""
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr ""
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
 msgstr ""
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
 msgstr ""
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
 msgstr ""
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
 msgstr ""
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
 msgstr ""
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
 msgstr ""
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
 msgstr ""
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
 msgstr ""
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
 msgstr ""
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
 msgstr ""
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
 msgstr ""
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
 msgstr ""
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
 msgstr ""
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
 msgstr ""
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
 msgstr ""
 
 #. :COD:180:
@@ -847,2869 +827,2895 @@ msgstr ""
 msgid "Central African Republic"
 msgstr ""
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
 msgstr ""
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
 msgstr ""
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
 msgstr ""
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
 msgstr ""
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
 msgstr ""
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
 msgstr ""
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
 msgstr ""
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
 msgstr ""
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
 msgstr ""
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
 msgstr ""
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
 msgstr ""
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
 msgstr ""
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
 msgstr ""
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
 msgstr ""
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
 msgstr ""
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
 msgstr ""
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
 msgstr ""
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
 msgstr ""
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
 msgstr ""
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
 msgstr ""
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
 msgstr ""
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
 msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
 msgstr ""
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
 msgstr ""
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
 msgstr ""
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
 msgstr ""
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
 msgstr ""
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
 msgstr ""
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
 msgstr ""
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
 msgstr ""
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
 msgstr ""
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
 msgstr ""
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
 msgstr ""
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
 msgstr ""
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
 msgstr ""
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
 msgstr ""
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
 msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
 msgstr ""
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
 msgstr ""
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
 msgstr ""
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
 msgstr ""
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
 msgstr ""
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
 msgstr ""
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
 msgstr ""
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
 msgstr ""
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
 msgstr ""
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
 msgstr ""
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
 msgstr ""
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
 msgstr ""
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
 msgstr ""
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
 msgstr ""
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
+#: zypp/CountryCode.cc:261
+msgid "India"
 msgstr ""
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
 msgstr ""
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
 msgstr ""
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
 msgstr ""
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
 msgstr ""
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
 msgstr ""
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
 msgstr ""
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
 msgstr ""
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
 msgstr ""
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
 msgstr ""
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
 msgstr ""
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
 msgstr ""
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
 msgstr ""
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
 msgstr ""
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
 msgstr ""
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
 msgstr ""
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
 msgstr ""
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
 msgstr ""
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
 msgstr ""
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
 msgstr ""
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
 msgstr ""
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
 msgstr ""
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
 msgstr ""
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
 msgstr ""
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
 msgstr ""
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
 msgstr ""
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
 msgstr ""
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
 msgstr ""
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
 msgstr ""
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
 msgstr ""
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
 msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
 msgstr ""
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
 msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
 msgstr ""
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
 msgstr ""
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
 msgstr ""
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
 msgstr ""
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr ""
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr ""
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr ""
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr ""
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr ""
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr ""
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr ""
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr ""
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr ""
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr ""
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr ""
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr ""
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr ""
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr ""
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
 msgstr ""
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
 msgstr ""
 
-#. language code: fil
-#: zypp/LanguageCode.cc:437
-msgid "Filipino"
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
 msgstr ""
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
 msgstr ""
 
-#. language code: fin fi
-#: zypp/LanguageCode.cc:439
-msgid "Finnish"
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
 msgstr ""
 
-#. language code: fiu
-#: zypp/LanguageCode.cc:441
-msgid "Finno-Ugrian (Other)"
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
 msgstr ""
 
-#. language code: fon
-#: zypp/LanguageCode.cc:443
-msgid "Fon"
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
 msgstr ""
 
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
 msgstr ""
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
 msgstr ""
 
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
 msgstr ""
 
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
 msgstr ""
 
-#. language code: frm
-#: zypp/LanguageCode.cc:449
-msgid "French, Middle (ca.1400-1600)"
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
 msgstr ""
 
-#. language code: fro
-#: zypp/LanguageCode.cc:451
-msgid "French, Old (842-ca.1400)"
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
 msgstr ""
 
-#. language code: fry fy
-#: zypp/LanguageCode.cc:453
-msgid "Frisian"
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
 msgstr ""
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
 msgstr ""
 
-#. language code: gaa
-#: zypp/LanguageCode.cc:459
-msgid "Ga"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
 msgstr ""
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
 msgstr ""
 
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
 msgstr ""
 
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
 msgstr ""
 
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
 msgstr ""
 
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
 msgstr ""
 
-#. language code: gay
-#: zypp/LanguageCode.cc:461
-msgid "Gayo"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
 msgstr ""
 
-#. language code: gba
-#: zypp/LanguageCode.cc:463
-msgid "Gbaya"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
 msgstr ""
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
 msgstr ""
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
 msgstr ""
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-msgid "German"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
 msgstr ""
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
 msgstr ""
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
 msgstr ""
 
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
 msgstr ""
 
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr ""
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr ""
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
 msgstr ""
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
 msgstr ""
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
 msgstr ""
 
-#. language code: gon
-#: zypp/LanguageCode.cc:491
-msgid "Gondi"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
 msgstr ""
 
-#. language code: gor
-#: zypp/LanguageCode.cc:493
-msgid "Gorontalo"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
 msgstr ""
 
-#. language code: got
-#: zypp/LanguageCode.cc:495
-msgid "Gothic"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
 msgstr ""
 
-#. language code: grb
-#: zypp/LanguageCode.cc:497
-msgid "Grebo"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
 msgstr ""
 
-#. language code: grc
-#: zypp/LanguageCode.cc:499
-msgid "Greek, Ancient (to 1453)"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
 msgstr ""
 
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
 msgstr ""
 
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
 msgstr ""
 
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
 msgstr ""
 
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
 msgstr ""
 
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
 msgstr ""
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
 msgstr ""
 
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
 msgstr ""
 
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
 msgstr ""
 
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
 msgstr ""
 
-#. language code: guj gu
-#: zypp/LanguageCode.cc:507
-msgid "Gujarati"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
 msgstr ""
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
 msgstr ""
 
-#. language code: gwi
-#: zypp/LanguageCode.cc:509
-msgid "Gwich'in"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
 msgstr ""
 
-#. language code: hai
-#: zypp/LanguageCode.cc:511
-msgid "Haida"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
 msgstr ""
 
-#. language code: hat ht
-#: zypp/LanguageCode.cc:513
-msgid "Haitian"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
 msgstr ""
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
 msgstr ""
 
-#. language code: hau ha
-#: zypp/LanguageCode.cc:515
-msgid "Hausa"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
 msgstr ""
 
-#. language code: haw
-#: zypp/LanguageCode.cc:517
-msgid "Hawaiian"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#. language code: heb he
-#: zypp/LanguageCode.cc:519
-msgid "Hebrew"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#. language code: her hz
-#: zypp/LanguageCode.cc:521
-msgid "Herero"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
 msgstr ""
 
-#. language code: hil
-#: zypp/LanguageCode.cc:523
-msgid "Hiligaynon"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. language code: him
-#: zypp/LanguageCode.cc:525
-msgid "Himachali"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. language code: hin hi
-#: zypp/LanguageCode.cc:527
-msgid "Hindi"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
 msgstr ""
 
-#. language code: hit
-#: zypp/LanguageCode.cc:529
-msgid "Hittite"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
 msgstr ""
 
-#. language code: hmn
-#: zypp/LanguageCode.cc:531
-msgid "Hmong"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
 msgstr ""
 
-#. language code: hun hu
-#: zypp/LanguageCode.cc:537
-msgid "Hungarian"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
 msgstr ""
 
-#. language code: hup
-#: zypp/LanguageCode.cc:539
-msgid "Hupa"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
 msgstr ""
 
-#. language code: iba
-#: zypp/LanguageCode.cc:541
-msgid "Iban"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
 msgstr ""
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#. language code: ice isl is
-#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
-msgid "Icelandic"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
 msgstr ""
 
-#. language code: ido io
-#: zypp/LanguageCode.cc:549
-msgid "Ido"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
 msgstr ""
 
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
 msgstr ""
 
-#: zypp/CountryCode.cc:261
-msgid "India"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
 msgstr ""
 
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
 msgstr ""
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
 msgstr ""
 
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
 msgstr ""
 
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
 msgstr ""
 
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
 msgstr ""
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
 msgstr ""
 
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
 msgstr ""
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
 msgstr ""
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
 msgstr ""
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. language code: iro
-#: zypp/LanguageCode.cc:575
-msgid "Iroquoian Languages"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
 msgstr ""
 
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#. language code: ita it
-#: zypp/LanguageCode.cc:577
-msgid "Italian"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
 msgstr ""
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
 msgstr ""
 
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
 msgstr ""
 
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
 msgstr ""
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
 msgstr ""
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
 msgstr ""
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
 msgstr ""
 
-#. language code: kab
-#: zypp/LanguageCode.cc:591
-msgid "Kabyle"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. language code: kac
-#: zypp/LanguageCode.cc:593
-msgid "Kachin"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
 msgstr ""
 
-#. language code: kal kl
-#: zypp/LanguageCode.cc:595
-msgid "Kalaallisut"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#. language code: kam
-#: zypp/LanguageCode.cc:597
-msgid "Kamba"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
 msgstr ""
 
-#. language code: kan kn
-#: zypp/LanguageCode.cc:599
-msgid "Kannada"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
 msgstr ""
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
 msgstr ""
 
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
 msgstr ""
 
-#. language code: kar
-#: zypp/LanguageCode.cc:601
-msgid "Karen"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
 msgstr ""
 
-#. language code: kas ks
-#: zypp/LanguageCode.cc:603
-msgid "Kashmiri"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#. language code: kaw
-#: zypp/LanguageCode.cc:607
-msgid "Kawi"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#. language code: kaz kk
-#: zypp/LanguageCode.cc:609
-msgid "Kazakh"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
 msgstr ""
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
 msgstr ""
 
-#. language code: kha
-#: zypp/LanguageCode.cc:613
-msgid "Khasi"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
 msgstr ""
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
 msgstr ""
 
-#. language code: kho
-#: zypp/LanguageCode.cc:619
-msgid "Khotanese"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
 msgstr ""
 
-#. language code: kik ki
-#: zypp/LanguageCode.cc:621
-msgid "Kikuyu"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
 msgstr ""
 
-#. language code: kin rw
-#: zypp/LanguageCode.cc:623
-msgid "Kinyarwanda"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
 msgstr ""
 
-#. language code: kir ky
-#: zypp/LanguageCode.cc:625
-msgid "Kirghiz"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
 msgstr ""
 
-#. language code: kom kv
-#: zypp/LanguageCode.cc:631
-msgid "Komi"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-#. language code: kon kg
-#: zypp/LanguageCode.cc:633
-msgid "Kongo"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
 msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
 msgstr ""
 
-#. language code: kor ko
-#: zypp/LanguageCode.cc:635
-msgid "Korean"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
 msgstr ""
 
-#. language code: kos
-#: zypp/LanguageCode.cc:637
-msgid "Kosraean"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
 msgstr ""
 
-#. language code: kpe
-#: zypp/LanguageCode.cc:639
-msgid "Kpelle"
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
 msgstr ""
 
-#. language code: kro
-#: zypp/LanguageCode.cc:643
-msgid "Kru"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
 msgstr ""
 
-#. language code: kua kj
-#: zypp/LanguageCode.cc:647
-msgid "Kuanyama"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
 msgstr ""
 
-#. language code: kum
-#: zypp/LanguageCode.cc:649
-msgid "Kumyk"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
 msgstr ""
 
-#. language code: kur ku
-#: zypp/LanguageCode.cc:651
-msgid "Kurdish"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#. language code: kut
-#: zypp/LanguageCode.cc:653
-msgid "Kutenai"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
 msgstr ""
 
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
 msgstr ""
 
-#. language code: lad
-#: zypp/LanguageCode.cc:655
-msgid "Ladino"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
 msgstr ""
 
-#. language code: lah
-#: zypp/LanguageCode.cc:657
-msgid "Lahnda"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
 msgstr ""
 
-#. language code: lam
-#: zypp/LanguageCode.cc:659
-msgid "Lamba"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
 msgstr ""
 
-#. language code: lao lo
-#: zypp/LanguageCode.cc:661
-msgid "Lao"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
 msgstr ""
 
-#. language code: lat la
-#: zypp/LanguageCode.cc:663
-msgid "Latin"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. language code: lav lv
-#: zypp/LanguageCode.cc:665
-msgid "Latvian"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. language code: lez
-#: zypp/LanguageCode.cc:667
-msgid "Lezghian"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
 msgstr ""
 
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
 
-#. language code: lim li
-#: zypp/LanguageCode.cc:669
-msgid "Limburgan"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
 
-#. language code: lin ln
-#: zypp/LanguageCode.cc:671
-msgid "Lingala"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
-msgid "Lithuanian"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
 msgstr ""
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
+#. language code: fil
+#: zypp/LanguageCode.cc:437
+msgid "Filipino"
 msgstr ""
 
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: fin fi
+#: zypp/LanguageCode.cc:439
+msgid "Finnish"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
+#. language code: fiu
+#: zypp/LanguageCode.cc:441
+msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
+#. language code: fon
+#: zypp/LanguageCode.cc:443
+msgid "Fon"
 msgstr ""
 
-#. language code: loz
-#: zypp/LanguageCode.cc:677
-msgid "Lozi"
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
 msgstr ""
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
+#. language code: frm
+#: zypp/LanguageCode.cc:449
+msgid "French, Middle (ca.1400-1600)"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+#. language code: fro
+#: zypp/LanguageCode.cc:451
+msgid "French, Old (842-ca.1400)"
 msgstr ""
 
-#. language code: lui
-#: zypp/LanguageCode.cc:687
-msgid "Luiseno"
+#. language code: fry fy
+#: zypp/LanguageCode.cc:453
+msgid "Frisian"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
 msgstr ""
 
-#. language code: lun
-#: zypp/LanguageCode.cc:689
-msgid "Lunda"
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
 msgstr ""
 
-#. language code: luo
-#: zypp/LanguageCode.cc:691
-msgid "Luo (Kenya and Tanzania)"
+#. language code: gaa
+#: zypp/LanguageCode.cc:459
+msgid "Ga"
 msgstr ""
 
-#. language code: lus
-#: zypp/LanguageCode.cc:693
-msgid "Lushai"
+#. language code: gay
+#: zypp/LanguageCode.cc:461
+msgid "Gayo"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
+#. language code: gba
+#: zypp/LanguageCode.cc:463
+msgid "Gbaya"
 msgstr ""
 
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
 msgstr ""
 
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
 msgstr ""
 
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+msgid "German"
 msgstr ""
 
-#. language code: mac mkd mk
-#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
-msgid "Macedonian"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
 msgstr ""
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
 msgstr ""
 
-#. language code: mad
-#: zypp/LanguageCode.cc:699
-msgid "Madurese"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
 msgstr ""
 
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
 msgstr ""
 
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
 msgstr ""
 
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
 msgstr ""
 
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
+#. language code: gon
+#: zypp/LanguageCode.cc:491
+msgid "Gondi"
 msgstr ""
 
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
+#. language code: gor
+#: zypp/LanguageCode.cc:493
+msgid "Gorontalo"
 msgstr ""
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
+#. language code: got
+#: zypp/LanguageCode.cc:495
+msgid "Gothic"
 msgstr ""
 
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
+#. language code: grb
+#: zypp/LanguageCode.cc:497
+msgid "Grebo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
+#. language code: grc
+#: zypp/LanguageCode.cc:499
+msgid "Greek, Ancient (to 1453)"
 msgstr ""
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
 msgstr ""
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
+#. language code: guj gu
+#: zypp/LanguageCode.cc:507
+msgid "Gujarati"
 msgstr ""
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
+#. language code: gwi
+#: zypp/LanguageCode.cc:509
+msgid "Gwich'in"
 msgstr ""
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
+#. language code: hai
+#: zypp/LanguageCode.cc:511
+msgid "Haida"
 msgstr ""
 
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
+#. language code: hat ht
+#: zypp/LanguageCode.cc:513
+msgid "Haitian"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
+#. language code: hau ha
+#: zypp/LanguageCode.cc:515
+msgid "Hausa"
 msgstr ""
 
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
+#. language code: haw
+#: zypp/LanguageCode.cc:517
+msgid "Hawaiian"
 msgstr ""
 
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
+#. language code: heb he
+#: zypp/LanguageCode.cc:519
+msgid "Hebrew"
 msgstr ""
 
-#. language code: mao mri mi
-#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
-msgid "Maori"
+#. language code: her hz
+#: zypp/LanguageCode.cc:521
+msgid "Herero"
 msgstr ""
 
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
-msgid "Marathi"
+#. language code: hil
+#: zypp/LanguageCode.cc:523
+msgid "Hiligaynon"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
+#. language code: him
+#: zypp/LanguageCode.cc:525
+msgid "Himachali"
 msgstr ""
 
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
+#. language code: hin hi
+#: zypp/LanguageCode.cc:527
+msgid "Hindi"
 msgstr ""
 
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
+#. language code: hit
+#: zypp/LanguageCode.cc:529
+msgid "Hittite"
 msgstr ""
 
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
+#. language code: hmn
+#: zypp/LanguageCode.cc:531
+msgid "Hmong"
 msgstr ""
 
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
 msgstr ""
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
+#. language code: hun hu
+#: zypp/LanguageCode.cc:537
+msgid "Hungarian"
 msgstr ""
 
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
+#. language code: hup
+#: zypp/LanguageCode.cc:539
+msgid "Hupa"
 msgstr ""
 
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
+#. language code: iba
+#: zypp/LanguageCode.cc:541
+msgid "Iban"
 msgstr ""
 
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
+#. language code: ice isl is
+#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
+msgid "Icelandic"
 msgstr ""
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
+#. language code: ido io
+#: zypp/LanguageCode.cc:549
+msgid "Ido"
 msgstr ""
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
 msgstr ""
 
-#. language code: men
-#: zypp/LanguageCode.cc:731
-msgid "Mende"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
 msgstr ""
 
-#. language code: mic
-#: zypp/LanguageCode.cc:735
-msgid "Mi'kmaq"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#. language code: min
-#: zypp/LanguageCode.cc:737
-msgid "Minangkabau"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
 msgstr ""
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
 msgstr ""
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
 msgstr ""
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
+#. language code: iro
+#: zypp/LanguageCode.cc:575
+msgid "Iroquoian Languages"
 msgstr ""
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: ita it
+#: zypp/LanguageCode.cc:577
+msgid "Italian"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
 msgstr ""
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
 msgstr ""
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
 msgstr ""
 
-#. language code: mon mn
-#: zypp/LanguageCode.cc:757
-msgid "Mongolian"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
 msgstr ""
 
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
+#. language code: kab
+#: zypp/LanguageCode.cc:591
+msgid "Kabyle"
 msgstr ""
 
-#. language code: mos
-#: zypp/LanguageCode.cc:759
-msgid "Mossi"
+#. language code: kac
+#: zypp/LanguageCode.cc:593
+msgid "Kachin"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
+#. language code: kal kl
+#: zypp/LanguageCode.cc:595
+msgid "Kalaallisut"
 msgstr ""
 
-#. language code: mul
-#: zypp/LanguageCode.cc:761
-msgid "Multiple Languages"
+#. language code: kam
+#: zypp/LanguageCode.cc:597
+msgid "Kamba"
 msgstr ""
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
+#. language code: kan kn
+#: zypp/LanguageCode.cc:599
+msgid "Kannada"
 msgstr ""
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
+#. language code: kar
+#: zypp/LanguageCode.cc:601
+msgid "Karen"
 msgstr ""
 
-#. language code: nah
-#: zypp/LanguageCode.cc:775
-msgid "Nahuatl"
+#. language code: kas ks
+#: zypp/LanguageCode.cc:603
+msgid "Kashmiri"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
+#. language code: kaw
+#: zypp/LanguageCode.cc:607
+msgid "Kawi"
 msgstr ""
 
-#. language code: nav nv
-#: zypp/LanguageCode.cc:783
-msgid "Navajo"
+#. language code: kaz kk
+#: zypp/LanguageCode.cc:609
+msgid "Kazakh"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
-#. language code: nbl nr
-#: zypp/LanguageCode.cc:785
-msgid "Ndebele, South"
+#. language code: kha
+#: zypp/LanguageCode.cc:613
+msgid "Khasi"
 msgstr ""
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
 msgstr ""
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
+#. language code: kho
+#: zypp/LanguageCode.cc:619
+msgid "Khotanese"
 msgstr ""
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
+#. language code: kik ki
+#: zypp/LanguageCode.cc:621
+msgid "Kikuyu"
 msgstr ""
 
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
+#. language code: kin rw
+#: zypp/LanguageCode.cc:623
+msgid "Kinyarwanda"
 msgstr ""
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
+#. language code: kir ky
+#: zypp/LanguageCode.cc:625
+msgid "Kirghiz"
 msgstr ""
 
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
+#. language code: kom kv
+#: zypp/LanguageCode.cc:631
+msgid "Komi"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: kon kg
+#: zypp/LanguageCode.cc:633
+msgid "Kongo"
 msgstr ""
 
-#. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
+#. language code: kor ko
+#: zypp/LanguageCode.cc:635
+msgid "Korean"
 msgstr ""
-
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
+
+#. language code: kos
+#: zypp/LanguageCode.cc:637
+msgid "Kosraean"
 msgstr ""
 
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
+#. language code: kpe
+#: zypp/LanguageCode.cc:639
+msgid "Kpelle"
 msgstr ""
 
-#. language code: nic
-#: zypp/LanguageCode.cc:799
-msgid "Niger-Kordofanian (Other)"
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
+#. language code: kro
+#: zypp/LanguageCode.cc:643
+msgid "Kru"
 msgstr ""
 
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
 msgstr ""
 
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
+#. language code: kua kj
+#: zypp/LanguageCode.cc:647
+msgid "Kuanyama"
 msgstr ""
 
-#. language code: niu
-#: zypp/LanguageCode.cc:801
-msgid "Niuean"
+#. language code: kum
+#: zypp/LanguageCode.cc:649
+msgid "Kumyk"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
+#. language code: kur ku
+#: zypp/LanguageCode.cc:651
+msgid "Kurdish"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: kut
+#: zypp/LanguageCode.cc:653
+msgid "Kutenai"
 msgstr ""
 
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
+#. language code: lad
+#: zypp/LanguageCode.cc:655
+msgid "Ladino"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
+#. language code: lah
+#: zypp/LanguageCode.cc:657
+msgid "Lahnda"
 msgstr ""
 
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
+#. language code: lam
+#: zypp/LanguageCode.cc:659
+msgid "Lamba"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
+#. language code: lao lo
+#: zypp/LanguageCode.cc:661
+msgid "Lao"
 msgstr ""
 
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
+#. language code: lat la
+#: zypp/LanguageCode.cc:663
+msgid "Latin"
 msgstr ""
 
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
+#. language code: lav lv
+#: zypp/LanguageCode.cc:665
+msgid "Latvian"
 msgstr ""
 
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
+#. language code: lez
+#: zypp/LanguageCode.cc:667
+msgid "Lezghian"
 msgstr ""
 
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
+#. language code: lim li
+#: zypp/LanguageCode.cc:669
+msgid "Limburgan"
 msgstr ""
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
+#. language code: lin ln
+#: zypp/LanguageCode.cc:671
+msgid "Lingala"
 msgstr ""
 
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
+msgid "Lithuanian"
 msgstr ""
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
+#. language code: loz
+#: zypp/LanguageCode.cc:677
+msgid "Lozi"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
 msgstr ""
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
-msgid "Nubian Languages"
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
 msgstr ""
 
-#. language code: nym
-#: zypp/LanguageCode.cc:821
-msgid "Nyamwezi"
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: nyn
-#: zypp/LanguageCode.cc:823
-msgid "Nyankole"
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
 msgstr ""
 
-#. language code: nyo
-#: zypp/LanguageCode.cc:825
-msgid "Nyoro"
+#. language code: lui
+#: zypp/LanguageCode.cc:687
+msgid "Luiseno"
 msgstr ""
 
-#. language code: nzi
-#: zypp/LanguageCode.cc:827
-msgid "Nzima"
+#. language code: lun
+#: zypp/LanguageCode.cc:689
+msgid "Lunda"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
+#. language code: luo
+#: zypp/LanguageCode.cc:691
+msgid "Luo (Kenya and Tanzania)"
 msgstr ""
 
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
+#. language code: lus
+#: zypp/LanguageCode.cc:693
+msgid "Lushai"
 msgstr ""
 
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
+#. language code: mac mkd mk
+#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
+msgid "Macedonian"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
+#. language code: mad
+#: zypp/LanguageCode.cc:699
+msgid "Madurese"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
 msgstr ""
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
 msgstr ""
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
 msgstr ""
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
 msgstr ""
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
-msgid "Osage"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
 msgstr ""
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
 msgstr ""
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
+#. language code: mao mri mi
+#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
+msgid "Maori"
 msgstr ""
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
 msgstr ""
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+msgid "Marathi"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
 msgstr ""
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
 msgstr ""
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
 msgstr ""
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
+#. language code: men
+#: zypp/LanguageCode.cc:731
+msgid "Mende"
 msgstr ""
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
+#. language code: mic
+#: zypp/LanguageCode.cc:735
+msgid "Mi'kmaq"
 msgstr ""
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
+#. language code: min
+#: zypp/LanguageCode.cc:737
+msgid "Minangkabau"
 msgstr ""
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
 msgstr ""
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
 msgstr ""
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
 msgstr ""
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
 msgstr ""
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
 msgstr ""
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
+#. language code: mon mn
+#: zypp/LanguageCode.cc:757
+msgid "Mongolian"
 msgstr ""
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
+#. language code: mos
+#: zypp/LanguageCode.cc:759
+msgid "Mossi"
 msgstr ""
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
+#. language code: mul
+#: zypp/LanguageCode.cc:761
+msgid "Multiple Languages"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
 msgstr ""
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
 msgstr ""
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
 msgstr ""
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
 msgstr ""
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
+#. language code: nah
+#: zypp/LanguageCode.cc:775
+msgid "Nahuatl"
 msgstr ""
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
 msgstr ""
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
+#. language code: nav nv
+#: zypp/LanguageCode.cc:783
+msgid "Navajo"
 msgstr ""
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
+#. language code: nbl nr
+#: zypp/LanguageCode.cc:785
+msgid "Ndebele, South"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
 msgstr ""
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
 msgstr ""
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
+#. language code: nic
+#: zypp/LanguageCode.cc:799
+msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+msgid "Niuean"
 msgstr ""
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
 msgstr ""
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
 msgstr ""
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
 msgstr ""
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
+#. language code: nub
+#: zypp/LanguageCode.cc:815
+msgid "Nubian Languages"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
 msgstr ""
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
+#. language code: nym
+#: zypp/LanguageCode.cc:821
+msgid "Nyamwezi"
 msgstr ""
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
+#. language code: nyn
+#: zypp/LanguageCode.cc:823
+msgid "Nyankole"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
+#. language code: nyo
+#: zypp/LanguageCode.cc:825
+msgid "Nyoro"
 msgstr ""
 
-#: zypp/Dep.cc:98
-msgid "Requires"
+#. language code: nzi
+#: zypp/LanguageCode.cc:827
+msgid "Nzima"
 msgstr ""
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
 msgstr ""
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
 msgstr ""
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
 msgstr ""
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+msgid "Osage"
 msgstr ""
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
 msgstr ""
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
 msgstr ""
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
 msgstr ""
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
 msgstr ""
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
 msgstr ""
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
 msgstr ""
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr ""
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
 msgstr ""
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
 msgstr ""
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
 msgstr ""
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
 msgstr ""
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
 msgstr ""
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
 msgstr ""
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
 msgstr ""
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
 msgstr ""
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
 msgstr ""
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
 msgstr ""
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
 msgstr ""
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
 msgstr ""
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
 msgstr ""
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
 msgstr ""
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
 msgstr ""
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
+
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
 msgstr ""
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
 msgstr ""
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
 msgstr ""
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
 msgstr ""
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
 msgstr ""
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
 msgstr ""
 
 #. language code: sin si
@@ -3717,24 +3723,14 @@ msgstr ""
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr ""
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -3747,98 +3743,79 @@ msgstr ""
 msgid "Slovak"
 msgstr ""
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr ""
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr ""
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr ""
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr ""
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr ""
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
 msgstr ""
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
 msgstr ""
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
 msgstr ""
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
 msgstr ""
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
 msgstr ""
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
 msgstr ""
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
 msgstr ""
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
 msgstr ""
 
 #. language code: spa es
@@ -3846,18 +3823,24 @@ msgstr ""
 msgid "Spanish"
 msgstr ""
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
 msgstr ""
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
 msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
 #. language code: suk
@@ -3865,33 +3848,19 @@ msgstr ""
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr ""
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr ""
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr ""
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
 #. language code: swa sw
@@ -3899,58 +3868,16 @@ msgstr ""
 msgid "Swahili"
 msgstr ""
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr ""
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr ""
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr ""
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr ""
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr ""
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr ""
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr ""
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3961,36 +3888,11 @@ msgstr ""
 msgid "Tai (Other)"
 msgstr ""
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr ""
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr ""
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr ""
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr ""
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4001,6 +3903,11 @@ msgstr ""
 msgid "Telugu"
 msgstr ""
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4011,31 +3918,19 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr ""
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
 msgstr ""
 
 #. language code: tib bod bo
@@ -4053,45 +3948,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4104,15 +3978,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4120,14 +3988,19 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr ""
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr ""
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
 msgstr ""
 
 #. language code: tum
@@ -4135,646 +4008,773 @@ msgstr ""
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr ""
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr ""
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr ""
+
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr ""
+
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr ""
+
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr ""
+
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr ""
+
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr ""
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr ""
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr ""
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr ""
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr ""
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
 msgstr ""
 
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
 msgstr ""
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
 msgstr ""
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
 msgstr ""
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
 msgstr ""
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
 msgstr ""
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
 msgstr ""
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
 msgstr ""
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
 msgstr ""
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
 msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
 msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
 msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
 msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
 msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Failed to mount %s on %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Failed to unmount %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "deinstallation of %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "keep %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
index df6a247..c1be2f6 100644 (file)
--- a/po/nl.po
+++ b/po/nl.po
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# translation of zypp.nl.po to Dutch
+# Dutch message file for YaST 2 (@memory@).
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002 SuSE Linux AG.
+# Copyright (C) 1999, 2000, 2001 SuSE GmbH.
 #
-# Freek de Kruijf <freek@opensuse.org>, 2015.
+# A.S. Kerkmeester <ask_murphy@bigfoot.com>, 1999, 2000, 2001.
+# FAX-Translations <all@fax-translations.com>, 2000.
+# Karl Eichwalder <ke@suse.de>, 1999, 2000.
+# Martin Lohner <ml@suse.de>, 2000.
+# peter@sybex.nl, 2000.
+# Rinse de Vries <rinsedevries@kde.nl>, 2006, 2007, 2008.
+# Freek de Kruijf <freek@opensuse.org>, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015.
 msgid ""
 msgstr ""
-"Project-Id-Version: zypp\n"
+"Project-Id-Version: zypp.nl\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-16 21:59+0100\n"
+"PO-Revision-Date: 2015-11-16 22:02+0100\n"
 "Last-Translator: Freek de Kruijf <freek@opensuse.org>\n"
 "Language-Team: Dutch <opensuse-nl@opensuse.org>\n"
 "Language: nl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural= n != 1;\n"
 "X-Generator: Lokalize 1.5\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"geen installeerbare aanbieders: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal-uitzondering"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Ongeldige LDAP-URL-queryreeks"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr " SSL-certificaatprobleem, controleer of de CA-cert OK is voor '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Ongeldige LDAP-URL-queryparameter '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Kan URL-object niet klonen"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Ongeldige lege URL-objectverwijzing"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Kan URL-componenten niet analyseren"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Kan mutex-kenmerk niet initialiseren"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Kan recursief mutex-kenmerk niet instellen"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Kan recursieve mutex niet initialiseren"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Kan mutex-vergrendeling niet verkrijgen"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Kan mutex-vergrendeling niet ontgrendelen"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Levert"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Vereist vooraf"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Vereist"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "In conflict met"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Maakt verouderd"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Adviseert"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Suggereert"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Verbetert"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Maakt vollediger"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Twijfelachtig type '%s' voor %u bytes checksum '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -39,10 +122,6 @@ msgstr " uitgevoerd"
 msgid " execution failed"
 msgstr " uitvoeren is mislukt"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " uitvoeren is overgeslagen tijdens afbreken"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -51,113 +130,1801 @@ msgstr " uitvoeren is overgeslagen tijdens afbreken"
 msgid "%s already executed as %s)"
 msgstr "%s is al uitgevoerd als %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s is in conflict met %s die geleverd is door %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " uitvoeren is overgeslagen tijdens afbreken"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s behoort niet tot een installatiebron voor distributieopwaardering"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Fout bij het zenden van een melding over een bijwerkbericht."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s heeft een slechtere architectuur"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Bericht over een nieuwe opwaardering"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s is niet geïnstalleerd"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Installatie is afgebroken volgens de instructies."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s wordt door het systeem geleverd en kan niet gewist worden"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "Helaas, deze versie van libzypp is gebouwd zonder HAL-ondersteuning."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s maakt %s verouderd en is geleverd door %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext is niet verbonden"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s vereist %s, maar aan deze eis kan niet voldaan worden"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive is niet geïnitialiseerd"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(VERLOPEN)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume is niet geïnitialiseerd"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(verloopt niet)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Kan de dbus-verbinding niet maken"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(verloopt binnen %d dag)"
-msgstr[1] "(verloopt binnen %d dagen)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Kan libhal-context niet maken"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(verloopt binnen 24u)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: Kan dbus-verbinding niet instellen"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abchazisch"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Kan HAL-context niet initialiseren, is hald niet actief?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achinees"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Geen cd-rom-station"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acholi"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM is mislukt: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Importeren van publieke sleutel uit bestand %s is mislukt: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Opslagruimte '%s' toevoegen"
+msgid "Failed to remove public key %s: %s"
+msgstr "Verwijderen van publieke sleutel %s is mislukt: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Aanvullend gebruikerscontract noodzakelijk"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Configuratiebestanden gewijzigd voor %s:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm sloeg %s op als %s, maar het was niet mogelijk om het verschil te "
+"achterhalen"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm sloeg %s op als %s.\n"
+"Dit zijn de eerste 25 regels die verschillend zijn:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm maakte %s aan als %s, maar het was niet mogelijk om het verschil te "
+"achterhalen"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm maakt %s aan als %s.\n"
+"Dit zijn de eerste 25 regels die verschillen:\n"
 
+# /usr/lib/YaST2/clients/lan_inetd_custom.ycp:162
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
 #: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
 msgid "Additional rpm output"
 msgstr "Aanvullende rpm-uitvoer"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adyghe"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "reservekopie %s aangemaakt"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "Ondertekening is OK"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Onbekende type ondertekening"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "Ondertekening klopt niet"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "Ondertekening is OK, maar sleutel kan niet worden vertrouwd"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "Handtekeningen van publieke sleutel zijn niet beschikbaar"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "Bestand bestaat niet of ondertekening kan niet gecontroleerd worden"
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "De volgende acties zullen uitgevoerd worden:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "Kan map '%1%' van installatiebron niet lezen: Toegang geweigerd"
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Het lezen van map '%s' is mislukt"
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "Kan installatiebronbestand '%1%' niet lezen: Toegang geweigerd"
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
+"De alias van van een installatiebron mag niet met een punt (.) beginnen."
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "De alias van een service mag niet beginnen met een punt (.)."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Kan bestand '%s' niet openen voor schrijven."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+"Onbekende service '%1%': Verweesde installatiebronservice '%2%' aan het "
+"verwijderen"
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Geen geldige metagegevens op de gespecificeerde URL gevonden"
+msgstr[1] "Geen geldige metagegevens op de gespecificeerde URL's gevonden"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Kan %s niet aanmaken"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Kan map voor metadata-cache niet aanmaken."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Cache van bron '%s' bouwen"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Kan cache in %s niet aanmaken - geen toegangsrechten."
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Kan installatiebron (%d) niet opslaan in de cache."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Niet behandeld installatiebrontype"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Fout bij lezen van '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Onbekend fout bij lezen van '%s'"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Bron '%s' toevoegen"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Ongeldige naam van installatiebronbestand bij '%s'"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Bron '%s' verwijderen"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Kan er niet achter komen waar de installatiebron is opgeslagen."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Kan '%s' niet verwijderen"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Kan er niet achter komen waar de service is opgeslagen."
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "%s is niet toegestaan in URL-schema "
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Ongeldige %s component '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Ongeldige %s component"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Parseren van queryreeks wordt niet ondersteund voor deze URL"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "URL-schema is een vereist component"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Ongeldig URL-schema '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Gebruikersnaam is niet toegestaan in URL-schema "
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Wachtwoord is niet toegestaan in URL-schema "
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "URL-schema vereist hostcomponent"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Hostcomponent is niet toegestaan in URL-schema "
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Ongeldige hostcomponent '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Poort is niet toegestaan in URL-schema "
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Ongeldige poortcomponent '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "URL-schema vereist padnaam"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Relatief pad is niet toegestaan als authority bestaat"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Gecodeerde reeks bevat een NUL byte"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Ongeldig scheidingsteken voor splitsen parametermatrix"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Ongeldig scheidingsteken voor splitsen parametertoewijzing"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Ongeldig scheidingsteken voor samenvoegen parametermatrix"
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Kon pty (%s) niet openen."
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Kan pipe (%s) niet openen."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Kan geen chroot doen naar '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "Kan geen chdir naar '%s' doen binnen chroot '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Kan geen chdir doen naar '%s' (%s)."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Kan '%s' niet uitvoeren (%s)."
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Kan geen fork  doen (%s)."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Commando beëindigd met status %d."
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Commando is gestopt door signaal %d (%s)."
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Commando beëindigd met onbekende fout."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(verloopt niet)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(VERLOPEN)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(verloopt binnen 24u)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(verloopt binnen %d dag)"
+msgstr[1] "(verloopt binnen %d dagen)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "onbekend"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "niet ondersteund"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Niveau 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Niveau 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Niveau 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Aanvullend gebruikerscontract noodzakelijk"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "ongeldig"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Het ondersteuningsniveau is niet gedefiniëerd."
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "De verkoper levert geen ondersteuning."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Probleem bepaling, wat technische ondersteuning betekent dat ontworpen is "
+"voor het leveren van informatie over compatibiliteit, hulp bij installatie, "
+"ondersteuning bij gebruik, voortdurend onderhoud en basis foutzoeken. Niveau "
+"1 ondersteuning is niet bedoeld om fouten in producten te verbeteren."
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Probleemisolatie, wat technische ondersteuning betekent voor reproduceren "
+"van problemen bij klanten, probleemgebieden bepalen en oplossingen leveren "
+"voor problemen die niet opgelost worden door Niveau 1 ondersteuning."
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Probleemoplossing, wat technische ondersteuning betekent voor het oplossen "
+"van complexe problemen door engineering in te schakelen bij het oplossen van "
+"productfouten die geïdentificeerd zijn in Niveau 2 ondersteuning."
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+"Een aanvullend gebruikerscontract is noodzakelijk voor het verkrijgen van "
+"ondersteuning."
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Onbekende ondersteuningsoptie. Beschrijving niet beschikbaar"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Onbekend land: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Geen code"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Verenigde Arabische Emiraten"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afghanistan"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua en Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albanië"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenië"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Nederlandse Antillen"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+# /usr/lib/YaST2/clients/dialup_dev_cfg.ycp:80
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarctica"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentinië"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Amerikaans Samoa"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Oostenrijk"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australië"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Aland Islands"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbeidzjan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnië en Herzegovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "België"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgarije"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrein"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brazilië"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahama's"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvet Island"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Wit-Rusland"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Cocos (Keeling) eilanden"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Centraal Afrikaanse Republiek"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Zwitserland"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Cote D'Ivoire"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cook Islands"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chili"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kameroen"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "China"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Kaapverdië"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Christmas Eiland"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Cyprus"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Tsjechië"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Duitsland"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Denemarken"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominicaanse Republiek"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algerije"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estland"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egypte"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Westelijke Sahara"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spanje"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Ethiopië"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finland"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falkland Eilanden (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Federale staten van Micronesia"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Faroe Eilanden"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Frankrijk"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Metropolitaan Frankrijk"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Verenigd Koninkrijk"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgië"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Frans Guyana"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Groenland"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Equatoriaal Guinea"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Griekenland"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Zuid Georgia en de Zuid Sandwich Eilanden"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinee-Bissau"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heard Island en McDonald Islands"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Kroatië"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haïti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hongarije"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesië"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Ierland"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israël"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Eiland Man"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Brits Indian Ocean Territory"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "IJsland"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italië"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordanië"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japan"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenia"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgizië"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Cambodja"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comoren"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Sint Kitts en Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Noord-Korea"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Zuid-Korea"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Koeweit"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Kaaimaneilanden"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazachstan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Lao People's Democratic Republic"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Sint Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litouwen"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxemburg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Letland"
+
+# ../../db/printers.ycp.noloc:1400
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libië"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marokko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldavië"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Saint Martin"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagascar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshall Eilanden"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedonië"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolië"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Noordelijke Marianen"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritanië"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldiven"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexico"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Maleisië"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambique"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibië"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nieuw-Caledonië"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolk Island"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Nederland"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Noorwegen"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nieuw-Zeeland"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Frans-Polynesië"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papoea-Nieuw-Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipijnen"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polen"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint-Pierre en Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestijns Gebied"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Roemenië"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Servië"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Russische Federatie"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saoedi-Arabië"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Salomonseilanden"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychellen"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Soedan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Zweden"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapore"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Sint-Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenië"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard en Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slowakije"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalië"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome en Principe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Syrië"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swaziland"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks- en Caicoseilanden"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Tsjaad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Frans Zuidelijke Gebieden"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thailand"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadzjikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunesië"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Oost-Timor"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turkije"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad en Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzania"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Oekraïne"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Oeganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Verenigde Staten Kleine Afgelegen Eilanden"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Verenigde Staten"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Oezbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Holy See (Vatican City State)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Sint Vincent en de Grenadines"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Britse Maagdeneilanden"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Maagdeneilanden, VS"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+# /usr/lib/YaST2/clients/dialup_dev_cfg.ycp:82
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis en Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Zuid-Afrika"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Onbekende taal: "
 
 #. language code: aar aa
 #: zypp/LanguageCode.cc:161
 msgid "Afar"
 msgstr "Afar, Hamitisch"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abchazisch"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achinees"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acholi"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adyghe"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-Aziatisch (Overige)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -169,11 +1936,6 @@ msgstr "Afrihili"
 msgid "Afrikaans"
 msgstr "Afrikaans"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-Aziatisch (Overige)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -189,16 +1951,6 @@ msgstr "Akaans"
 msgid "Akkadian"
 msgstr "Akkadiaans"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Aland Islands"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albanië"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -209,60 +1961,25 @@ msgstr "Albanees"
 msgid "Aleut"
 msgstr "Aleuts"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algerije"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "Algonquian-talen"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaïsch (Overige)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Amerikaans Samoa"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Zuid-Altai"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "Amhaars, Amharisch"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-"Een aanvullend gebruikerscontract is noodzakelijk voor het verkrijgen van "
-"ondersteuning."
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarctica"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua en Barbuda"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Engels, Oud (ca.450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -274,55 +1991,40 @@ msgstr "Apache-talen"
 msgid "Arabic"
 msgstr "Arabisch"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonees"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "Aramees"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonees"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armeens"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "Araucaniaans"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentinië"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenia"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armeens"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "Kunstmatig (Overige)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -339,32 +2041,11 @@ msgstr "Asturisch"
 msgid "Athapascan Languages"
 msgstr "Athapascan-talen"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australië"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "Australische talen"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Oostenrijk"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronesisch (Overige)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Verificatie vereist voor '%s'"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -385,44 +2066,25 @@ msgstr "Awadhi"
 msgid "Aymara"
 msgstr "Aymara"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbeidzjaan"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Azeri, Azerbeidzjaans"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Onjuiste bestandsnaam: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Beschadigd koppelpunt van medium"
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahama's"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrein"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinees"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Bamileke-talen"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltisch (Overige)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Basjkiers, Basjkirisch"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -434,75 +2096,35 @@ msgstr "Balutsji, Baluchi"
 msgid "Bambara"
 msgstr "Bambara"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Bamileke-talen"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (Overige)"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinees"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Baskisch"
 
 #. language code: bas
 #: zypp/LanguageCode.cc:253
 msgid "Basa"
 msgstr "Basa"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Basjkiers, Basjkirisch"
-
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baskisch"
-
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonesië)"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltisch (Overige)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "Beja"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belarus"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
-msgstr "Wit-Russisch, Belarussisch"
-
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "België"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+msgstr "Wit-Russisch"
 
 #. language code: bem
 #: zypp/LanguageCode.cc:261
@@ -514,31 +2136,16 @@ msgstr "Bemba"
 msgid "Bengali"
 msgstr "Bengaals"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "Berbers (Overige)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "Bhojpuri"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhoetan"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
@@ -559,267 +2166,70 @@ msgstr "Bini"
 msgid "Bislama"
 msgstr "Bislama"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnië en Herzegowina"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (Overige)"
 
 #. language code: bos bs
 #: zypp/LanguageCode.cc:281
 msgid "Bosnian"
 msgstr "Bosnisch"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvet Island"
-
 #. language code: bra
 #: zypp/LanguageCode.cc:283
 msgid "Braj"
 msgstr "Braj"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brazilië"
-
 #. language code: bre br
 #: zypp/LanguageCode.cc:285
 msgid "Breton"
 msgstr "Bretons, Bretoens"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Brits Indian Ocean Territory"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "British Virgin Islands"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonesië)"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Boeriaats"
 
 #. language code: bug
 #: zypp/LanguageCode.cc:291
 msgid "Buginese"
 msgstr "Buginees"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Cache van opslagruimte '%s' bouwen"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgarije"
-
 #. language code: bul bg
 #: zypp/LanguageCode.cc:293
 msgid "Bulgarian"
 msgstr "Bulgaars"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Boeriaats"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
 #. language code: bur mya my
 #: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
 msgid "Burmese"
 msgstr "Burmees"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Boeroendi"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
 
 #. language code: cad
 #: zypp/LanguageCode.cc:301
 msgid "Caddo"
 msgstr "Caddo"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Cambodja"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kameroen"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Kan sat-pool niet maken."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Kan mutex-vergrendeling niet verkrijgen"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Kan geen chdir doen naar '%s' (%s)."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "Kan geen chdir naar '%s' doen binnen chroot '%s' (%s)."
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Kan geen chroot doen naar '%s' (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Kan %s niet maken"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Kan cache in %s niet maken - geen toegangsrechten."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Kan directory voor metadata-cache niet maken."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Kan '%s' niet verwijderen"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Kan '%s' niet uitvoeren (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Kan niet achterhalen waar opslagruimte is opgeslagen."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Kan niet achterhalen waar de service is opgeslagen."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Kan geen fork (%s) uitvoeren."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Kan mutex-kenmerk niet initialiseren"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Kan recursieve mutex niet initialiseren"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Kan het bestand %s niet openen voor schrijven."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Kan het blokkeringsbestand niet openen: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Kan pipe (%s) niet openen."
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Kan pty (%s) niet openen."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Kan bestand '%s' niet leveren uit opslagruimte '%s'"
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Kan mutex-vergrendeling niet ontgrendelen"
-
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Kan recursief mutex-kenmerk niet instellen"
-
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canada"
-
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Kan geen media uitwerpen"
-
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Kan medium '%s' niet uitwerpen"
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Kan geen beschikbaar lusapparaat vinden voor het koppelen van het "
-"imagebestand van '%s'\n"
-" "
-
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "Kan map '%1%' van installatiebron niet lezen: Toegang geweigerd"
-
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "Kan installatiebronbestand '%1%' niet lezen: Toegang geweigerd"
-
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Kan bestand '%s' niet opslaan."
-
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Kaap Verde"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Centraal-Amerikaans Indiaans (Overige)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -828,189 +2238,98 @@ msgstr "Caraïbisch"
 
 #. language code: cat ca
 #: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Catalaans"
-
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "Kaukasisch (Overige)"
-
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Kaaiman Eilanden"
-
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "Cebuano"
-
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Keltisch (Overige)"
-
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Centraal Afrikaanse Republiek"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Centraal-Amerikaans Indiaans (Overige)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Tsjaad"
+msgid "Catalan"
+msgstr "Catalaans"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "Kaukasisch (Overige)"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Chamische talen"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "Cebuano"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Keltisch (Overige)"
 
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Configuratiebestanden gewijzigd voor %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Tsjetsjeens"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Tsjibtsja"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chili"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Tsjetsjeens"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "China"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Chinees"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukese"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Chinook-jargon"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyaans"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Choctaw"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Kersteiland"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyaans"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
-msgstr "Kerkelijk Slavisch"
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukese"
+msgstr "Kerk Slavisch"
 
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "Tsjoevasjisch"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Klassiek Newari"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Cocos (Keeling) Islands"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Opdracht beëindigd met status %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Opdracht beëindigd met onbekende fout."
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Opdracht is gestopt door signaal %d (%s)."
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comoros"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "In conflict met"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cook Islands"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Chamische talen"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1027,31 +2346,6 @@ msgstr "Cornish"
 msgid "Corsican"
 msgstr "Corsicaans"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Cote D'Ivoire"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Creools en Pidgin (overig)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1067,46 +2361,38 @@ msgstr "Creools en Pidgin, op basis van Frans (overig)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Creools en Pidgin, op basis van Portugees (overig)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
+
+# /usr/lib/YaST2/clients/lan_dns.ycp:87
+# /usr/lib/YaST2/clients/lan_dns.ycp:87
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Krim-Tataars"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Kroatië"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Kroatisch"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Creools en Pidgin (overig)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kasjoebisch"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Cusjitisch (Overige)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Cyprus"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Tsjechisch"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Tsjechië"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1132,89 +2418,56 @@ msgstr "Dayak"
 msgid "Delaware"
 msgstr "Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Denemarken"
-
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "Dinka"
-
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "Divehi"
-
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
-
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "Dogri"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slavisch (Athapascaans)"
 
 #. language code: dgr
 #: zypp/LanguageCode.cc:385
 msgid "Dogrib"
 msgstr "Dogrib"
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominicaanse Republiek"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Fout bij downloaden (curl) '%s':\n"
-"Foutcode: %s\n"
-"Foutbericht: %s\n"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "Dinka"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Initialiseren van downloaden (curl) is mislukt voor '%s'"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "Divehi"
+
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "Dogri"
 
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Dravidiaans (Overige)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Nedersorbisch"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Twijfelachtig type '%s' voor %u bytes checksum '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Nederlands, middel (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Nederlands"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Nederlands, middel (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1225,26 +2478,11 @@ msgstr "Dyula"
 msgid "Dzongkha"
 msgstr "Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Oost Timor"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efikisch"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egypte"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1255,32 +2493,11 @@ msgstr "Egyptisch (Oud)"
 msgid "Ekajuk"
 msgstr "Ekajuk"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "Elamitisch"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Lege bestemming in URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Leeg bestandssysteem in URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Lege hostnaam in URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Gecodeerde reeks bevat een NUL byte"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1291,335 +2508,51 @@ msgstr "Engels"
 msgid "English, Middle (1100-1500)"
 msgstr "Engels, Middel (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Engels, Oud (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Verbetert"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Equatoriaal Guinee"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"Er is een fout opgetreden bij het instellen van downloadopties (curl) voor "
-"'%s':"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Fout bij het zenden van een melding over een bijwerkbericht."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Fout bij het lezen van '%s'"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
-
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Esperanto"
-
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estland"
-
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Ests"
-
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Ethiopië"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Ewe"
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Ewondo"
-
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Opslagruimte (%d) opslaan in cache mislukt."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Verwijderen van sleutel is mislukt."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Importeren van publieke sleutel uit bestand %s is mislukt: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Kan %s niet koppelen aan %s"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Pakket %s niet gevonden. Wilt u dit opnieuw ophalen?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Kan de directory '%s' niet lezen"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Verwijderen van publieke sleutel %s is mislukt: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Ontkoppelen van %s is mislukt"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falkland Eilanden (Malvinas)"
-
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "Fang"
-
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Faroe Eilanden"
-
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Faeröers"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Federale staten van Micronesia"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fijisch"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Bestand %1%\n"
-"  van de installatie van\n"
-"     %2%\n"
-"  conflicteert met een bestand\n"
-"     %3%\n"
-"  van de installatie van\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Bestand %1%\n"
-"  van de installatie van\n"
-"     %2%\n"
-"  conflicteert met een bestand\n"
-"     %3%\n"
-"  van pakket\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Bestand %1%\n"
-"  van de installatie van\n"
-"     %2%\n"
-"  conflicteert met een bestand van de installatie van\n"
-"     %3%"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Esperanto"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Bestand %1%\n"
-"  van de installatie van\n"
-"     %2%\n"
-"  conflicteert met een bestand van pakket\n"
-"     %3%"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Ests"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Bestand %1%\n"
-"  van pakket\n"
-"     %2%\n"
-"  conflicteert met een bestand\n"
-"     %3%\n"
-"  van de installatie van\n"
-"     %4%"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Ewe"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Bestand %1%\n"
-"  van pakket\n"
-"     %2%\n"
-"  conflicteert met een bestand\n"
-"     %3%\n"
-"  van pakket\n"
-"     %4%"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Ewondo"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Bestand %1%\n"
-"  van pakket\n"
-"     %2%\n"
-"  conflicteert met een bestand van de installatie van\n"
-"     %3%"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "Fang"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Bestand %1%\n"
-"  van pakket\n"
-"     %2%\n"
-"  conflicteert met een bestand van pakket\n"
-"     %3%"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Faeröers"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Bestand '%s' is niet gevonden op medium '%s'"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "Bestand bestaat niet of ondertekening kan niet gecontroleerd worden"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Fijisch"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finland"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1630,40 +2563,16 @@ msgstr "Fins"
 msgid "Finno-Ugrian (Other)"
 msgstr "Fins-Oegrisch (Overige)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "De volgende acties zullen uitgevoerd worden:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Frankrijk"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Frans"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Frans Guiana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Frans Polynesië"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Frans Zuidelijke Gebieden"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1679,46 +2588,21 @@ msgstr "Frans, Oud (842-ca.1400)"
 msgid "Frisian"
 msgstr "Fries"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friulisch"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fulah"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friulisch"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaelic"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galicisch"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1729,15 +2613,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Geez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germaans (Overige)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1749,39 +2628,45 @@ msgstr "Georgisch"
 msgid "German"
 msgstr "Duits"
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
-msgstr "Duits, Middel Hoog (ca.1050-1500)"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Geez"
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
-msgstr "Duits, Oud Hoog (ca.750-1050)"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertees"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germaans (Overige)"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaelic"
 
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Duitsland"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Iers"
 
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galicisch"
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertees"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
+msgstr "Duits, Middel Hoog (ca.1050-1500)"
+
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
+msgstr "Duits, Oud Hoog (ca.750-1050)"
 
 #. language code: gon
 #: zypp/LanguageCode.cc:491
@@ -1803,11 +2688,6 @@ msgstr "Gothisch"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Griekenland"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1818,61 +2698,16 @@ msgstr "Grieks, Oud (tot 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Grieks, Modern (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Groenland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinee"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinee-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1883,52 +2718,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haïti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haïtiaans"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal-uitzondering"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext is niet verbonden"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive is niet geïnitialiseerd"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume is niet geïnitialiseerd"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Hebt u alle vereiste opslagruimten ingeschakeld?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaiiaans"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heard Island en McDonald Islands"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1954,16 +2758,6 @@ msgstr "Himatsjali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Geschiedenis:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1974,31 +2768,21 @@ msgstr "Hittitisch"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Holy See (Vatican City State)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Oppersorbisch"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Hongaars"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hongarije"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2009,10 +2793,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Ibaans"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "IJsland"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2024,250 +2808,105 @@ msgstr "IJslands"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sitsjuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Inari Sami"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (International Auxiliary Language Association)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Indisch (Overige)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indo-Europees (Overige)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesië"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonesisch"
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "Ingoesjetisch"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Installatie is afgebroken volgens de instructies."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (International Auxiliary Language Association)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "Inupiak"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Ongeldige %s component"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Ongeldige %s component '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Ongeldige LDAP URL-queryparameter '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Ongeldige LDAP URL-queryreeks"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Ongeldig URL-schema '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Ongeldige lege URL-objectverwijzing"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Ongeldige hostcomponent '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Ongeldig scheidingsteken voor samenvoegen parametermatrix"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Ongeldig scheidingsteken voor splitsen parametermatrix"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Ongeldig scheidingsteken voor splitsen parametertoewijzing"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Ongeldige poortcomponent '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Ongeldige reguliere expressie '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Ongeldige reguliere expressie '%s': regcomp heeft %d geretourneerd"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indo-Europees (Overige)"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Ongeldige opslagruimtebestandsnaam bij '%s'"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "Ingoesjetisch"
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "Inupiak"
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Iraans (Overige)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Ierland"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Iers"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Iers, Middel (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Iers, Oud (tot 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Iroquoian-talen"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Isle Of Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israël"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italiaans"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italië"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javaans"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japan"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojbaans"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japans"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javaans"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordanië"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Judeo-Perzisch"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Judeo-Arabisch"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Judeo-Perzisch"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardisch, Tsjerkessisch"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2284,11 +2923,6 @@ msgstr "Katsjin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmyk"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2299,21 +2933,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada, Kanara, Kanarees"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karatsjay-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2324,10 +2943,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kashmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kasjoebiaans"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2339,31 +2958,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Kazachs"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazachstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenia"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardisch, Tsjerkessisch"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Khoisaans (Overige)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2374,11 +2988,6 @@ msgstr "Khotanees"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2389,15 +2998,15 @@ msgstr "Kinyarwanda"
 msgid "Kirghiz"
 msgstr "Kirgizisch"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2409,11 +3018,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2429,11 +3033,21 @@ msgstr "Kosraeaans"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karatsjay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2449,26 +3063,11 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Koerdisch"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenaïsch"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Koeweit"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgizië"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2487,135 +3086,73 @@ msgstr "Lamba"
 #. language code: lao lo
 #: zypp/LanguageCode.cc:661
 msgid "Lao"
-msgstr "Lao"
-
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Lao People's Democratic Republic"
+msgstr "Laotiaans"
 
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latijn"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Letland"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
-msgid "Latvian"
-msgstr "Lets"
-
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Niveau 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Niveau 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Niveau 3"
-
-#. language code: lez
-#: zypp/LanguageCode.cc:667
-msgid "Lezghian"
-msgstr "Lezghiaans"
-
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libië"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
+msgid "Latvian"
+msgstr "Lets"
+
+#. language code: lez
+#: zypp/LanguageCode.cc:667
+msgid "Lezghian"
+msgstr "Lezghiaans"
 
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
-msgstr "Limburgan"
+msgstr "Limburgs"
 
 #. language code: lin ln
 #: zypp/LanguageCode.cc:671
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litouwen"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Litouws"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Locatie '%s' is tijdelijk niet toegankelijk."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojbaans"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Zuid-Duits"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Laag-Sorbiaans"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburgs"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lule Sami"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2631,35 +3168,11 @@ msgstr "Luo (Kenia en Tanzania)"
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburgs"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedonië"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Macedonisch"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagascar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2670,6 +3183,11 @@ msgstr "Madurees"
 msgid "Magahi"
 msgstr "Magahisch"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshallees"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2680,178 +3198,60 @@ msgstr "Maithili"
 msgid "Makasar"
 msgstr "Makasar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malagassisch"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Maleis"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malayalam"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Maleisië"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Malediven"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Onjuiste URI"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltees"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchu"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandars"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Manobo-talen"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronesisch (Overige)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshall Eilanden"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshallees"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauretanië"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Maya-talen"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "Mediumbron '%s'  bevat het gewenste medium niet"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Medium '%s' wordt door een andere instantie gebruikt"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Maleis"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Medium is niet gekoppeld"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksja"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Medium kan niet worden geopend wanneer '%s' wordt uitgevoerd."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandars"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Metropolitaan Frankrijk"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexico"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Iers, Middel (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2863,86 +3263,61 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandees"
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
+msgstr "Diverse talen"
+
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Khmer (Overige)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Madagaskar"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltees"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manchu"
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
-msgstr "Diverse talen"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Manobo-talen"
 
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksja"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldavisch"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldavië"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Khmer (Overige)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolië"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongools"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marokko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossisch"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambique"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2953,210 +3328,141 @@ msgstr "Meerdere talen"
 msgid "Munda languages"
 msgstr "Munda-talen"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandees"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Maya-talen"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibië"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Noord-Amerikaans Indiaans"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Napolitaans"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele, Noord"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele, Zuid"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele, Noord"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Napolitaans"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepal Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Zuid-Duits"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepalees"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Nederland"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Nederlandse Antillen"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nieuw Caledonië"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nieuw Zeeland"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Bericht over een nieuwe update"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepal Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Niaas"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Niger-Kordofaniaans (Overige)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-Saharaans (Overige)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niueaans"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Geen code"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Noors Nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Geen url in opslagruimte."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Nynorsk en Bokmal"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolk Island"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Noors, Oud"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Noord-Amerikaans Indiaans"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Noord Korea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Northern Mariana Islands"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Noord-Sami"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Noord Sotho"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Noorwegen"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Noors"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Nynorsk en Bokmal"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Noors Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Geen cd-rom-station"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Noord-Sotho"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Nubische talen"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Klassiek Newari"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3177,10 +3483,6 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Verouderde onderdelen"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3191,20 +3493,6 @@ msgstr "Occitaans (na 1500)"
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Een of beide van '%s' of '%s' attributen zijn vereist."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Bewerking niet ondersteund door medium"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3225,66 +3513,36 @@ msgstr "Osaags"
 msgid "Ossetian"
 msgstr "Ossetisch, Osseets"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turks, Ottomaans (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Otomi-talen"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Pakket %s lijkt beschadigd te zijn tijdens de overdracht. Wilt u het opnieuw "
-"ophalen?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papuaans (Overige)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinaans"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Pehlevi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauaans"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestijns Gebied"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "Pampanga"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinaans"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3295,94 +3553,45 @@ msgstr "Punjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papoe Nieuw Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papuaans (Overige)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Pad '%s' op medium '%s' is geen directory."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Pad '%s' op medium '%s' is geen bestand."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Toestemming voor toegang tot '%s' is geweigerd."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Perzisch"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauaans"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Perzisch, Oud (ca.600-400 B.C.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Perzisch"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Filipijns (Overige)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filippijnen"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Foenisisch"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Eerst pakket 'lsof' installeren."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeiaans"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polen"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Pools"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeiaans"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3394,88 +3603,21 @@ msgstr "Portugees"
 msgid "Prakrit Languages"
 msgstr "Prakrit-talen"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Vereisten"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Probleembepaling, wat technische ondersteuning betekent die is ontworpen "
-"voor het leveren van informatie over compatibiliteit, hulp bij installatie, "
-"ondersteuning bij gebruik, constant onderhoud en algemene "
-"probleemoplossing.. Niveau 1 ondersteuning is niet bedoeld om fouten in "
-"producten te verbeteren."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Probleemisolatie, wat technische ondersteuning betekent voor reproduceren "
-"van problemen bij klanten, probleemgebieden bepalen en oplossingen leveren "
-"voor problemen die niet opgelost worden door Niveau 1 ondersteuning."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Probleemoplossing, wat technische ondersteuning betekent voor het oplossen "
-"van complexe problemen door engineering in te schakelen bij het oplossen van "
-"productfouten die geïdentificeerd zijn in Niveau 2 ondersteuning."
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Provençaals, oud (tot 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Levert"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Poesjto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Parseren van queryreeks wordt niet ondersteund voor deze URL"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM is mislukt: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Retoromaans"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3483,65 +3625,34 @@ msgstr "Rajasthani"
 
 #. language code: rap
 #: zypp/LanguageCode.cc:887
-msgid "Rapanui"
-msgstr "Rapanui"
-
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr "Rarotongaans"
-
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Beveelt aan"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Relatief pad is niet toegestaan als authority bestaat"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Opslagruimte '%s' verwijderen"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Alias van opslagruimte mag niet beginnen met een punt (.)."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Vereist attribuut '%s' ontbreekt."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Vereist"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
+msgid "Rapanui"
+msgstr "Rapanui"
+
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
+msgstr "Rarotongaans"
 
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Romaans (Overige)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Roemenië"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Roemeens"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Retoromaans"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Roma"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Roemeens"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3552,43 +3663,25 @@ msgstr "Rundi"
 msgid "Russian"
 msgstr "Russisch"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Russische Federatie"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Sint Helena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Sint Kitts en Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Sint Lucia"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandawe"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Sint Maarten"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Sint Pierre en Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Jakoets"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Sint Vincent en de Grenadines"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Zuid-Amerikaans Indiaans (Overige)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3600,71 +3693,41 @@ msgstr "Salishan-talen"
 msgid "Samaritan Aramaic"
 msgstr "Samaritaans Aramees"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Sami-talen (overig)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoaans"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandawe"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sangho"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskriet"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasaaks"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome en Principe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardinisch"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasaaks"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Servisch"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saoedi-Arabië"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Siciliaans"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Schots"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Kroatisch"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3675,143 +3738,40 @@ msgstr "Sulkoeps"
 msgid "Semitic (Other)"
 msgstr "Semitisch (Overige)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Servië"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Servisch"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Alias van service mag niet beginnen met een punt (.)."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
-"Serviceplug-in biedt geen ondersteuning voor het wijzigen van een attribuut."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Iers, Oud (tot 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelles"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Gebarentalen"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Sjaans"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sitsjuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Siciliaans"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Gebarentalen"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "Ondertekening klopt niet"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Handtekeningbestand %s niet gevonden"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "Ondertekening is OK"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "Ondertekening is OK, maar sleutel kan niet worden vertrouwd"
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "Verificatie van de ondertekening is mislukt"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "Handtekeningen van publieke sleutel zijn niet beschikbaar"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapore"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
-msgstr "Sinhala"
-
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-Tibetaans (Overige)"
+msgstr "Singalees"
 
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Siouaanse talen"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Skolt Sami"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slavisch (Athapascaans)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-Tibetaans (Overige)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3823,212 +3783,141 @@ msgstr "Slavisch (Overige)"
 msgid "Slovak"
 msgstr "Slowaaks"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slowakije"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenië"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Sloveens"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Zuid-Sami"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Noord-Sami"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Sami-talen (overig)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lule Sami"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Inari Sami"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoaans"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Skolt Sami"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "Sogdiaans"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Solomon Eilanden"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
-msgstr "Somali"
-
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalië"
+msgstr "Somalisch"
 
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "Songhaïsch"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Sorbische talen"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Helaas, deze versie van libzypp is gebouwd zonder HAL-ondersteuning."
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Zuid-Sothaans"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Zuid-Afrika"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Zuid-Amerikaans Indiaans (Overige)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Zuid Georgia en de Zuid Sandwich Eilanden"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Zuid Korea"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Zuid-Altai"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Zuid-Sami"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spanje"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Spaans"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardinisch"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Soedan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Adviseert"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-Saharaans (Overige)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumerisch"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
-msgstr "Soendanees, Sundanees"
-
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Vult aan"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
+msgstr "Soendanees"
 
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard en Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumerisch"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Swahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Zweden"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Zweeds"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Zwitserland"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Syrië"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Syrisch"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Systeemuitzondering '%s' op medium '%s'."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Systeembeheer is geblokkeerd door de toepassing met pid %d (%s).\n"
-"Sluit deze toepassing voordat u het opnieuw probeert."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4039,46 +3928,26 @@ msgstr "Tahitisch"
 msgid "Tai (Other)"
 msgstr "Tai (Overige)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tadzjieks"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tajikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamasjek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
-msgstr "Tatar"
+msgstr "Tataars"
 
 #. language code: tel te
 #: zypp/LanguageCode.cc:1021
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4089,32 +3958,20 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr "Thai"
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thailand"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Het ondersteuningsniveau is niet gedefinieerd."
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "De verkoper levert geen ondersteuning."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tadzjieks"
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Deze actie is al bezig vanuit een ander programma."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Dit verzoek zal het systeem laten crashen."
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "Thai"
 
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
@@ -4131,46 +3988,25 @@ msgstr "Tigre"
 msgid "Tigrinya"
 msgstr "Tigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Time-out overschreden bij toegang tot '%s'."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamasjek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4182,334 +4018,116 @@ msgstr "Tonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Tonga-eilanden)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-"Er is een poging gedaan om een niet-bestaande sleutel %s te importeren in "
-"sleutelring %s"
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad en Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimsjiaans"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmeens"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunesië"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Tupi-talen"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turkije"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "Turks"
-
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turks, Ottomaans (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkmeens"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks en Caicos Eilanden"
-
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "Tuviniaans"
-
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
-
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "Udmurts"
-
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Oeganda"
-
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "Ugaritisch"
-
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "Oeigoers, Oejgoers"
-
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Oekraïne"
-
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "Oekraïens"
-
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "Umbundu"
-
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Kan URL-object niet klonen"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Kan de dbus-verbinding niet maken"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Kan HAL-context niet initialiseren, is hald niet actief?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Kan URL-componenten niet parseren"
-
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Onbepaald"
-
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Niet-afgehandeld type opslagruimte"
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Verenigde Arabische Emiraten"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "United Kingdom"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Verenigde Staten"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "United States Minor Outlying Islands"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Onbekend land: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Onbekende fout bij lezen van '%s'"
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Onbekende taal: "
-
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Onbekende overeenkomstmodus '%s'"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Onbekende overeenkomstmodus '%s' voor patroon '%s'"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr "Onbekende service '%1%': weesserviceopslagruimte '%2%' verwijderen"
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Onbekende ondersteuningsoptie. Beschrijving niet beschikbaar"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Onbekend type ondertekening"
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Niet-ondersteunde HTTP-verificatiemethode '%s'"
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Niet-ondersteund URI-schema in '%s'."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Opper-Sorbiaans"
+msgid "Turkish"
+msgstr "Turks"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Urdu"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaïsch (Overige)"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "%s is niet toegestaan in URL-schema "
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Hostcomponent is niet toegestaan in URL-schema "
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "Tuviniaans"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Wachtwoord is niet toegestaan in URL-schema "
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "Udmurts"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Poort is niet toegestaan in URL-schema "
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "Ugaritisch"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Gebruikersnaam is niet toegestaan in URL-schema "
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "Oeigoers, Oejgoers"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "URL-schema is een vereist component"
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "Oekraïens"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "URL-schema vereist hostcomponent"
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "Umbundu"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "URL-schema vereist padnaam"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Onbepaald"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Urdu"
 
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "Oezbeeks"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Oezbekistan"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "Vai"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "geen geldige metagegevens op de gespecificeerde URL gevonden"
-msgstr[1] "geen geldige metagegevens op de gespecificeerde URL's gevonden"
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vauatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "Venda"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "Vietnamees"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Virgin Islands, USA."
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Ga naar het Novell Customer Center om te controleren of uw registratie "
-"geldig is en niet is verlopen."
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4530,16 +4148,6 @@ msgstr "Wakashan-talen"
 msgid "Walamo"
 msgstr "Walamo"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis en Futuna"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Waals"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4555,26 +4163,31 @@ msgstr "Wasjo"
 msgid "Welsh"
 msgstr "Welsh"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "West Sahara"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Sorbische talen"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Waals"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "Wolof"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmyk"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "Xhosa"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Jakoets"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4585,11 +4198,6 @@ msgstr "Yao"
 msgid "Yapese"
 msgstr "Yapees"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
-
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
 msgid "Yiddish"
@@ -4605,16 +4213,6 @@ msgstr "Yoruba"
 msgid "Yupik Languages"
 msgstr "Yupik-talen"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
-
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
-
 #. language code: zap
 #: zypp/LanguageCode.cc:1139
 msgid "Zapotec"
@@ -4630,72 +4228,196 @@ msgstr "Zenaga"
 msgid "Zhuang"
 msgstr "Zhuang"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
 
 #. language code: zul zu
 #: zypp/LanguageCode.cc:1147
 msgid "Zulu"
 msgstr "Zulu"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+"Er is een poging gedaan om een niet bestaande sleutel %s te importeren in "
+"sleutelring %s"
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Verwijderen van sleutel is mislukt."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Ondertekeningsbestand %s niet gevonden"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Kan bestand '%s' niet leveren uit installatiebron '%s'"
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Geen url in bron."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "Service-plug-in ondersteunt geen wijzigen van een attribuut."
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Pakket %s lijkt te zijn verminkt bij de overdracht. Wilt u het ophalen "
+"opnieuw proberen?"
+
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "Verificatie van de ondertekening is mislukt"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Leveren van pakket %s is mislukt. Wilt u het ophalen opnieuw proberen?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "controle van applydeltarpm is mislukt."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm mislukt."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"Systeembeheer is geblokkeerd door de applicatie met pid %d (%s).\n"
+"Deze applicatie afsluiten alvorens opnieuw te proberen."
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s behoort niet tot een installatiebron voor distributieopwaardering"
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s heeft een slechtere architectuur"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "probleem met geïnstalleerd pakket %s"
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "conflicterende verzoeken"
+
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "enige afhankelijkheidsproblemen"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "Niets levert het gevraagde %s"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Hebt u alle vereiste installatiebronnen ingeschakeld?"
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "pakket %s bestaat niet"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "controle van applydeltarpm is mislukt."
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "niet ondersteund verzoek"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm mislukt."
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s wordt door het systeem geleverd en kan niet gewist worden"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/solver/detail/SATResolver.cc:1007
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "architectuurverandering van %s naar %s"
+msgid "%s is not installable"
+msgstr "%s is niet geïnstalleerd"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/solver/detail/SATResolver.cc:1012
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "%s afbreken door enige van zijn afhankelijkheden te negeren"
+msgid "nothing provides %s needed by %s"
+msgstr "niets levert %s nodig voor %s"
 
 #: zypp/solver/detail/SATResolver.cc:1017
 #, c-format, boost-format
 msgid "cannot install both %s and %s"
 msgstr "kan %s en %s niet beide installeren"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "conflicterende verzoeken"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s is in conflict met %s die geleverd is door %s"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/solver/detail/SATResolver.cc:1027
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "reservekopie %s aangemaakt"
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s maakt %s verouderd en is geleverd door %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/solver/detail/SATResolver.cc:1032
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "verwijderen van %s"
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "geïnstalleerd %s maakt %s verouderd en is geleverd door %s"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "oplosser %s is in conflict met %s die geleverd is door zichzelf"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s vereist %s, Maar aan deze eis kan niet voldaan worden"
 
 #: zypp/solver/detail/SATResolver.cc:1070
 msgid "deleted providers: "
-msgstr "verwijderde providers: "
+msgstr "verwijderde leveranciers: "
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "vraag niet om alle oplossingspakketten die %s leveren te verwijderen"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"niet te installeren aanbieders: "
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "niet-installeerbare aanbieders: "
+
+#: zypp/solver/detail/SATResolver.cc:1141
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "vraag niet om een oplossingspakket die %s levert te installeren"
+msgid "remove lock to allow removal of %s"
+msgstr "verwijder de vergrendeling om de verwijdering van %s toe te staan"
 
 #: zypp/solver/detail/SATResolver.cc:1146
 #: zypp/solver/detail/SATResolver.cc:1182
@@ -4703,170 +4425,561 @@ msgstr "vraag niet om een oplossingspakket die %s levert te installeren"
 msgid "do not install %s"
 msgstr "%s niet installeren"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "installeer de meest recente versie van %s niet"
+msgid "keep %s"
+msgstr "%s behouden"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/solver/detail/SATResolver.cc:1166
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "%s downgraden naar %s"
+msgid "remove lock to allow installation of %s"
+msgstr "verwijder de vergrendeling om de installatie van %s toe te staan"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "negeer normaliter enige afhankelijkheden"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Dit verzoek zal uw systeem breken!"
 
 #: zypp/solver/detail/SATResolver.cc:1218
 #: zypp/solver/detail/SATResolver.cc:1239
 msgid "ignore the warning of a broken system"
 msgstr "sla geen acht op de waarschuwing voor een gebroken systeem"
 
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "vraag niet om een oplossingspakket die %s levert te installeren"
+
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "vraag niet om alle oplossingspakketten die %s leveren te verwijderen"
+
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "installeer de meest recente versie van %s niet"
+
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s behouden alhoewel een slechtere architectuur heeft"
+
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "%s installeren alhoewel het de architectuur verslechterd"
+
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "verouderde %s handhaven"
+
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "%s installeren uit een uitgesloten installatiebron"
+
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "waardeer %s af tot %s"
+
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "architectuurverandering van %s naar %s"
+
 #: zypp/solver/detail/SATResolver.cc:1334
 #, c-format, boost-format
 msgid ""
 "install %s (with vendor change)\n"
 "  %s  -->  %s"
 msgstr ""
-"%s installeren (met wijziging van leverancier)\n"
+"installeer %s (met wijziging van leverancier)\n"
 "  %s  -->  %s"
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "%s installeren ondanks de slechtere architectuur"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "vervanging van %s door %s"
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "deïnstallatie van %s"
+
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "breek %s door enige van zijn afhankelijkheden te negeren"
+
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "negeer normaliter enige afhankelijkheden"
+
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "Vereist attribuut '%s' ontbreekt."
+
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Een of beide van '%s' of '%s' attributen zijn vereist."
+
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Kan het blokkeringsbestand niet openen: %s"
+
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Deze actie is al bezig vanuit een ander programma."
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Geschiedenis:"
+
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Onbekende overeenkomstmodus '%s'"
+
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Onbekende overeenkomstmodus '%s' voor patroon '%s'"
+
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Ongeldige reguliere expressie '%s': regcomp returned %d"
+
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Ongeldige reguliere expressie '%s'"
+
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Eerst pakket 'lsof' installeren."
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Authenticatie vereist voor '%s'"
+
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Aankoppelen van %s op %s is mislukt"
+
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Afkoppelen van %s is mislukt"
+
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Verkeerde bestandsnaam: %s"
+
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
+"Medium is niet geopend terwijl een poging gedaan wordt de actie '%s' uit te "
+"voeren."
+
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "Bestand '%s' niet gevonden op medium '%s'"
+
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Kan niet naar bestand '%s' schrijven."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Medium niet aangesloten"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Verkeerd koppelpunt voor medium"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Download (curl) initialisatie mislukt voor '%s'"
+
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr "Systeem-uitzondering '%s' op medium '%s'."
+
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Patd '%s' op medium '%s' is geen bestand."
+
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Pad '%s' op medium '%s' is geen map."
+
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Verkeerd gevormde URI"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Lege hostnaam in URI"
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "%s installeren uit een uitgesloten opslagruimte"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Leeg bestandssysteem in URI"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Lege bestemming in URI"
+
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "geïnstalleerd %s maakt %s verouderd en is geleverd door %s"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Niet ondersteund URI-schema in '%s'."
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "ongeldig"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operatie niet ondersteund door medium"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "%s behouden"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Download (curl) fout voor '%s':\n"
+"Foutcode: %s\n"
+"Foutboodschap: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s behouden ondanks de slechtere architectuur"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "Fout bij het instellen downloadopties (curl) voor '%s':"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "verouderde %s handhaven"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Mediumbron '%s' bevat niet het gewenste medium"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Kan libhal-context niet maken"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "Medium '%s' is in gebruik door iets anders"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: Kan dbus-verbinding niet instellen"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Kan geen medium uitwerpen"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "niets levert %s nodig door %s"
+msgid "Cannot eject media '%s'"
+msgstr "Kan medium '%s' niet uitwerpen"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "Niets levert het gevraagde %s"
+msgid "Permission to access '%s' denied."
+msgstr "Toegang tot '%s' geweigerd."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "pakket %s bestaat niet"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Tijdslimiet overschreden bij toegang tot '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "probleem met geïnstalleerd pakket %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Locatie '%s' is tijdelijk niet toegankelijk."
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "verwijder de vergrendeling om de installatie van %s toe te staan"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr " SSL-certificaatprobleem, controleer of de CA-cert OK is voor '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "verwijder de vergrendeling om de verwijdering van %s toe te staan"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Kan geen beschikbaar loop-apparaat vinden om het image-bestand van '%s'op te "
+"koppelen"
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "vervanging van %s door %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Niet-ondersteunde HTTP-authenticatiemethode '%s'"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
-"rpm heeft %s gemaakt als %s, maar het was niet mogelijk om het verschil te "
-"bepalen"
+"Bezoek het Novell Customer Center om te controleren of uw registratie nog "
+"geldig is en nog niet is verlopen."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Kan sat-pool niet aanmaken."
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm maakt %s aan als %s.\n"
-"Dit zijn de eerste 25 regels die verschillen:\n"
+"Bestand %1%\n"
+"  uit het pakket\n"
+"     %2%\n"
+"  conflicteert met bestand uit het pakket\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"rpm heeft %s opgeslagen als %s, maar het was niet mogelijk om het verschil "
-"te bepalen"
+"Bestand %1%\n"
+"  uit het pakket\n"
+"     %2%\n"
+"  conflicteert met bestand uit de installatie van\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm sloeg %s op als %s.\n"
-"Dit zijn de eerste 25 regels die verschillend zijn:\n"
+"Bestand %1%\n"
+"  uit de installatie van\n"
+"     %2%\n"
+"  conflicteert met bestand uit het pakket\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "Oplosser %s is in conflict met %s die geleverd is door zichzelf"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Bestand %1%\n"
+"  uit de installatie van\n"
+"     %2%\n"
+"  conflicteert met bestand uit de installatie van\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "een afhankelijkheidsprobleem"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Bestand %1%\n"
+"  uit het pakket\n"
+"     %2%\n"
+"  conflicteert met bestand\n"
+"     %3%\n"
+"  uit het pakket\n"
+"     %4%"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "niet-installeerbare providers: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Bestand %1%\n"
+"  uit het pakket\n"
+"     %2%\n"
+"  conflicteert met bestand\n"
+"     %3%\n"
+"  uit de installatie van\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "onbekend"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Bestand %1%\n"
+"  uit de installatie van\n"
+"     %2%\n"
+"  conflicteert met bestand\n"
+"     %3%\n"
+"  uit het pakket\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "niet ondersteund"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Bestand %1%\n"
+"  uit de installatie van\n"
+"     %2%\n"
+"  conflicteert met bestand\n"
+"     %3%\n"
+"  uit de installatie van\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "niet-ondersteund verzoek"
+#~ msgid "do not keep %s installed"
+#~ msgstr "houd %s niet geïnstalleerd"
+
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr ""
+#~ "Kan geen publieke sleutel %s uit %s sleutelring aanmaken naar bestand %s"
+
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "Download (Metalink curl) initialisatie mislukt voor '%s'"
+
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "Download (metalink curl) fout voor '%s':\n"
+#~ "Foutcode: %s\n"
+#~ "Foutboodschap: %s\n"
+
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "Download onderbroken bij %d%%"
+
+#~ msgid "Download interrupted by user"
+#~ msgstr "Download onderbroken door gebruiker"
+
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr "Fout bij het instellen downloadopties (metalink curl) voor '%s':"
+
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Downloaden van %s op %s is mislukt"
+
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Servië en Montenegro"
+
+#~ msgid "Unknown Distribution"
+#~ msgstr "Onbekende distributie"
+
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "negeer enige afhankelijkheden van %s"
+
+#~ msgid ""
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Bestand %s bevat geen checksum.\n"
+#~ "Wilt u het toch gebruiken?"
+
+#~ msgid ""
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Bestand %s voldoet niet aan integriteitscontrole door de volgende "
+#~ "sleutel:\n"
+#~ "%s|%s|%s\n"
+#~ " Wilt u het bestand toch gebruiken?"
+
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Bestand %s heeft een ongeldige checksum.\n"
+#~ "%s verwacht, %s gevonden\n"
+#~ "Wilt u het toch gebruiken?"
+
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Bestand %s heeft een onbekende checksum.%sWilt u het toch gebruiken?"
+
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "Bestand %s is niet ondertekend.\n"
+#~ "Wilt u het toch gebruiken?"
+
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Bestand %s is ondertekend met een onbekende sleutel:\n"
+#~ "%s|%s|%s\n"
+#~ " Wilt u het bestand toch gebruiken?"
+
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "Niet-vertrouwde sleutel gevonden:\n"
+#~ "%s|%s|%s\n"
+#~ " Sleutel vertrouwen?"
index 281b5c9..dbde0d6 100644 (file)
--- a/po/nn.po
+++ b/po/nn.po
@@ -19,1143 +19,897 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 2.0\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr ""
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-msgid " execution failed"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s er i konflikt med %s frå %s"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Krev"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhasisk"
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Acehnesisk"
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/target/TargetImpl.cc:332
+msgid " execution failed"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adygeisk"
-
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Melding om ny oppdatering"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Afrihili"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikaans"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afroasiatiske (andre)"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Ainu"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Akan"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Akkadisk"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albania"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albansk"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aleutisk"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algerie"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaisk (andre)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Amerikansk Samoa"
-
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amharisk"
-
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktika"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua og Barbuda"
-
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Arabisk"
-
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonsk"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenia"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armensk"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Kunstspråk (andre)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Assami"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Asturleonesisk"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Desse handlingane vert utførte:"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
 msgstr ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australia"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
 msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austerrike"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
+msgid "Can't open file '%s' for writing."
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Avarisk"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Avestisk"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Avadhi"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Aymara"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Aserbajdsjan"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Byggjer pakkebrønnmellomlager for «%s»"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Aserbajdsjansk"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
 
-#: zypp/media/MediaException.cc:47
+#: zypp/RepoManager.cc:1366
 #, c-format, boost-format
-msgid "Bad file name: %s"
+msgid "Failed to cache repo (%d)."
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
 msgstr ""
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr ""
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
 msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltisk (andre)"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Balutsji"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Fjernar pakkebrønnen «%s»"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
 msgstr ""
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (andre)"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Basjkirsk"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baskisk"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
 msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Kviterussland"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Kviterussisk"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgia"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr ""
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Bemba"
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengali"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Berbisk (andre)"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihari"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia-Hercegovina"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosnisk"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvetøya"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr ""
-
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasil"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretonsk"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Det britiske territoriet i Indiahavet"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Jomfruøyane (Storbritannia)"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr ""
-
-#: zypp/RepoManager.cc:1282
+#: zypp/ExternalProgram.cc:527
 #, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Byggjer pakkebrønnmellomlager for «%s»"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaria"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgarsk"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+msgid "Command was killed by signal %d (%s)."
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Burmesisk"
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
 msgstr ""
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodsja"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:360
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
 #, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
 msgstr ""
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
 msgstr ""
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
 msgstr ""
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
 msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
 msgstr ""
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr ""
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Ukjent land: "
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr ""
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr ""
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Dei sameinte arabiske emirata"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canada"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afghanistan"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua og Barbuda"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr ""
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albania"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
-
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
-
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr ""
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenia"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Kapp Verde"
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Dei nederlandske Antillane"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr ""
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Katalansk"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktika"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "Kaukasisk (andre)"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Caymanøyane"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Amerikansk Samoa"
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr ""
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austerrike"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Keltisk (andre)"
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australia"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Den sentralafrikanske republikken"
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
 msgstr ""
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Tsjad"
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Aserbajdsjan"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr ""
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnia-Hercegovina"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr ""
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr ""
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr ""
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgia"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Tsjetsjensk"
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr ""
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaria"
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr ""
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr ""
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr ""
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Kina"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Kinesisk"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr ""
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasil"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr ""
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr ""
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Christmasøya"
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvetøya"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "Kyrkjeslavisk"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr ""
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Kviterussland"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Tsjuvasjisk"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr ""
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canada"
 
 #. :CAN:124:
 #: zypp/CountryCode.cc:195
 msgid "Cocos (Keeling) Islands"
 msgstr "Kokosøyane"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Komorane"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
-
 #. :CCK:166:
 #. :CAF:140:
 #: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
 msgid "Congo"
 msgstr "Kongo-Brazzaville"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cookøyane"
-
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "Koptisk"
-
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "Kornisk"
-
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "Korsikansk"
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Den sentralafrikanske republikken"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Sveits"
 
 #. :CHE:756:
 #: zypp/CountryCode.cc:200
 msgid "Cote D'Ivoire"
 msgstr "Elfenbeinskysten"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr ""
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr ""
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr ""
-
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr ""
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cookøyane"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr ""
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr ""
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr ""
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Kina"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Kroatia"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Kroatisk"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
 
 #. :CRI:188:
 #: zypp/CountryCode.cc:207
 msgid "Cuba"
 msgstr "Cuba"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr ""
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Kapp Verde"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Christmasøya"
 
 #. :CXR:162:
 #: zypp/CountryCode.cc:210
 msgid "Cyprus"
 msgstr "Kypros"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "Tsjekkisk"
-
 #. :CYP:196:
 #: zypp/CountryCode.cc:211
 msgid "Czech Republic"
 msgstr "Tsjekkia"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "Dakota"
-
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "Dansk"
-
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr ""
-
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr ""
-
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr ""
-
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danmark"
-
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr ""
-
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr ""
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Tyskland"
 
 #. :DEU:276:
 #: zypp/CountryCode.cc:213
 msgid "Djibouti"
 msgstr "Djibouti"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr ""
-
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr ""
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danmark"
 
 #. :DNK:208:
 #: zypp/CountryCode.cc:215
@@ -1167,449 +921,1602 @@ msgstr "Dominica"
 msgid "Dominican Republic"
 msgstr "Den dominikanske republikken"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algerie"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "Dravidisk"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estland"
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr ""
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egypt"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Vest-Sahara"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Nederlandsk"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr ""
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spania"
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr ""
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopia"
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "Dzongkha"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finland"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr ""
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falklandsøyane"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr ""
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Mikronesiaføderasjonen"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egypt"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Færøyane"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr ""
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Frankrike"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr ""
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Storbritannia"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgia"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr ""
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Fransk Guyana"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
 msgstr ""
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Engelsk"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr ""
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr ""
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grønland"
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
 
 #. :GLP:312:
 #: zypp/CountryCode.cc:244
 msgid "Equatorial Guinea"
 msgstr "Ekvatorial-Guinea"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Hellas"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr ""
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Esperanto"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estland"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hongkong"
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Estisk"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr ""
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopia"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Ewe"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Kroatia"
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr ""
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr ""
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Ungarn"
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr ""
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesia"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irland"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Det britiske territoriet i Indiahavet"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Island"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italia"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordan"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japan"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgisistan"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodsja"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Komorane"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "St. Kitts og Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr ""
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr ""
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Caymanøyane"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kasakhstan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr ""
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "St. Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litauen"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxembourg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latvia"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr ""
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marokko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr ""
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr ""
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshalløyane"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonia"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolia"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Nord-Marianane"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritania"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldivane"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexico"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaysia"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mosambik"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Ny-Caledonia"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolkøya"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Nederland"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Noreg"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Naurisk"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "New Zealand"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Fransk Polynesia"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Ny-Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filippinane"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polen"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint-Pierre-et-Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr ""
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugual"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Réunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romania"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbia"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Russland"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudi-Arabia"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Salomonøyane"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychellane"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Sverige"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapore"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "St. Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenia"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard og Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovakia"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "São Tomé og Príncipe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr ""
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swaziland"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks- og Caicosøyane"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Tsjad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Dei franske sørterritoria"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thailand"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadsjikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisia"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr ""
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Tyrkia"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad og Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzania"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraina"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "USAs ytre småøyar"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "USA"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Usbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Vatikanstaten"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr ""
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Jomfruøyane (Storbritannia)"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Jomfruøyane (USA)"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr ""
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr ""
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Sør-Afrika"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Ukjent språk: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abkhasisk"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Acehnesisk"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr ""
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr ""
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adygeisk"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afroasiatiske (andre)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Afrihili"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikaans"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Ainu"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Akan"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Akkadisk"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albansk"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aleutisk"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr ""
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr ""
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amharisk"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr ""
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr ""
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Arabisk"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr ""
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonsk"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armensk"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr ""
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr ""
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Kunstspråk (andre)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Assami"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Asturleonesisk"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr ""
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr ""
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Avarisk"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Avestisk"
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Avadhi"
+
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Aymara"
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Aserbajdsjansk"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr ""
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr ""
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Basjkirsk"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Balutsji"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr ""
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr ""
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Baskisk"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr ""
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltisk (andre)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr ""
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Kviterussisk"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Bemba"
+
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengali"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Berbisk (andre)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr ""
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Bihari"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr ""
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr ""
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr ""
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (andre)"
+
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosnisk"
+
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr ""
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretonsk"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr ""
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr ""
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr ""
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgarsk"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Burmesisk"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr ""
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr ""
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr ""
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr ""
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "Katalansk"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "Kaukasisk (andre)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr ""
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Keltisk (andre)"
+
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr ""
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Tsjetsjensk"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr ""
+
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Kinesisk"
+
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr ""
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr ""
+
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr ""
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr ""
+
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr ""
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr ""
+
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Kyrkjeslavisk"
+
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Tsjuvasjisk"
+
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr ""
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr ""
+
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "Koptisk"
+
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "Kornisk"
+
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "Korsikansk"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr ""
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr ""
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr ""
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr ""
+
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr ""
+
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
+
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr ""
+
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr ""
+
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "Tsjekkisk"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "Dakota"
+
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Dansk"
+
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
 msgstr ""
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandsøyane"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr ""
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Færøyane"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "Dravidisk"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Færøysk"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Lågsorbisk"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Mikronesiaføderasjonen"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr ""
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr ""
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fijiansk"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Nederlandsk"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
-"Fila %1%\n"
-"  frå installeringa av\n"
-"     %2%\n"
-"  er i konflikt med fila\n"
-"     %3%\n"
-"  frå installeringa av\n"
-"     %4%"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "Dzongkha"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
-"Fila %1%\n"
-"  frå installeringa av\n"
-"     %2%\n"
-"  er i konflikt med fila\n"
-"     %3%\n"
-"  frå pakken\n"
-"     %4%"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
-"Fila %1%\n"
-"  frå installeringa av\n"
-"     %2%\n"
-"  er i konflikt med fil frå installering av\n"
-"     %3%"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
-"Fila %1%\n"
-"  frå installeringa av\n"
-"     %2%\n"
-"  er i konflikt med fil frå pakken\n"
-"     %3%"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
-"Fila %1%\n"
-"  frå pakken\n"
-"     %2%\n"
-"  er i konflikt med fila\n"
-"     %3%\n"
-"  frå installeringa av\n"
-"     %4%"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Engelsk"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
-"Fila %1%\n"
-"  frå pakken\n"
-"     %2%\n"
-"  er i konflikt med fila\n"
-"     %3%\n"
-"  frå pakken\n"
-"     %4%"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Esperanto"
+
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Estisk"
+
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Ewe"
+
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
-"Fila %1%\n"
-"  frå pakken\n"
-"     %2%\n"
-"  er i konflikt med fil frå installeringa av\n"
-"     %3%"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
-"Fila %1%\n"
-"  frå pakken\n"
-"     %2%\n"
-"  er i konflikt med fil frå pakken\n"
-"     %3%"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Fann ikkje fila «%s» på mediet «%s»"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Færøysk"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Fijiansk"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finland"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1620,40 +2527,16 @@ msgstr "Finsk"
 msgid "Finno-Ugrian (Other)"
 msgstr "Finsk-ugrisk"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Desse handlingane vert utførte:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Frankrike"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Fransk"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Fransk Guyana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Fransk Polynesia"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Dei franske sørterritoria"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1669,46 +2552,21 @@ msgstr ""
 msgid "Frisian"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr ""
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fulfulde"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr ""
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gælisk"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galisisk"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr ""
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1719,15 +2577,10 @@ msgstr ""
 msgid "Gbaya"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr ""
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germansk (andre)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1739,6 +2592,36 @@ msgstr "Georgisk"
 msgid "German"
 msgstr "Tysk"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr ""
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Kiribatisk"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gælisk"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irsk"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galisisk"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1749,30 +2632,6 @@ msgstr ""
 msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germansk (andre)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Tyskland"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Kiribatisk"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1793,11 +2652,6 @@ msgstr "Gotisk"
 msgid "Grebo"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Hellas"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1808,61 +2662,16 @@ msgstr "Gammalgresk (fram til 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grønland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr ""
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1873,52 +2682,21 @@ msgstr ""
 msgid "Haida"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
-#. language code: hat ht
-#: zypp/LanguageCode.cc:513
-msgid "Haitian"
-msgstr "Haitisk"
-
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
+#. language code: hat ht
+#: zypp/LanguageCode.cc:513
+msgid "Haitian"
+msgstr "Haitisk"
 
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr ""
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1944,16 +2722,6 @@ msgstr ""
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr ""
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1964,31 +2732,21 @@ msgstr "Hettittisk"
 msgid "Hmong"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Vatikanstaten"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr ""
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hongkong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Høgsorbisk"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Ungarsk"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Ungarn"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1999,10 +2757,10 @@ msgstr ""
 msgid "Iban"
 msgstr ""
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Island"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Ibo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2014,249 +2772,104 @@ msgstr "Islandsk"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Ibo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr ""
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr ""
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuittisk"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Enaresamisk"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (International Auxiliary Language Association)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indoeuropeisk"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesia"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonesisk"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indoeuropeisk"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (International Auxiliary Language Association)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuittisk"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Inupiak"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr ""
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr ""
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr ""
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irland"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irsk"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr ""
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Gammalirsk (fram til 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
-#. language code: ita it
-#: zypp/LanguageCode.cc:577
-msgid "Italian"
-msgstr "Italiensk"
-
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italia"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
-
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japan"
-
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
-msgstr "Japansk"
-
+#. language code: ita it
+#: zypp/LanguageCode.cc:577
+msgid "Italian"
+msgstr "Italiensk"
+
 #. language code: jav jv
 #: zypp/LanguageCode.cc:579
 msgid "Javanese"
 msgstr "Javanesisk"
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordan"
-
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
-msgstr ""
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
+msgstr "Japansk"
 
 #. language code: jpr
 #: zypp/LanguageCode.cc:585
 msgid "Judeo-Persian"
 msgstr ""
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
+msgstr ""
+
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
 #. language code: kab
@@ -2274,11 +2887,6 @@ msgstr ""
 msgid "Kalaallisut"
 msgstr "Grønlandsk"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr ""
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2289,21 +2897,6 @@ msgstr ""
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr ""
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr ""
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr ""
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2314,9 +2907,9 @@ msgstr ""
 msgid "Kashmiri"
 msgstr "Kasjmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
 #. language code: kaw
@@ -2329,31 +2922,26 @@ msgstr ""
 msgid "Kazakh"
 msgstr "Kasakhisk"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kasakhstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr ""
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr ""
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr ""
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr ""
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2364,11 +2952,6 @@ msgstr ""
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr ""
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2379,15 +2962,15 @@ msgstr ""
 msgid "Kirghiz"
 msgstr "Kirgisisk"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2399,11 +2982,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2419,11 +2997,21 @@ msgstr ""
 msgid "Kpelle"
 msgstr ""
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr ""
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr ""
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr ""
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2439,26 +3027,11 @@ msgstr ""
 msgid "Kurdish"
 msgstr "Kurdisk"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr ""
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgisistan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2479,68 +3052,21 @@ msgstr ""
 msgid "Lao"
 msgstr "Laotisk"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr ""
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latin"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latvia"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Latvisk"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr ""
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2551,49 +3077,39 @@ msgstr ""
 msgid "Lingala"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litauen"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Litauisk"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Lågtysk"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Lågsorbisk"
-
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr ""
 
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxembourgsk"
+
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
+msgstr ""
+
 #. language code: lub lu
 #: zypp/LanguageCode.cc:683
 msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
 msgstr ""
 
 #. language code: lui
@@ -2601,11 +3117,6 @@ msgstr ""
 msgid "Luiseno"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lulesamisk"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2621,35 +3132,11 @@ msgstr "Luo (Kenya og Tanzania)"
 msgid "Lushai"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxembourg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxembourgsk"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Makedonsk"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2660,6 +3147,11 @@ msgstr ""
 msgid "Magahi"
 msgstr ""
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshallesisk"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2670,162 +3162,49 @@ msgstr ""
 msgid "Makasar"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Gassisk"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malayisk"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malayalam"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaysia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldivane"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltesisk"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Mandsju"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr ""
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr ""
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr ""
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr ""
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshalløyane"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshallesisk"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr ""
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritania"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr ""
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malayisk"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
 msgstr ""
 
 #. language code: men
@@ -2833,16 +3212,11 @@ msgstr ""
 msgid "Mende"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexico"
-
 #. language code: mic
 #: zypp/LanguageCode.cc:735
 msgid "Mi'kmaq"
@@ -2853,229 +3227,169 @@ msgstr ""
 msgid "Minangkabau"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr ""
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr ""
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr ""
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Gassisk"
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
-msgstr "Rumensk (utdatert)"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltesisk"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Mandsju"
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr ""
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
 msgstr ""
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolia"
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
+msgstr "Rumensk (utdatert)"
 
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongolsk"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr ""
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marokko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mosambik"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
 msgstr ""
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
-msgstr "Munda"
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
+msgstr "Munda"
+
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr ""
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr ""
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr ""
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr ""
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr ""
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Naurisk"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Napolitansk"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navaho"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr ""
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr ""
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr ""
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Napolitansk"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr ""
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Lågtysk"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepali"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Nederland"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Dei nederlandske Antillane"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Ny-Caledonia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "New Zealand"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Melding om ny oppdatering"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr ""
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr ""
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Norsk (nynorsk)"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
 #. language code: nog
@@ -3083,68 +3397,34 @@ msgstr ""
 msgid "Nogai"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolkøya"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Norrønt"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr ""
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr ""
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Nord-Marianane"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Nordsamisk"
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
+msgstr "Norsk"
 
 #. language code: nso
 #: zypp/LanguageCode.cc:813
 msgid "Northern Sotho"
 msgstr "Nordsotho"
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Noreg"
-
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
-msgstr "Norsk"
-
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
+#. language code: nub
+#: zypp/LanguageCode.cc:815
+msgid "Nubian Languages"
 msgstr ""
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Norsk (nynorsk)"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
 msgstr ""
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
-msgid "Nubian Languages"
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
 msgstr ""
 
 #. language code: nym
@@ -3167,10 +3447,6 @@ msgstr ""
 msgid "Nzima"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr ""
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3181,20 +3457,6 @@ msgstr "Oksitansk (etter 1500)"
 msgid "Ojibwa"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3215,64 +3477,36 @@ msgstr ""
 msgid "Ossetian"
 msgstr "Ossetisk"
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
-msgstr ""
-
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr ""
-
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr ""
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
 msgstr ""
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr ""
 
 #. language code: pag
 #: zypp/LanguageCode.cc:847
 msgid "Pangasinan"
 msgstr ""
 
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr ""
+
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr ""
+
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3283,34 +3517,14 @@ msgstr "Panjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua Ny-Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr ""
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
 #. language code: per fas fa
@@ -3318,59 +3532,30 @@ msgstr ""
 msgid "Persian"
 msgstr "Persisk"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr ""
-
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
-
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filippinane"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Fønikisk"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Ponapisk"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polen"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Polsk"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugual"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Ponapisk"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3382,77 +3567,21 @@ msgstr "Portugisisk"
 msgid "Prakrit Languages"
 msgstr ""
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pashto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr ""
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr ""
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3468,134 +3597,35 @@ msgstr ""
 msgid "Rarotongan"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Fjernar pakkebrønnen «%s»"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Krev"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Réunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Romansk (andre)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romania"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumensk"
-
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "Romani"
-
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundi"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Russisk"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Russland"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "St. Helena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "St. Kitts og Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "St. Lucia"
-
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr ""
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint-Pierre-et-Miquelon"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr ""
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr ""
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr ""
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "Romani"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumensk"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoansk"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundi"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Russisk"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3607,41 +3637,61 @@ msgstr ""
 msgid "Sango"
 msgstr "Sango"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr ""
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr ""
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr ""
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr ""
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskrit"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr ""
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "São Tomé og Príncipe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardisk"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr ""
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbisk"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudi-Arabia"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Siciliansk"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr ""
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Kroatisk"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3652,264 +3702,149 @@ msgstr "Selkupisk"
 msgid "Semitic (Other)"
 msgstr "Semittisk (andre)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbia"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbisk"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr ""
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Gammalirsk (fram til 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychellane"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Teiknspråk"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr ""
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr ""
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Siciliansk"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Teiknspråk"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr ""
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr ""
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapore"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Singalesisk"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-tibetansk (andre)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr ""
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Skoltesamisk"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr ""
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-tibetansk (andre)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
 msgid "Slavic (Other)"
 msgstr "Slavisk (andre)"
 
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "Slovakisk"
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "Slovakisk"
+
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Slovensk"
+
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Sørsamisk"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Nordsamisk"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr ""
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lulesamisk"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Enaresamisk"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoansk"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Skoltesamisk"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovakia"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenia"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr ""
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Slovensk"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr ""
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr ""
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Salomonøyane"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Somali"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr ""
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Sørsotho"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Sør-Afrika"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr ""
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr ""
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr ""
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr ""
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Sørsamisk"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spania"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Spansk"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardisk"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
 #. language code: suk
@@ -3917,92 +3852,36 @@ msgstr ""
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumerisk"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sundanesisk"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard og Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumerisk"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Swahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr ""
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Sverige"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Svensk"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Sveits"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr ""
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr ""
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4013,36 +3892,11 @@ msgstr "Tahitisk"
 msgid "Tai (Other)"
 msgstr "Tai (andre)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tadsjikisk"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadsjikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4053,6 +3907,11 @@ msgstr "Tatarisk"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4063,33 +3922,21 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tadsjikisk"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Thai"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thailand"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Denne kommandoen vil skada systemet!"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4101,51 +3948,30 @@ msgid "Tigre"
 msgstr "Tigré"
 
 #. language code: tir ti
-#: zypp/LanguageCode.cc:1041
-msgid "Tigrinya"
-msgstr "Tigrinja"
-
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
+#: zypp/LanguageCode.cc:1041
+msgid "Tigrinya"
+msgstr "Tigrinja"
 
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
-
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
 msgid "Tonga (Nyasa)"
@@ -4156,103 +3982,66 @@ msgstr "Tonga"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tongansk"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad og Tobago"
-
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Setswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Setswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmensk"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisia"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr ""
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Tyrkia"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Tyrkisk"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr ""
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkmensk"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks- og Caicosøyane"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaisk (andre)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr ""
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr ""
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4263,570 +4052,781 @@ msgstr ""
 msgid "Uighur"
 msgstr "Uigurisk"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraina"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
 msgstr "Ukrainsk"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr ""
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Urdu"
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Usbekisk"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnamesisk"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr ""
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr ""
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr ""
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr ""
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr ""
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr ""
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Walisisk"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr ""
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Vallonsk"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolof"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr ""
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhosa"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yao"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yapesisk"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Jiddisch"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Joruba"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr ""
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr ""
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr ""
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr ""
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr ""
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Dei sameinte arabiske emirata"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Storbritannia"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "USA"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "USAs ytre småøyar"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Ukjent land: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Ukjent språk: "
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Ukjend samsvarsmodus «%s»"
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Ukjend samsvarsmodus «%s» for mønsteret '%s'."
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/solver/detail/SATResolver.cc:979
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "problem with installed package %s"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Høgsorbisk"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Urdu"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:992
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Usbekisk"
-
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Usbekistan"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s er i konflikt med %s frå %s"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "løysbare %s konfliktar med %s tilgjengeleg frå seg sjølv"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnamesisk"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Jomfruøyane (USA)"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Denne kommandoen vil skada systemet!"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Vallonsk"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Walisisk"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Vest-Sahara"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yao"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Yapesisk"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Jiddisch"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Joruba"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Ukjend samsvarsmodus «%s»"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Ukjend samsvarsmodus «%s» for mønsteret '%s'."
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Failed to mount %s on %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Failed to unmount %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "deinstallation of %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Fann ikkje fila «%s» på mediet «%s»"
+
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep obsolete %s"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
+"Fila %1%\n"
+"  frå pakken\n"
+"     %2%\n"
+"  er i konflikt med fil frå pakken\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
+"Fila %1%\n"
+"  frå pakken\n"
+"     %2%\n"
+"  er i konflikt med fil frå installeringa av\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
+"Fila %1%\n"
+"  frå installeringa av\n"
+"     %2%\n"
+"  er i konflikt med fil frå pakken\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "løysbare %s konfliktar med %s tilgjengeleg frå seg sjølv"
-
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
+"Fila %1%\n"
+"  frå installeringa av\n"
+"     %2%\n"
+"  er i konflikt med fil frå installering av\n"
+"     %3%"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
+"Fila %1%\n"
+"  frå pakken\n"
+"     %2%\n"
+"  er i konflikt med fila\n"
+"     %3%\n"
+"  frå pakken\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
+"Fila %1%\n"
+"  frå pakken\n"
+"     %2%\n"
+"  er i konflikt med fila\n"
+"     %3%\n"
+"  frå installeringa av\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
+"Fila %1%\n"
+"  frå installeringa av\n"
+"     %2%\n"
+"  er i konflikt med fila\n"
+"     %3%\n"
+"  frå pakken\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
+"Fila %1%\n"
+"  frå installeringa av\n"
+"     %2%\n"
+"  er i konflikt med fila\n"
+"     %3%\n"
+"  frå installeringa av\n"
+"     %4%"
index bf7bf83..cb4610f 100644 (file)
--- a/po/pa.po
+++ b/po/pa.po
@@ -21,16 +21,92 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: KBabel 1.11.4\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal ਅਪਵਾਦ"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "ਗਲਤ LDAP URL ਕਿਊਰੀ ਸਤਰ"
+
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Url ਆਬਜੈਕਟ ਕਲੋਨ ਕਰਨ ਲਈ ਅਸਮਰੱਥ"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "ਗਲਤ ਖਾਲੀ Url ਆਬਜੈਕਟ ਰੈਫਰੈਂਸ"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Url ਭਾਗ ਪਾਰਸ ਕਰਨ ਲਈ ਅਸਮਰੱਥ"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "mutex ਲਾਕ ਲਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "mutex ਲਾਕ ਰੀਲਿਜ਼ ਨਹੀਂ ਜਾ ਸਕਦਾ"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "ਪਰੋਵਾਇਡ"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "ਲੋੜੀਦਾ"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "ਅਪਵਾਦ"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "ਬਰਤਰਫ਼"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "ਸਿਫਾਰਸ਼ੀ"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "ਸੁਝਾਅ"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "ਇੰਹੈਂਸ"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "ਸਪਲੀਮੈਂਟ"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -44,10 +120,6 @@ msgstr "ਚਲਾਓ"
 msgid " execution failed"
 msgstr "DBI ਚਲਾਉਣਾ ਫੇਲ੍ਹ: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -56,91 +128,117 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s ਦਾ %s ਨਾਲ ਅਪਵਾਦ ਹੈ"
-
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਆਰਕੀਟੈਕਚਰ ਹੋਰ ਹੈ।"
-
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+#, fuzzy
+msgid "Error sending update message notification."
+msgstr "ਕੁੰਜੀ ਇੰਕ੍ਰਿਪਸ਼ਨ ਦੌਰਾਨ ਗਲਤੀ ਹੈ।"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, fuzzy, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s %s ਰਾਹੀਂ ਚਾਹੀਦਾ ਹੈ"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "ਇੰਸਟਾਲੇਸ਼ਨ ਹਦਾਇਤਾਂ ਮੁਤਾਬਕ ਅਧੂਰੀ ਛੱਡੀ ਗਈ ਹੈ।"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext ਕੁਨੈਕਟਡ ਨਹੀਂ"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive ਸ਼ੁਰੂ ਨਹੀਂ ਹੈ"
+
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume ਸ਼ੁਰੂ ਨਹੀਂ ਕੀਤਾ"
+
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "dbus ਕੁਨੈਕਸ਼ਨ ਬਣਾਉਣ ਲਈ ਅਸਮਰੱਥ"
+
+#: zypp/target/hal/HalContext.cc:242
+#, fuzzy
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_set_dbus_connection: dbus ਕੁਨੈਕਸ਼ਨ ਸੈੱਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
+
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: dbus ਕੁਨੈਕਸ਼ਨ ਸੈੱਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
+
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "ਇੱਕ CDROM ਡਰਾਇਵ ਨਹੀਂ ਹੈ"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+#, fuzzy
+msgid "RPM failed: "
+msgstr "ਫੇਲ੍ਹ"
+
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "ਅਬਖਾਜ਼ੀਨਾ"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, fuzzy, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "ਪਬਲਿਕ ਕੁੰਜੀ ਲੈਣ ਲਈ ਅਸਮਰੱਥ ਹੈ।"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "ਅਚੀਨੀਜ਼"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "%s ਲਈ ਸੰਰਚਨਾ ਫਾਇਲਾਂ ਬਦਲੀਆਂ:"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "ਅਕੋਲੀ"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "ਅਡਾਨਗਮੀ"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਸ਼ਾਮਲ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
 #. report additional rpm output in finish
@@ -150,680 +248,1976 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "ਹੋਰ rpm ਆਉਟਪੁੱਟ:"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "ਅਡਯਘੀ"
-
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "ਅਫ਼ਰ"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "%s ਦਾ ਬੈਕਅੱਪ ਬਣਿਆ"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+#, fuzzy
+msgid "Following actions will be done:"
+msgstr "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਅੱਪਡੇਟ ਕੀਤੇ ਜਾਣਗੇ:\n"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ ਫੇਲ੍ਹ: %s।"
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+#, fuzzy
+msgid "Repository alias cannot start with dot."
+msgstr "VM ਦਾ ਨਾਂ ਇੱਕ ਅੰਕ ਨਾਲ ਸ਼ੁਰੂ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ।"
+
+#: zypp/RepoManager.cc:349
+#, fuzzy
+msgid "Service alias cannot start with dot."
+msgstr "VM ਦਾ ਨਾਂ ਇੱਕ ਅੰਕ ਨਾਲ ਸ਼ੁਰੂ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ।"
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "ਲਿਖਣ ਲਈ ਫਾਇਲ ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕਦੀ ਹੈ।"
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
+msgstr[1] "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "%s ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ: %m\n"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "%1 ਡਾਇਰੈਕਟਰੀ ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ ਹੈ: %2"
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਕੈਚੇ ਬਿਲਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ ਫੇਲ੍ਹ: %s।"
+
+#: zypp/RepoManager.cc:1377
+#, fuzzy
+msgid "Unhandled repository type"
+msgstr "%s ਰਿਪੋਜ਼ਟਰੀ ਲਈ ਅੱਪਲੋਡ ਕੀਤਾ।"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, fuzzy, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਤੋਂ ਮੇਟਾ-ਡਾਟਾ ਪਾਰਸਿੰਗ ਦੌਰਾਨ ਗਲਤੀ:"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "ਅਣਜਾਣ ਕਮਾਂਡ '%s'"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਸ਼ਾਮਲ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "ਗਲਤ ਐਕਸਪੋਰਟ ਫਾਇਲ ਨਾਂ ਹੈ।"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਹਟਾਈ ਜਾ ਰਹੀ ਹੈ।"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "ਡੈਸਕਟਾਪ ਆਈਟਮ '%s' ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕਦੀ ਹੈ"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Url ਸਕੀਮ ਲਈ %s ਮਨਜ਼ੂਰ ਨਹੀਂ ਹੈ"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "ਗਲਤ %s ਭਾਗ '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "ਗਲਤ %s ਭਾਗ"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Url ਸਕੀਮ ਲਈ ਇੱਕ ਲੋੜੀਦਾ ਭਾਗ ਹੈ"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "ਗਲਤ Url ਸਕੀਮ '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Url ਸਕੀਮ ਲਈ ਇੱਕ ਯੂਜ਼ਰ-ਨਾਂ ਮਨਜ਼ੂਰ ਨਹੀਂ ਹੈ"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Url ਸਕੀਮ ਲਈ ਇੱਕ ਪਾਸਵਰਪ ਮਨਜ਼ੂਰ ਨਹੀਂ ਹੈ"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Url ਲਈ ਇੱਕ ਹੋਸਟ ਭਾਗ ਲੋੜੀਦਾ ਹੈ"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Url ਸਕੀਮ ਲਈ ਇੱਕ ਹੋਸਟ ਭਾਗ ਮਨਜ਼ੂਰ ਨਹੀਂ ਹੈ।"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "ਗਲਤ ਹੋਸਟ ਭਾਗ '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Url ਸਕੀਮ ਇੱਕ ਪੋਰਟ ਨਹੀਂ ਦਿੰਦੀ ਹੈ।"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "ਗਲਤ ਪੋਰਟ ਭਾਗ '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Url ਸਕੀਮ ਲਈ ਮਾਰਗ ਨਾਂ ਲੋੜੀਦਾ ਹੈ"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "ਫਾਇਲ ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕੀ: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "ਫਾਇਲ %1 ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕਦੀ ਹੈ।"
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr ""
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, fuzzy, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "%s ਨਹੀਂ ਲੱਭਿਆ।"
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "ਕੁਨੈਕਟ ਕਰਨ ਦੌਰਾਨ ਚੱਲਦੀ ਕਮਾਂਡ"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "ਅਣਜਾਣ"
+
+#: zypp/VendorSupportOptions.cc:17
+#, fuzzy
+msgid "unsupported"
+msgstr " - ਸਹਾਇਕ ਨਹੀਂ"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+#, fuzzy
+msgid "The vendor does not provide support."
+msgstr "ਡਿਸਕ ਮੌਜੂਦ ਨਹੀਂ ਹੈ।"
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "ਅਣਜਾਣ ਦੇਸ਼: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "ਕੋਡ ਨਹੀਂ"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "ਆਂਡੋਰਾ"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "ਸੰਯੁਕਤ ਅਰਬ ਅਮੀਰਾਤ"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "ਅਫਗਾਨਿਸਤਾਨ"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "ਐਟੀਗੁਆ ਅਤੇ ਬਾਰਮੁਦਾ"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "ਅੰਗੂਲੀਆਂ"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "ਅਲਬੀਨਾ"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "ਅਮਰੀਨੀਅਨ"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "ਨੀਂਦਰਲੈਂਡ ਐਂਟੀਲਸ"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "ਅੰਗੋਲਾ"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "ਐਟਰਾਟਿਕਾ"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "ਅਰਜਨਟੀਨਾ"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "ਅਮਰੀਕੀ ਸਮੋਨਾ"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "ਆਸਟਰੀਆ"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "ਅਸਟਰੇਲੀਆ"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "ਅਰੂਬਾ"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "ਅਲੈਂਡ ਟਾਪੂ"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "ਅਜ਼ਰਬਾਈਜ਼ਾਨ"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "ਬੋਸੀਨਾ ਅਤੇ ਹਰਜ਼ੀਗੋਵੀਨਾ"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "ਬਾਰਬਾਡਾਸ"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "ਬੰਗਲਾਦੇਸ਼"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "ਬੈਲਜੀਅਮ"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "ਬੂਪਕੀਨਾ ਫਾਸੋ"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "ਬੁਲਗਾਰੀਆ"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "ਬਹਿਰਾਨ"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "ਬੁਰੁਡੀ"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "ਬੀਨੀਨ"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "ਬਾਰਾਮੂਡਾ"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "ਬਰੂਨਈ ਡੇਰੂਸਲਾਮ"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "ਬੋਲੋਵੀਆ"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "ਬਰਾਜ਼ੀਲ"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "ਬਾਹਾਮਾਸ"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "ਭੁਟਾਨ"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "ਬੁਉਵੀਟ ਟਾਪੂ"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "ਬੂਟਸਵਾਨਾ"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "ਬੇਲਾਰੂਸ"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "ਬਿਲੀਜ਼ੀ"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "ਕੇਨੈਡਾ"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "ਕੋਕੋਸ (ਕਿੱਲਿੰਗ) ਟਾਪੂ"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "ਕਾਂਗੋ"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "ਕੇਂਦਰੀ ਅਫ਼ਰੀਕੀ ਰਿਪਬਲਿਕ"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "ਸਵਿਟਜ਼ਰਲੈਂਡ"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "ਕੋਟੀ ਡੀਵੋਈਰੀ"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "ਕੁੱਕ ਟਾਪੂ"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "ਚਿੱਲੀ"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "ਕੈਮਰੂਨ"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "ਚੀਨ"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "ਕੋਲੰਬੀਆ"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "ਕਾਸਟ ਰੀਕਾ"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "ਕਿਊਬਾ"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "ਕੇਪ ਵਾਰਡੀ"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "ਕਰਿਸਮਿਸ ਟਾਪੂ"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "ਕਿਊਰੂਸ"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "ਚੈੱਕ ਗਣਰਾਜ"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "ਜਰਮਨੀ"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "ਡਜੀਬੂਟੀ"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "ਡੈਨਮਾਰਕ"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "ਡੋਮੀਨੀਆ"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "ਡੋਮੀਨੀਆਨ ਗਣਰਾਜ਼"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "ਅਲਜੀਰੀਆ"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "ਏਕਵੇਡਰ"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "ਈਸਟੋਨੀਆ"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "ਮਿਸਰ"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "ਦੱਖਣੀ ਸਹਾਰਾ"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "ਈਰਟੀਰਆ"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "ਸਪੇਨ"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "ਈਥੋਪੀਆ"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "ਫਿਨਲੈਂਡ"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "ਫਿਜ਼ੀ"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "ਫਾਕਲੈਂਡ ਟਾਪੂ (ਮਾਲਵੀਨਸ)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "ਮਾਈਕਰੋਨਸੀਆ ਦੇ ਸੰਘੀ ਰਾਜ"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "ਫਾਰੀਓ ਟਾਪੂ"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "ਫਰਾਂਸ"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "ਮੈਟਰੋਪਲੋਟਨ ਫਰਾਂਸ"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "ਗਾਬੋਨ"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "ਬਰਤਾਨੀਆ"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "ਗਰੀਨਾਡਾਆ"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "ਜਾਰਜੀਆ"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "ਫਰੈਂਚ ਗੁਆਨਾ"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "ਜਰਮਨੀ"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "ਗਾਨਾ"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "ਗੀਬਰਾਲਟਰ"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "ਗਰੀਨਲੈਂਡ"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "ਗਾਬੀਆ"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "ਗੁਈਨਾ"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "ਗੁਆਡੀਲੂਪੀ"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "ਭੂ-ਖੰਡੀ ਗੁਆਨਾ"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "ਗਰੀਸ"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "ਦੱਖਣੀ ਜਾਰਜੀਆ ਅਤੇ ਦੱਖਣੀ"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "ਗੁਆਟੇਮਾਲਾ"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "ਗੁਆਮ"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "ਗੂਈਨੀਆ"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "ਗੁਆਨਾ"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "ਹਾਂਗਕਾਂਗ"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "ਹਾਰਟਡ ਟਾਪੂ ਅਤੇ ਮੈਕਡਾਨਲਡ ਟਾਪੂ"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "ਹਾਨਡੂਰਸ"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "ਕਰੋਟੀਆ"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "ਹਾਈਟੀ"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "ਹੰਗਰੀ"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "ਇੰਡੋਨੇਸੀਆ"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "ਆਈਰਲੈਂਡ"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "ਇਜ਼ਰਾਈਲ"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "ਭਾਰਤ"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "ਬਰਤਾਨੀਵੀ ਭਾਰਤੀ ਮਹਾਂ-ਸਾਗਰ ਖੇਤਰ"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "ਇਰਾਕ"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "ਈਰਾਨ"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "ਆਈਸਲੈਂਡ"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "ਇਟਲੀ"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "ਜੈਮਾਈਕਾ"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "ਜਾਰਡਨ"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "ਜਾਪਾਨ"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "ਕੀਨੀਆ"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "ਕਿਰਗਸਤਾਨ"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "ਕੰਬੋਡੀਆ"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "ਕੀਰੀਬਾਟੀ"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "ਕੋਮੋਰੋਸ"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "ਸੇਂਟ ਕਿਟੱਸ ਅਤੇ ਨੀਵਿਸ"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "ਉੱਤਰੀ ਕੋਰੀਆ"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "ਦੱਖਣੀ ਕੋਰੀਆ"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "ਕੁਵੈਤ"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "ਕਾਯਮਾਨ ਟਾਪੂ"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "ਕਜ਼ਾਕਸਤਾਨ"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "ਲਿਓ ਲੋਕਤੰਤਰ"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "ਲੀਬਨਾਨ"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "ਸੇਂਟ ਲੂਸੀਆ"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "ਲੀਚਟੀਨੀਆ"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "ਸ਼ਰੀਲੰਕਾ"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "ਲੀਬਰੀਆ"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "ਲੀਸੋਥੋ"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "ਲੀਥੂਨੀਆ"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "ਲ਼ਕਸ਼ਬਰਗ"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "ਲਾਟੀਵਾਆ"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "ਲੀਬੀਆ"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "ਮੋਰੋਸ਼ਸ"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "ਮੋਨਸ਼ੀਆ"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "ਮੋਲਡੋਵਾ"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "ਮੋਨਗੋ"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "ਸੇਂਟ ਮਾਰੀਓ"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "ਮੈਡਾਗਾਸਕਰ"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "ਮਾਰਸ਼ਲ ਟਾਪੂ"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "ਮੈਕਡੋਨੀਆ"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "ਮਾਲੀ"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "ਮਿਆਂਮਾਰ"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "ਮੰਗੋਲੀਆ"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "ਮੈਕਸੀਕੋ"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "ਉੱਤਰੀ ਮਾਰੀਨਾ ਟਾਪੂ"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "ਮਾਰਟੀਨਿਉ"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "ਮਾਉਰੀਟਨੀਆ"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "ਮੋਨਟਸ਼ਟੀਟ"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "ਮਾਲਟਾ"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "ਮਾਉਰੀਟੀਸ"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "ਮਾਲਦੀਵ"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "ਮਾਲਾਵੀ"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "à¨\85ਫà¨\97ਾਨਿਸਤਾਨ"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "ਮà©\88à¨\95ਸà©\80à¨\95à©\8b"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "à¨\85ਫਰà©\80ਹà©\80ਲà©\80"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "ਮਲà©\87ਸ਼à©\80à¨\86"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "à¨\85ਫਰà©\80à¨\95à©\80"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "ਮà©\8bà¨\9cਾਬà¨\95ਿà¨\89"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "à¨\85ਫਰà©\8b-à¨\8fਸ਼à©\80à¨\86à¨\9fਿà¨\95 (ਹà©\8bਰ)"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "ਨਾਮà©\80ਬà©\80à¨\86"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "à¨\88ਨà©\82"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "ਨਿà¨\8a à¨\95ਾਲà©\80ਡà©\8bਨà©\80à¨\86"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "à¨\85à¨\95ਾਨ"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "ਨà©\80à¨\97ਰ"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "à¨\85ੱà¨\95ਾਡਿਨ"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "ਨà©\8bਰਫà©\8bà¨\95 à¨\9fਾਪà©\82"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "à¨\85ਲà©\88à¨\82ਡ à¨\9fਾਪà©\82"
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "ਨà¨\9cà©\80ਰà©\80à¨\86"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "à¨\85ਲਬà©\80ਨਾ"
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "ਨਿà¨\95ਾਰà¨\97à©\81à¨\86"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "à¨\85ਲਬà©\80à¨\85ਨ"
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "ਨà©\80à¨\82ਦਰਲà©\88à¨\82ਡ"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "à¨\85ਲਿà¨\89à¨\9f"
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "ਨਾਰਵà©\87"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "à¨\85ਲà¨\9cà©\80ਰà©\80à¨\86"
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "ਨà©\87ਪਾਲ"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "ਅਲਗੁਨਕਿਉਨ ਭਾਸ਼ਾਵਾਂ"
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "ਨੀਓਰੂ"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "à¨\85ਲà¨\9fਿà¨\95 (ਹà©\8bਰ)"
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "ਨਿà¨\89"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "à¨\85ਮਰà©\80à¨\95à©\80 à¨¸à¨®à©\8bਨਾ"
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "ਨਿà¨\8aà©\9bà©\80ਲà©\88à¨\82ਡ"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "ਅਮਹਾਰਿਕ"
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "ਓਮਾਨ"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "ਪੈਨਾਮਾ"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "ਪੇਰੂ"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "ਫਰੈਂਚ ਪੋਲੀਸੀਨੀਆ"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "ਪੋਪ ਨਿਉ ਗੁਆਨਾ"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "ਫਿਲਿਪੀਨੀਜ਼"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "ਪਾਕਿਸਤਾਨ"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "ਪੋਲੈਂਡ"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "ਸੇਂਟ ਪੀਇੱਰ ਅਤੇ ਮੀਕਿਉਨੋਲ"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "ਪਿਟਸਾਰਨ"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "ਪੁਈਰਟੋ ਰੀਸੋ"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "ਫਿਲਸਤੀਨ ਰਾਜ"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "ਪੁਰਤਗਾਲ"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "ਪਾਲਾਊ"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "ਪੇਰੂਗਵੇ"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "ਕਤਰ"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "ਰੀਯੁਨੀਅਨ"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "ਰੋਮਾਨੀਆ"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "ਸਰਬੀਅਨ"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "ਰੂਸੀ ਸੰਘ"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "ਰਵਾਂਡਾ"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "ਸਾਊਦੀ ਅਰਬ"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "ਸੋਲੋਮੋਨ ਟਾਪੂ"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "ਸੀਯਚੀਲੱਸ"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "ਸੂਡਾਨ"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "ਸਵੀਡਨ"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "ਸਿੰਘਾਪੁਰ"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "ਆਂਡੋਰਾ"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "ਸੇਂਟ ਹੀਲੀਆ"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "à¨\85à©°à¨\97à©\8bਲਾ"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "ਸਲà©\8bਵà©\80ਨà©\80à¨\86"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "à¨\85à©°à¨\97à©\82ਲà©\80à¨\86à¨\82"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "ਸਵਾਲਬਾਰਡ à¨\85ਤà©\87 à¨\9cਾਨ à¨®à¨¾à¨¯à¨¾à¨¨"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "à¨\90à¨\9fਰਾà¨\9fਿà¨\95ਾ"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "ਸਲà©\8bਵਾà¨\95à©\80à¨\86"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "à¨\90à¨\9fà©\80à¨\97à©\81à¨\86 à¨\85ਤà©\87 à¨¬à¨¾à¨°à¨®à©\81ਦਾ"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "ਲਿੱਰ à¨²à©\80à¨\93ਨ"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "à¨\86ਪà¨\9aà©\87à¨\82 à¨­à¨¾à¨¸à¨¼à¨¾à¨µà¨¾à¨\82"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "ਸà©\87à¨\82à¨\9f à¨®à¨¾à¨°à©\80à¨\93"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "à¨\85ਰਬà©\80"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "ਸà©\88ਨà©\87à¨\97ਾਲ"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "à¨\85ਰਾà¨\97à©\8bਨà©\80ਸà©\80"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "ਸà©\8bਮਾਲà©\80à¨\86"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "à¨\85ਰਾਮਿà¨\95"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "ਸà©\81ਰà©\80ਨà©\87ਮ"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "à¨\85ਰਾਪਿਹà©\8b"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "ਸਾà¨\93 à¨\9fà©\8bਮà©\80 à¨\85ਤà©\87 à¨ªà¨°à¨¿à¨¸à¨ªà©\80"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "à¨\85ਰਾà¨\89à¨\95ਾਨà©\80à¨\86"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "à¨\88ਲ à¨¸à¨¾à¨²à©\87ਵਡà©\8bਰ"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "à¨\85ਰਾਵਾà¨\95"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "ਸà©\80ਰà©\80à¨\86"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "à¨\85ਰà¨\9cਨà¨\9fà©\80ਨਾ"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "ਸਵਾà¨\9cà©\80ਲà©\88à¨\82ਡ"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "à¨\85ਮਰà©\80ਨà©\80à¨\85ਨ"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "ਤà©\81ਰà¨\95 à¨\85ਤà©\87 à¨¸à¨¾à¨\88ਸà©\8bਸ à¨\9fਾਪà©\82"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "à¨\85ਰਮà©\80ਨà©\80à¨\85ਨ"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "à¨\9aੱਡ"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "à¨\86ਰà¨\9fà©\80ਫਿਸ਼ਲ (ਹà©\8bਰ)"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "ਫਰà©\88à¨\82à¨\9a à¨¦à©±à¨\96ਣà©\80 à¨\96à©\87ਤਰ"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "à¨\85ਰà©\82ਬਾ"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "à¨\9fਾà¨\82à¨\97à©\8b"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "à¨\85ਸਾਮà©\80"
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "ਥਾà¨\88ਲà©\88à¨\82ਡ"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "à¨\86ਸà¨\9fਰà©\80à¨\86à¨\88"
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "ਤà©\9bਾà¨\95ਸਤਾਨ"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "ਅਥਾਪਾਸਕਾਨ ਭਾਸ਼ਾਵਾਂ"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "ਤੁਕੀਲਾਓ"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "à¨\85ਸà¨\9fਰà©\87ਲà©\80à¨\86"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "ਤà©\81ਰà¨\95ਮà©\87ਨਸਤਾਨ"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "à¨\86ਸà¨\9fਰà©\87ਲà©\80à¨\86à¨\88 à¨­à¨¾à¨¸à¨¼à¨¾à¨µà¨¾à¨\82"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "à¨\9fà©\81ਨà©\80ਸ਼à©\80à¨\86"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "à¨\86ਸà¨\9fਰà©\80à¨\86"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "ਤਾà¨\82à¨\97ਾ"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr ""
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "ਪੂਰਬੀ ਤੇਮੂਰ"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "'%s' ਲਈ ਪਰਮਾਣਿਕਤ ਲੋੜੀਦੀ ਹੈ"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "ਤੁਰਕੀ"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "à¨\85ਵਾਰਿà¨\95"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "à¨\9fਰà©\80ਨà©\80ਡ à¨\85ਤà©\87 à¨¤à©\8bਬਾà¨\97à©\8b"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "ਅਵੀਸਟੀਨ"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "ਤੁਵਾਲੂ"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "à¨\85ਵਾਥà©\80"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "ਤਾà¨\88ਵਾਨ"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "à¨\85ਰਮਾਰਾ"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "ਤਾà¨\82à¨\9cà©\80ਨà©\80à¨\86"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "à¨\85à¨\9c਼ਰਬਾà¨\88à¨\9c਼ਾਨ"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "ਯà©\82à¨\95ਰà©\87ਨ"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "à¨\85à©\9bਰਬਾà¨\88à¨\9cਾਨ"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "à¨\89à¨\9cਾà¨\82ਡਾ"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "ਸੰਯੁਕਤ ਰਾਜ ਮੀਨੋਰ ਆਉਟਲੇ ਟਾਪੂ"
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "ਸੰਯੁਕਤ ਰਾਜ"
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "ਬਾਹਾਮਾਸ"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "à¨\89ਰà©\82à¨\97ਵà©\87"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "ਬਹਿਰਾਨ"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "à¨\89à©\9bà©\87ਬà¨\95ਸਤਾਨ"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "ਬਾਲà©\80ਨਸà©\80"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "ਹà©\8bਲà©\80 à¨¸à©\80 (ਵਾà¨\9fà©\80à¨\95ਾਨ à¨¸à¨¿à¨\9fà©\80 à¨¸à¨\9fà©\87à¨\9f)"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "ਬਲà¨\9fਿà¨\95 (ਹà©\8bਰ)"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "ਸà©\87à¨\82à¨\9f à¨µà©\80ਨਸà©\88à¨\82à¨\9f à¨\85ਤà©\87 à¨\97ਰà©\80ਨਡà©\80ਨ"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "ਬਲà©\8bà¨\9aà©\80"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "ਵà©\88ਨà©\82à¨\9cà©\87à¨\8fਲਾ"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "ਬਾਮਬਾਰਾ"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "ਬਰਤਾਨਵà©\80à¨\82 à¨µà¨°à¨\9cà©\80ਨà©\80à¨\86 à¨\9fਾਪà©\82"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "ਬਾà¨\95ਿਮਲà©\80à¨\95à©\80 à¨­à¨¾à¨¸à¨¼à¨¾à¨µà¨¾à¨\82"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "ਵà©\80ਰà¨\9cà©\80ਨ à¨\9fਾਪà©\82, à¨\85ਮਰà©\80à¨\95ਾ"
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "ਬਾà¨\82ਡਾ"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "ਵà©\80à¨\85ਤਨਾਮ"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "ਬੰà¨\97ਲਾਦà©\87ਸ਼"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "ਵਾà¨\82à¨\89ਤà©\81"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "ਬਾà¨\82ਤà©\81 (ਹà©\8bਰ)"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "ਵਾਲਿਸ à¨\85ਤà©\87 à¨«à©\81à¨\9fà©\81ਨਾ"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "ਬਾਰਬਾਡਾਸ"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "ਸਾਮà©\80à¨\86"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "ਬਾਸਾ"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "ਯਮਨ"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "ਬਸ਼à¨\95à©\80ਰ"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "ਮਿਯà©\8bà¨\9fà©\80"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "ਬਸà¨\95ਿà¨\8a"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "ਦੱà¨\96ਣà©\80 à¨\85ਫਰà©\80à¨\95ਾ"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "ਬਾà¨\9fਾà¨\95 (à¨\87ੰਡà©\8bਨà©\87ਸà©\80à¨\86)"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "à¨\9cà©\88à¨\82ਬà©\80à¨\86"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "ਬà©\80à¨\9cਾ"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "à¨\9cਿੰਬਾਬਾਵà©\87"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "ਬੇਲਾਰੂਸ"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "ਅਣਜਾਣ ਭਾਸ਼ਾ: "
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "ਬà©\87ਲਾਰà©\82ਸà©\80"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "à¨\85ਫ਼ਰ"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "ਬà©\88ਲà¨\9cà©\80à¨\85ਮ"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "à¨\85ਬà¨\96ਾà¨\9c਼à©\80ਨਾ"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "ਬਿਲà©\80à¨\9c਼à©\80"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "à¨\85à¨\9aà©\80ਨà©\80à¨\9c਼"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "ਬà©\80ਮਬਾ"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "à¨\85à¨\95à©\8bਲà©\80"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "ਬੰà¨\97ਾਲੀ"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "à¨\85ਡਾਨà¨\97ਮੀ"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "ਬà©\80ਨà©\80ਨ"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "à¨\85ਡਯà¨\98à©\80"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "ਬà©\80ਰਬà©\80ਰ (ਹੋਰ)"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "à¨\85ਫਰà©\8b-à¨\8fਸ਼à©\80à¨\86à¨\9fਿà¨\95 (ਹੋਰ)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "ਬਾਰਾਮà©\82ਡਾ"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "à¨\85ਫਰà©\80ਹà©\80ਲà©\80"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "ਭà©\8bà¨\9cਪà©\81ਰੀ"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "à¨\85ਫਰà©\80à¨\95ੀ"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "ਭà©\81à¨\9fਾਨ"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "à¨\88ਨà©\82"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "ਬਿਹਾਰà©\80"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "à¨\85à¨\95ਾਨ"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "ਬਿà¨\95à©\8bਲ"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "à¨\85ੱà¨\95ਾਡਿਨ"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "ਬਿਨਿ"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "à¨\85ਲਬà©\80à¨\85ਨ"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "ਬਿਸਲਮਾ"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "à¨\85ਲਿà¨\89à¨\9f"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "ਬਲਿਨ"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "à¨\85ਲà¨\97à©\81ਨà¨\95ਿà¨\89ਨ à¨­à¨¾à¨¸à¨¼à¨¾à¨µà¨¾à¨\82"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "ਬà©\8bਲà©\8bਵà©\80à¨\86"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "ਦੱà¨\96ਣà©\80 à¨\85ਥà¨\9fਾà¨\88"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "ਬà©\8bਸà©\80ਨਾ à¨\85ਤà©\87 à¨¹à¨°à©\9bà©\80à¨\97à©\8bਵà©\80ਨਾ"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "à¨\85ਮਹਾਰਿà¨\95"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "ਬà©\8bਸਨà©\80à¨\86"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "à¨\85à©°à¨\97ਰà©\87à¨\9c਼à©\80, à¨ªà©\81ਰਾਣà©\80 (ca.450-1100)"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "ਬà©\82à¨\9fਸਵਾਨਾ"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "à¨\86ਪà¨\9aà©\87à¨\82 à¨­à¨¾à¨¸à¨¼à¨¾à¨µà¨¾à¨\82"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "ਬà©\81à¨\89ਵà©\80à¨\9f à¨\9fਾਪà©\82"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "à¨\85ਰਬà©\80"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "ਬਰਾà¨\9c"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "à¨\85ਰਾਮਿà¨\95"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "ਬਰਾà¨\9c਼à©\80ਲ"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "à¨\85ਰਾà¨\97à©\8bਨà©\80ਸà©\80"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "ਬਰà©\80ਤà©\8bਨ"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "à¨\85ਰਮà©\80ਨà©\80à¨\85ਨ"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "ਬਰਤਾਨà©\80ਵà©\80 à¨­à¨¾à¨°à¨¤à©\80 à¨®à¨¹à¨¾à¨\82-ਸਾà¨\97ਰ à¨\96à©\87ਤਰ"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "à¨\85ਰਾà¨\89à¨\95ਾਨà©\80à¨\86"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "ਬਰਤਾਨਵà©\80à¨\82 à¨µà¨°à¨\9cà©\80ਨà©\80à¨\86 à¨\9fਾਪà©\82"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "à¨\85ਰਾਪਿਹà©\8b"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "ਬਰà©\82ਨà¨\88 à¨¡à©\87ਰà©\82ਸਲਾਮ"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "à¨\86ਰà¨\9fà©\80ਫਿਸ਼ਲ (ਹà©\8bਰ)"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "ਬà©\81à¨\97à©\80ਨà©\80à¨\86"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "à¨\85ਰਾਵਾà¨\95"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "ਰਿਪà©\8bà¨\9c਼à¨\9fਰà©\80 '%s' à¨\95à©\88à¨\9aà©\87 à¨¬à¨¿à¨²à¨¡ à¨\95à©\80ਤà©\80 à¨\9cਾ à¨°à¨¹à©\80 à¨¹à©\88"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "à¨\85ਸਾਮà©\80"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "ਬà©\81ਲà¨\97ਾਰà©\80à¨\86"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "à¨\86ਸà¨\9fਰà©\80à¨\86à¨\88"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "ਬà©\81ਲà¨\97ਾਰà©\80à¨\85ਨ"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "à¨\85ਥਾਪਾਸà¨\95ਾਨ à¨­à¨¾à¨¸à¨¼à¨¾à¨µà¨¾à¨\82"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "ਬà©\88ਰà©\81ਤ"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "à¨\86ਸà¨\9fਰà©\87ਲà©\80à¨\86à¨\88 à¨­à¨¾à¨¸à¨¼à¨¾à¨µà¨¾à¨\82"
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "ਬà©\82ਪà¨\95à©\80ਨਾ à¨«à¨¾à¨¸à©\8b"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "à¨\85ਵਾਰਿà¨\95"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "ਬà©\81ਰਮà©\80ਸà©\80"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "à¨\85ਵà©\80ਸà¨\9fà©\80ਨ"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "ਬà©\81ਰà©\81ਡੀ"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "à¨\85ਵਾਥੀ"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "à¨\95ੱਡà©\8b"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "à¨\85ਰਮਾਰਾ"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "à¨\95ੰਬà©\8bਡà©\80à¨\86"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "à¨\85à©\9bਰਬਾà¨\88à¨\9cਾਨ"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "à¨\95à©\88ਮਰà©\82ਨ"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "ਬਾà¨\82ਡਾ"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "ਫਾà¨\87ਲ à¨¨à¨¹à©\80à¨\82 à¨¬à¨£à¨¾à¨\88 à¨\9cਾ à¨¸à¨\95ਦà©\80 à¨¹à©\88।"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "ਬਾà¨\95ਿਮਲà©\80à¨\95à©\80 à¨­à¨¾à¨¸à¨¼à¨¾à¨µà¨¾à¨\82"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "mutex ਲਾਕ ਲਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "ਬਸ਼ਕੀਰ"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr ""
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "ਬਲੋਚੀ"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "ਬਾਮਬਾਰਾ"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "ਬਾਲੀਨਸੀ"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "%s ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ: %m\n"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "ਬਸਕਿਊ"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "ਬਾਸਾ"
 
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "%1 ਡਾਇਰੈਕਟਰੀ ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ ਹੈ: %2"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "ਬਲਟਿਕ (ਹੋਰ)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "ਬੀਜਾ"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "ਡੈਸਕਟਾਪ ਆਈਟਮ '%s' ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕਦੀ ਹੈ"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "ਬੇਲਾਰੂਸੀ"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "ਬੀਮਬਾ"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "ਬੰਗਾਲੀ"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "ਬੀਰਬੀਰ (ਹੋਰ)"
 
-#: zypp/ExternalProgram.cc:381
-#, fuzzy, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "%s ਨਹੀਂ ਲੱਭਿਆ।"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "ਭੋਜਪੁਰੀ"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr ""
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "ਬਿਹਾਰੀ"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr ""
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "ਬਿਕੋਲ"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "ਲਿਖਣ ਲਈ ਫਾਇਲ ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕਦੀ ਹੈ।"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "ਬਿਨਿ"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "ਫਾà¨\87ਲ %1 à¨\96à©\8bਲà©\8dਹà©\80 à¨¨à¨¹à©\80à¨\82 à¨\9cਾ à¨¸à¨\95ਦà©\80 à¨¹à©\88।"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "ਬਿਸਲਮਾ"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "ਫਾà¨\87ਲ %1 à¨\96à©\8bਲà©\8dਹà©\80 à¨¨à¨¹à©\80à¨\82 à¨\9cਾ à¨¸à¨\95ਦà©\80 à¨¹à©\88।"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "ਸਿà¨\95ਸਿà¨\95ਾ"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "ਫਾà¨\87ਲ à¨\96à©\8bਲà©\8dਹà©\80 à¨¨à¨¹à©\80à¨\82 à¨\9cਾ à¨¸à¨\95à©\80: %s."
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "ਬਾà¨\82ਤà©\81 (ਹà©\8bਰ)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, fuzzy, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "ਰਿਪà©\8bà¨\9c਼à¨\9fਰà©\80 à¨¤à©\8bà¨\82 à¨ªà¨°à©\8bਫਾà¨\87ਲ à¨²à©\88ਣ à¨¦à©\8cਰਾਨ à¨\97ਲਤà©\80"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "ਬà©\8bਸਨà©\80à¨\86"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "mutex ਲਾਕ ਰੀਲਿਜ਼ ਨਹੀਂ ਜਾ ਸਕਦਾ"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "ਬਰਾਜ"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr ""
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "ਬਰੀਤੋਨ"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "à¨\95à©\87ਨà©\88ਡਾ"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "ਬਾà¨\9fਾà¨\95 (à¨\87ੰਡà©\8bਨà©\87ਸà©\80à¨\86)"
 
-#: zypp/media/MediaException.cc:182
-#, fuzzy
-msgid "Cannot eject any media"
-msgstr "à¨\95à©\8bà¨\88 à¨¸à¨\95à©\80ਮ à¨¨à¨¹à©\80à¨\82 à¨²à©±à¨­à©\80 à¨¹à©\88।"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "ਬà©\88ਰà©\81ਤ"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "ਡà©\88ਸà¨\95à¨\9fਾਪ à¨\86à¨\88à¨\9fਮ '%s' à¨\96à©\8bਲà©\8dਹà©\80 à¨¨à¨¹à©\80à¨\82 à¨\9cਾ à¨¸à¨\95ਦà©\80 à¨¹à©\88"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "ਬà©\81à¨\97à©\80ਨà©\80à¨\86"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "ਬੁਲਗਾਰੀਅਨ"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "ਬੁਰਮੀਸੀ"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "ਬਲਿਨ"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "ਫਾà¨\87ਲ %1 à¨²à¨¿à¨\96à©\80 à¨¨à¨¹à©\80à¨\82 à¨\9cਾ à¨¸à¨\95ਦà©\80 à¨¹à©\88।"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "à¨\95ੱਡà©\8b"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "à¨\95à©\87ਪ à¨µà¨¾à¨°à¨¡à©\80"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "à¨\95à©\87à¨\82ਦਰà©\80 à¨\85ਮਰà©\80à¨\95à©\80 à¨\87ੰਡà©\80à¨\85ਨ (ਹà©\8bਰ)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -840,11 +2234,6 @@ msgstr "ਕਾਟਾਲੋਨ"
 msgid "Caucasian (Other)"
 msgstr "ਕੂਕੇਸ਼ੀਆਈ (ਹੋਰ)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "ਕਾਯਮਾਨ ਟਾਪੂ"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -855,167 +2244,80 @@ msgstr "ਸੀਬੁਆਂਨੋ"
 msgid "Celtic (Other)"
 msgstr "ਸੀਲਟਿਕ (ਹੋਰ)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "ਕੇਂਦਰੀ ਅਫ਼ਰੀਕੀ ਰਿਪਬਲਿਕ"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "ਕੇਂਦਰੀ ਅਮਰੀਕੀ ਇੰਡੀਅਨ (ਹੋਰ)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "ਚੱਡ"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "ਚਾਗਾਤਾਈ"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "ਚਾਮਿਕ ਭਾਸ਼ਾਵਾਂ"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "ਚਾਮੋਰੋ"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "%s ਲਈ ਸੰਰਚਨਾ ਫਾਇਲਾਂ ਬਦਲੀਆਂ:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "ਚੇਚਨ"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "ਚੀਰੋਕੀ"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "ਚੀਯੀਨੀ"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "ਚੀਬਚਾ"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "ਚਿਚੀਵਾ"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "ਚਿੱਲੀ"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "ਚੇਚਨ"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "à¨\9aà©\80ਨ"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "à¨\9aਾà¨\97ਾਤਾà¨\88"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "ਚੀਨੀ"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "ਚੂਉਕੀਸੀ"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "ਮਾਰੀ"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "ਚੀਨੂਕ ਜਾਰਗਾਨ"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "ਚਿਪੀਵਯਾਨ"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "ਚਾਕਤਾਵ"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "ਕਰਿਸਮਿਸ ਟਾਪੂ"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "ਚਿਪੀਵਯਾਨ"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "ਚੀਰੋਕੀ"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "ਚਰਚ ਸਲਾਵਿਕ"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "ਚੂਉਕੀਸੀ"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "ਚੁਵਸ"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "ਕਲਾਸੀਕਲ ਨੀਵਾਰੀ"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "ਕੋਕੋਸ (ਕਿੱਲਿੰਗ) ਟਾਪੂ"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "ਕੋਲੰਬੀਆ"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "ਕੁਨੈਕਟ ਕਰਨ ਦੌਰਾਨ ਚੱਲਦੀ ਕਮਾਂਡ"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "ਕੋਮੋਰੋਸ"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "ਅਪਵਾਦ"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "ਕਾਂਗੋ"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "ਚੀਯੀਨੀ"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "à¨\95à©\81ੱà¨\95 à¨\9fਾਪà©\82"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "à¨\9aਾਮਿà¨\95 à¨­à¨¾à¨¸à¨¼à¨¾à¨µà¨¾à¨\82"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1032,31 +2334,6 @@ msgstr "ਕੋਰਨਿਸ਼"
 msgid "Corsican"
 msgstr "ਕੋਰਸਕੇਨ"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "ਕਾਸਟ ਰੀਕਾ"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "ਕੋਟੀ ਡੀਵੋਈਰੀ"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "ਕਰੀ"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "ਕਰੀਕ"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr ""
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1072,46 +2349,36 @@ msgstr ""
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "ਕਰੀ"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "ਕਰੀਮਿਕ ਤਰਾਰ"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "ਕਰੋਟੀਆ"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "ਕਰੋਆਟੀਅਨ"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "à¨\95ਿà¨\8aਬਾ"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "à¨\95ਾਸ਼à©\81ਬਿਨ"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "ਕਿਊਰੂਸ"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "ਚੈੱਕ"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "ਚੈੱਕ ਗਣਰਾਜ"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1137,10 +2404,15 @@ msgstr "ਡਾਯਾਕ"
 msgid "Delaware"
 msgstr "ਡੀਲਵਾਰੀ"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "ਡੈਨਮਾਰਕ"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "ਸਲਾਵੀ (ਅਥਾਪਾਕਸਕੈਨ)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "ਡਾਗਰਿਬ"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1152,71 +2424,36 @@ msgstr "ਡੀਨਕਾ"
 msgid "Divehi"
 msgstr "ਡੀਵਿਹਾ"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "ਡਜੀਬੂਟੀ"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "ਡੋਗਰੀ"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "ਡਾਗਰਿਬ"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "ਡੋਮੀਨੀਆ"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "ਡੋਮੀਨੀਆਨ ਗਣਰਾਜ਼"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "ਦਰਾਵੜੀਅਨ (ਹੋਰ)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "ਲੋਅਰ ਸੋਰਬੀਆਈ"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "ਡੁਆਲਾ"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "ਡੱਚ, ਮਿਡਲ (ca 1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "ਡੱਚ"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "ਡੱਚ, ਮਿਡਲ (ca 1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1227,62 +2464,25 @@ msgstr "ਡਯੂਲਾ"
 msgid "Dzongkha"
 msgstr "ਡਜ਼ੋਨਗਖਾ"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "ਪੂਰਬੀ ਤੇਮੂਰ"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "ਏਕਵੇਡਰ"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "ਈਫਿਕ"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "ਮਿਸਰ"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "ਮਿਸਰ (ਪੁਰਾਤਨ)"
-
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "ਈਕਾਜੁਕ"
-
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "ਈਲ ਸਾਲੇਵਡੋਰ"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "ਅਲਾਮਿਟੀ"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-#, fuzzy
-msgid "Empty host name in URI"
-msgstr "ਖਾਲੀ CA ਨਾਂ ਹੈ।"
+msgid "Egyptian (Ancient)"
+msgstr "ਮਿਸਰ (ਪੁਰਾਤਨ)"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr ""
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "ਈਕਾਜੁਕ"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "ਅਲਾਮਿਟੀ"
 
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
@@ -1294,74 +2494,16 @@ msgstr "ਅੰਗਰੇਜ਼ੀ"
 msgid "English, Middle (1100-1500)"
 msgstr "ਅੰਗਰੇਜ਼ੀ, ਮਿਡਲ (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "ਅੰਗਰੇਜ਼ੀ, ਪੁਰਾਣੀ (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "ਇੰਹੈਂਸ"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "ਭੂ-ਖੰਡੀ ਗੁਆਨਾ"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "ਈਰਟੀਰਆ"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-#, fuzzy
-msgid "Error sending update message notification."
-msgstr "ਕੁੰਜੀ ਇੰਕ੍ਰਿਪਸ਼ਨ ਦੌਰਾਨ ਗਲਤੀ ਹੈ।"
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, fuzzy, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਤੋਂ ਮੇਟਾ-ਡਾਟਾ ਪਾਰਸਿੰਗ ਦੌਰਾਨ ਗਲਤੀ:"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "ਈਰਜ਼ਯਾ"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "ਇਸਪੀਰੋਟੋ"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "ਈਸਟੋਨੀਆ"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "ਈਸਟੋਨੀਅਨ"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "ਈਥੋਪੀਆ"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1372,209 +2514,31 @@ msgstr "ਈਵੀ"
 msgid "Ewondo"
 msgstr "ਈਵੋਨਡੋ"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ ਫੇਲ੍ਹ: %s।"
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "VM ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ।"
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ ਫੇਲ੍ਹ: %s।"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, fuzzy, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "ਪੈਕੇਜ %s ਐਂਟੀਗਰੇਟੀ ਚੈਕ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ। ਕੀ ਤੁਸੀਂ ਮੁੜ-ਕੋਸ਼ਿਸ਼ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ ਫੇਲ੍ਹ: %s।"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, fuzzy, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "ਪਬਲਿਕ ਕੁੰਜੀ ਲੈਣ ਲਈ ਅਸਮਰੱਥ ਹੈ।"
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "ਮੋਡੀਊਲ \"%s\" ਲੋਡ ਕਰਨ ਲਈ ਫੇਲ ਹੈ।"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "ਫਾਕਲੈਂਡ ਟਾਪੂ (ਮਾਲਵੀਨਸ)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "ਫੌਂਗ"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "ਫਾਂਟੀ"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "ਫਾਰੀਓ ਟਾਪੂ"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "ਫਾਰੋਸੀ"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "ਮਾਈਕਰੋਨਸੀਆ ਦੇ ਸੰਘੀ ਰਾਜ"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "ਫਿਜ਼ੀ"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "ਫਾਂਟੀ"
 
 #. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "ਫਿਜ਼ੀ"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "ਫਾਇਲ %1 ਰਿਪੋਜ਼ਟਰੀ ਵਿੱਚ ਮੌਜੂਦ ਨਹੀਂ ਹੈ।"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "ਫਿਜ਼ੀ"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "ਫਿਲਿਪਿਨੋ"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "ਫਿਨਲੈਂਡ"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1585,41 +2549,16 @@ msgstr "ਫੈਨਿਸ਼"
 msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-#, fuzzy
-msgid "Following actions will be done:"
-msgstr "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਅੱਪਡੇਟ ਕੀਤੇ ਜਾਣਗੇ:\n"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "ਫੋਨ"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "ਫਰਾਂਸ"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "ਫਰੈਂਚ"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "ਫਰੈਂਚ ਗੁਆਨਾ"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "ਫਰੈਂਚ ਪੋਲੀਸੀਨੀਆ"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "ਫਰੈਂਚ ਦੱਖਣੀ ਖੇਤਰ"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1635,46 +2574,21 @@ msgstr "ਫਰੈਂਚ, ਪੁਰਾਣੀ (842 ca 1400)"
 msgid "Frisian"
 msgstr "ਫਾਰਸੀ"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "ਫਰੀਉਲੀਅਨ"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "ਫੂਲਾਹ"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "ਫਰੀਉਲੀਅਨ"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "ਗਾ"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "ਗਾਬੋਨ"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "ਗਾਇਲਿਕ"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "ਗਲੀਸਿਕ"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "ਗਾਬੀਆ"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "ਗਾਂਡਾ"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1685,15 +2599,10 @@ msgstr "ਗਾਯੋ"
 msgid "Gbaya"
 msgstr "ਗਬਾਯਾ"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "ਗਾਜ਼ਾ"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "ਜਾਰਜੀਆ"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "ਗਿਰਮਿਕ (ਹੋਰ)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1705,6 +2614,36 @@ msgstr "ਜਾਰਜੀਅਨ"
 msgid "German"
 msgstr "ਜਰਮਨ"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "ਗਾਜ਼ਾ"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "ਗਿਲਬਰਿਟਸੀ"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "ਗਾਇਲਿਕ"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "ਆਈਰਸ਼"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "ਗਲੀਸਿਕ"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "ਮੈਂਨਸ"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1715,30 +2654,6 @@ msgstr "ਜਰਮਨ, ਮਿਡਲ ਉੱਚ (ca. 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "ਜਰਮਨ, ਪੁਰਾਣਾ ਉੱਚ (ca. 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "ਗਿਰਮਿਕ (ਹੋਰ)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "ਜਰਮਨੀ"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "ਗਾਨਾ"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "ਗੀਬਰਾਲਟਰ"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "ਗਿਲਬਰਿਟਸੀ"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1759,11 +2674,6 @@ msgstr "ਗੋਥਿਕ"
 msgid "Grebo"
 msgstr "ਗਰੀਬੋ"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "ਗਰੀਸ"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1774,62 +2684,16 @@ msgstr "ਗਰੀਕ, ਪੁਰਾਤਨ (1453 ਤੱਕ)"
 msgid "Greek, Modern (1453-)"
 msgstr "ਗਰੀਕ, ਮਾਡਰਨ (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "ਗਰੀਨਲੈਂਡ"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "ਗਰੀਨਾਡਾਆ"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "ਗੁਆਡੀਲੂਪੀ"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "ਗੁਆਮ"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "ਗੁਜਰਨੀ"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "ਗੁਆਟੇਮਾਲਾ"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "ਜਰਮਨੀ"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "ਗੁਈਨਾ"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "ਗੂਈਨੀਆ"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "ਗੁਜਰਾਤੀ"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "ਗੁਆਨਾ"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1840,52 +2704,21 @@ msgstr "ਗਵਿਚਨਿ"
 msgid "Haida"
 msgstr "ਹਾਈਡਾ"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "ਹਾਈਟੀ"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "ਹਾਈਤਿਨ"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal ਅਪਵਾਦ"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext ਕੁਨੈਕਟਡ ਨਹੀਂ"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive ਸ਼ੁਰੂ ਨਹੀਂ ਹੈ"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume ਸ਼ੁਰੂ ਨਹੀਂ ਕੀਤਾ"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "ਹਾਉਸਾ"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "ਹਾਵਾਈਨ"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "ਹਾਰਟਡ ਟਾਪੂ ਅਤੇ ਮੈਕਡਾਨਲਡ ਟਾਪੂ"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1911,16 +2744,6 @@ msgstr "ਹਿਮਾਚਲੀ"
 msgid "Hindi"
 msgstr "ਹਿੰਦੀ"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "ਹੀਰੀ ਮੋਟੋ"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "ਅਤੀਤ:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1931,30 +2754,20 @@ msgstr "ਹਿੱਟੀਟੀ"
 msgid "Hmong"
 msgstr "ਹਮਾਂਗ"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "ਹੋਲੀ ਸੀ (ਵਾਟੀਕਾਨ ਸਿਟੀ ਸਟੇਟ)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "ਹਾਨਡੂਰਸ"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "ਹੀਰੀ ਮੋਟੋ"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "ਹਾà¨\82à¨\97à¨\95ਾà¨\82à¨\97"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "à¨\85ੱਪਰ à¨¸à©\8bਰਬà©\80à¨\86à¨\88"
 
 #. language code: hun hu
-#: zypp/LanguageCode.cc:537
-msgid "Hungarian"
-msgstr "ਹੰਗਰੀਅਨ"
-
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "ਹੰਗਰੀ"
+#: zypp/LanguageCode.cc:537
+msgid "Hungarian"
+msgstr "ਹੰਗਰੀਅਨ"
 
 #. language code: hup
 #: zypp/LanguageCode.cc:539
@@ -1966,10 +2779,10 @@ msgstr "ਉਪਾ"
 msgid "Iban"
 msgstr "ਲਬਾਨ"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "à¨\86à¨\88ਸਲà©\88à¨\82ਡ"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "ਲà¨\97ਬà©\8b"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1981,250 +2794,105 @@ msgstr "ਆਈਸਲੈਂਡਿਕ"
 msgid "Ido"
 msgstr "ਈਡੋ"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "ਲà¨\97ਬà©\8b"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "ਸਿà¨\9aà©\81ਨ à¨¯à©\80"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "ਈਜੋ"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "ਇਨਕਟੁਟ"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "ਇੰਟਰਲੈਗੁਆ"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "ਲੱਕੋ"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "ਇਨਰੀ ਸਾਮੀ"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "ਭਾਰਤ"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "ਭਾਰਤੀ (ਹੋਰ)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "ਇੰਡੋ-ਯੂਰਪੀਆਈ (ਹੋਰ)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "ਇੰਡੋਨੇਸੀਆ"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "ਇੰਡੋਨੇਸ਼ੀਅਨ"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "ਇੰਡੋ-ਯੂਰਪੀਆਈ (ਹੋਰ)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "ਈਂਗੁਸ਼"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "ਇੰਸਟਾਲੇਸ਼ਨ ਹਦਾਇਤਾਂ ਮੁਤਾਬਕ ਅਧੂਰੀ ਛੱਡੀ ਗਈ ਹੈ।"
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "ਇੰਟਰਲੈਗੁਆ"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "ਇਨਕਟੁਟ"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "ਇਨੁਪਿਓ"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "ਗਲਤ %s ਭਾਗ"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "ਗਲਤ %s ਭਾਗ '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "ਗਲਤ LDAP URL ਕਿਊਰੀ ਸਤਰ"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "ਗਲਤ Url ਸਕੀਮ '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "ਗਲਤ ਖਾਲੀ Url ਆਬਜੈਕਟ ਰੈਫਰੈਂਸ"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "ਗਲਤ ਹੋਸਟ ਭਾਗ '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "ਗਲਤ ਪੋਰਟ ਭਾਗ '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "ਗਲਤ Url ਸਕੀਮ '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "ਗਲਤ ਐਕਸਪੋਰਟ ਫਾਇਲ ਨਾਂ ਹੈ।"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "ਈਰਾਨ"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "ਆਈਰਸ਼ (ਹੋਰ)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "ਇਰਾਕ"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "ਆਈਰਲੈਂਡ"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "ਆਈਰਸ਼"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "ਆਈਰਸ਼, ਮਿਡਲ (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "ਆਈਰਸ਼, ਪੁਰਾਣੀ (900 ਤੋਂ)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "ਈਰੋਕਿਉਆਈ ਭਾਸ਼ਾਵਾਂ"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "ਇਜ਼ਰਾਈਲ"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "ਇਤਾਲਵੀ"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "ਇਟਲੀ"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "ਜੈਮਾਈਕਾ"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "ਜਾਵੀ"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "à¨\9cਾਪਾਨ"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "ਲà©\8bà¨\9cਬà©\80ਨ"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "ਜਾਪਾਨੀ"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "ਜਾਵੀ"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "ਜਾਰਡਨ"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "ਜੂਡੀਓ-ਪਾਰਸ਼ੀਆਈ"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "ਜੂਡੀਓ-ਅਰਬੀ"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "ਜੂਡੀਓ-ਪਾਰਸ਼ੀਆਈ"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "ਕਾਬਾਰਡੀਆਈ"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "ਕਾਰਾ-ਕਾਲਪਾਕ"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2241,11 +2909,6 @@ msgstr "ਕੋਚੀਨ"
 msgid "Kalaallisut"
 msgstr "ਕਾਲਾਲਸੁਟ"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "ਕਾਲਮਯਕ"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2253,23 +2916,8 @@ msgstr "ਕੰਮਬਾ"
 
 #. language code: kan kn
 #: zypp/LanguageCode.cc:599
-msgid "Kannada"
-msgstr "ਕੰਨੜ"
-
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "ਕਾਨਉਰੀ"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "ਕਾਰਾ-ਕਾਲਪਾਕ"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "ਕਾਰਾਚਾਯ-ਬਾਲਕਾਰ"
+msgid "Kannada"
+msgstr "ਕੰਨੜ"
 
 #. language code: kar
 #: zypp/LanguageCode.cc:601
@@ -2281,10 +2929,10 @@ msgstr "ਕੀਰਿਨ"
 msgid "Kashmiri"
 msgstr "ਕਸ਼ਮੀਰੀ"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "à¨\95ਾਸ਼à©\81ਬਿਨ"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "à¨\95ਾਨà¨\89ਰà©\80"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2296,31 +2944,26 @@ msgstr "ਕਵੀ"
 msgid "Kazakh"
 msgstr "ਕਾਜ਼ਾਖ"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "ਕਜ਼ਾਕਸਤਾਨ"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "ਕੀਨੀਆ"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "ਕਾਬਾਰਡੀਆਈ"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "ਖਾਸੀ"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "ਖਮੀਰ"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "ਖੋਈਸਾਨ (ਹੋਰ)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "ਖਮੀਰ"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2331,11 +2974,6 @@ msgstr "ਖੋਤਾਨੀਸੀ"
 msgid "Kikuyu"
 msgstr "ਕਿਕੁਯੂ"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "ਕਿਮਬੁਡੂ"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2346,15 +2984,15 @@ msgstr "ਕੀਯਾਰਵਾਂਡਾ"
 msgid "Kirghiz"
 msgstr "ਕਿਰਘੀਜ਼"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "à¨\95à©\80ਰà©\80ਬਾà¨\9fà©\80"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "à¨\95ਿਮਬà©\81ਡà©\82"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "à¨\95ਲਿੰà¨\97à©\8bਨ"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "à¨\95à©\8bà¨\95ਨà©\80"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2366,11 +3004,6 @@ msgstr "ਕੋਮੀ"
 msgid "Kongo"
 msgstr "ਕਾਂਗੋ"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "ਕੋਕਨੀ"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2386,11 +3019,21 @@ msgstr "ਕੋਸਰੀਨ"
 msgid "Kpelle"
 msgstr "ਕਪੀੱਲੀ"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "ਕਾਰਾਚਾਯ-ਬਾਲਕਾਰ"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "ਕਰੁ"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "ਕੁਰੂਖ"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2406,26 +3049,11 @@ msgstr "ਕੁਮਯਕ"
 msgid "Kurdish"
 msgstr "ਕੁਰਦ"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "ਕੁਰੂਖ"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "ਕੁਟੀਨੀ"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "ਕੁਵੈਤ"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "ਕਿਰਗਸਤਾਨ"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2446,68 +3074,21 @@ msgstr "ਲਾਬਾਂ"
 msgid "Lao"
 msgstr "ਲਿਓ"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "ਲਿਓ ਲੋਕਤੰਤਰ"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "ਲੈਟਿਨ"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "ਲਾਟੀਵਾਆ"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "ਲਾਵਟੀਅਨ"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "ਲੀਬਨਾਨ"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "ਲੀਸੋਥੋ"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "ਲਿਜ਼ਘੀਨ"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "ਲੀਬਰੀਆ"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "ਲੀਬੀਆ"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "ਲੀਚਟੀਨੀਆ"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2518,61 +3099,46 @@ msgstr "ਲਿਮਬੁਰਗਾਨ"
 msgid "Lingala"
 msgstr "ਲਿੰਗਾਲਾ"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "ਲੀਥੂਨੀਆ"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "ਲੀਥੂਨੀਅਨ"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "ਲੋਜਬੀਨ"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "ਲੋ ਜਰਮਨ"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "ਲੋਅਰ ਸੋਰਬੀਆਈ"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "ਮੋਨਗੋ"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "ਲੁਜ਼ੀ"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "ਲà©\81ਬਾ-à¨\95ਾਤਾà¨\82à¨\97ਾ"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "ਲ਼à¨\95ਸ਼ਬਰà¨\97ਿਸ਼"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "ਲੁਬਾ-ਲੁਲੁਆ"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "ਲੁਬਾ-ਕਾਤਾਂਗਾ"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "ਗਾਂਡਾ"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "ਲੁਈਸੀਨੋ"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "ਲੁਈ ਸਾਮੀ"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2588,227 +3154,90 @@ msgstr ""
 msgid "Lushai"
 msgstr "ਲੁਸ਼ਾਈ"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "ਲ਼ਕਸ਼ਬਰਗ"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "ਲ਼ਕਸ਼ਬਰਗਿਸ਼"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "ਮੈਕਸੀਕੋ"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "ਮੈਕਡੋਨੀਆ"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "ਮੈਕਡੋਨੀਅਨ"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "ਮੈਡਾਗਾਸਕਰ"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
-msgstr "ਮਾਡੁਰੀਸੀ"
-
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
-msgstr "ਮਾਗਾਹੀ"
-
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
-msgstr "ਮੈਥਲੀ"
-
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr "ਮਾਕਾਸਾਰ"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "ਮਾਲਾਗਸੇ"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "ਮਾਲਾਵੀ"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "ਮਲਾਇਆ"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "ਮਲਿਆਲਮ"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "ਮਲੇਸ਼ੀਆ"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "ਮਾਲਦੀਵ"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
+msgstr "ਮਾਡੁਰੀਸੀ"
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "ਮਾਲੀ"
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
+msgstr "ਮਾà¨\97ਾਹੀ"
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "ਮਾਲà¨\9fਾ"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "ਮਾਰਸੱਲà©\80ਸà©\80"
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "ਮਾਲà¨\9fਾ"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
+msgstr "ਮà©\88ਥਲà©\80"
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "ਮਾà¨\82à¨\9aà©\81"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
+msgstr "ਮਾà¨\95ਾਸਾਰ"
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "ਮਾà¨\82ਡਾਰ"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "ਮਲਿà¨\86ਲਮ"
 
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "ਮਾਂਡੀਂਗੋ"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "ਮਨੀਪੁਰੀ"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "ਮਾਂਨੋਬੋ ਭਾਸ਼ਾਵਾਂ"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "ਮੈਂਨਸ"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "ਮੋਰੀ"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "ਮਰਾਠੀ"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "ਮਾਰੀ"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "ਮਾਰਸ਼ਲ ਟਾਪੂ"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "ਮਾਰਸੱਲੀਸੀ"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "ਮਾਰਟੀਨਿਉ"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "ਮਾਰਵਾਰੀ"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "ਮਾਸਾਈ"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "ਮਾਉਰੀਟਨੀਆ"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "ਮਾਉਰੀਟੀਸ"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "ਮਾਯਾਨ ਭਾਸ਼ਾਵਾਂ"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "ਮਿਯੋਟੀ"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "ਮਲਾਇਆ"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "ਮੋਕਸਾ"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "ਮਾਂਡਾਰ"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "ਮੀਂਡੀ"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "ਮੈਟਰੋਪਲੋਟਨ ਫਰਾਂਸ"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "ਮੈਕਸੀਕੋ"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "ਆਈਰਸ਼, ਮਿਡਲ (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2820,87 +3249,61 @@ msgstr "ਮਿਕਮਾਕਿਉ"
 msgid "Minangkabau"
 msgstr "ਮਿਨਾਂਗਕਾਬਾਉ"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "ਮੀਰਾਂਡੀਸੀ"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "ਫੁਟਕਲ ਭਾਸ਼ਾਵਾਂ"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "ਮੋਨ-ਖਮੀਰ (ਹੋਰ)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "ਮਾਲਾਗਸੇ"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "ਮਾਲਟਾ"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "ਮਾਂਚੁ"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "ਮਨੀਪੁਰੀ"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "ਮਾਂਨੋਬੋ ਭਾਸ਼ਾਵਾਂ"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "ਮੋਹਾਵਕ"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "ਮੋਕਸਾ"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "ਮੋਲਡੋਵਾ"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "ਮੋਲਡੋਵਾ"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "ਮੋਨ-ਖਮੀਰ (ਹੋਰ)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "ਮੋਨਸ਼ੀਆ"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "ਮੋਨਗੋ"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "ਮੰਗੋਲੀਆ"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "ਮੰਗੋਲੀਅਨ"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "ਮੋਨਗੋ"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "ਮੋਨਟਸ਼ਟੀਟ"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "ਮੋਰੋਸ਼ਸ"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "ਮੱਸੀ"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "ਮੋਜਾਬਕਿਉ"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2911,210 +3314,141 @@ msgstr "ਕੋਈ ਭਾਸ਼ਾਵਾਂ"
 msgid "Munda languages"
 msgstr "ਮਾਂਨਡਾ ਭਾਸ਼ਾਵਾਂ"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "ਮਿਆਂਮਾਰ"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "ਕਰੀਕ"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "ਮੀਰਾਂਡੀਸੀ"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "ਮਾਰਵਾਰੀ"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "ਮਾਯਾਨ ਭਾਸ਼ਾਵਾਂ"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "ਈਰਜ਼ਯਾ"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "ਨਾਹੁਆਟਲ"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "ਨਾਮà©\80ਬà©\80à¨\86"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "à¨\89ੱਤਰà©\80 à¨\85ਮਰà©\80à¨\95à©\80 à¨\87ੰਡà©\80à¨\85ਨ"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "ਨੀਓਰੂ"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "ਨੀਪੋਲੀਤਾਨ"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "ਨਾਵਾਜੋ"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "ਨਡੀਬੀਲੀ, ਉੱਤਰੀ"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "ਨਡੀਬੀਲੀ, ਦੱਖਣੀ"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "ਨਡੀਬੀਲੀ, ਉੱਤਰੀ"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "ਨਡੋਗਾ"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "ਨੀਪੋਲੀਤਾਨ"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "ਨੇਪਾਲ"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "ਨੇਪਾਲ ਭਾਸ਼ਾ"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "ਲੋ ਜਰਮਨ"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "ਨੇਪਾਲੀ"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "ਨੀਂਦਰਲੈਂਡ"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "ਨੀਂਦਰਲੈਂਡ ਐਂਟੀਲਸ"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "ਨਿਊ ਕਾਲੀਡੋਨੀਆ"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "ਨਿਊਜ਼ੀਲੈਂਡ"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "ਨੇਪਾਲ ਭਾਸ਼ਾ"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "ਨੀਆਸ"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "ਨਿਕਾਰਗੁਆ"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "ਨੀਗਰ"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "ਨਜੀਰੀਆ"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "ਨਿਲੋ-ਸਸਾਹਾਰਨ (ਹੋਰ)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "ਨਿਉ"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "ਨੀਉਨ"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "ਕੋਡ ਨਹੀਂ"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "ਨਾਰਵੀਅਨ ਨਿਯਰੋਸਕ"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "ਰਿਪੋਜ਼ਟਰੀ ਵਿੱਚ ਕੋਈ URL ਨਹੀਂ ਹੈ।"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "ਨਾਰਵੀਅਨ ਬੋਕਮਾਲ"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "ਨੋਗਾਈ"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "ਨੋਰਫੋਕ ਟਾਪੂ"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "ਨੋਰਸੀ, ਪੁਰਾਣੀ"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "ਉੱਤਰੀ ਅਮਰੀਕੀ ਇੰਡੀਅਨ"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "ਉੱਤਰੀ ਕੋਰੀਆ"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "ਉੱਤਰੀ ਮਾਰੀਨਾ ਟਾਪੂ"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "ਉੱਤਰੀ ਸਾਮੀ"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "ਉੱਤਰੀ ਸੋਥੋ"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "ਨਾਰਵੇ"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "ਨਾਰਵੀਅਨ"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "ਨਾਰਵੀਅਨ ਬੋਕਮਾਲ"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "ਨਾਰਵੀਅਨ ਨਿਯਰੋਸਕ"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "ਇੱਕ CDROM ਡਰਾਇਵ ਨਹੀਂ ਹੈ"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "ਉੱਤਰੀ ਸੋਥੋ"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "ਨਿਬੀਆਈ ਭਾਸ਼ਾਵਾਂ"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "ਕਲਾਸੀਕਲ ਨੀਵਾਰੀ"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "ਚਿਚੀਵਾ"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3135,10 +3469,6 @@ msgstr "ਨਆਰੋ"
 msgid "Nzima"
 msgstr "ਨਜ਼ੀਮਾ"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "ਬਰਤਰਫ਼"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3149,21 +3479,6 @@ msgstr "ਉਸਟਾਨ (ਪੋਸਟ 1500)"
 msgid "Ojibwa"
 msgstr "ਉਜੀਬਵਾ"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "ਓਮਾਨ"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-#, fuzzy
-msgid "Operation not supported by medium"
-msgstr "ਪਰੋਫਾਇਲ ਵਰਜਨ ਅੱਪਾਰਮੋਰ ਮੋਡੀਊਲ ਵਲੋਂ ਸਹਾਇਕ ਨਹੀਂ ਹੈ\n"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3184,63 +3499,35 @@ msgstr "ਓਸਾਗੀ"
 msgid "Ossetian"
 msgstr "ਉੱਸਟੀਨਅਨ"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "ਤੁਰਕ, ਉੱਟੋਮਨ (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "ਓਟਾਮੀਆਈ ਭਾਸ਼ਾਵਾਂ"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, fuzzy, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr "ਪੈਕੇਜ %s ਐਂਟੀਗਰੇਟੀ ਚੈਕ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ। ਕੀ ਤੁਸੀਂ ਮੁੜ-ਕੋਸ਼ਿਸ਼ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "ਪਾਪੁਆਨ (ਹੋਰ)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "ਪਾਂਗਾਸੀਆਈ"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "ਪਾਹਲਵੀ"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "ਪਾਕਿਸਤਾਨ"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "ਪਾਲਾਊ"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "ਪਾਲਾਉਨ"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "ਫਿਲਸਤੀਨ ਰਾਜ"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "ਪਾਲੀ"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
-msgstr "ਪਾਮਪਾਂਗਾ"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "ਪੈਨਾਮਾ"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "ਪਾਂਗਾਸੀਆਈ"
+msgstr "ਪਾਮਪਾਂਗਾ"
 
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
@@ -3252,94 +3539,45 @@ msgstr "ਪੰਜਾਬੀ"
 msgid "Papiamento"
 msgstr "ਪਾਡੀਮੀਟਤੋ"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "ਪੋਪ ਨਿਉ ਗੁਆਨਾ"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "ਪਾਪੁਆਨ (ਹੋਰ)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "ਪੇਰੂਗਵੇ"
-
-#: zypp/media/MediaException.cc:106
-#, fuzzy, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "%1 ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ।"
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
-
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "ਅਧਿਕਾਰ ਪਾਬੰਦੀ ਹੈ"
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "ਪਰਸੀਆਈ"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "ਪਾਲਾਉਨ"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "ਪਰਸ਼ੀਆਈ, ਪੁਰਾਣੀ (ca 600-400 BC)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "ਪà©\87ਰà©\82"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "ਪਰਸà©\80à¨\86à¨\88"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "ਫਿਲਿਪੀਨੀ (ਹੋਰ)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "ਫਿਲਿਪੀਨੀਜ਼"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "ਫੋਨੋਨੀਸਿਕ"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "ਪਿਟਸਾਰਨ"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "ਫੋਹਨਪੀਈ"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "ਪੋਲੈਂਡ"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "ਪਾਲੀ"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "ਪੋਲਿਸ਼"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "ਪà©\81ਰਤà¨\97ਾਲ"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "ਫà©\8bਹਨਪà©\80à¨\88"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3351,78 +3589,21 @@ msgstr "ਪੁਰਤਗਾਲੀ"
 msgid "Prakrit Languages"
 msgstr "ਪਰਾਕਰਿਟ ਭਾਸ਼ਾਵਾਂ"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "ਪਰੋਵਾਂਕਾਲ, ਪੁਰਾਣੀ (1500 ਤੋਂ)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "ਪਰੋਵਾਇਡ"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "ਪੁਈਰਟੋ ਰੀਸੋ"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "ਪੁਸਤੋ"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "ਕਤਰ"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "ਕਿਉਚੁਆ"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "ਫੇਲ੍ਹ"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "ਰੀਟੋ-ਰੋਮਨੀ"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3438,136 +3619,35 @@ msgstr "ਰਾਪਾਨਈ"
 msgid "Rarotongan"
 msgstr "ਰਾਰੋਤੋਨਗੀ"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "ਸਿਫਾਰਸ਼ੀ"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਹਟਾਈ ਜਾ ਰਹੀ ਹੈ।"
-
-#: zypp/RepoManager.cc:338
-#, fuzzy
-msgid "Repository alias cannot start with dot."
-msgstr "VM ਦਾ ਨਾਂ ਇੱਕ ਅੰਕ ਨਾਲ ਸ਼ੁਰੂ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ।"
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, fuzzy, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "ਲੋੜੀ ਫਾਇਲ ਗੁੰਮ ਹੈ: "
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "ਲੋੜੀਦਾ"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "ਰੀਯੁਨੀਅਨ"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "ਰੋਮਾਨਿਕ (ਹੋਰ)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "ਰੋਮਾਨੀਆ"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "ਰੋਮਾਨੀਅਨ"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "ਰੀਟੋ-ਰੋਮਨੀ"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "ਰੋਮਨੀ"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "ਰੰਡੀ"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "ਰੂਸੀ"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "ਰੂਸੀ ਸੰਘ"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "ਰਵਾਂਡਾ"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "ਸੇਂਟ ਹੀਲੀਆ"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "ਸੇਂਟ ਕਿਟੱਸ ਅਤੇ ਨੀਵਿਸ"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "ਸੇਂਟ ਲੂਸੀਆ"
-
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "ਸੇਂਟ ਮਾਰੀਓ"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "ਸੇਂਟ ਪੀਇੱਰ ਅਤੇ ਮੀਕਿਉਨੋਲ"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "ਸੇਂਟ ਵੀਨਸੈਂਟ ਅਤੇ ਗਰੀਨਡੀਨ"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "ਸਾਲੀਸ਼ਾਂ ਭਾਸ਼ਾਵਾਂ"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "ਸਾਮਾਰਿਟਿਕ ਅਰਾਮਾਕ"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "ਸਾਮੀ ਭਾਸ਼ਾਵਾਂ (ਹੋਰ)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "ਸਾਮੀਆ"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "ਰੋਮਾਨੀਅਨ"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "ਸਾਮà©\8bਨੀ"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "ਰੰਡੀ"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "ਸà©\87à¨\82à¨\9f à¨®à¨¾à¨°à©\80à¨\93"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "ਰà©\82ਸà©\80"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3579,41 +3659,61 @@ msgstr "ਸਾਂਡਾਵੀ"
 msgid "Sango"
 msgstr "ਸਾਂਗੋ"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "ਯਾਕੁਟ"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "ਦੱਖਣੀ ਅਮਰੀਕੀ ਇੰਡੀਅਨ (ਹੋਰ)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "ਸਾਲੀਸ਼ਾਂ ਭਾਸ਼ਾਵਾਂ"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "ਸਾਮਾਰਿਟਿਕ ਅਰਾਮਾਕ"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "ਸੰਸਕਰਿਤ"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "ਸਾਸਾਕ"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "ਸਾਂਤਾਲੀ"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "ਸਾਓ ਟੋਮੀ ਅਤੇ ਪਰਿਸਪੀ"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "ਸਾਰਡੀਨੀਅਨ"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "ਸਾਸਾਕ"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "ਸਰਬੀਅਨ"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "ਸਾà¨\8aਦà©\80 à¨\85ਰਬ"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "ਸਿà¨\95ਿਲਿà¨\86à¨\88"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "ਸਕੋਟਸ"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "ਕਰੋਆਟੀਅਨ"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3624,144 +3724,40 @@ msgstr "ਸਿਲਕੁਪ"
 msgid "Semitic (Other)"
 msgstr "ਸਿਮੀਟਿਕ (ਹੋਰ)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "ਸੈਨੇਗਾਲ"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "ਸਰਬੀਅਨ"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "ਸਰਬੀਅਨ"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "ਸੀਰੀਰ"
-
-#: zypp/RepoManager.cc:349
-#, fuzzy
-msgid "Service alias cannot start with dot."
-msgstr "VM ਦਾ ਨਾਂ ਇੱਕ ਅੰਕ ਨਾਲ ਸ਼ੁਰੂ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ।"
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "ਆਈਰਸ਼, ਪੁਰਾਣੀ (900 ਤੋਂ)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "ਸà©\80ਯà¨\9aà©\80ਲੱਸ"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "ਸਾà¨\87ਨ à¨­à¨¾à¨¸à¨¼à¨¾à¨µà¨¾à¨\82"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "ਸ਼ਾਨ"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "ਸ਼ੋਨਾ"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "ਸਿਚੁਨ ਯੀ"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "ਸਿਕਿਲਿਆਈ"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "ਸੀਡਾਮੋ"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "ਲਿੱਰ ਲੀਓਨ"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "ਸਾਇਨ ਭਾਸ਼ਾਵਾਂ"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "ਸੋਰਸ ਪੈਕੇਜ '%s' ਨਹੀਂ ਲੱਭਿਆ।"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "ਸਿਕਸਿਕਾ"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "ਸਿੰਧੀ"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "ਸਿੰਘਾਪੁਰ"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "ਸਿੰਹਾਲਾ"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "ਸੀਨੋ-ਤਿੱਬਤ (ਹੋਰ)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "ਸੀਉਆਨ ਭਾਸ਼ਾਵਾਂ"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "ਸਲਾਲਟ ਸਾਮੀ"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "ਸਲਾਵੀ (ਅਥਾਪਾਕਸਕੈਨ)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "ਸੀਨੋ-ਤਿੱਬਤ (ਹੋਰ)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3773,210 +3769,141 @@ msgstr "ਸਲਾਵਿਕ (ਹੋਰ)"
 msgid "Slovak"
 msgstr "ਸਲੋਵਾਕ"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "ਸਲà©\8bਵਾà¨\95à©\80à¨\86"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "ਸਲà©\8bਵà©\80à¨\85ਨ"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "ਸਲੋਵੀਨੀਆ"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "ਦੱਖਣੀ ਸਾਮੀ"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "ਉੱਤਰੀ ਸਾਮੀ"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "ਸਾਮੀ ਭਾਸ਼ਾਵਾਂ (ਹੋਰ)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "ਲੁਈ ਸਾਮੀ"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "ਇਨਰੀ ਸਾਮੀ"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "ਸਾਮੋਨੀ"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "ਸਲਾਲਟ ਸਾਮੀ"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "ਸ਼ੋਨਾ"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "ਸਿੰਧੀ"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "ਸਲà©\8bਵà©\80à¨\85ਨ"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "ਸà©\8bਨà©\80ਨà¨\95à©\80"
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "ਸੋਗਡੀਆਈ"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "ਸੋਲੋਮੋਨ ਟਾਪੂ"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "ਸੋਮਾਲੀ"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "ਸੋਮਾਲੀਆ"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "ਸੋਂਘਾਈ"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "ਸੋਨੀਨਕੀ"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "ਸੋਰਬੀਆਈ ਭਾਸ਼ਾਵਾਂ"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "ਸੋਥੋ, ਦੱਖਣੀ"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "ਦੱਖਣੀ ਅਫਰੀਕਾ"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "ਦੱਖਣੀ ਅਮਰੀਕੀ ਇੰਡੀਅਨ (ਹੋਰ)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "ਦੱਖਣੀ ਜਾਰਜੀਆ ਅਤੇ ਦੱਖਣੀ"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "ਦੱਖਣੀ ਕੋਰੀਆ"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "ਦੱਖਣੀ ਅਥਟਾਈ"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "ਦੱਖਣੀ ਸਾਮੀ"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "ਸਪੇਨ"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "ਸਪੇਨੀ"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "ਸ਼ਰà©\80ਲੰà¨\95ਾ"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "ਸਾਰਡà©\80ਨà©\80à¨\85ਨ"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "ਸà©\82ਡਾਨ"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "ਸà©\80ਰà©\80ਰ"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "ਸੁਝਾਅ"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "ਨਿਲੋ-ਸਸਾਹਾਰਨ (ਹੋਰ)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "ਸਵਾਤੀ"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "ਸੁਕੁਮਾ"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "ਸੁਮੀਰਿਨ"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "ਸੁਡਾਨੀ"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "ਸਪਲੀਮੈਂਟ"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "ਸੁਰੀਨੇਮ"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "ਸੁਸੁ"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "ਸਵਾਲਬਾਰਡ à¨\85ਤà©\87 à¨\9cਾਨ à¨®à¨¾à¨¯à¨¾ਨ"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "ਸà©\81ਮà©\80ਰਿਨ"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "ਸਵਾਹਿਲੀ"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "ਸਵਾਤੀ"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "ਸਵਾਜੀਲੈਂਡ"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "ਸਵੀਡਨ"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "ਸਵੀਡਿਸ਼"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "ਸਵਿਟਜ਼ਰਲੈਂਡ"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "ਸੀਰੀਆ"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "ਸਅਰਿਕ"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "ਤਾਗਾਲੋਗ"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3987,36 +3914,11 @@ msgstr "ਤਾਹੀਤੀਆਨ"
 msgid "Tai (Other)"
 msgstr "ਤਾਈ (ਹੋਰ)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "ਤਾਈਵਾਨ"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "ਤਾਜ਼ਿਕ"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "ਤਜ਼ਾਕਸਤਾਨ"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "ਤਾਮਾਸਿਕ"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "ਤਾਮਿਲ"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "ਤਾਂਜੀਨੀਆ"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4027,6 +3929,11 @@ msgstr "ਤਤਾਰ"
 msgid "Telugu"
 msgstr "ਤੇਲਗੂ"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "ਤਿਮਨੀ"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4037,35 +3944,21 @@ msgstr "ਤਿਰਿਨੋ"
 msgid "Tetum"
 msgstr "ਤੋਤੁਮ"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "ਤਾਜ਼ਿਕ"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "ਤਾਗਾਲੋਗ"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "ਥਾਈ"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "ਥਾਈਲੈਂਡ"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-#, fuzzy
-msgid "The vendor does not provide support."
-msgstr "ਡਿਸਕ ਮੌਜੂਦ ਨਹੀਂ ਹੈ।"
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-#, fuzzy
-msgid "This request will break your system!"
-msgstr "ਮੰਗ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ।"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4081,46 +3974,25 @@ msgstr "ਤੀਗਰਿ"
 msgid "Tigrinya"
 msgstr "ਟੀਗਰੀਨਯਾ"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "ਤਿਮਨੀ"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "ਤੀਵ"
 
-#. language code: tli
-#: zypp/LanguageCode.cc:1049
-msgid "Tlingit"
-msgstr "ਤਲਿੰਗੀਤ"
-
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "ਟਾਂਗੋ"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "ਤੋਕ ਪਿਸ਼ਿਨ"
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "ਕਲਿੰਗੋਨ"
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "ਤੁਕੀਲਾਓ"
+#. language code: tli
+#: zypp/LanguageCode.cc:1049
+msgid "Tlingit"
+msgstr "ਤਲਿੰਗੀਤ"
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "ਤਾà¨\82à¨\97ਾ"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "ਤਾਮਾਸਿà¨\95"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4132,103 +4004,66 @@ msgstr "ਤਾਂਗਾ (ਨਆਸਾ)"
 msgid "Tonga (Tonga Islands)"
 msgstr "ਤਾਂਗਾ (ਤਾਂਗਾ ਟਾਪੂ)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "ਟਰੀਨੀਡ ਅਤੇ ਤੋਬਾਗੋ"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "ਤੋਕ ਪਿਸ਼ਿਨ"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "ਤਸਾਮਸ਼ਿਨ"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "ਤਸਵਾਕਾ"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "ਤਸਾਂਗੋ"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "ਤਸਵਾà¨\95ਾ"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "ਤà©\81ਰà¨\95"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "ਤੁਮਬੁਕਾ"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "ਟੁਨੀਸ਼ੀਆ"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "ਤੁਪਾਈ ਭਾਸ਼ਾਵਾਂ"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "ਤੁਰਕੀ"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "ਤੁਰਕੀ"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "ਤੁਰਕ, ਉੱਟੋਮਨ (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "ਤੁਰਕ"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "ਤੁਰਕਮੇਨਸਤਾਨ"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "ਤੁਰਕ ਅਤੇ ਸਾਈਸੋਸ ਟਾਪੂ"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "ਅਲਟਿਕ (ਹੋਰ)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "ਤੁਵਾਲੂ"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "ਤਵੀ"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "ਤੁਵੀਨੀਆਈ"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "ਤਵੀ"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "ਉਡਮਰਟ"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "ਉਜਾਂਡਾ"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4239,11 +4074,6 @@ msgstr "ਯਗਾਰਿਟਿਕ"
 msgid "Uighur"
 msgstr "ਉਘੋਰ"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "ਯੂਕਰੇਨ"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4254,210 +4084,36 @@ msgstr "ਯੂਕਰੇਨੀ"
 msgid "Umbundu"
 msgstr "ਯਮਬੁਡੂ"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Url ਆਬਜੈਕਟ ਕਲੋਨ ਕਰਨ ਲਈ ਅਸਮਰੱਥ"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "dbus ਕੁਨੈਕਸ਼ਨ ਬਣਾਉਣ ਲਈ ਅਸਮਰੱਥ"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Url ਭਾਗ ਪਾਰਸ ਕਰਨ ਲਈ ਅਸਮਰੱਥ"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "ਅਣ-ਪਛਾਣੀ"
 
-#: zypp/RepoManager.cc:1377
-#, fuzzy
-msgid "Unhandled repository type"
-msgstr "%s ਰਿਪੋਜ਼ਟਰੀ ਲਈ ਅੱਪਲੋਡ ਕੀਤਾ।"
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "ਸੰਯੁਕਤ ਅਰਬ ਅਮੀਰਾਤ"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "ਬਰਤਾਨੀਆ"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "ਸੰਯੁਕਤ ਰਾਜ"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "ਸੰਯੁਕਤ ਰਾਜ ਮੀਨੋਰ ਆਉਟਲੇ ਟਾਪੂ"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "ਅਣਜਾਣ ਦੇਸ਼: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "ਅਣਜਾਣ ਕਮਾਂਡ '%s'"
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "ਅਣਜਾਣ ਭਾਸ਼ਾ: "
-
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "ਅਣਜਾਣ ਕਮਾਂਡ '%s'"
-
-#: zypp/base/StrMatcher.cc:153
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "ਫਾਇਲ %2$s ਲਈ ਅਣਜਾਣ ਡਿਜ਼ਟ %1$s"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr ""
-
-#: zypp/media/MediaException.cc:140
-#, fuzzy, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "ਗਲਤ URL ਸਕੀਮ '%1' ਹੈ।"
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "ਅੱਪਰ ਸੋਰਬੀਆਈ"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "ਉਰਦੂ"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Url ਸਕੀਮ ਲਈ %s ਮਨਜ਼ੂਰ ਨਹੀਂ ਹੈ"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Url ਸਕੀਮ ਲਈ ਇੱਕ ਹੋਸਟ ਭਾਗ ਮਨਜ਼ੂਰ ਨਹੀਂ ਹੈ।"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Url ਸਕੀਮ ਲਈ ਇੱਕ ਪਾਸਵਰਪ ਮਨਜ਼ੂਰ ਨਹੀਂ ਹੈ"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Url ਸਕੀਮ ਇੱਕ ਪੋਰਟ ਨਹੀਂ ਦਿੰਦੀ ਹੈ।"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Url ਸਕੀਮ ਲਈ ਇੱਕ ਯੂਜ਼ਰ-ਨਾਂ ਮਨਜ਼ੂਰ ਨਹੀਂ ਹੈ"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Url ਸਕੀਮ ਲਈ ਇੱਕ ਲੋੜੀਦਾ ਭਾਗ ਹੈ"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Url ਲਈ ਇੱਕ ਹੋਸਟ ਭਾਗ ਲੋੜੀਦਾ ਹੈ"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Url ਸਕੀਮ ਲਈ ਮਾਰਗ ਨਾਂ ਲੋੜੀਦਾ ਹੈ"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "ਉਰੂਗਵੇ"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "ਉਜ਼ੇਬਕ"
-
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "ਉਜ਼ੇਬਕਸਤਾਨ"
-
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "ਵਾਈ"
-
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-#, fuzzy
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
-msgstr[1] "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "ਵਾਂਉਤੁ"
+msgid "Uzbek"
+msgstr "ਉਜ਼ੇਬਕ"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "ਵਾਈ"
 
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "ਵਾਂਡਾ"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "ਵੈਨੂਜੇਏਲਾ"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "ਵੀਅਤਨਾਮ"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "ਵੀਅਤਨਾਮੀ"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "ਵੀਰਜੀਨ ਟਾਪੂ, ਅਮਰੀਕਾ"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4478,16 +4134,6 @@ msgstr "ਵਾਕਾਸ਼ਾਨ ਭਾਸ਼ਾਵਾਂ"
 msgid "Walamo"
 msgstr "ਵਾਲਾਮੋ"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "ਵਾਲਿਸ ਅਤੇ ਫੁਟੁਨਾ"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "ਵੱਲੂਨ"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4503,462 +4149,749 @@ msgstr "ਵਾਸ਼ੋ"
 msgid "Welsh"
 msgstr "ਵਾਲਿਸ਼"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "ਦੱਖਣੀ ਸਹਾਰਾ"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "ਸੋਰਬੀਆਈ ਭਾਸ਼ਾਵਾਂ"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "ਵੱਲੂਨ"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "ਵੋਲੋਫ"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "ਕਾਲਮਯਕ"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "ਯੋਸਾ"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "ਯਾਕੁਟ"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "ਯਾਓ"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "ਯਾਪੀਸੀ"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "ਯੀਡਿੱਸ਼"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "ਯੋਰੁਬਾ"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "ਯੁਪਿਕ ਭਾਸ਼ਾਵਾਂ"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "ਜ਼ਾਪੋਟਿਕ"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "ਜੀਨਾਗਾ"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "ਜ਼ੁਆਂਗ"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "ਜਾਂਡੀ"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "ਜ਼ੂਲੂ"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "ਜੁਨੀ"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "VM ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ।"
+
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "ਸੋਰਸ ਪੈਕੇਜ '%s' ਨਹੀਂ ਲੱਭਿਆ।"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, fuzzy, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "ਰਿਪੋਜ਼ਟਰੀ ਤੋਂ ਪਰੋਫਾਇਲ ਲੈਣ ਦੌਰਾਨ ਗਲਤੀ: "
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "ਰਿਪੋਜ਼ਟਰੀ ਵਿੱਚ ਕੋਈ URL ਨਹੀਂ ਹੈ।"
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr ""
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, fuzzy, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr "ਪੈਕੇਜ %s ਐਂਟੀਗਰੇਟੀ ਚੈਕ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ। ਕੀ ਤੁਸੀਂ ਮੁੜ-ਕੋਸ਼ਿਸ਼ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ?"
+
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr ""
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, fuzzy, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "ਪੈਕੇਜ %s ਐਂਟੀਗਰੇਟੀ ਚੈਕ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ। ਕੀ ਤੁਸੀਂ ਮੁੜ-ਕੋਸ਼ਿਸ਼ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm ਚੈੱਕ ਫੇਲ੍ਹ ਹੈ।"
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm ਫੇਲ੍ਹ ਹੋਇਆ।"
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਆਰਕੀਟੈਕਚਰ ਹੋਰ ਹੈ।"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "ਸੋਰਸ ਪੈਕੇਜ %s-%s ਇੰਸਟਾਲ ਕਰਨ ਦੌਰਾਨ ਸਮੱਸਿਆ:"
+
+#: zypp/solver/detail/SATResolver.cc:986
+#, fuzzy
+msgid "conflicting requests"
+msgstr "ਕੁਨੈਕਸ਼ਨ ਮੰਗ:"
+
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "ਨਿਰਭਰਤਾ ਸਮੱਸਿਆਵਾਂ ਕਰਕੇ %s ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, fuzzy, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "%s ਕੋਈ ਨਹੀਂ ਦਿੰਦਾ ਹੈ"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, fuzzy, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s %s ਰਾਹੀਂ ਚਾਹੀਦਾ ਹੈ"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "%s ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s ਦਾ %s ਨਾਲ ਅਪਵਾਦ ਹੈ"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, fuzzy, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s %s ਰਾਹੀਂ ਚਾਹੀਦਾ ਹੈ"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s %s ਰਾਹੀਂ ਚਾਹੀਦਾ ਹੈ"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s ਦਾ %s ਨਾਲ ਅਪਵਾਦ ਹੈ"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "ਯਾਓ"
+#: zypp/solver/detail/SATResolver.cc:1070
+#, fuzzy
+msgid "deleted providers: "
+msgstr "%s ਕੋਈ ਨਹੀਂ ਦਿੰਦਾ ਹੈ"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "ਯਾਪੀਸੀ"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "ਯਮਨ"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "ਉਪਲੱਬਧ ਪਰੋਫਾਇਲ"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "ਯੀਡਿੱਸ਼"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "ਯੋਰੁਬਾ"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "%s ਨੂੰ ਨਾ ਹਟਾਓ"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "ਯੁਪਿਕ ਭਾਸ਼ਾਵਾਂ"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "%s ਰੱਖੋ"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "ਜੈਂਬੀਆ"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "ਜਾਂਡੀ"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+#, fuzzy
+msgid "This request will break your system!"
+msgstr "ਮੰਗ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ।"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "ਜ਼ਾਪੋਟਿਕ"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "ਜੀਨਾਗਾ"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "ਜ਼ੁਆਂਗ"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "ਜਿੰਬਾਬਾਵੇ"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "ਜ਼ੂਲੂ"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, fuzzy, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਆਰਕੀਟੈਕਚਰ ਹੋਰ ਹੈ।"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "ਜੁਨੀ"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm ਚੈੱਕ ਫੇਲ੍ਹ ਹੈ।"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%s ਹਟਾਓ"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm ਫੇਲ੍ਹ ਹੋਇਆ।"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1318
+#, fuzzy, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "%s ਨੂੰ %s ਲਈ ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr ""
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
+
+# %s is either BOOTP or DHCP
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "%s ਦੀ ਇੰਸਟਾਲੇਸ਼ਨ ਫੇਲ੍ਹ ਹੋਈ:"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, fuzzy, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "ਆਮ ਤੌਰ ਉੱਤੇ ਇਹ ਲੋੜ ਅਣਡਿੱਠੀ ਕਰੋ"
 
-#: zypp/solver/detail/SATResolver.cc:1017
-#, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "%s ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-#, fuzzy
-msgid "conflicting requests"
-msgstr "à¨\95à©\81ਨà©\88à¨\95ਸ਼ਨ à¨®à©°à¨\97:"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, fuzzy, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "ਲà©\8bà©\9cà©\80 à¨«à¨¾à¨\87ਲ à¨\97à©\81ੰਮ à¨¹à©\88"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/parser/RepoindexFileReader.cc:209
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "%s ਦਾ ਬੈਕਅੱਪ ਬਣਿਆ"
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-# %s is either BOOTP or DHCP
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/InterProcessMutex.cc:83
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "%s ਦੀ ਇੰਸਟਾਲੇਸ਼ਨ ਫੇਲ੍ਹ ਹੋਈ:"
+msgid "Can't open lock file: %s"
+msgstr "ਫਾਇਲ %1 ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕਦੀ ਹੈ।"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-#, fuzzy
-msgid "deleted providers: "
-msgstr "%s ਕੋਈ ਨਹੀਂ ਦਿੰਦਾ ਹੈ"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "ਅਤੀਤ:"
+
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "ਅਣਜਾਣ ਕਮਾਂਡ '%s'"
+
+#: zypp/base/StrMatcher.cc:153
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "ਫਾਇਲ %2$s ਲਈ ਅਣਜਾਣ ਡਿਜ਼ਟ %1$s"
+
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+#: zypp/base/StrMatcher.cc:158
+#, fuzzy, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "ਗਲਤ Url ਸਕੀਮ '%s'"
+
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "%s ਨੂੰ ਨਾ ਹਟਾਓ"
+msgid "Authentication required for '%s'"
+msgstr "'%s' ਲਈ ਪਰਮਾਣਿਕਤ ਲੋੜੀਦੀ ਹੈ"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:31
+#, fuzzy, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ ਫੇਲ੍ਹ: %s।"
+
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "ਮੋਡੀਊਲ \"%s\" ਲੋਡ ਕਰਨ ਲਈ ਫੇਲ ਹੈ।"
+
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Bad file name: %s"
+msgstr ""
+
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:60
+#, fuzzy, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "ਫਾਇਲ %1 ਰਿਪੋਜ਼ਟਰੀ ਵਿੱਚ ਮੌਜੂਦ ਨਹੀਂ ਹੈ।"
+
+#: zypp/media/MediaException.cc:67
 #, fuzzy, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "%s ਨੂੰ %s ਲਈ ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+msgid "Cannot write file '%s'."
+msgstr "ਫਾਇਲ %1 ਲਿਖੀ ਨਹੀਂ ਜਾ ਸਕਦੀ ਹੈ।"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:106
 #, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s %s ਰਾਹੀਂ ਚਾਹੀਦਾ ਹੈ"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "%1 ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ।"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "%s ਰੱਖੋ"
+#: zypp/media/MediaException.cc:125
+#, fuzzy
+msgid "Empty host name in URI"
+msgstr "ਖਾਲੀ CA ਨਾਂ ਹੈ।"
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, fuzzy, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਆਰਕੀਟੈਕਚਰ ਹੋਰ ਹੈ।"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:140
 #, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%s ਹਟਾਓ"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "ਗਲਤ URL ਸਕੀਮ '%1' ਹੈ।"
 
-#: zypp/target/hal/HalContext.cc:242
+#: zypp/media/MediaException.cc:145
 #, fuzzy
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_set_dbus_connection: dbus ਕੁਨੈਕਸ਼ਨ ਸੈੱਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
+msgid "Operation not supported by medium"
+msgstr "ਪਰੋਫਾਇਲ ਵਰਜਨ ਅੱਪਾਰਮੋਰ ਮੋਡੀਊਲ ਵਲੋਂ ਸਹਾਇਕ ਨਹੀਂ ਹੈ\n"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: dbus ਕੁਨੈਕਸ਼ਨ ਸੈੱਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, fuzzy, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s %s ਰਾਹੀਂ ਚਾਹੀਦਾ ਹੈ"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, fuzzy, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "%s ਕੋਈ ਨਹੀਂ ਦਿੰਦਾ ਹੈ"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:182
+#, fuzzy
+msgid "Cannot eject any media"
+msgstr "ਕੋਈ ਸਕੀਮ ਨਹੀਂ ਲੱਭੀ ਹੈ।"
+
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "ਸà©\8bਰਸ à¨ªà©\88à¨\95à©\87à¨\9c %s-%s à¨\87ੰਸà¨\9fਾਲ à¨\95ਰਨ à¨¦à©\8cਰਾਨ à¨¸à¨®à©±à¨¸à¨¿à¨\86:"
+msgid "Cannot eject media '%s'"
+msgstr "ਡà©\88ਸà¨\95à¨\9fਾਪ à¨\86à¨\88à¨\9fਮ '%s' à¨\96à©\8bਲà©\8dਹà©\80 à¨¨à¨¹à©\80à¨\82 à¨\9cਾ à¨¸à¨\95ਦà©\80 à¨¹à©\88"
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr ""
+#: zypp/media/MediaException.cc:199
+#, fuzzy, c-format, boost-format
+msgid "Permission to access '%s' denied."
+msgstr "ਅਧਿਕਾਰ ਪਾਬੰਦੀ ਹੈ"
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s ਦਾ %s ਨਾਲ ਅਪਵਾਦ ਹੈ"
-
-#: zypp/solver/detail/SATResolver.cc:989
-#, fuzzy
-msgid "some dependency problem"
-msgstr "ਨਿਰਭਰਤਾ ਸਮੱਸਿਆਵਾਂ ਕਰਕੇ %s ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।"
-
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-#, fuzzy
-msgid "uninstallable providers: "
-msgstr "ਉਪਲੱਬਧ ਪਰੋਫਾਇਲ"
-
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "ਅਣਜਾਣ"
-
-#: zypp/VendorSupportOptions.cc:17
+#: zypp/sat/detail/PoolImpl.cc:184
 #, fuzzy
-msgid "unsupported"
-msgstr " - ਸਹਾਇਕ ਨਹੀਂ"
+msgid "Can not create sat-pool."
+msgstr "ਫਾਇਲ ਨਹੀਂ ਬਣਾਈ ਜਾ ਸਕਦੀ ਹੈ।"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
-#~ msgstr ""
-#~ "\n"
-#~ "ਇਹ ਲੋੜ ਨੂੰ ਪੂਰੀ ਕਰਨ ਲਈ ਕੋਈ ਸਰੋਤ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ।"
-
-#~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
-#~ msgstr ""
-#~ "\n"
-#~ "ਇਹ ਹੱਲ-ਕਰਨ-ਯੋਗ ਸਿਸਟਮ ਤੋਂ ਹਟਾਏ ਜਾਣਗੇ।"
-
-#~ msgid " Error!"
-#~ msgstr " ਗਲਤੀ!"
-
-#~ msgid " Important!"
-#~ msgstr " ਖਾਸ!"
-
-#~ msgid " fails checksum verification."
-#~ msgstr "فشل التحقق من المجموع الاختباري."
-
-#~ msgid " miss checksum."
-#~ msgstr "فقد المجموع الاختباري."
-
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "%s ਨੂੰ ਨਿਰਭਰਤਾ ਅਧੂਰੀ ਹੋਣ ਕਰਕੇ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
-
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "%s ਦਾ ਅਪਵਾਦ ਹੈ:\n"
-#~ "%s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#~ msgid "%s depended on %s"
-#~ msgstr "%s %s ਉੱਤੇ ਨਿਰਭਰ ਹੈ"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s اعتمد على %s"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#~ msgid "%s depends on %s"
-#~ msgstr "%s %s ਉੱਤੇ ਨਿਰਭਰ ਹੈ"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s ਨਿਰਭਰ ਹੈ: %s"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
 #, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "ਆਮ ਤੌਰ ਉੱਤੇ ਇਹ ਲੋੜ ਅਣਡਿੱਠੀ ਕਰੋ"
 
 #, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
-
-#~ msgid "%s has missing dependencies"
-#~ msgstr "%s ਲਈ ਨਿਰਭਰਤਾ ਅਧੂਰੀ ਹੈ"
-
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "لم يتم استيفاء متطلبات %s"
-
-#~ msgid "%s install failed"
-#~ msgstr "%s ਇੰਸਟਾਲ ਫੇਲ੍ਹ ਹੈ"
-
-#~ msgid "%s installed ok"
-#~ msgstr "%s ਇੰਸਟਾਲ ਹੋਇਆ"
-
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s %s ਵਲੋਂ ਇੰਹਾਂਸਡ ਹੈ"
+#~ msgid "do not forbid installation of %s"
+#~ msgstr "%s ਨੂੰ ਨਾ ਹਟਾਓ"
 
 #, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
+#~ msgid "do not keep %s installed"
+#~ msgstr "ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ"
 
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s ਲਈ %s ਲੋੜ ਦੀ ਕਮੀ ਹੈ"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr "لا يمكن إنشاء المفتاح العام %s من %s إلى ملف حلقة المفاتيح %s"
 
-#~ msgid "%s is locked and cannot be uninstalled."
-#~ msgstr "%s ਲਾਕ ਹੈ ਅਤੇ ਅਣ-ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ।"
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr "حاول استيراد مفتاح غير موجود %s إلى حلقة مفاتيح %s"
 
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "لا يمكن تغيير مجلد العمل '/' داخل استجذار (%s)."
+
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "فشل تهيئة تحميل (Metalink curl) '%s'"
 
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
 #~ msgstr ""
-#~ "%s ਲੋੜੀਦਾ ਹੈ:\n"
-#~ "%s"
+#~ "تحميل (metalink curl) خطأ '%s':\n"
+#~ "رمز الخطأ: %s\n"
+#~ "رسالة الخطأ: %s\n"
 
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "%s ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ ਅਤੇ ਅਣ-ਇੰਸਟਾਲਯੋਗ ਮਾਰਕ ਕੀਤਾ ਗਿਆ"
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "توقف التحميل في %d%%"
 
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s %s ਵਲੋਂ ਸਿਫਾਰਸ਼ੀ ਹੈ"
+#~ msgid "Download interrupted by user"
+#~ msgstr "توقف التحميل بواسطة المستخدم"
 
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s ਨੂੰ %s ਨਾਲ ਬਦਲਿਆ ਜਾਂਦਾ ਹੈ"
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr "حدث خطأ أثناء إعداد خيارات التحميل (metalink curl) ل '%s':"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
-#~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
-#~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
-#~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
-#~ "الارتباط."
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
 
-#~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr "%s ਨੂੰ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਸ਼ੈਡਿਊਲ ਕੀਤਾ ਗਿਆ ਹੈ, ਪਰ ਨਿਰਭਰਤਾ ਸਮੱਸਿਆ ਕਰਕੇ ਸੰਭਵ ਨਹੀਂ ਹੈ।"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "تجاهل %s القديم في %s"
 
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s ਲਈ %s ਵਲੋਂ ਸੁਝਾਅ ਹੈ"
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
 
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s %s ਦਾ ਸਪਲੀਮੈਂਟ ਹੈ"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
+
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
 
 #~ msgid "%s obsoletes other resolvables"
 #~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
@@ -4966,68 +4899,73 @@ msgstr ""
 #~ msgid "%s obsoletes:%s"
 #~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
-#~ msgid "%s part of %s"
-#~ msgstr "%s %s ਦਾ ਭਾਗ ਹੈ"
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
+#, fuzzy
+#~ msgid ""
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਉਸ %s ਦਾ ਹੋਰ ਵਰਜਨ  ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ।"
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "لم يتم استيفاء متطلبات %s"
 
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਵੇਂਡਰ (%s) ਹੋਰ ਹੈ।"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਅਣ-ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਸ਼ੈਡਿਊਲ ਹੈ।"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਲਾਕ ਹੈ"
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਅਣ-ਇੰਸਟਾਲ-ਯੋਗ ਹੈ।  ਹੋਰ ਜਾਣਕਾਰੀ ਲਈ ਖੁਦ ਹੀ ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
+
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
-
-#~ msgid "%s remove failed"
-#~ msgstr "%s ਹਟਾਉਣਾ ਫੇਲ੍ਹ"
-
-#~ msgid "%s remove ok"
-#~ msgstr "%s ਹਟਾਇਆ"
-
-#~ msgid "%s replaced by %s"
-#~ msgstr "%s ਨੂੰ %s ਨਾਲ ਬਦਲਿਆ ਗਿਆ"
-
-#~ msgid "%s will be deleted by another application. (ApplLow/ApplHigh)\n"
-#~ msgstr "%s ਨੂੰ ਹੋਰ ਕਾਰਜ ਵਲੋਂ ਹਟਾਇਆ ਜਾਵੇਗਾ। (ApplLow/ApplHigh)\n"
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
 
-#~ msgid "%s will be deleted by the user.\n"
-#~ msgstr "%s ਨੂੰ ਯੂਜ਼ਰ ਵਲੋਂ ਹਟਾਇਆ ਜਾਵੇਗਾ।\n"
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
 
-#~ msgid "%s will be installed by the user.\n"
-#~ msgstr "%s ਨੂੰ ਯੂਜ਼ਰ ਵਲੋਂ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾਵੇਗਾ।\n"
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
 
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "%s ਨੂੰ ਅਣ-ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾਵੇਗਾ, ਕਿਉਂਕਿ ਇਹ ਹਾਲੇ ਵੀ ਲੋੜੀਦਾ ਹੈ"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
 
-#~ msgid ", Action: "
-#~ msgstr ", ਕਾਰਵਾਈ: "
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
 
-#~ msgid ", Trigger: "
-#~ msgstr ", ਟਿਗਰ: "
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
+
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
 #, fuzzy
 #~ msgid ""
@@ -5035,111 +4973,113 @@ msgstr ""
 #~ "installation"
 #~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
 
-#~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
-#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
-
-#~ msgid "Can't chdir to '/' inside chroot (%s)."
-#~ msgstr "لا يمكن تغيير مجلد العمل '/' داخل استجذار (%s)."
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
 
 #, fuzzy
-#~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
-#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
+#~ msgid "Double timeout"
+#~ msgstr "موعد الاستحقاق: %1"
 
 #, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
+
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "تعذر تحليل سلطة Url"
+
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
+
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
-#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
+#~ "الارتباط."
 
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "%s ਨੂੰ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ, ਕਿਉਂਕਿ ਇਹ ਇਸ ਸਿਸਟਮ ਉੱਤੇ ਲਾਗੂ ਨਹੀਂ ਹੁੰਦਾ ਹੈ।"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
 
-#, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "ਫਾਇਲ %1 ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕਦੀ ਹੈ।"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "تعذرت استعادة كافة المصادر."
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "%s ਦੀ ਲੋੜ ਨੂੰ %s ਲਈ ਪੂਰਾ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
 
 #~ msgid "Cannot be install %s to fulfil the dependencies of %s"
 #~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#~ msgid "Cannot create a file needed to perform update installation."
-#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#~ msgid "Cannot create public key %s from %s keyring to file %s"
-#~ msgstr "Ù\84ا Ù\8aÙ\85Ù\83Ù\86 Ø¥Ù\86شاء Ø§Ù\84Ù\85Ù\81تاح Ø§Ù\84عاÙ\85 %s Ù\85Ù\86 %s Ø¥Ù\84Ù\89 Ù\85Ù\84Ù\81 Ø­Ù\84Ù\82Ø© Ø§Ù\84Ù\85Ù\81اتÙ\8aØ­ %s"
+#~ msgid "Reading index files"
+#~ msgstr "Ù\82راءة Ù\85Ù\84Ù\81ات Ø§Ù\84Ù\81Ù\87رس"
 
-#~ msgid "Cannot install %s to fulfil the dependencies of %s"
-#~ msgstr "%s ਨੂੰ %s ਦੀ ਨਿਰਭਰਤਾ ਪੂਰੀ ਨਾ ਹੋਣ ਕਰਕੇ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
 
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "%s ਨੂੰ %s ਦੀ ਨਿਰਭਰਤਾ ਪੂਰੀ ਨਾ ਹੋਣ ਕਰਕੇ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
+#~ msgid "Reading product from %s"
+#~ msgstr "قراءة المنتج من %s"
 
-#~ msgid "Cannot install %s, because it is conflicting"
-#~ msgstr "%s ਨੂੰ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ, ਕਿਉਂਕਿ ਇਹ ਅਪਵਾਦ ਪੈਦਾ ਕਰਦਾ ਹੈ"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "قراءة قائمة الملفات من %s"
 
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "%s ਨੂੰ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ, ਕਿਉਂਕਿ ਇਸ ਦਾ %s ਨਾਲ ਅਪਵਾਦ ਹੈ।"
+#~ msgid "Reading packages from %s"
+#~ msgstr "قراءة الحزم من %s"
 
-#~ msgid "Child of"
-#~ msgstr "ਚਾਈਲਡ"
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
 
-#~ msgid "Cleaning repository '%s' cache"
-#~ msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਕੈਚੇ ਸਾਫ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
 
-#, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
+#~ msgid "Reading patches index %s"
+#~ msgstr "قراءة فهرس التصحيحات %s"
 
-#, fuzzy
-#~ msgid "Double timeout"
-#~ msgstr "موعد الاستحقاق: %1"
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
 
-#~ msgid "Download (Metalink curl) initialization failed for '%s'"
-#~ msgstr "فشل تهيئة تحميل (Metalink curl) '%s'"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
+
+#~ msgid "Reading packages file"
+#~ msgstr "قراءة ملف الحزم"
+
+#~ msgid "Reading translation: %s"
+#~ msgstr "قراءة الترجمة: %s"
 
+#, fuzzy
 #~ msgid ""
-#~ "Download (metalink curl) error for '%s':\n"
-#~ "Error code: %s\n"
-#~ "Error message: %s\n"
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
 #~ msgstr ""
-#~ "تحميل (metalink curl) خطأ '%s':\n"
-#~ "رمز الخطأ: %s\n"
-#~ "رسالة الخطأ: %s\n"
+#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
+#~ "التثبيت؟"
 
-#~ msgid "Download interrupted at %d%%"
-#~ msgstr "توقف التحميل في %d%%"
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
 
-#~ msgid "Download interrupted by user"
-#~ msgstr "توقف التحميل بواسطة المستخدم"
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
 
 #~ msgid "Downloading %s"
 #~ msgstr "إنزال %s"
 
 #, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ ਫੇਲ੍ਹ: %s।"
 
-#~ msgid ""
-#~ "Error occurred while setting download (metalink curl) options for '%s':"
-#~ msgstr "حدث خطأ أثناء إعداد خيارات التحميل (metalink curl) ل '%s':"
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "ਸਰੀਬੀਆ ਅਤੇ ਮਾਂਟੀਂਗਰੋ"
 
 #, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "ਰਿਪੋਜ਼ਟਰੀ ਤੋਂ ਪੜ੍ਹਨ ਦੌਰਾਨ ਗਲਤੀ:"
-
-#~ msgid "Establishing %s"
-#~ msgstr "%s ਤਿਆਰ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+#~ msgid "Unknown Distribution"
+#~ msgstr "ਅਣਜਾਣ ਲਿਸਟ ਚੋਣ"
 
 #, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "ਪਾਰਸ à¨\95ਰਨ à¨¦à©\8cਰਾਨ à¨«à©\87ਲà©\8dਹ: %s।"
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "ਨਿਰਭਰਤਾ à¨¹à©±à¨²à¨¼ à¨¨à¨¹à©\80à¨\82 à¨\95à©\80ਤà©\80 à¨\9cਾ à¨¸à¨\95à©\80"
 
 #~ msgid ""
 #~ "File %s does not have a checksum.\n"
@@ -5189,18 +5129,39 @@ msgstr ""
 #~ "%s|%s|%s\n"
 #~ "ਕੀ ਫਾਇਲ ਵਰਤਣੀ ਹੈ?"
 
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "ਅਣ-ਟਰਸਟਡ ਕੁੰਜੀ ਲੱਭੀ:\n"
+#~ "%s|%s|%s\n"
+#~ "ਕੁੰਜੀ ਉੱਤੇ ਭਰੋਸਾ ਕਰਨਾ ਹੈ?"
+
+#~ msgid "%s remove failed"
+#~ msgstr "%s ਹਟਾਉਣਾ ਫੇਲ੍ਹ"
+
+#~ msgid "Invalid user name or password."
+#~ msgstr "ਗਲਤ ਯੂਜ਼ਰ ਨਾਂ ਜਾਂ ਪਾਸਵਰਡ ਹੈ।"
+
+#~ msgid "rpm output:"
+#~ msgstr "rpm ਆਉਟਪੁੱਟ:"
+
+#~ msgid "%s install failed"
+#~ msgstr "%s ਇੰਸਟਾਲ ਫੇਲ੍ਹ ਹੈ"
+
+#~ msgid "%s installed ok"
+#~ msgstr "%s ਇੰਸਟਾਲ ਹੋਇਆ"
+
+#~ msgid "%s remove ok"
+#~ msgstr "%s ਹਟਾਇਆ"
+
 #~ msgid "Ignore that %s is already set to install"
 #~ msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਸੈੱਟ ਕੀਤੇ ਉਸ %s ਨੂੰ ਅਣਡਿੱਠਾ ਕਰੋ"
 
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "تجاهل %s القديم في %s"
-
 #~ msgid "Ignore this conflict of %s"
 #~ msgstr "%s ਦਾ ਇਹ ਅਪਵਾਦ ਅਣਡਿੱਠਾ ਕਰੋ"
 
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
-
 #~ msgid "Ignore this requirement just here"
 #~ msgstr "ਇਹ ਲੋੜ ਇੱਥੇ ਹੀ ਅਣਡਿੱਠੀ ਕਰੋ"
 
@@ -5210,213 +5171,252 @@ msgstr ""
 #~ msgid "Install missing resolvables"
 #~ msgstr "ਗੁੰਮ ਹੱਲ-ਯੋਗ ਇੰਸਟਾਲ ਕਰੋ"
 
-#~ msgid "Installing %s"
-#~ msgstr "%s ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+#~ msgid "Keep resolvables"
+#~ msgstr "ਹੱਲ-ਯੋਗ ਰੱਖੋ"
+
+#~ msgid "Unlock these resolvables"
+#~ msgstr "ਇਹ ਹੱਲਯੋਗ ਅਣਲਾਕ ਕਰੋ"
+
+#~ msgid "install %s"
+#~ msgstr "%s ਇੰਸਟਾਲ"
+
+#~ msgid "unlock %s"
+#~ msgstr "%s ਅਣਲਾਕ"
+
+#~ msgid "unlock all resolvables"
+#~ msgstr "ਸਭ ਹੱਲਯੋਗ ਅਣਲਾਕ ਕਰੋ"
+
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "ਫਾਇਲ %1 ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕਦੀ ਹੈ।"
+
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "ਰਿਪੋਜ਼ਟਰੀ ਤੋਂ ਪੜ੍ਹਨ ਦੌਰਾਨ ਗਲਤੀ:"
+
+#~ msgid "Software management is already running."
+#~ msgstr "ਸਾਫਟਵੇਅਰ ਪਰਬੰਧ ਪਹਿਲਾਂ ਹੀ ਚੱਲ ਰਿਹਾ ਹੈ।"
+
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s ਨੂੰ %s ਨਾਲ ਬਦਲਿਆ ਜਾਂਦਾ ਹੈ"
+
+#~ msgid "%s replaced by %s"
+#~ msgstr "%s ਨੂੰ %s ਨਾਲ ਬਦਲਿਆ ਗਿਆ"
+
+#~ msgid "%s will be deleted by the user.\n"
+#~ msgstr "%s ਨੂੰ ਯੂਜ਼ਰ ਵਲੋਂ ਹਟਾਇਆ ਜਾਵੇਗਾ।\n"
+
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "%s ਨੂੰ ਯੂਜ਼ਰ ਵਲੋਂ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾਵੇਗਾ।\n"
 
 #~ msgid "Invalid information"
 #~ msgstr "ਗਲਤ ਜਾਣਕਾਰੀ"
 
-#~ msgid "Invalid user name or password."
-#~ msgstr "ਗਲਤ ਯੂਜ਼ਰ ਨਾਂ ਜਾਂ ਪਾਸਵਰਡ ਹੈ।"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s ਲੋੜੀਦਾ ਹੈ:\n"
+#~ "%s"
+
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s ਦਾ ਅਪਵਾਦ ਹੈ:\n"
+#~ "%s"
+
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "ਇਹ ਹੱਲ-ਕਰਨ-ਯੋਗ ਸਿਸਟਮ ਤੋਂ ਹਟਾਏ ਜਾਣਗੇ।"
+
+#~ msgid "%s depends on %s"
+#~ msgstr "%s %s ਉੱਤੇ ਨਿਰਭਰ ਹੈ"
+
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s ਨਿਰਭਰ ਹੈ: %s"
 
-#~ msgid "Keep resolvables"
-#~ msgstr "ਹੱਲ-ਯà©\8bà¨\97 à¨°à©±à¨\96à©\8b"
+#~ msgid "Child of"
+#~ msgstr "à¨\9aਾà¨\88ਲਡ"
 
-#~ msgid "Make a solver run with ALL possibilities."
-#~ msgstr "ਸੋਲਵਰ ਨੂੰ _ਸਭ_ ਸੰਭਵਾਨਾਵਾਂ ਨਾਲ ਚਲਾਓ"
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "ਇਹ ਲੋੜ ਨੂੰ ਪੂਰੀ ਕਰਨ ਲਈ ਕੋਈ ਸਰੋਤ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ।"
 
-#, fuzzy
-#~ msgid "Make a solver run with best architecture only."
-#~ msgstr "ਸੋਲਵਰ ਨੂੰ _ਸਭ_ ਸੰਭਵਾਨਾਵਾਂ ਨਾਲ ਚਲਾਓ"
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "%s ਨੂੰ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ, ਕਿਉਂਕਿ ਇਸ ਦਾ %s ਨਾਲ ਅਪਵਾਦ ਹੈ।"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "%s ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ ਅਤੇ ਅਣ-ਇੰਸਟਾਲਯੋਗ ਮਾਰਕ ਕੀਤਾ ਗਿਆ"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "ਹੱਲ-ਯੋਗ %s ਨੂੰ ਅਣ-ਇੰਸਟਾਲ ਯੋਗ ਮਾਰਕ ਕਰੋ"
+#~ msgid "%s has missing dependencies"
+#~ msgstr "%s ਲਈ ਨਿਰਭਰਤਾ ਅਧੂਰੀ ਹੈ"
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "ਇਹ ਹੱਲ ਦੀ ਕੋਸ਼ਿਸ਼ ਨੂੰ ਗਲਤ ਮਾਰਕ ਕਰੋ।"
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "%s ਨੂੰ ਨਿਰਭਰਤਾ ਅਧੂਰੀ ਹੋਣ ਕਰਕੇ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
 
 #~ msgid "No need to install %s"
 #~ msgstr "%s ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਲੋੜ ਨਹੀਂ ਹੈ"
 
-#, fuzzy
-#~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
-#~ msgstr ""
-#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
-#~ "التثبيت؟"
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "%s ਨੂੰ %s ਦੀ ਨਿਰਭਰਤਾ ਪੂਰੀ ਨਾ ਹੋਣ ਕਰਕੇ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
 
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "%s ਨੂੰ %s ਦੀ ਨਿਰਭਰਤਾ ਪੂਰੀ ਨਾ ਹੋਣ ਕਰਕੇ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "%s ਨੂੰ ਅਣ-ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾਵੇਗਾ, ਕਿਉਂਕਿ ਇਹ ਹਾਲੇ ਵੀ ਲੋੜੀਦਾ ਹੈ"
 
-#~ msgid "Reading '%s' repository cache"
-#~ msgstr "'%s' ਰਿਪੋਜ਼ਟਰੀ ਕੈਚੇ ਪੜ੍ਹੀ ਜਾ ਰਹੀ ਹੈ"
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "%s ਨੂੰ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ, ਕਿਉਂਕਿ ਇਹ ਅਪਵਾਦ ਪੈਦਾ ਕਰਦਾ ਹੈ"
 
-#~ msgid "Reading filelist from %s"
-#~ msgstr "قراءة قائمة الملفات من %s"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s ਲਈ %s ਲੋੜ ਦੀ ਕਮੀ ਹੈ"
 
-#~ msgid "Reading index files"
-#~ msgstr "قراءة ملفات الفهرس"
+#~ msgid ", Action: "
+#~ msgstr ", ਕਾਰਵਾਈ: "
 
-#~ msgid "Reading packages file"
-#~ msgstr "قراءة ملف الحزم"
+#~ msgid ", Trigger: "
+#~ msgstr ", ਟਿਗਰ: "
 
-#~ msgid "Reading packages from %s"
-#~ msgstr "قراءة الحزم من %s"
+#~ msgid "package"
+#~ msgstr "ਪੈਕੇਜ"
 
-#~ msgid "Reading patch %s"
-#~ msgstr "قراءة التصحيح %s"
+#~ msgid "selection"
+#~ msgstr "ਚੋਣ"
 
-#~ msgid "Reading patches index %s"
-#~ msgstr "قراءة فهرس التصحيحات %s"
+#~ msgid "pattern"
+#~ msgstr "ਪੈਟਰਨ"
 
-#~ msgid "Reading pattern from %s"
-#~ msgstr "قراءة النمط من %s"
+#~ msgid "product"
+#~ msgstr "ਪਰੋਡੱਕਟ"
 
-#~ msgid "Reading product from %s"
-#~ msgstr "قراءة المنتج من %s"
+#~ msgid "patch"
+#~ msgstr "ਪੈਚ"
 
-#~ msgid "Reading repository '%s' cache"
-#~ msgstr "ਰਿਪà©\8bà¨\9c਼à¨\9fਰà©\80 '%s' à¨\95à©\88à¨\9aà©\87 à¨ªà©\9cà©\8dਹà©\80 à¨\9cਾ à¨°à¨¹à©\80 à¨¹à©\88"
+#~ msgid "script"
+#~ msgstr "ਸà¨\95à©\8dਰਿਪà¨\9f"
 
-#~ msgid "Reading selection from %s"
-#~ msgstr "قراءة التحديد من %s"
+#~ msgid "message"
+#~ msgstr "ਸੁਨੇਹਾ"
 
-#~ msgid "Reading translation: %s"
-#~ msgstr "قراءة الترجمة: %s"
+#~ msgid "atom"
+#~ msgstr "ਐਟਮ"
 
-#~ msgid "Requirememt %s cannot be fulfilled."
-#~ msgstr "%s ਲੋੜ ਪੂਰੀ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ ਹੈ।"
+#~ msgid "system"
+#~ msgstr "ਸਿਸਟਮ"
 
 #~ msgid "Resolvable"
 #~ msgstr "ਹੱਲ-ਯੋਗ"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "ਸਰà©\80ਬà©\80à¨\86 à¨\85ਤà©\87 à¨®à¨¾à¨\82à¨\9fà©\80à¨\82à¨\97ਰà©\8b"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "à¨\87ਹ à¨¹à©±à¨² à¨¦à©\80 à¨\95à©\8bਸ਼ਿਸ਼ à¨¨à©\82à©° à¨\97ਲਤ à¨®à¨¾à¨°à¨\95 à¨\95ਰà©\8b।"
 
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "%s ਛੱਡਿਆ ਜਾਂਦਾ ਹੈ: ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "ਹੱਲ-ਯੋਗ %s ਨੂੰ ਅਣ-ਇੰਸਟਾਲ ਯੋਗ ਮਾਰਕ ਕਰੋ"
 
-#~ msgid "Software management is already running."
-#~ msgstr "ਸਾਫਟਵੇਅਰ ਪਰਬੰਧ ਪਹਿਲਾਂ ਹੀ ਚੱਲ ਰਿਹਾ ਹੈ।"
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr "%s ਨੂੰ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਸ਼ੈਡਿਊਲ ਕੀਤਾ ਗਿਆ ਹੈ, ਪਰ ਨਿਰਭਰਤਾ ਸਮੱਸਿਆ ਕਰਕੇ ਸੰਭਵ ਨਹੀਂ ਹੈ।"
 
-#, fuzzy
-#~ msgid "Start the next solver run with doubled timeout."
-#~ msgstr "ਸੋਲਵਰ ਨੂੰ _ਸਭ_ ਸੰਭਵਾਨਾਵਾਂ ਨਾਲ ਚਲਾਓ"
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "%s ਨੂੰ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ, ਕਿਉਂਕਿ ਇਹ ਇਸ ਸਿਸਟਮ ਉੱਤੇ ਲਾਗੂ ਨਹੀਂ ਹੁੰਦਾ ਹੈ।"
 
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
+#~ msgid "Establishing %s"
+#~ msgstr "%s ਤਿਆਰ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
 
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
+#~ msgid "Installing %s"
+#~ msgstr "%s ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "%s ਛੱਡਿਆ ਜਾਂਦਾ ਹੈ: ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ"
 
 #~ msgid "There are no alternative providers of %s installed"
 #~ msgstr "ਇੰਸਟਾਲ %s ਦੇਣ ਵਾਲਾ ਕੋਈ ਬਦਲਵਾਂ ਪਰੋਵਾਈਡਰ ਨਹੀਂ ਹੈ।"
 
-#~ msgid "This would invalidate %s."
-#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
-
-#~ msgid "Tried to import not existant key %s into keyring %s"
-#~ msgstr "حاول استيراد مفتاح غير موجود %s إلى حلقة مفاتيح %s"
-
-#~ msgid "Unable to parse Url authority"
-#~ msgstr "تعذر تحليل سلطة Url"
-
-#~ msgid "Unable to restore all sources."
-#~ msgstr "تعذرت استعادة كافة المصادر."
+#~ msgid "for %s"
+#~ msgstr "%s ਲਈ"
 
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "ਅਣਜਾਣ ਲਿਸਟ ਚੋਣ"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਅਣ-ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਸ਼ੈਡਿਊਲ ਹੈ।"
 
-#~ msgid "Unlock these resolvables"
-#~ msgstr "ਇਹ ਹੱਲਯੋਗ ਅਣਲਾਕ ਕਰੋ"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਉਸ %s ਦਾ ਹੋਰ ਵਰਜਨ  ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ।"
 
 #~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "ਅਣ-ਟਰਸਟਡ ਕੁੰਜੀ ਲੱਭੀ:\n"
-#~ "%s|%s|%s\n"
-#~ "ਕੁੰਜੀ ਉੱਤੇ ਭਰੋਸਾ ਕਰਨਾ ਹੈ?"
-
-#~ msgid "Updating %s to %s"
-#~ msgstr "تحديث %s إلى %s"
-
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
-
-#~ msgid "atom"
-#~ msgstr "ਐਟਮ"
-
-#~ msgid "delete %s"
-#~ msgstr "حذف %s"
+#~ "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਅਣ-ਇੰਸਟਾਲ-ਯੋਗ ਹੈ।  ਹੋਰ ਜਾਣਕਾਰੀ ਲਈ ਖੁਦ ਹੀ ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"
 
-#, fuzzy
-#~ msgid "do not forbid installation of %s"
-#~ msgstr "%s ਨੂੰ ਨਾ ਹਟਾਓ"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਲਾਕ ਹੈ"
 
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ"
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s %s ਦਿੰਦਾ ਹੈ, ਪਰ ਵੇਂਡਰ (%s) ਹੋਰ ਹੈ।"
 
-#~ msgid "for %s"
-#~ msgstr "%s à¨²à¨\88"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "%s à¨¦à©\80 à¨²à©\8bà©\9c à¨¨à©\82à©° %s à¨²à¨\88 à¨ªà©\82ਰਾ à¨¨à¨¹à©\80à¨\82 à¨\95à©\80ਤਾ à¨\9cਾ à¨¸à¨\95ਦਾ à¨¹à©\88"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "لطلب %s لـ %s عند تحديث %s"
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s ਲਾਕ ਹੈ ਅਤੇ ਅਣ-ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ।"
 
 #~ msgid "from %s"
 #~ msgstr "%s ਤੋਂ"
 
-#, fuzzy
-#~ msgid "generally ignore of some dependecies"
-#~ msgstr "ਆਮ ਤੌਰ ਉੱਤੇ ਇਹ ਲੋੜ ਅਣਡਿੱਠੀ ਕਰੋ"
+#~ msgid " Error!"
+#~ msgstr " ਗਲਤੀ!"
 
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "ਨਿਰਭਰਤਾ ਹੱਲ਼ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ"
+#~ msgid " Important!"
+#~ msgstr " ਖਾਸ!"
 
-#~ msgid "install %s"
-#~ msgstr "%s ਇੰਸਟਾਲ"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s %s ਉੱਤੇ ਨਿਰਭਰ ਹੈ"
 
-#~ msgid "message"
-#~ msgstr "ਸੁਨੇਹਾ"
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s %s ਵਲੋਂ ਸਿਫਾਰਸ਼ੀ ਹੈ"
 
-#~ msgid "package"
-#~ msgstr "ਪੈਕੇਜ"
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s ਲਈ %s ਵਲੋਂ ਸੁਝਾਅ ਹੈ"
 
-#~ msgid "patch"
-#~ msgstr "ਪੈਚ"
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s %s ਵਲੋਂ ਇੰਹਾਂਸਡ ਹੈ"
 
-#~ msgid "pattern"
-#~ msgstr "ਪੈਟਰਨ"
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s %s ਦਾ ਸਪਲੀਮੈਂਟ ਹੈ"
 
-#~ msgid "product"
-#~ msgstr "ਪਰੋਡੱਕਟ"
+#~ msgid "%s part of %s"
+#~ msgstr "%s %s ਦਾ ਭਾਗ ਹੈ"
 
-#~ msgid "rpm output:"
-#~ msgstr "rpm ਆਉਟਪੁੱਟ:"
+#~ msgid "Reading '%s' repository cache"
+#~ msgstr "'%s' ਰਿਪੋਜ਼ਟਰੀ ਕੈਚੇ ਪੜ੍ਹੀ ਜਾ ਰਹੀ ਹੈ"
 
-#~ msgid "script"
-#~ msgstr "ਸà¨\95à©\8dਰਿਪà¨\9f"
+#~ msgid "Cleaning repository '%s' cache"
+#~ msgstr "ਰਿਪà©\8bà¨\9c਼à¨\9fਰà©\80 '%s' à¨\95à©\88à¨\9aà©\87 à¨¸à¨¾à¨«à¨¼ à¨\95à©\80ਤà©\80 à¨\9cਾ à¨°à¨¹à©\80 à¨¹à©\88"
 
-#~ msgid "selection"
-#~ msgstr "à¨\9aà©\8bਣ"
+#~ msgid "Reading repository '%s' cache"
+#~ msgstr "ਰਿਪà©\8bà¨\9c਼à¨\9fਰà©\80 '%s' à¨\95à©\88à¨\9aà©\87 à¨ªà©\9cà©\8dਹà©\80 à¨\9cਾ à¨°à¨¹à©\80 à¨¹à©\88"
 
-#~ msgid "system"
-#~ msgstr "ਸਿਸਟਮ"
+#~ msgid "%s will be deleted by another application. (ApplLow/ApplHigh)\n"
+#~ msgstr "%s ਨੂੰ ਹੋਰ ਕਾਰਜ ਵਲੋਂ ਹਟਾਇਆ ਜਾਵੇਗਾ। (ApplLow/ApplHigh)\n"
 
-#~ msgid "unlock %s"
-#~ msgstr "%s à¨\85ਣਲਾà¨\95"
+#~ msgid "Requirememt %s cannot be fulfilled."
+#~ msgstr "%s à¨²à©\8bà©\9c à¨ªà©\82ਰà©\80 à¨¨à¨¹à©\80à¨\82 à¨\95à©\80ਤà©\80 à¨\9cਾ à¨¸à¨\95ਦà©\80 à¨¹à©\88।"
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "ਸਭ ਹੱਲਯੋਗ ਅਣਲਾਕ ਕਰੋ"
+#~ msgid "Make a solver run with ALL possibilities."
+#~ msgstr "ਸੋਲਵਰ ਨੂੰ _ਸਭ_ ਸੰਭਵਾਨਾਵਾਂ ਨਾਲ ਚਲਾਓ"
+
+#, fuzzy
+#~ msgid "Make a solver run with best architecture only."
+#~ msgstr "ਸੋਲਵਰ ਨੂੰ _ਸਭ_ ਸੰਭਵਾਨਾਵਾਂ ਨਾਲ ਚਲਾਓ"
+
+#, fuzzy
+#~ msgid "Start the next solver run with doubled timeout."
+#~ msgstr "ਸੋਲਵਰ ਨੂੰ _ਸਭ_ ਸੰਭਵਾਨਾਵਾਂ ਨਾਲ ਚਲਾਓ"
index d54a680..802db29 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
 # Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
 # This file is distributed under the same license as the package.
 #
+# Mariusz Fik <fisiu@opensuse.org>, 2010, 2011, 2012, 2014, 2015.
+# Przemyslaw Bojczuk <pbojczuk@opensuse.org>, 2013.
 msgid ""
 msgstr ""
 "Project-Id-Version: zypp\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 17:03\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2015-09-28 21:54+0200\n"
+"Last-Translator: Mariusz Fik <fisiu@opensuse.org>\n"
+"Language-Team: Polish <opensuse-pl@opensuse.org>\n"
+"Language: pl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.5\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
+"|| n%100>=20) ? 1 : 2);\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"dostawcy, których nie można zainstalować: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Wyjątek Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Nieprawidłowy parametr zapytania LDAP URL"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" Problem z certyfikatem SSL; proszę sprawdzić, czy certyfikat CA jest "
-"odpowiedni dla \"%s\"."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Nieprawidłowy parametr zapytania LDAP URL '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Nie można sklonować obiektu URL"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Nieprawidłowe odwołanie pustego adresu URL"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Analiza komponentów URL nie powiodła się"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Nie można zainicjować atrybutów muteksu"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Nie można ustawić atrybutu rekurencyjności muteksu"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Nie można zainicjować rekursyjnego muteksu"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Nie można pobrać blokady muteksu."
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Nie można zwolnic blokacy muteksu."
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Dostarcza"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Wymaga wstępnie"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Wymaga"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Konflikty"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Zastępuje"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Zaleca"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Sugeruje"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Ulepsza"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Uzupełnia"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Niepewny typ '%s' dla %u-bajtowej sumy kontrolnej '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -38,787 +115,2108 @@ msgstr " wykonano"
 msgid " execution failed"
 msgstr " wykonanie nie powiodło się"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " nie wykonano w wyniku przerwania"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
 #: zypp/target/TargetImpl.cc:449
 #, c-format, boost-format
 msgid "%s already executed as %s)"
-msgstr "%s jest już wykonany jako %s)"
-
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s jest w konflikcie z %s dostarczonym przez %s"
+msgstr "%s został już wykonany jako %s)"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s nie należy do repozytorium uaktualniania dystrybucji"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " nie wykonano w wyniku przerwania"
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s jest przewidziany dla niższej architektury"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Błąd podczas wysyłania powiadomienia o aktualizacji."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s nie można zainstalować"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Nowy komunikat o aktualizacji"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "Element %s jest dostarczany przez system i nie można go usunąć"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Instalacja przerwana zgodnie z życzeniem."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s dezaktualizuje %s, dostarczony przez %s"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "Niestety w tej wersji libzypp nie zawarto obsługi HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s wymaga %s, lecz to wymagania tego nie można spełnić"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext nie połączony"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(WYGASŁY)"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive: niezainicjowany."
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(nie wygasa)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume:  niezainicjowany."
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(wygasa w ciągu 24 godzin)"
-msgstr[1] "(wygasa w ciągu 24 godzin)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Nie można utworzyć połączenia dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(wygasa w ciągu 24 godzin)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: nie można utworzyć kontekstu libhal"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "abchaski"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: nie można ustanowić połączenia dbus"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "atjin"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
+"Nie można zainicjować kontekstu HAL -- demon hald nie jest uruchomiony?"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "aczoli"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "To nie jest napęd CD-ROM"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "adangme"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "Wystąpił błąd RPM: "
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Dodawanie repozytorium \"%s\""
+msgid "Failed to import public key from file %s: %s"
+msgstr "Nie udało się zaimportować klucza publicznego z pliku %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Wymagana dodatkowa umowa użytkownika"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Usunięcie klucza publicznego nie powiodło się %s: %s"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "Dodatkowe wyjście rpm"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Zmienione pliki konfiguracyjne dla %s:"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "adygejski"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm zapisał %s jako %s, ale nie można było określić różnicy"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "afar"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm zapisał %s jako %s.\n"
+"Oto pierwszych 25 linii różnicy:\n"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistan"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm utworzył %s jako %s, ale nie można było określić różnicy"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "afrihili"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm utworzył %s jako %s.\n"
+"Oto pierwszych 25 linii różnicy:\n"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "afrikaans"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "Dodatkowe wyjście rpm"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "afroazjatyckie (inne)"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "utworzono zapasowy %s"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "ainu"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "Podpis jest OK"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "akan"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Nieznany rodzaj podpisu"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "akadyjski"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "Nie można sprawdzić podpisu"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Wyspy Alandzkie"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "Podpis jest OK, ale klucz nie jest zaufany"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albania"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "Klucz publiczny podpisów nie jest dostępny"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "albański"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "Plik nie istnieje lub nie można sprawdzić podpisu"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "aleucki"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Wykonane zostaną następujące czynności:"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algieria"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "Nie można odczytać katalogu repozytorium '%1%': Dostęp zabroniony"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "języki algonkińskie"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Odczyt katalogu '%s' nie powiódł się"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "języki ałtajskie (inne)"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "Nie można odczytać pliku repozytorium '%1%': Dostęp zabroniony"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Samoa Amerykańskie"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Alias repozytorium nie może rozpoczynać się od kropki."
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "amharski"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Alias usługi nie może rozpoczynać się od kropki."
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-"Do otrzymania pomocy technicznej wymagana jest dodatkowa umowa użytkownika."
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Nie można otworzyć pliku '%s' do zapisu."
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andora"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr "Nieznana usługa '%1%': Usuwanie zbędnego repozytorium usługi '%2%'"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Pod podanymi adresami URL nie znaleziono prawidłowych metadanych."
+msgstr[1] "Pod podanymi adresami URL nie znaleziono prawidłowych metadanych."
+msgstr[2] "Pod podanymi adresami URL nie znaleziono prawidłowych metadanych."
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Nie można stworzyć '%s'"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktyda"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Nie można stworzyć metadanych w katalogu bufora."
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua i Barbuda"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Budowanie pamięci podręcznej repozytorium '%s'"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "języki apaczańskie"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Nie można utworzyć bufora w %s - brak uprawnień zapisu."
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "arabski"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Tworzenie pamięci podręcznej repozytorium nie powiodło się (%d)"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "aragoński"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Nieobsługiwany typ repozytorium"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "aramejski"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Błąd podczas próbu odczytu z '%s'"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "arapaho"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Nieznany błąd podczas odczytu z '%s'"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "araukański"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Dodawanie repozytorium '%s'"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "arawakańskie"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Nieprawidłowa nazwa pliku repozytorium pod adresem '%s'"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentyna"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Usuwanie repozytorium '%s'"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenia"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Nie można określić, gdzie przechowywane jest repozytorium."
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "ormiański"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Nie można usunąć '%s'"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "sztuczne (inne)"
-
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
-
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "assamski"
-
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "asturyjski"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Nie można określić, gdzie przechowywana jest usługa."
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "języki atapaskańskie"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Schemat URL nie zezwala na %s"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australia"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Nieprawidłowe %s komponentu '%s'"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "języki australijskie"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Nieprawidłowe %s komponentu"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austria"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Analiza zapytania nie jest obsługiwana dla tego adresu URL"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "języki malajo-polinezyjskie"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Schemat URL to wymagany komponent"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:830
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Wymagane uwierzytelnienie dla \"%s\""
+msgid "Invalid Url scheme '%s'"
+msgstr "Nieprawidłowy schemat URL '%s'"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "awarski"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Schemat URL nie zezwala na nazwę użytkownika"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "awestyjski"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Schemat URL nie zezwala na hasło"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "awadhi"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Schemat URL wymaga komponentu hosta"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "ajmara"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Schemat URL nie zezwala na komponent hosta"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbejdżan"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Nieprawidłowy komponent hosta '%s'"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "azerbejdżański"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Schemat URL nie zezwala na port"
 
-#: zypp/media/MediaException.cc:47
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Błędna nazwa pliku: %s"
+msgid "Invalid port component '%s'"
+msgstr "Nieprawidłowy komponent portu '%s'"
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Błędny punkt dołączenia nośnika"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Schemat URL wymaga ścieżki"
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamy"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Względna ścieżka nie jest dozwolona, jeśli usługa istnieje"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrajn"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Zakodowany łańcuch znaków zawiera bajt NUL"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "balijski"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Nieprawidłowy znak parametru podziału tablicy"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "bałtyckie"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Nieprawidłowy znak parametru podziału mapy"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "beludżyjski"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Nieprawidłowy znak parametru połączenia tablicy"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "bambara"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Nie można otworzyć pty  (%s)."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "języki bamileke"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Nie można otworzyć potoku (%s)."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "banda"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Nie można wykonać chroot dla \"%s\" (%s)."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesz"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+"Nie można wykonać chdir dla '%s' w zmienionym katalogu głównym chroot "
+"'%s' (%s)."
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "bantu (inne)"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Nie można wykonać chdir dla '%s' (%s)."
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Nie można wykonać '%s' (%s)."
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "basa"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Nie można wykonać fork (%s)."
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "baszkirski"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Polecenie zakończone statusem %d."
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "baskijski"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Polecenie zakończone przez sygnał %d (%s)."
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "batackie (Indonezja)"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Polecenie zakończone nieznanym błędem."
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "bedża"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(nie wygasa)"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Białoruś"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(wygasła)"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "białoruski"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(wygasa w ciągu 24 godzin)"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgia"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(wygasa w ciągu 24 godzin)"
+msgstr[1] "(wygasa w ciągu 24 godzin)"
+msgstr[2] "(wygasa w ciągu 24 godzin)"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "nieznany"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "bemba"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "niewspierany"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "bengalski"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Poziom 1"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Poziom 2"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "berberskie (inne)"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Poziom 3"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermudy"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Wymagana dodatkowa umowa użytkownika"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "bhodżpuri"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "nieprawidłowy"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Nieokreślony poziom wsparcia"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "biharski"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Producent nie zapewnia wsparcia."
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "bikolskie"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Określenie problemu oznacza, że pomoc techniczna obejmuje informację "
+"związaną z kompatybilnością, pomocą przy instalacji,  użytkowaniem, bieżącym "
+"utrzymaniem oraz podstawowym rozwiązywaniem problemów. Pomoc techniczna na "
+"poziomie 1 nie obejmuje naprawy błędów produktu."
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "bini"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Wyizolowanie problemu oznacza, że pomoc techniczna obejmuje odtworzenie "
+"problemów użytkownika, oddzielenie ich i dostarczenie rozwiązania dla "
+"problemów nie objętych pomocą techniczną na poziomie 1."
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "bislama"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Rozwiązywanie problemu oznacza, że pomoc techniczna obejmuje rozwiązywanie "
+"złożonych problemów, które zidentyfikowane w ramach wsparcia technicznego na "
+"poziomie 2 wymagają zaangażowania rozwiązań inżynieryjnych."
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "blin"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+"Do otrzymania pomocy technicznej wymagana jest dodatkowa umowa użytkownika."
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Boliwia"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Nieznana opcja wsparcia. Brak opisu."
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Nieznane państwo: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Bez kodu"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andora"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Zjednoczone Emiraty Arabskie"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistan"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua i Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albania"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenia"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Antyle Holenderskie"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktyda"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentyna"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Samoa Amerykańskie"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austria"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australia"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Wyspy Alandzkie"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbejdżan"
 
 #. :AZE:031:
 #: zypp/CountryCode.cc:175
 msgid "Bosnia and Herzegovina"
 msgstr "Bośnia i Hercegowina"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "bośniacki"
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesz"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgia"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bułgaria"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrajn"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermudy"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Boliwia"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brazylia"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamy"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Wyspa Bouveta"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Białoruś"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Wyspy Kokosowe"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Republika Środkowoafrykańska"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Szwajcaria"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Wybrzeże Kości Słoniowej"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Wyspy Cooka"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Chiny"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolumbia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Kostaryka"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Wyspy Zielonego Przylądka"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Wyspa Bożego Narodzenia"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Cypr"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Czechy"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Niemcy"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Dżibuti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Dania"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominika"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikana"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algieria"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ekwador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonia"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egipt"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Sahara Zachodnia"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Erytrea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Hiszpania"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopia"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finlandia"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidżi"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falklandy (Malwiny)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Mikronezja"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Wyspy Owcze"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Francja"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Francja metropolitalna"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Zjednoczone Królestwo"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Gruzja"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Gujana Francuska"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grenlandia"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Gwinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Gwadelupa"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Gwinea Równikowa"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grecja"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Georgia Południowa i Sandwich Południowy"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Gwatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Gwinea Bissau"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Gujana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hongkong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Wyspy Heard i McDonalda"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Chorwacja"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Węgry"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonezja"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irlandia"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Izrael"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Wyspa Man"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Indie"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Brytyjskie Terytorium Oceanu Indyjskiego"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islandia"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Włochy"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamajka"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordania"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japonia"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenia"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgistan"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodża"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Komory"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts i Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Korea Północna"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Korea Południowa"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwejt"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Kajmany"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazachstan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Laotańska Republika Ludowo-Demokratyczna"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Liban"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litwa"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luksemburg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Łotwa"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libia"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Maroko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monako"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Mołdawia"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Czarnogóra"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Saint Martin"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Wyspy Marshalla"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedonia"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Birma"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolia"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Makao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Mariany Północne"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martynika"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauretania"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Malediwy"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Meksyk"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malezja"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambik"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nowa Kaledonia"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolk"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nikaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Holandia"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norwegia"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nowa Zelandia"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Polinezja Francuska"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua - Nowa Gwinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipiny"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polska"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint-Pierre i Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Portoryko"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Autonomia Palestyńska"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugalia"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paragwaj"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Katar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Rumunia"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbia"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Federacja Rosyjska"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Arabia Saudyjska"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Wyspy Salomona"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seszele"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Szwecja"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Święta Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Słowenia"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard i Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Słowacja"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Wyspy Św. Tomasza i Książęca"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "Salwador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Syria"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Suazi"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Wyspy Turks i Caicos"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Czad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Francuskie Terytoria Południowe"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tajlandia"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadżykistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunezja"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Timor Wschodni"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turcja"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trynidad i Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Tajwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzania"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraina"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Dalekie Wyspy Mniejsze Stanów Zjednoczonych"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Stany Zjednoczone Ameryki Północnej"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Urugwaj"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Watykan"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Saint Vincent i Grenadyny"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Wenezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Brytyjskie Wyspy Dziewicze"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Amerykańskie Wyspy Dziewicze"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Wietnam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Republika Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis i Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Majotta"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Republika Południowej Afryki"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Nieznany język: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "afar"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "abchaski"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "aceh"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "aczoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "adygejski"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "afroazjatyckie (inne)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "afrihili"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "afrikaans"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "ainu"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "akan"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "akadyjski"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "albański"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "aleucki"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "języki algonkińskie"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "ałtajski południowy"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "amharski"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "staroangielski (ok. 450 - 1100)"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "języki apaczańskie"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Wyspa Bouveta"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "arabski"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "bradż"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "aramejski"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brazylia"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "aragoński"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "bretoński"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "ormiański"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Brytyjskie Terytorium Oceanu Indyjskiego"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "araukański"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Brytyjskie Wyspy Dziewicze"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "arapaho"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "sztuczne (inne)"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "bugijski"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "arawakańskie"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Budowanie pamięci podręcznej repozytorium \"%s\""
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "assamski"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bułgaria"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "asturyjski"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "bułgarski"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "języki atapaskańskie"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "buriacki"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "języki australijskie"
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "awarski"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "birmański"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "awestyjski"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "awadhi"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "kadoskie"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "ajmara"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodża"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "azerbejdżański"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "banda"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Nie można utworzyć \"sat-pool\""
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "języki bamileke"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Nie można pobrać blokady muteksu."
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "baszkirski"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Nie można wykonać polecenia chdir dla elementu %s (%s)."
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "beludżyjski"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-"Nie można wykonać polecenia chdir dla elementu %s w zmienionym katalogu "
-"głównym chroot %s (%s)."
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "bambara"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Nie można wykonać chroot dla \"%s\" (%s)."
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "balijski"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Nie można utworzyć %s"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "baskijski"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Nie można utworzyć pamięci podręcznej w %s - brak uprawnień do zapisu."
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "basa"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Nie można utworzyć katalogu pamięci podręcznej metadanych."
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "bałtyckie"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Nie można usunąć \"%s\""
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "bedża"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Nie można wykonać \"%s\" (%s)."
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "białoruski"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Nie można określić, gdzie przechowywane jest repozytorium."
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "bemba"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Nie można określić, gdzie przechowywana jest usługa."
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "bengalski"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Nie można wykonać fork (%s)."
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "berberskie (inne)"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Nie można zainicjować atrybutów muteksu"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "bhodżpuri"
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "biharski"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Nie można zainicjować rekursyjnego muteksu"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "bikolskie"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Nie można otworzyć pliku \"%s\" do zapisu."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "bini"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Nie można otworzyć pliku blokady : %s"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "bislama"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Nie można otworzyć potoku (%s)."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "siksika"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Nie można otworzyć pty  (%s)."
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "bantu (inne)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Nie można dostarczyć pliku %s z repozytorium %s."
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "bośniacki"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Nie można zwolnic blokacy muteksu."
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "bradż"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Nie można ustawić atrybutu rekurencyjności muteksu"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "bretoński"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "batackie (Indonezja)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Nie można wysunąć żadnego nośnika"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "buriacki"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Nie można wysunąć nośnika \"%s\""
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "bugijski"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Nie można znaleźć dostępnego urządzenia pętli do zamontowania pliku obrazu z "
-"\"%s\""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "bułgarski"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "Nie można odczytać katalogu repozytorium %1%: odmowa dostępu"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "birmański"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "Nie można odczytać pliku repozytorium %1%: odmowa dostępu"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "blin"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Nie można zapisać pliku \"%s\""
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "kadoskie"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Wyspy Zielonego Przylądka"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Indian środkowoamerykańskich (inne)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -835,11 +2233,6 @@ msgstr "kataloński"
 msgid "Caucasian (Other)"
 msgstr "kaukaskie (inne)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Kajmany"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -850,166 +2243,80 @@ msgstr "cebuano"
 msgid "Celtic (Other)"
 msgstr "celtyckie (inne)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Republika Środkowoafrykańska"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Indian środkowoamerykańskich (inne)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Czad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "czagatajski"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "języki chamickie"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Zmienione pliki konfiguracyjne dla %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "czeczeński"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "czerokeski"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "czejeński"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "czibczańskie"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "chichewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "czeczeński"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Chiny"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "czagatajski"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "chiński"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "Dialekt czinucki"
-
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "czipewiański"
-
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "choctaw"
-
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Wyspa Bożego Narodzenia"
-
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "starocerkiewnosłowiański"
-
 #. language code: chk
 #: zypp/LanguageCode.cc:327
 msgid "Chuukese"
 msgstr "czukocki"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "czuwaski"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "newari klasyczny"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Wyspy Kokosowe"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "maryjski"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolumbia"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "Dialekt czinucki"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Polecenie zakończone statusem %d."
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "choctaw"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Polecenie zakończone nieznanym błędem."
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "czipewiański"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Polecenie zakończone przez sygnał %d (%s)."
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "czerokeski"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Komory"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "starocerkiewnosłowiański"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Jest w konflikcie z"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "czuwaski"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "czejeński"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Wyspy Cooka"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "języki chamickie"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1026,31 +2333,6 @@ msgstr "kornwalijski"
 msgid "Corsican"
 msgstr "korsykański"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Kostaryka"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Wybrzeże Kości Słoniowej"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Kreolskie i pidżyny różne"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1066,46 +2348,36 @@ msgstr "Kreolskie i pidżyny oparte na francuskim (inne)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Kreolskie i pidżyny oparte na portugalskim (inne)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "cree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "tatarski (krymski)"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Chorwacja"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "chorwacki"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Kreolskie i pidżyny różne"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "kaszubski"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "kuszyckie (inne)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Cypr"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "czeski"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Czechy"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1131,10 +2403,15 @@ msgstr "dajackie"
 msgid "Delaware"
 msgstr "delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Dania"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "niewolnicze (athapaskańskie)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1146,74 +2423,36 @@ msgstr "dinka"
 msgid "Divehi"
 msgstr "malediwski"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Dżibuti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "dogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominika"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikana"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Błąd pobierania (curl) dla \"%s\":\n"
-"Kod błędu: %s\n"
-"Komunikat błędu: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Inicjalizacja pobierania (curl) dla \"%s\" zakończona niepowodzeniem"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "drawidyjskie (inne)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "łużycki dolny"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Niepewny typ \"%s\" dla %u-bajtowej sumy kontrolnej \"%s\""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "średnioholenderski (ok. 1050 - 1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "holenderski"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "średnioholenderski (ok. 1050 - 1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1224,26 +2463,11 @@ msgstr "dyula"
 msgid "Dzongkha"
 msgstr "dzongka"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Timor Wschodni"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ekwador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egipt"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1254,109 +2478,31 @@ msgstr "egipski (starożytny)"
 msgid "Ekajuk"
 msgstr "ekajuk"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "Salwador"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "elamicki"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Pusty element docelowy w adresie URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Pusty system plików w adresie URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Pusta nazwa hosta w adresie URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Zakodowany łańcuch znaków zawiera bajt NUL"
-
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "angielski"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "średnioangielski (1100 - 1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "staroangielski (ok. 450 - 1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Ulepsza"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Gwinea Równikowa"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Erytrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "Napotkano błąd podczas ustawiania opcji pobierania (curl) dla \"%s\":"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Błąd podczas wysyłania powiadomienia o aktualizacji."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Błąd podczas próbu odczytu z \"%s\""
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "elamicki"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "erzya"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "angielski"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "średnioangielski (1100 - 1500)"
 
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonia"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "estoński"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopia"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1367,256 +2513,31 @@ msgstr "ewe"
 msgid "Ewondo"
 msgstr "ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Tworzenie pamięci podręcznej repozytorium nie powiodło się (%d)"
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Usunięcie klucza nie powiodło się."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Nie udało się zaimportować klucza publicznego z pliku %s: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Montowanie %s w %s zakończone niepowodzeniem"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Nie można dostarczyć pakietu %s. Czy ponowić próbę pobrania?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Odczyt katalogu \"%s\" nie powiódł się"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Usunięcie klucza publicznego nie powiodło się %s: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Odmontowywanie %s zakończone niepowodzeniem"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandy (Malwiny)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "fan"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "fante"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Wyspy Owcze"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
-msgstr "farerski"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Mikronezja"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidżi"
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "fidżyjski"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Plik %1%\n"
-"  z instalacji\n"
-"     %2%\n"
-"  jest w konflikcie z plikiem\n"
-"     %3%\n"
-"  z instalacji\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Plik %1%\n"
-"  z instalacji\n"
-"     %2%\n"
-"  jest w konflikcie z plikiem\n"
-"     %3%\n"
-"  z pakietu\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Plik %1%\n"
-"  z instalacji\n"
-"     %2%\n"
-"  jest w konflikcie z plikiem z instalacji\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Plik %1%\n"
-"  z instalacji\n"
-"     %2%\n"
-"  jest w konflikcie z plikiem z pakietu\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Plik %1%\n"
-"  z pakietu\n"
-"     %2%\n"
-"  jest w konflikcie z plikiem\n"
-"     %3%\n"
-"  z instalacji\n"
-"     %4%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Plik %1%\n"
-"  z pakietu\n"
-"     %2%\n"
-"  jest w konflikcie z plikiem\n"
-"     %3%\n"
-"  z pakietu\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Plik %1%\n"
-"  z pakietu\n"
-"     %2%\n"
-"  jest w konflikcie z plikiem z instalacji\n"
-"     %3%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Plik %1%\n"
-"  z pakietu\n"
-"     %2%\n"
-"  jest w konflikcie z plikiem z pakietu\n"
-"     %3%"
+msgstr "farerski"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Pliku \"%s\" nie znaleziono na nośniku \"%s\""
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "fante"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "Plik nie istnieje lub nie można sprawdzić podpisu"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "fidżyjski"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "filipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finlandia"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1627,40 +2548,16 @@ msgstr "fiński"
 msgid "Finno-Ugrian (Other)"
 msgstr "ugrofińskie (inne)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Wykonane zostaną następujące czynności:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Francja"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "francuski"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Gujana Francuska"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Polinezja Francuska"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Francuskie Terytoria Południowe"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1676,46 +2573,21 @@ msgstr "starofrancuski (842 - ok. 1400)"
 msgid "Frisian"
 msgstr "fryzyjski"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "friulski"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "fulani"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "friulski"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "gaelicki (szkocki)"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "galicyjski"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1726,15 +2598,10 @@ msgstr "gayo"
 msgid "Gbaya"
 msgstr "gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "ge'ez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Gruzja"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "germańskie (inne)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1746,6 +2613,36 @@ msgstr "gruziński"
 msgid "German"
 msgstr "niemiecki"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "ge'ez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "gilbertański"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "gaelicki (szkocki)"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "irlandzki"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "galicyjski"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "mański"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1756,30 +2653,6 @@ msgstr "średniowysokoniemiecki (ok. 1050 - 1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "starowysokoniemiecki (ok. 750 - 1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "germańskie (inne)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Niemcy"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "gilbertański"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1800,11 +2673,6 @@ msgstr "gocki"
 msgid "Grebo"
 msgstr "grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grecja"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1815,61 +2683,16 @@ msgstr "grecki, starożytny (do 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "grecki, współczesny (1453 -)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grenlandia"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Gwadelupa"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Gwatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Gwinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Gwinea Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "gudżarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Gujana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1880,52 +2703,21 @@ msgstr "gwich'in"
 msgid "Haida"
 msgstr "haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "haiti"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Wyjątek Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext nie połączony"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive: niezainicjowany."
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume:  niezainicjowany."
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "hausański"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Czy włączono wszystkie wymagane repozytoria?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "hawajski"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Wyspy Heard i McDonalda"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1951,16 +2743,6 @@ msgstr "himaczali"
 msgid "Hindi"
 msgstr "hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "hiri motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Historia:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1971,31 +2753,21 @@ msgstr "hetycki"
 msgid "Hmong"
 msgstr "hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Watykan"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "hiri motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hongkong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "łużycki górny"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "węgierski"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Węgry"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2006,10 +2778,10 @@ msgstr "hupa"
 msgid "Iban"
 msgstr "iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islandia"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2021,250 +2793,105 @@ msgstr "islandzki"
 msgid "Ido"
 msgstr "ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "sichuan yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "interlingwe"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "ilokano"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "inar sami"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Indie"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "interlingwa (międzynarodowy język pomocniczy)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "indyjskie, inne"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "indo-europejskie, inne"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonezja"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "indonezyjski"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "indo-europejskie, inne"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "inguski"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Instalacja przerwana zgodnie z życzeniem."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "interlingwa (międzynarodowy język pomocniczy)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "interlingwe"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "inuktitut"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "inupiak"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Nieprawidłowe %s komponentu"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Nieprawidłowe %s komponentu \"%s\""
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Nieprawidłowy parametr zapytania LDAP URL \"%s\""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Nieprawidłowy parametr zapytania LDAP URL"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Nieprawidłowy schemat URL \"%s\""
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Nieprawidłowe odwołanie pustego adresu URL"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Nieprawidłowy komponent hosta \"%s\""
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Nieprawidłowy znak parametru połączenia tablicy"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Nieprawidłowy znak parametru podziału tablicy"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Nieprawidłowy znak parametru podziału mapy"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Nieprawidłowy komponent portu \"%s\""
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Nieprawidłowe wyrażenie regularne \"%s\""
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Nieprawidłowe wyrażenie regularne \"%s\": regcomp zwróciło %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Nieprawidłowa nazwa pliku repozytorium pod adresem \"%s\""
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "irańskie (inne)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irlandia"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "irlandzki"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "średnioirlandzki (900 - 1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "staroirlandzki (do 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "języki irokeskie"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Wyspa Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Izrael"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "włoski"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Włochy"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamajka"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "jawajski"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japonia"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "japoński"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "jawajski"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordania"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "judeo-perski"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "udeo-arabski"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "judeo-perski"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "kabardyjski"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "karakałpacki"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2281,11 +2908,6 @@ msgstr "kachin"
 msgid "Kalaallisut"
 msgstr "kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "kalmyk"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2296,21 +2918,6 @@ msgstr "kamba"
 msgid "Kannada"
 msgstr "kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "karakałpacki"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "karaczajsko-bałkarski"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2318,13 +2925,13 @@ msgstr "kareński"
 
 #. language code: kas ks
 #: zypp/LanguageCode.cc:603
-msgid "Kashmiri"
-msgstr "kaszmirski"
-
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "kaszubski"
+msgid "Kashmiri"
+msgstr "kaszmirski"
+
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2336,31 +2943,26 @@ msgstr "kawi"
 msgid "Kazakh"
 msgstr "kazachski"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazachstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenia"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "kabardyjski"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "khazi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "khmerski"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "khoisan (inne)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "khmerski"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2371,11 +2973,6 @@ msgstr "chotański"
 msgid "Kikuyu"
 msgstr "kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2386,15 +2983,15 @@ msgstr "kinjarwanda"
 msgid "Kirghiz"
 msgstr "kirgiski"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "klingoński"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2406,11 +3003,6 @@ msgstr "komi"
 msgid "Kongo"
 msgstr "kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2426,11 +3018,21 @@ msgstr "keresański"
 msgid "Kpelle"
 msgstr "kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "karaczajsko-bałkarski"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "kuruch"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2446,26 +3048,11 @@ msgstr "kumycki"
 msgid "Kurdish"
 msgstr "kurdyjski"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "kuruch"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwejt"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgistan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2486,68 +3073,21 @@ msgstr "lamba"
 msgid "Lao"
 msgstr "laotański"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Laotańska Republika Ludowo-Demokratyczna"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "łaciński"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Łotwa"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "łotewski"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Liban"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Poziom 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Poziom 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Poziom 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "lezgiński"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libia"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2558,61 +3098,46 @@ msgstr "limburgan"
 msgid "Lingala"
 msgstr "lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litwa"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "litewski"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Położenie \"%s\" jest tymczasowo niedostępne."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "dolny niemiecki"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "łużycki dolny"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "luba-katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "luksemburski"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "luba-lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "luba-katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "lulu sami"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2628,227 +3153,90 @@ msgstr "luo (Kenia i Tanzania)"
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luksemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "luksemburski"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Makao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedonia"
-
-#. language code: mac mkd mk
-#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
-msgid "Macedonian"
-msgstr "macedoński"
-
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
-#. language code: mad
-#: zypp/LanguageCode.cc:699
-msgid "Madurese"
-msgstr "madurski"
-
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
-msgstr "magahi"
-
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
-msgstr "maithili"
-
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr "makasarski"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "malgaski"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "malajski"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "malajalam"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malezja"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Malediwy"
+#. language code: mac mkd mk
+#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
+msgid "Macedonian"
+msgstr "macedoński"
 
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Błędny adres URI"
+#. language code: mad
+#: zypp/LanguageCode.cc:699
+msgid "Madurese"
+msgstr "madurski"
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
+msgstr "magahi"
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "marshall"
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "maltański"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
+msgstr "maithili"
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "mandżurski"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
+msgstr "makasarski"
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "mandarski"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "malajalam"
 
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "języki manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "mański"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "maoryjski"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "języki malajo-polinezyjskie"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "maryjski"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Wyspy Marshalla"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "marshall"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martynika"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "masajski"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauretania"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "języki majskie"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Majotta"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "Źródło nośników \"%s\" nie zawiera żądanego nośnika"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Nośnik \"%s\" jest używany przez inną instancję"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "malajski"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Nośnik niedołączony"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Nieotwarty nośnik podczas próby wykonania akcji \"%s\"."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "mandarski"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Francja metropolitalna"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Meksyk"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "średnio irlandzki (900 - 1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2860,86 +3248,61 @@ msgstr "micmac"
 msgid "Minangkabau"
 msgstr "minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "mirandyjski"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "języki różne"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "mon-khmerskie (inne)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "malgaski"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "maltański"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "mandżurski"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "języki manobo"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "mołdawski"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Mołdawia"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "mon-khmerskie (inne)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monako"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolia"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "mongolski"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Czarnogóra"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Maroko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambik"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2950,210 +3313,141 @@ msgstr "Wielojęzyczność"
 msgid "Munda languages"
 msgstr "języki munda"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Birma"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "mirandyjski"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "języki majskie"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Indian północnoamerykańskich (inne)"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "neapolitański"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "navaho"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "ndebele, północny"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "ndebele, południowy"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "ndebele, północny"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "neapolitański"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "nepalski Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "dolny niemiecki"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "nepalski"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Holandia"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Antyle Holenderskie"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nowa Kaledonia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nowa Zelandia"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Nowy komunikat o aktualizacji"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "nepalski Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nikaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "niger-kordofańskie (inne)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "nilo-saharyjskie (inne)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "niueński"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Bez kodu"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "norweski (Nynorsk)"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Brak adresu URL w repozytorium."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "norweski (Bokmål)"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolk"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "staronordyjski"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Indian północnoamerykańskich (inne)"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Korea Północna"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Mariany Północne"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "lapoński północny"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "sotho północny"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norwegia"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "norweski"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "norweski (Bokmål)"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "norweski (Nynorsk)"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "To nie jest napęd CD-ROM"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "sotho północny"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "języki nubijskie"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "newari klasyczny"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3174,10 +3468,6 @@ msgstr "njoro"
 msgid "Nzima"
 msgstr "nzema"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Zastąpione przestarzałe"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3188,20 +3478,6 @@ msgstr "okcytańskie (po 1500)"
 msgid "Ojibwa"
 msgstr "odżibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Wymagany jeden lub oba atrybuty \"%s\" i \"%s\"."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Operacja nieobsługiwana przez nośnik"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3222,66 +3498,36 @@ msgstr "osage"
 msgid "Ossetian"
 msgstr "osetyński"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "turecki, osmańskie (1500 - 1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
-msgstr "języki otomiańskie"
-
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Pakiet %s wygląda na uszkodzony podczas przesyłania. Czy ponowić próbę "
-"pobrania?"
-
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr "pahlawi"
-
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "palauański"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Autonomia Palestyńska"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "pali"
-
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "pampangan"
+msgstr "języki otomańskie"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "papuaskie (inne)"
 
 #. language code: pag
 #: zypp/LanguageCode.cc:847
 msgid "Pangasinan"
 msgstr "pangasinan"
 
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr "pahlawi"
+
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "pampangan"
+
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3292,94 +3538,45 @@ msgstr "pandżabski"
 msgid "Papiamento"
 msgstr "papiamento"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua - Nowa Gwinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "papuaskie (inne)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paragwaj"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Ścieżka \"%s\" na nośniku \"%s\" nie prowadzi do katalogu."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Ścieżka \"%s\" na nośniku \"%s\" nie prowadzi do pliku."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Dostęp do \"%s\" zabroniony."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "perski"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "palauański"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "staroperski (ok. 600 - 400 p.n.e.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "perski"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "filipińskie, inne"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipiny"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "fenicki"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Zainstaluj najpierw pakiet lsof."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "ponapeański"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polska"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "polski"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugalia"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "ponapeański"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3391,87 +3588,21 @@ msgstr "portugalski"
 msgid "Prakrit Languages"
 msgstr "Prakryty"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Wymagania wstępne"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Określenie problemu oznacza, że pomoc techniczna obejmuje informację "
-"związaną z kompatybilnością, pomocą przy instalacji,  użytkowaniem, bieżącym "
-"utrzymaniem oraz podstawowym rozwiązywaniem problemów. Pomoc techniczna na "
-"poziomie 1 nie obejmuje naprawy błędów produktu."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Wyizolowanie problemu oznacza, że pomoc techniczna obejmuje odtworzenie "
-"problemów użytkownika, odzdzielenie ich i dostarczenie rozwiązania dla "
-"problemów nie objętych pomocą techniczną na poziomie 1."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Rozwiązywanie problemu oznacza, że pomoc techniczna obejmuje rozwiązywanie "
-"złożonych problemów, które zidentyfikowane w ramach wsparcia technicznego na "
-"poziomie 2 wymagają zaangażowania rozwiązań inżynieryjnych."
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "staroprowansalski (do 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Dostarcza"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Portoryko"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "pusztu"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Katar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "keczua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Analiza zapytania nie jest obsługiwana dla tego adresu URL"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "Wystąpił błąd RPM: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "retoromański"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3487,134 +3618,35 @@ msgstr "rapanuański"
 msgid "Rarotongan"
 msgstr "rarotongański"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Zaleca"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Względna ścieżka nie jest dozwolona, jeśli usługa istnieje"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Usuwanie repozytorium \"%s\""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Alias repozytorium nie może rozpoczynać się od kropki."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Brak wymaganego atrybutu \"%s\"."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Wymaga"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
-
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "romańskie (inne)"
-
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Rumunia"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "rumuński"
-
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "cygański / romani"
-
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "rundi"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "rosyjski"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Federacja Rosyjska"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Święta Helena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts i Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
-
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint Martin"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint-Pierre i Miquelon"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent i Grenadyny"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "języki saliskie"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "samarytański"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
+msgstr "romańskie (inne)"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "języki sami (inne)"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "retoromański"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "cygański / romani"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "samoański"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "rumuński"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "rundi"
+
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "rosyjski"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3626,41 +3658,61 @@ msgstr "sandawe"
 msgid "Sango"
 msgstr "sango"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "jakucki"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Indian południowoamerykańskich (inne)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "języki saliskie"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "samarytański"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "sanskrycki"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Wyspy Św. Tomasza i Książęca"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "sardyńskie"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "serbski"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Arabia Saudyjska"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "sycylyjski"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "szkocki"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "chorwacki"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3671,360 +3723,186 @@ msgstr "selkupski"
 msgid "Semitic (Other)"
 msgstr "semickie (inne)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbia"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "serbski"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "serer"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Alias usługi nie może rozpoczynać się od kropki."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "Wtyczka usługi nie obsługuje zmiany atrybutu."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "staro irlandzki (do 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seszele"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "języki migowe"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "szan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "szona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "sichuan yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "sycylyjski"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "języki migowe"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "Nie można sprawdzić podpisu"
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr "syngaleski"
 
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Nie znaleziono pliku sygnatury %s"
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+msgid "Siouan Languages"
+msgstr "języki Siuksów"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "Podpis jest OK"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "chińsko-tybetańskie (inne)"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "Podpis jest OK, ale klucz nie jest zaufany"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
+msgstr "słowiańskie (inne)"
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "Weryfikacja podpisu nie powiodła się"
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "słowacki"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "Klucz publiczny podpisów nie jest dostępny"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "słoweński"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "siksika"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "lapoński południowy"
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "sindhi"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "lapoński północny"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "języki sami (inne)"
 
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
-msgstr "syngaleski"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "lulu sami"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "chińsko-tybetańskie (inne)"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "inar sami"
 
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-msgid "Siouan Languages"
-msgstr "języki Siuksów"
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "samoański"
 
 #. language code: sms
 #: zypp/LanguageCode.cc:973
 msgid "Skolt Sami"
 msgstr "skolt sami"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "niewolnicze (athapaskańskie)"
-
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr "słowiańskie (inne)"
-
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "słowacki"
-
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Słowacja"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "szona"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Słowenia"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "sindhi"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "słoweński"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "soninke"
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "sogdyjski"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Wyspy Salomona"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "somalijski"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "songhai"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "języki łużyckie"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Niestety w tej wersji libzypp nie zawarto obsługi HAL."
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "sotho południowy"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Republika Południowej Afryki"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Indian południowoamerykańskich (inne)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Georgia Południowa i Sandwich Południowy"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Korea Południowa"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "ałtajski południowy"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "lapoński południowy"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Hiszpania"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "hiszpański"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "sardyńskie"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Sugeruje"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "nilo-saharyjskie (inne)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "swati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "sumeryjski"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "sundajski"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Uzupełnia"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard i Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "sumeryjski"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "suahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "swati"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Suazi"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Szwecja"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "szwedzki"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Szwajcaria"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Syria"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "syryjski"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Wyjątek systemowy \"%s\" na nośniku \"%s\"."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Zarządzanie systemem jest zablokowane przez program o identyfikatorze pid %d "
-"(%s).\n"
-"Proszę zamknąć ten program i spróbować ponownie."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4035,36 +3913,11 @@ msgstr "tahitański"
 msgid "Tai (Other)"
 msgstr "tajskie (inne)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Tajwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "tadżycki"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadżykistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "tamaszek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "tamilski"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4075,6 +3928,11 @@ msgstr "tatarski"
 msgid "Telugu"
 msgstr "telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "teme"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4085,32 +3943,20 @@ msgstr "tereno"
 msgid "Tetum"
 msgstr "tetum"
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr "tajski"
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tajlandia"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Nieokreślony poziom wsparcia"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Producent nie zapewnia wsparcia."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "tadżycki"
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Inny program wykonuje już tę czynność."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "tagalog"
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "To żądanie uszkodzi system!"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "tajski"
 
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
@@ -4127,46 +3973,25 @@ msgstr "tigre"
 msgid "Tigrinya"
 msgstr "tigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Przekroczono limit czasu podczas dostępu do \"%s\"."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "teme"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "klingoński"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "neomelanezyjski"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "tamaszek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4178,103 +4003,66 @@ msgstr "tongański (Niasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "tangański (wyspy Tonga)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Próbowano zaimportować nieistniejący klucz %s do bazy kluczy %s"
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trynidad i Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "neomelanezyjski"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "tsimshian"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "turkmeński"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "tubuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunezja"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "języki tupi"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turcja"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "turecki"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "turecki, osmańskie (1500 - 1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "turkmeński"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Wyspy Turks i Caicos"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "języki ałtajskie (inne)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "twi (aszanti)"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "tuwiński"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "twi (aszanti)"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "udmurcki"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4285,11 +4073,6 @@ msgstr "ugarycki"
 msgid "Uighur"
 msgstr "ujgurski"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraina"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4300,213 +4083,36 @@ msgstr "ukraiński"
 msgid "Umbundu"
 msgstr "umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Nie można sklonować obiektu URL"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Nie można utworzyć połączenia dbus"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-"Nie można zainicjować kontekstu HAL -- demon hald nie jest uruchomiony?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Analiza komponentów URL nie powiodła się"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
-msgstr "nieokreślony"
-
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Nieobsługiwany typ repozytorium"
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Zjednoczone Emiraty Arabskie"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Zjednoczone Królestwo"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Stany Zjednoczone Ameryki Północnej"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Dalekie Wyspy Mniejsze Stanów Zjednoczonych"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Nieznane państwo: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Nieznany błąd podczas odczytu z \"%s\""
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Nieznany język: "
-
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Nieznany tryb dopasowania \"%s\"."
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Nieznany tryb dopasowania \"%s\" dla wzorca \"%s\""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-"Nieznana usługa \"%1%\": zostanie usunięte osierocone repozytorium usługi "
-"\"%2%\""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Nieznana opcja wsparcia. Brak opisu."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Nieznany rodzaj podpisu"
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Nieobsługiwana metoda uwierzytelniania HTTP: \"%s\""
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Nieobsługiwany schemat adresu URI w \"%s\""
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "łużycki górny"
-
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "urdu"
-
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Schemat URL nie zezwala na %s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Schemat URL nie zezwala na komponent hosta"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Schemat URL nie zezwala na hasło"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Schemat URL nie zezwala na port"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Schemat URL nie zezwala na nazwę użytkownika"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Schemat URL to wymagany komponent"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Schemat URL wymaga komponentu hosta"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Schemat URL wymaga ścieżki"
+msgstr "nieokreślony"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Urugwaj"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "urdu"
 
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "uzbecki"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "vai"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Republika Vanuatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "venda"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Wenezuela"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Wietnam"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "wietnamski"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Amerykańskie Wyspy Dziewicze"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Proszę odwiedzić Centrum obsługi klienta firmy Novell, aby sprawdzić, czy "
-"rejestracja jest ważna i czy nie wygasła."
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4527,16 +4133,6 @@ msgstr "języki wakasz"
 msgid "Walamo"
 msgstr "walamo"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis i Futuna"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "walloon"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4552,26 +4148,31 @@ msgstr "washo"
 msgid "Welsh"
 msgstr "walijski"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Sahara Zachodnia"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "języki łużyckie"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "walloon"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "wolof"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "kalmyk"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "xhosa"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "jakucki"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4582,11 +4183,6 @@ msgstr "jao"
 msgid "Yapese"
 msgstr "japski"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
-
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
 msgid "Yiddish"
@@ -4602,16 +4198,6 @@ msgstr "joruba"
 msgid "Yupik Languages"
 msgstr "języki yupik"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
-
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "zande"
-
 #. language code: zap
 #: zypp/LanguageCode.cc:1139
 msgid "Zapotec"
@@ -4627,10 +4213,10 @@ msgstr "zenaga"
 msgid "Zhuang"
 msgstr "zhuang"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "zande"
 
 #. language code: zul zu
 #: zypp/LanguageCode.cc:1147
@@ -4642,6 +4228,54 @@ msgstr "zulu"
 msgid "Zuni"
 msgstr "zuni"
 
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Próbowano zaimporotwać nieistniejący klucz %s do bazy kluczy %s"
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Usunięcie klucza nie powiodło się."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Nie znaleziono pliku sygnatury %s"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Nie można dostarczyć pliku %s z repozytorium %s."
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Brak adresu URL w repozytorium."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "Wtyczka usługi nie wspiera zmiany atrybutu."
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Pakiet %s wygląda na uszkodzony podczas przesyłania. Czy ponowić próbę "
+"pobrania?"
+
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "Weryfikacja podpisu nie powiodła się"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Nie można dostarczyć pakietu %s. Czy ponowić próbę pobrania?"
+
 #: zypp/repo/PackageProvider.cc:515
 msgid "applydeltarpm check failed."
 msgstr "Sprawdzenie applydeltarpm zakończone niepowodzeniem."
@@ -4650,46 +4284,153 @@ msgstr "Sprawdzenie applydeltarpm zakończone niepowodzeniem."
 msgid "applydeltarpm failed."
 msgstr "applydeltarpm zakończone niepowodzeniem."
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "zmiana architektury z %s na %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"Zarządzanie systemem jest zablokowane przez program o identyfikatorze pid %d "
+"(%s).\n"
+"Proszę zamknąć ten program i spróbować ponownie."
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s nie należy do repozytorium uaktualniania dystrybucji"
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s jest przewidziany dla niższej architektury"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problem z zainstalowanym pakietem %s"
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "sprzeczne żądania"
+
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "problem z kilkoma zależnościami"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "żaden pakiet nie dostarcza żądanego %s"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Czy włączono wszystkie wymagane repozytoria?"
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "pakiet %s nie istnieje"
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "niewspierane zapytanie"
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s jest dostarczany przez system i nie można go usunąć"
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s nie można zainstalować"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "żaden pakiet nie dostarcza %s wymaganego przez %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "nie można jednocześnie zainstalować %s i %s"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s jest w konflikcie z %s dostarczonym przez %s"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s dezaktualizuje %s, dostarczony przez %s"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s dezaktualizuje %s, dostarczony przez %s"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr ""
+"Element rozwiązywalny %s jest w konflikcie z %s, dostarczonym przez samego "
+"siebie"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s wymaga %s, lecz to wymaganie nie może być spełnione"
+
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "usunięci dostawcy: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"dostawcy, których nie można zainstalować: "
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "przerwano %s, ignorując niektóre z zależności"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "dostawcy, których nie można zainstalować: "
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/SATResolver.cc:1141
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "nie można jednocześnie zainstalować %s i %s"
+msgid "remove lock to allow removal of %s"
+msgstr "usuń blokadę, aby umożliwić usunięcie %s"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "sprzeczne żądania"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "nie instaluj %s"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "utworzono zapasowy %s"
+msgid "keep %s"
+msgstr "zachowaj %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/solver/detail/SATResolver.cc:1166
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "usunięcie %s"
+msgid "remove lock to allow installation of %s"
+msgstr "usuń blokadę, aby umożliwić instalację %s"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "usunięci dostawcy: "
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "To żądanie uszkodzi system!"
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr ""
-"nie pytaj o usunięcie wszystkich elementów rozwiązywalnych, dostarczających "
-"%s"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ignoruj ostrzeżenie o uszkodzeniu systemu"
 
 #: zypp/solver/detail/SATResolver.cc:1223
 #, c-format, boost-format
@@ -4698,30 +4439,47 @@ msgstr ""
 "nie pytaj o instalację wszystkich elementów rozwiązywalnych, dostarczających "
 "%s"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/solver/detail/SATResolver.cc:1245
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "nie instaluj %s"
+msgid "do not ask to delete all solvables providing %s"
+msgstr ""
+"nie pytaj o usunięcie wszystkich elementów rozwiązywalnych, dostarczających "
+"%s"
 
 #: zypp/solver/detail/SATResolver.cc:1258
 #, c-format, boost-format
 msgid "do not install most recent version of %s"
 msgstr "nie instaluj najnowszej wersji %s"
 
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "zachowaj %s, mimo niższej architektury"
+
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "zainstaluj %s, mimo niższej architektury"
+
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "zachowaj starszą wersję %s"
+
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "zainstaluj %s z wyłączonego repozytorium"
+
 #: zypp/solver/detail/SATResolver.cc:1318
 #, c-format, boost-format
 msgid "downgrade of %s to %s"
 msgstr "przywróć %s do %s"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "zazwyczaj ignoruje pewne zależności"
-
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ignoruj ostrzeżenie o uszkodzeniu systemu"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "zmiana architektury z %s na %s"
 
 #: zypp/solver/detail/SATResolver.cc:1334
 #, c-format, boost-format
@@ -4732,140 +4490,427 @@ msgstr ""
 "zainstaluj %s (ze zmianą dostawcy)\n"
 "  %s  -->  %s"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/solver/detail/SATResolver.cc:1343
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "zainstaluj %s, mimo niższej architektury"
+msgid "replacement of %s with %s"
+msgstr "zamiana %s na %s"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/solver/detail/SATResolver.cc:1354
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "zainstaluj %s z wyłączonego repozytorium"
+msgid "deinstallation of %s"
+msgstr "usunięcie %s"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+# break odnosi się do możliwego zepsucia wynikającego ze zignorowania zależności, więc "zainstaluj" wydaje się tu właściwe. Fisiu
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s dezaktualizuje %s, dostarczony przez %s"
+msgid "break %s by ignoring some of its dependencies"
+msgstr "zainstaluj %s, ignorując niektóre z zależności"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "nieprawidłowy"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "zazwyczaj ignoruje pewne zależności"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/parser/RepoindexFileReader.cc:197
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "zachowaj %s"
+msgid "Required attribute '%s' is missing."
+msgstr "Brak wymaganego atrybutu '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Wymagany jeden lub oba atrybuty '%s' i '%s'."
+
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Nie można otworzyć pliku blokady : %s"
+
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Inny program wykonuje już tę czynność."
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Historia:"
+
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Nieznany tryb dopasowania '%s'."
+
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Nieznany tryb dopasowania '%s' dla wzorca '%s'"
+
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Nieprawidłowe wyrażenie regularne '%s': regcomp zwróciło %d"
+
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Nieprawidłowe wyrażenie regularne '%s'"
+
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Zainstaluj najpierw pakiet 'lsof'."
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Wymagane uwierzytelnienie dla '%s'"
+
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Montowanie %s w %s zakończone niepowodzeniem"
+
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Odmontowywanie %s zakończone niepowodzeniem"
+
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Błędna nazwa pliku: %s"
+
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Nieotwarty nośnik podczas próby wykonania akcji '%s'."
+
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "Pliku '%s' nie znaleziono na nośniku '%s'"
+
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Nie można zapisać pliku '%s'."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Nośnik niedołączony"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Błędny punkt dołączenia nośnika"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Inicjalizacja pobierania (curl) dla '%s' zakończona niepowodzeniem"
+
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr "Wyjątek systemowy '%s' na nośniku '%s'."
+
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Ścieżka '%s' na nośniku '%s' nie prowadzi do pliku."
+
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Ścieżka '%s' na nośniku '%s' nie prowadzi do katalogu."
+
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Błędny adres URI"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Pusta nazwa hosta w adresie URI"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Pusty system plików w adresie URI"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Pusty element docelowy w adresie URI"
+
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Nieobsługiwany schemat adresu URI w '%s'"
+
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operacja nieobsługiwana przez nośnik"
+
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Błąd pobierania (curl) dla '%s':\n"
+"Kod błędu: %s\n"
+"Komunikat błędu: %s\n"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "zachowaj %s, mimo niższej architektury"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "Napotkano błąd podczas ustawiania opcji pobierania (curl) dla '%s':"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "zachowaj starszą wersję %s"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Źródło nośników '%s' nie zawiera żądanego nośnika"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: nie można utworzyć kontekstu libhal"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "Nośnik '%s' jest używany przez inną instancję"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: nie można ustanowić połączenia dbus"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Nie można wysunąć żadnego nośnika"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "żaden pakiet nie dostarcza %s wymaganego przez %s"
+msgid "Cannot eject media '%s'"
+msgstr "Nie można wysunąć nośnika '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "żaden pakiet nie dostarcza żądanego %s"
+msgid "Permission to access '%s' denied."
+msgstr "Dostęp do '%s' zabroniony."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "pakiet %s nie istnieje"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Przekroczono limit czasu podczas dostępu do '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problem z zainstalowanym pakietem %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Położenie '%s' jest tymczasowo niedostępne."
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "usuń blokadę, aby umożliwić instalację %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" Problem z certyfikatem SSL; proszę sprawdzić, czy certyfikat CA jest "
+"odpowiedni dla \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "usuń blokadę, aby umożliwić usunięcie %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Nie można znaleźć dostępnego urządzenia pętli do zamontowania pliku obrazu z "
+"'%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "zamiana %s na %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Nieobsługiwana metoda uwierzytelniania HTTP: '%s'"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm utworzył %s jako %s, ale nie można było określić różnicy"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Proszę odwiedzić Centrum obsługi klienta firmy Novell, aby sprawdzić, czy "
+"rejestracja jest ważna i czy nie wygasła."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Nie można utworzyć \"sat-pool\""
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm utworzył %s jako %s.\n"
-"Oto pierwszych 25 linii różnicy:\n"
+"Plik %1%\n"
+"  z pakietu\n"
+"     %2%\n"
+"  jest w konflikcie z plikiem z pakietu\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm zapisał %s jako %s, ale nie można było określić różnicy"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Plik %1%\n"
+"  z pakietu\n"
+"     %2%\n"
+"  jest w konflikcie z plikiem z instalacji\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm zapisał %s jako %s.\n"
-"Oto pierwszych 25 linii różnicy:\n"
+"Plik %1%\n"
+"  z instalacji\n"
+"     %2%\n"
+"  jest w konflikcie z plikiem z pakietu\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"Element rozwiązywalny %s jest w konflikcie z %s, dostarczonym przez samego "
-"siebie"
+"Plik %1%\n"
+"  z instalacji\n"
+"     %2%\n"
+"  jest w konflikcie z plikiem z instalacji\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "problem z kilkoma zależnościami"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Plik %1%\n"
+"  z pakietu\n"
+"     %2%\n"
+"  jest w konflikcie z plikiem\n"
+"     %3%\n"
+"  z pakietu\n"
+"     %4%"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "dostawcy, których nie można zainstalować: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Plik %1%\n"
+"  z pakietu\n"
+"     %2%\n"
+"  jest w konflikcie z plikiem\n"
+"     %3%\n"
+"  z instalacji\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "nieznany"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Plik %1%\n"
+"  z instalacji\n"
+"     %2%\n"
+"  jest w konflikcie z plikiem\n"
+"     %3%\n"
+"  z pakietu\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "niewspierany"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Plik %1%\n"
+"  z instalacji\n"
+"     %2%\n"
+"  jest w konflikcie z plikiem\n"
+"     %3%\n"
+"  z instalacji\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "nieobsługiwane żądanie"
+#~ msgid "do not keep %s installed"
+#~ msgstr "nie utrzymuj zainstalowanego %s"
+
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr "Nie można utworzyć klucza publicznego %s z zestawu %s do pliku %s"
+
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr ""
+#~ "Inicjalizacja pobierania (Metalink curl) dla '%s' zakończona "
+#~ "niepowodzeniem"
+
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "Błąd pobierania (metalink curl) dla '%s':\n"
+#~ "Kod błędu: %s\n"
+#~ "Komunikat błędu: %s\n"
+
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "Przerwano pobieranie na %d%%"
+
+#~ msgid "Download interrupted by user"
+#~ msgstr "Pobieranie przerwane przez użytkownika"
+
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr ""
+#~ "Napotkano błąd podczas ustawiania opcji pobierania (metalink curl) dla "
+#~ "'%s':"
+
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Nie udało się pobrać %s z %s"
+
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Serbia i Czarnogóra"
index d008854..3dd40e5 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -24,21 +24,93 @@ msgstr ""
 "Plural-Forms:  nplurals=2; plural=(n != 1);\n"
 "X-Generator: KBabel 1.11.4\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"fornecedores não instaláveis: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Excepção Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Cadeia de interrogação URL de LDAP inválida"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Parâmetro '%s' de interrogação URL de LDAP inválido"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Não é possível clonar o objecto Url"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Referência para objecto Url vazia é inválida"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Não é possível interpretar os componentes Url"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Não é possível inicializar os atributos da mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Não é possível definir o atributo da mutex recursiva"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Não é possível inicializar a mutex recursiva"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Não foi possível adquirir o bloqueio da mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Não foi possível libertar o bloqueio da mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Providencia"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
-" problema no certificado SSL, verifique se o certificado de CA é OK para "
-"'%s'."
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Requer"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Conflitua"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Obsoletos"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Recomenda"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Sugere"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Melhorar"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Suplementos"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Tipo '%s' dúbio para soma de verificação de %u byte '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 #, fuzzy
@@ -50,10 +122,6 @@ msgstr "Executar"
 msgid " execution failed"
 msgstr "Falhou a Execução DBI: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -62,115 +130,1934 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s conflitua com %s fornecido por %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s fornece %s, mas tem outra arquitectura."
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s não é instalável"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "A instalação foi interrompida conforme indicado."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s torna obsoleto %s fornecido por %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext não ligado"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s requer %s, mas este requisito não pode ser fornecido"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive não inicializado"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume não inicializado"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Não foi possível criar a ligação dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Não é possível criar o contexto libhal"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: Não é possível definir a ligação dbus"
+
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
+"Não foi possível inicializar o contexto HAL -- o hald não está em execução?"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhazião"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Não é uma unidade de CDROM"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achinese"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "falha no RPM: "
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Falha ao importar a chave pública do ficheiro %s: %s"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Falha ao remover a chave pública %s: %s"
 
-#: zypp/RepoManager.cc:1611
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "A Adicionar repositório '%s'"
+msgid "Changed configuration files for %s:"
+msgstr "Ficheiros de configuração modificados para %s:"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
+"o rpm %s foi guardado como %s, mas foi impossível determinar a diferença"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-#, fuzzy
-msgid "Additional rpm output"
-msgstr "Resultado adicional do rpm:"
-
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adyghe"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"o rpm %s foi guardado com %s.\n"
+"Tem as primeiras 25 linhas diferentes:\n"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "o rpm %s foi criado como %s, mas foi impossível determinar a diferença"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"o rpm %s foi criado com %s.\n"
+"Tem as primeiras 25 linhas diferentes:\n"
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+#, fuzzy
+msgid "Additional rpm output"
+msgstr "Resultado adicional do rpm:"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "cópia de segurança %s criada"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "As seguintes acções serão realizadas:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Falha na interpretação de %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+#, fuzzy
+msgid "Repository alias cannot start with dot."
+msgstr "O nome da MV não pode iniciar com um dígito."
+
+#: zypp/RepoManager.cc:349
+#, fuzzy
+msgid "Service alias cannot start with dot."
+msgstr "O nome da MV não pode iniciar com um dígito."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Não é possível abrir ficheiro para escrita."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Não foi encontrada uma metadata válida no(s) URL(s) especificado(s)"
+msgstr[1] "Não foi encontrada uma metadata válida no(s) URL(s) especificado(s)"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Não é possível criar %s: %m\n"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "A limpar a cache dos metadados raw de '%s'."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "A construir a cache do repositório '%s'"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Falha na interpretação de %s."
+
+#: zypp/RepoManager.cc:1377
+#, fuzzy
+msgid "Unhandled repository type"
+msgstr "Repositório activado"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, fuzzy, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Erro ao interpretar a metadata de '%s':"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Comando '%s' desconhecido"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "A Adicionar repositório '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Ficheiro de exportação inválido."
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "A remover o repositório '%s'"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Não é possível ejectar o suporte '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "O esquema url não permite um %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "componente %s inválido '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Componente %s inválido"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Interpretação da cadeia de interrogação não é suportado para este URL."
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "O esquema de url é um componente requerido"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Esquema de Url inválido '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "O esquema do Url não permite um nome de utilizador"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "O esquema do Url não permite uma palavra passe"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "O esquema de Url requer um componente de computador (host)"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "O esquema do Url não permite um componente de computador (host)"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Componente de computador inválido '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "O esquema de Url não permite um porto"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Componente de porto inválido '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "O esquema de Url requer um nome de caminho"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Caminho relativo não é permitido se a autoridade existe"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "A cadeia codificada contém um byte NUL"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Parâmetro do caracter do separador de dívisão da lista inválido"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Parâmetro do caracter do separador de divisão do mapa inválido"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Parâmetro do caracter do separador de junção da lista inválido"
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Não foi possível abrir o pty (%s)."
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Não é possível abrir o pipe (%s)."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Não é possível fazer chroot para '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr ""
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Não é possível executar '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Não é possível bifurcar (%s)."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Comando terminou com estado %d."
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Comando foi morto pelo sinal %d (%s)."
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Comando terminou com erro desconhecido."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "desconhecido"
+
+#: zypp/VendorSupportOptions.cc:17
+#, fuzzy
+msgid "unsupported"
+msgstr " - não suportado"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+#, fuzzy
+msgid "The vendor does not provide support."
+msgstr "O disco não existe."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Pais desconhecido:"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Sem Código"
+
+# name for AND
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Emirados Árabes Unidos"
+
+# name for AFG
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afeganistão"
+
+# name for ATG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antígua e Barbuda"
+
+# name for AIA
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguila"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albânia"
+
+# name for ARM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Arménia"
+
+# name for ANT
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Antilhas Holandesas"
+
+# name for AGO
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+# name for ATA
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antárctida"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+# name for ASM
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Samoa Americana"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Áustria"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Austrália"
+
+# name for ABW
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+# name for ALA
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Ilhas Aland"
+
+# name for AZE
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaijão"
+
+# name for BIH
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bósnia e Herzegovina"
+
+# name for BRB
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Bélgica"
+
+# name for BFA
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burquina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgária"
+
+# name for BHR
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Barém"
+
+# name for BDI
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+# name for BEN
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benim"
+
+# name for BMU
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermudas"
+
+# name for BRN
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolívia"
+
+# name for BRA
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasil"
+
+# name for BHS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Baamas"
+
+# name for BTN
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Butão"
+
+# name for BVT
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Ilha Bouvet"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Belarus"
+
+# name for BLZ
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canadá"
+
+# name for CCK
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Ilhas Cocos"
+
+# name for COG
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo"
+
+# name for CAF
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "República Central Africana"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Suíça"
+
+# name for CIV
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Costa do Marfim"
+
+# name for COK
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Ilhas Cook"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
+
+# name for CMR
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Camarões"
+
+# name for CHN
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "China"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colômbia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+# name for CUB
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
+
+# name for CPV
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Cabo Verde"
+
+# name for CXR
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Ilha Christmas"
+
+# name for CYP
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Chipre"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "República Checa"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Alemanha"
+
+# name for DJI
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Jibuti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Dinamarca"
+
+# name for DMA
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Domínica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "República Dominicana"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algéria"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Equador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estónia"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egipto"
+
+# name for ESH
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Sara Ocidental"
+
+# name for ERI
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritreia"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Espanha"
+
+# name for ETH
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiópia"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finlândia"
+
+# name for FJI
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+# name for FLK
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Ilhas Falkland (Malvinas)"
+
+# official_name for FSM
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Estados Federados da Micronésia"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Ilhas Faroé"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "França"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "França Metropolitana"
+
+# name for GAB
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabão"
+
+# name for GBR
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Reino Unido"
+
+# name for GRD
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Granada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgia"
+
+# name for GUF
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Guiana Francesa"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Alemanha"
+
+# name for GHA
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Gana"
+
+# name for GIB
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Gronelândia"
+
+# name for GMB
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gâmbia"
+
+# name for GIN
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guiné"
+
+# name for GLP
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadalupe"
+
+# name for GNQ
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Guiné Equatorial"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grécia"
+
+# name for SGS
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Ilhas Geórgia do Sul e Sandwich do Sul"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+# name for GUM
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+# name for GNB
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guiné-Bissau"
+
+# name for GUY
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guiana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+# name for HMD
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Ilhas Heard e McDonald"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Croácia"
+
+# name for HTI
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hungria"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonésia"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irlanda"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Índia"
+
+# name for IOT
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Território Britânico do Oceano Índico"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Iraque"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Irão"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islândia"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Itália"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+# name for JAM
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordânia"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japão"
+
+# name for KEN
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Quénia"
+
+# name for KGZ
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Quirguizistão"
+
+# name for KHM
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Camboja"
+
+# name for KIR
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Quiribati"
+
+# name for COM
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comoros"
+
+# name for KNA
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "São Cristóvão e Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Coreia do Norte"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Coreia do Sul"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+# name for CYM
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Ilhas Caimão"
+
+# name for KAZ
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Cazaquistão"
+
+# name for LAO
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "República Democrática Popular do Laos"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Líbano"
+
+# name for LCA
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Santa Lúcia"
+
+# name for LIE
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Listenstaine"
+
+# name for LKA
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanca"
+
+# name for LBR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Libéria"
+
+# name for LSO
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesoto"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lituânia"
+
+# name for LUX
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxemburgo"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latvia"
+
+# name for LBR
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Líbia"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marrocos"
+
+# name for MCO
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Mónaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldávia"
+
+# name for SCG
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
+
+# name for SMR
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "São Marino"
+
+# name for MDG
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagáscar"
+
+# name for MHL
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Ilhas Marshall"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedónia"
+
+# name for MLI
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+# name for MMR
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Mianmar"
+
+# name for MNG
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongólia"
+
+# name for MAC
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macau"
+
+# name for MNP
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Marianas do Norte"
+
+# name for MTQ
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinica"
+
+# name for MRT
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritânia"
+
+# name for MSR
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Monserrate"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+# name for MUS
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Maurícia"
+
+# name for MDV
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldivas"
+
+# name for MWI
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malavi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "México"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malásia"
+
+# name for MOZ
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Moçambique"
+
+# name for NAM
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namíbia"
+
+# name for NCL
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nova Caledónia"
+
+# name for NER
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Níger"
+
+# name for NFK
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Ilha Norfolk"
+
+# name for NGA
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigéria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicarágua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Holanda"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Noruega"
+
+# name for NPL
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+# name for NRU
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+# name for NIU
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nova Zelândia"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Omã"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panamá"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Perú"
+
+# name for PYF
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Polinésia Francesa"
+
+# name for PNG
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papuásia-Nova Guiné"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipinas"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Paquistão"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polónia"
+
+# name for SPM
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "São Pedro e Miquelon"
+
+# name for PCN
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+# official_name for PSE
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Território Palestiniano"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+# name for PLW
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+# name for REU
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunião"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Roménia"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Sérvia"
+
+# name for RUS
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Federação da Rússia"
+
+# name for RWA
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Arábia Saudíta"
+
+# name for SLB
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Ilhas Salomão"
+
+# name for SYC
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seicheles"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudão"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Suécia"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapura"
+
+# name for SHN
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Santa Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Eslovénia"
+
+# name for SJM
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard e Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Eslováquia"
+
+# name for SLE
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Serra Leoa"
+
+# name for SMR
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "São Marino"
+
+# name for SEN
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+# name for SOM
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somália"
+
+# name for SUR
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
+
+# name for STP
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "São Tomé e Príncipe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Síria"
+
+# name for SWZ
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Suazilândia"
+
+# name for TCA
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Ilhas Turcas e Caicos"
+
+# name for TCD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Chade"
+
+# name for ATF
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Territórios Austrais Franceses"
+
+# name for TGO
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tailândia"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tajiquistão"
+
+# name for TKL
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+# name for TKM
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turquemenistão"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunísia"
+
+# name for TON
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Timor Leste"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turquia"
+
+# name for TTO
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidade e Tobago"
+
+# name for TUV
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzânia"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ucrânia"
+
+# name for UGA
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+# name for UMI
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Ilhas Menores Distantes dos Estados Unidos"
+
+# name for USA
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Estados Unidos"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbequistão"
+
+# name for VAT
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Santa Sé (Estado da Cidade do Vaticano)"
+
+# name for VCT
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "São Vicente e Granadinas"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+# official_name for VGB
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Ilhas Virgens Britânicas"
+
+# name for VIR
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Ilhas Virgens Americanas, E.U."
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietname"
+
+# name for VUT
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+# name for WLF
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis e Futuna"
+
+# name for WSM
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Iémen"
+
+# name for MYT
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "África do Sul"
+
+# name for ZMB
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zâmbia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabué"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Idioma desconhecido: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr "Afar"
 
-# name for AFG
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afeganistão"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abkhazião"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achinese"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adyghe"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-Asiático (Outra)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -182,11 +2069,6 @@ msgstr "Afrihili"
 msgid "Afrikaans"
 msgstr "Afrikaans"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-Asiático (Outra)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -202,17 +2084,6 @@ msgstr "Akan"
 msgid "Akkadian"
 msgstr "Akkadian"
 
-# name for ALA
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Ilhas Aland"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albânia"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -223,64 +2094,25 @@ msgstr "Albanês"
 msgid "Aleut"
 msgstr "Aleut"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algéria"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "Idiomas Algonquianos"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaico (Outro)"
-
-# name for ASM
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Samoa Americana"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Altai do Sul"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "Amárico"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-
-# name for AND
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
-
-# name for AGO
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-# name for AIA
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguila"
-
-# name for ATA
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antárctida"
-
-# name for ATG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antígua e Barbuda"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Inglês Antigo (ca.450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -292,41 +2124,15 @@ msgstr "Idiomas Apache"
 msgid "Arabic"
 msgstr "Árabe"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonese"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "Aramaic"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
-
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Araucanian"
-
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
-
-# name for ARM
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Arménia"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonese"
 
 # name for ARM
 #. language code: arm hye hy
@@ -334,16 +2140,25 @@ msgstr "Arménia"
 msgid "Armenian"
 msgstr "Arménio"
 
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Araucanian"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
+
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "Artificial (Outro)"
 
-# name for ABW
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
 
 # /usr/lib/YaST2/clients/logcontrol.ycp:64
 #. language code: asm as
@@ -361,33 +2176,12 @@ msgstr "Asturiano"
 msgid "Athapascan Languages"
 msgstr "Idiomas Athapascan"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Austrália"
-
 # /usr/lib/YaST2/clients/sw_single.ycp:12
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "Idiomas Australianos"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Áustria"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronésio (Outro)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Autenticação requerida para '%s'"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -410,47 +2204,26 @@ msgstr "Awadhi"
 msgid "Aymara"
 msgstr "Aymara"
 
-# name for AZE
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaijão"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Azerbeijão"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Nome de ficheiro incorrecto: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Mau ponto de ligação com o suporte"
-
-# name for BHS
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Baamas"
-
-# name for BHR
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Barém"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinese"
+# /usr/lib/YaST2/clients/sw_single.ycp:12
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Idiomas Bamileke"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Báltico (Outro)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bashkir"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -462,79 +2235,36 @@ msgstr "Baluchi"
 msgid "Bambara"
 msgstr "Bambara"
 
-# /usr/lib/YaST2/clients/sw_single.ycp:12
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Idiomas Bamileke"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (Outro)"
-
-# name for BRB
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
-
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
-
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bashkir"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinese"
 
 #. language code: baq eus eu
 #: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 msgid "Basque"
 msgstr "Basco"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonésia)"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Báltico (Outro)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "Beja"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belarus"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "Bielorusso"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Bélgica"
-
-# name for BLZ
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
-
 # name for BMU
 #. language code: bem
 #: zypp/LanguageCode.cc:261
@@ -546,34 +2276,16 @@ msgstr "Bemba"
 msgid "Bengali"
 msgstr "Bengali"
 
-# name for BEN
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benim"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "Berber (Outro)"
 
-# name for BMU
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermudas"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "Bhojpuri"
 
-# name for BTN
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Butão"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
@@ -593,280 +2305,74 @@ msgstr "Bini"
 #. language code: bis bi
 #: zypp/LanguageCode.cc:275
 msgid "Bislama"
-msgstr "Bislama"
-
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolívia"
-
-# name for BIH
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bósnia e Herzegovina"
-
-# name for BEN
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bósnio"
-
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-# name for BVT
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Ilha Bouvet"
-
-# name for BRA
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Braj"
-
-# name for BRA
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasil"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretão"
-
-# name for IOT
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Território Britânico do Oceano Índico"
-
-# official_name for VGB
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Ilhas Virgens Britânicas"
-
-# name for BRN
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Buginese"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "A construir a cache do repositório '%s'"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgária"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Búlgaro"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriat"
-
-# name for BFA
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burquina Faso"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Burmês"
-
-# name for BDI
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Caddo"
-
-# name for KHM
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Camboja"
-
-# name for CMR
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Camarões"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Não é possível criar o sat-pool."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Não foi possível adquirir o bloqueio da mutex"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Não é possível fazer chroot para '%s' (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Não é possível criar %s: %m\n"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "A limpar a cache dos metadados raw de '%s'."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Não é possível ejectar o suporte '%s'"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Não é possível executar '%s' (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Não é possível bifurcar (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Não é possível inicializar os atributos da mutex"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Não é possível inicializar a mutex recursiva"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Não é possível abrir ficheiro para escrita."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Não é possível abrir ficheiro de bloqueio: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Não é possível abrir o pipe (%s)."
+msgstr "Bislama"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Não foi possível abrir o pty (%s)."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Não é possível fornecer o ficheiro '%s' a partir do repositório '%s'"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (Outro)"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Não foi possível libertar o bloqueio da mutex"
+# name for BEN
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bósnio"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Não é possível definir o atributo da mutex recursiva"
+# name for BRA
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Braj"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canadá"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretão"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Não é possível ejectar nenhum suporte"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonésia)"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Não é possível ejectar o suporte '%s'"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriat"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Buginese"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Búlgaro"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Burmês"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Não é possível escrever o ficheiro '%s'."
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
 
-# name for CPV
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Cabo Verde"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Caddo"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Índio América Central (Outro)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -883,12 +2389,6 @@ msgstr "Catalão"
 msgid "Caucasian (Other)"
 msgstr "Caucasiano (Outro)"
 
-# name for CYM
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Ilhas Caimão"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -899,176 +2399,83 @@ msgstr "Cebuano"
 msgid "Celtic (Other)"
 msgstr "Céltico (Outro)"
 
-# name for CAF
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "República Central Africana"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Índio América Central (Outro)"
-
-# name for TCD
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Chade"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Idiomas Chamic"
-
 # name for COM
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Ficheiros de configuração modificados para %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Checheno"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne"
-
 # name for CHN
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Chibcha"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Checheno"
 
-# name for CHN
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "China"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Chinês"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukese"
+
+# name for MLI
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Jargão Chinook"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyan"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Choctaw"
 
-# name for CXR
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Ilha Christmas"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
-msgstr "Church Slavic"
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukese"
-
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Chuvash"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Newari Clássico"
-
-# name for CCK
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Ilhas Cocos"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colômbia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Comando terminou com estado %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Comando terminou com erro desconhecido."
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Comando foi morto pelo sinal %d (%s)."
-
-# name for COM
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comoros"
+msgstr "Church Slavic"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Conflitua"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Chuvash"
 
-# name for COG
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne"
 
-# name for COK
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Ilhas Cook"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Idiomas Chamic"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1085,32 +2492,6 @@ msgstr "Cornish"
 msgid "Corsican"
 msgstr "Corsicano"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-# name for CIV
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Costa do Marfim"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Grêgo"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Criolo e Pidgins (Outros)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1126,48 +2507,36 @@ msgstr "Criolo e Pidgins, Baseados em Francês (Outros)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Criolo e Pidgins, Baseados em Português (Outros)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Crimean Tatar"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Croácia"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Croata"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Criolo e Pidgins (Outros)"
 
-# name for CUB
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kashubian"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Cushitic (Outro)"
 
-# name for CYP
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Chipre"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Checo"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "República Checa"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1193,10 +2562,15 @@ msgstr "Dayak"
 msgid "Delaware"
 msgstr "Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Dinamarca"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slave (Athapascan)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1208,76 +2582,36 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Divehi"
 
-# name for DJI
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Jibuti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
-
-# name for DMA
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Domínica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "República Dominicana"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Erro de descarga (curl) para '%s':\n"
-"Código do erro: %s\n"
-"Mensagem do erro: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Inicialização da descarga (curl) falhou para '%s'"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Dravidian (Outro)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Baixo-Sórbio"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Tipo '%s' dúbio para soma de verificação de %u byte '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Holandês, Médio (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Holandês"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Holandês, Médio (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1289,26 +2623,11 @@ msgstr "Dyula"
 msgid "Dzongkha"
 msgstr "Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Timor Leste"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Equador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egipto"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1319,32 +2638,11 @@ msgstr "Egípcio (Antigo)"
 msgid "Ekajuk"
 msgstr "Ekajuk"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "Elamite"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Destino vazio no URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Sistema de ficheiros vazio no URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Nome de computador vazio no URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "A cadeia codificada contém um byte NUL"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1355,77 +2653,16 @@ msgstr "Inglês"
 msgid "English, Middle (1100-1500)"
 msgstr "Inglês, Médio (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Inglês Antigo (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Melhorar"
-
-# name for GNQ
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Guiné Equatorial"
-
-# name for ERI
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritreia"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"Ocorreu um erro durante a definição das opções de descarga (curl) para '%s':"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, fuzzy, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Erro ao interpretar a metadata de '%s':"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
-
 #. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Esperanto"
-
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estónia"
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Esperanto"
 
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estónio"
 
-# name for ETH
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiópia"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1436,88 +2673,20 @@ msgstr "Ewe"
 msgid "Ewondo"
 msgstr "Ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Falha na interpretação de %s."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Falha ao apagar chave."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Falha ao importar a chave pública do ficheiro %s: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Falha ao montar %s em %s"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, fuzzy, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"O pacote %s falhou a verificação de integridade. Pretende tentar novamente?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Falha na interpretação de %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Falha ao remover a chave pública %s: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Falha ao desmontar %s"
-
-# name for FLK
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Ilhas Falkland (Malvinas)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Fang"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Ilhas Faroé"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "Faroês"
 
-# official_name for FSM
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Estados Federados da Micronésia"
-
-# name for FJI
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
 # name for FJI
 #. language code: fij fj
@@ -1525,124 +2694,11 @@ msgstr "Fiji"
 msgid "Fijian"
 msgstr "Fijiano"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Ficheiro '%s' não foi encontrado no suporte '%s'"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finlândia"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1653,43 +2709,16 @@ msgstr "Finlandês"
 msgid "Finno-Ugrian (Other)"
 msgstr "Finno-Ugrian (Outro)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "As seguintes acções serão realizadas:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "França"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Francês"
 
-# name for GUF
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Guiana Francesa"
-
-# name for PYF
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Polinésia Francesa"
-
-# name for ATF
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Territórios Austrais Franceses"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1706,50 +2735,21 @@ msgstr "Francês, Antigo (842-ca.1400)"
 msgid "Frisian"
 msgstr "Frisão"
 
-# /usr/lib/YaST2/clients/adsl_custom.ycp:115
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friulian"
-
 #. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
-msgstr "Fulah"
-
-#. language code: gaa
-#: zypp/LanguageCode.cc:459
-msgid "Ga"
-msgstr "Ga"
-
-# name for GAB
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabão"
-
-# name for MLI
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaélico"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galêgo"
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
+msgstr "Fulah"
 
-# name for GMB
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gâmbia"
+# /usr/lib/YaST2/clients/adsl_custom.ycp:115
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friulian"
 
-# name for GHA
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
+#. language code: gaa
+#: zypp/LanguageCode.cc:459
+msgid "Ga"
+msgstr "Ga"
 
 # name for GAB
 #. language code: gay
@@ -1762,15 +2762,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Geez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germânico (Outros)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1782,6 +2777,37 @@ msgstr "Georgiano"
 msgid "German"
 msgstr "Alemão"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Geez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertês"
+
+# name for MLI
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaélico"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irlandês"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galêgo"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1792,32 +2818,6 @@ msgstr "Alemão, Médio Alto (ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Alemão, Alto Antigo (ca.750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germânico (Outros)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Alemanha"
-
-# name for GHA
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Gana"
-
-# name for GIB
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertês"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1838,11 +2838,6 @@ msgstr "Gótico"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grécia"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1853,68 +2848,16 @@ msgstr "Grêgo, Antigo (até 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Grêgo, Moderno (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Gronelândia"
-
-# name for GRD
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Granada"
-
-# name for GLP
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadalupe"
-
-# name for GUM
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Alemanha"
-
-# name for GIN
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guiné"
-
-# name for GNB
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guiné-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-# name for GUY
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guiana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1926,55 +2869,22 @@ msgid "Haida"
 msgstr "Haida"
 
 # name for HTI
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
-# name for HTI
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitiano"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Excepção Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext não ligado"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive não inicializado"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume não inicializado"
-
 # /usr/lib/YaST2/clients/remotechooser.ycp:37
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Havaiano"
 
-# name for HMD
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Ilhas Heard e McDonald"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -2002,17 +2912,6 @@ msgid "Hindi"
 msgstr "Hindi"
 
 # name for HTI
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Histórico:"
-
-# name for HTI
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -2023,32 +2922,22 @@ msgstr "Hittite"
 msgid "Hmong"
 msgstr "Hmong"
 
-# name for VAT
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Santa Sé (Estado da Cidade do Vaticano)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+# name for HTI
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Sórbio Alto"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Húngaro"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hungria"
-
 # /usr/lib/YaST2/clients/remotechooser.ycp:37
 #. language code: hup
 #: zypp/LanguageCode.cc:539
@@ -2060,10 +2949,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islândia"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2075,252 +2964,106 @@ msgstr "Islandês"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr "Iloko"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Inari Sami"
+# /usr/lib/YaST2/clients/logcontrol.ycp:69
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
+
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr "Iloko"
 
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Índia"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (International Auxiliary Language Association)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Indic (Outro)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indo-Europeu (Outro)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonésia"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonês"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indo-Europeu (Outro)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Ingush"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "A instalação foi interrompida conforme indicado."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (International Auxiliary Language Association)"
-
-# /usr/lib/YaST2/clients/logcontrol.ycp:69
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Inupiaq"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Componente %s inválido"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "componente %s inválido '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Parâmetro '%s' de interrogação URL de LDAP inválido"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Cadeia de interrogação URL de LDAP inválida"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Esquema de Url inválido '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Referência para objecto Url vazia é inválida"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Componente de computador inválido '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Parâmetro do caracter do separador de junção da lista inválido"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Parâmetro do caracter do separador de dívisão da lista inválido"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Parâmetro do caracter do separador de divisão do mapa inválido"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Componente de porto inválido '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Expressão regular inválida '%s': regcomp devolveu %d"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Expressão regular inválida '%s': regcomp devolveu %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Ficheiro de exportação inválido."
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Irão"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Iraniano (Outro)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Iraque"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irlanda"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irlandês"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Irlandês, Médio (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Irlandês, Antigo (até 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Idiomas Iroquoians"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italiano"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Itália"
-
-# name for JAM
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javanês"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japão"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japonês"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javanês"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordânia"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Judeu-Persa"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Judeu-Arábico"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Judeu-Persa"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2337,11 +3080,6 @@ msgstr "Kachin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmyk"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2352,21 +3090,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karachay-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2377,10 +3100,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kashmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kashubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2393,33 +3116,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Kazakh"
 
-# name for KAZ
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Cazaquistão"
-
-# name for KEN
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Quénia"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardian"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Jemer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Khoisan (Outro)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Jemer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2430,11 +3146,6 @@ msgstr "Khotanês"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2445,16 +3156,15 @@ msgstr "Kinyarwanda"
 msgid "Kirghiz"
 msgstr "Kirghiz"
 
-# name for KIR
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Quiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2467,11 +3177,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2487,11 +3192,21 @@ msgstr "Kosraean"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karachay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2507,28 +3222,12 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Curdo"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 # name for KEN
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-# name for KGZ
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Quirguizistão"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2549,73 +3248,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Lao"
 
-# name for LAO
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "República Democrática Popular do Laos"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latim"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latvia"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Letão"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Líbano"
-
-# name for LSO
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesoto"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezghian"
 
-# name for LBR
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Libéria"
-
-# name for LBR
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Líbia"
-
-# name for LIE
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Listenstaine"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2627,62 +3274,49 @@ msgstr "Limburgan"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lituânia"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Lituano"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Alemão Baixo"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Baixo-Sórbio"
+# name for COG
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+# name for LUX
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburguês"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+# name for GHA
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-# name for WSM
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lule Sami"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2698,39 +3332,11 @@ msgstr "Luo (Kenia e Tanzânia)"
 msgid "Lushai"
 msgstr "Lushai"
 
-# name for LUX
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxemburgo"
-
-# name for LUX
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburguês"
-
-# name for MAC
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macau"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedónia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Macedónio"
 
-# name for MDG
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagáscar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2742,6 +3348,12 @@ msgstr "Madurês"
 msgid "Magahi"
 msgstr "Magahi"
 
+# name for MHL
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshalês"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2753,181 +3365,54 @@ msgstr "Maithili"
 msgid "Makasar"
 msgstr "Makasar"
 
-# name for MDG
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malagasy"
-
-# name for MWI
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malavi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malaio"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malayalam"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malásia"
-
-# name for MDV
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldivas"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "URI mal formado"
-
-# name for MLI
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-# name for MDV
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltês"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchu"
-
-# name for MMR
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
 # name for MLI
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Idiomas Manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
-# name for MLI
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronésio (Outro)"
+
 # name for MUS
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-# name for MLI
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-# name for MHL
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Ilhas Marshall"
-
-# name for MHL
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshalês"
-
-# name for MTQ
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinica"
-
-# name for MUS
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 # name for MWI
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-# name for MRT
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritânia"
-
-# name for MUS
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Maurícia"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Idiomas Mayan"
-
-# name for MYT
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malaio"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+# name for MMR
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 # According to QIM Screenshot
 # -ke-
@@ -2936,15 +3421,10 @@ msgstr ""
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "França Metropolitana"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "México"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Irlandês, Médio (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2956,94 +3436,65 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-# name for MDV
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandês"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Idiomas Vários"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Khmer (Outro)"
+
+# name for MDG
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malagasy"
+
+# name for MDV
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltês"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manchu"
+
+# name for MLI
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Idiomas Manobo"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldávo"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldávia"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Khmer (Outro)"
-
-# name for MCO
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Mónaco"
-
-# name for COG
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-# name for MNG
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongólia"
-
 # name for MNG
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongol"
 
-# name for SCG
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-# name for MSR
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Monserrate"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marrocos"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-# name for MOZ
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Moçambique"
-
 # /usr/lib/YaST2/clients/sw_single.ycp:12
 #. language code: mul
 #: zypp/LanguageCode.cc:761
@@ -3055,62 +3506,80 @@ msgstr "Idiomas Múltiplos"
 msgid "Munda languages"
 msgstr "Idiomas Mundas"
 
-# name for MMR
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Mianmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Grêgo"
+
+# name for MDV
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandês"
+
+# name for MUS
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Idiomas Mayan"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-# name for NAM
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namíbia"
-
-# name for NRU
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Índio Norte Americano"
+
+# name for NPL
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Neapolitan"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele, Norte"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele, Sul"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele, Norte"
+
 # name for TON
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-# name for NPL
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Neapolitan"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Alemão Baixo"
 
 # name for NPL
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
+msgstr "Nepalês"
 
 # name for NPL
 #. language code: new
@@ -3118,91 +3587,31 @@ msgstr "Nepal"
 msgid "Nepal Bhasa"
 msgstr "Nepal Bhasa"
 
-# name for NPL
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
-msgstr "Nepalês"
-
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Holanda"
-
-# name for ANT
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Antilhas Holandesas"
-
-# name for NCL
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nova Caledónia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nova Zelândia"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
-
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicarágua"
-
-# name for NER
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Níger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Niger-Kordofanian (Outro)"
 
-# name for NGA
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigéria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-Saharan (Outro)"
-
-# name for NIU
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 # name for NIU
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niuean"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Sem Código"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Nynorsk Norueguês"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Nenhum url no repositório."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Bokmal Norueguês"
 
 # name for TON
 #. language code: nog
@@ -3210,72 +3619,36 @@ msgstr "Nenhum url no repositório."
 msgid "Nogai"
 msgstr "Nogai"
 
-# name for NFK
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Ilha Norfolk"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Norse, Antigo"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Índio Norte Americano"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Coreia do Norte"
-
-# name for MNP
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Marianas do Norte"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Sami Setentrional"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Sotho do Norte"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Noruega"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norueguês"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Bokmal Norueguês"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Nynorsk Norueguês"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Não é uma unidade de CDROM"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Sotho do Norte"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Idiomas Nubian"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Newari Clássico"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3296,10 +3669,6 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Obsoletos"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3310,20 +3679,6 @@ msgstr "Occitan (posto 1500)"
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Omã"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3344,19 +3699,25 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Ossetian"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turco, Otomano (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Idiomas Otomian"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, fuzzy, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"O pacote %s falhou a verificação de integridade. Pretende tentar novamente?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papuan (Outro)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinan"
 
 # name for MLI
 #. language code: pal
@@ -3364,49 +3725,10 @@ msgstr ""
 msgid "Pahlavi"
 msgstr "Pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Paquistão"
-
-# name for PLW
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-# name for PLW
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauan"
-
-# official_name for PSE
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Território Palestiniano"
-
-# name for MLI
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "Pampanga"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panamá"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinan"
+msgid "Pampanga"
+msgstr "Pampanga"
 
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
@@ -3418,96 +3740,47 @@ msgstr "Panjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-# name for PNG
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papuásia-Nova Guiné"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papuan (Outro)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Foi negada a autorização para aceder a '%s'."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persa"
+# name for PLW
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauan"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Persa, Antigo (ca.600-400 B.C.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Perú"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persa"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Filipino (Outro)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipinas"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Phoenician"
 
-# name for PCN
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeian"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polónia"
+# name for MLI
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Polaco"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeian"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3519,77 +3792,21 @@ msgstr "Português"
 msgid "Prakrit Languages"
 msgstr "Idiomas Prakrit"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Provençal, Antigo (até 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Providencia"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pushto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Interpretação da cadeia de interrogação não é suportado para este URL."
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "falha no RPM: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Raeto-Romance"
-
 # name for KAZ
 #. language code: raj
 #: zypp/LanguageCode.cc:885
@@ -3606,149 +3823,36 @@ msgstr "Rapanui"
 msgid "Rarotongan"
 msgstr "Rarotongan"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Recomenda"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Caminho relativo não é permitido se a autoridade existe"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "A remover o repositório '%s'"
-
-#: zypp/RepoManager.cc:338
-#, fuzzy
-msgid "Repository alias cannot start with dot."
-msgstr "O nome da MV não pode iniciar com um dígito."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, fuzzy, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Está em falta um ficheiro necessário: "
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Requer"
-
-# name for REU
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunião"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "Romance (Outro)"
-
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Roménia"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Romeno"
-
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "Romeno"
-
-# name for REU
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundi"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Russo"
-
-# name for RUS
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Federação da Rússia"
-
-# name for RWA
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
-
-# name for SHN
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Santa Helena"
-
-# name for KNA
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "São Cristóvão e Nevis"
-
-# name for LCA
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Santa Lúcia"
-
-# name for SMR
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "São Marino"
-
-# name for SPM
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "São Pedro e Miquelon"
-
-# name for VCT
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "São Vicente e Granadinas"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Idiomas Salishan"
+msgid "Romance (Other)"
+msgstr "Romance (Outro)"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Aramaico Samaritano"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Raeto-Romance"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Idiomas Sami (Outros)"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "Romeno"
 
-# name for WSM
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Romeno"
 
-# name for WSM
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoano"
+# name for REU
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundi"
 
-# name for SMR
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "São Marino"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Russo"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3761,42 +3865,61 @@ msgstr "Sandawe"
 msgid "Sango"
 msgstr "Sango"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Yakut"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Índio da América so Sul (Outro)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Idiomas Salishan"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Aramaico Samaritano"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanscrito"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-# name for STP
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "São Tomé e Príncipe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardiniano"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Sérvio"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Arábia Saudíta"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Siciliano"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Escocês"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Croata"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3807,314 +3930,178 @@ msgstr "Selkup"
 msgid "Semitic (Other)"
 msgstr "Semítico (Outro)"
 
-# name for SEN
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Sérvia"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Sérvio"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-#, fuzzy
-msgid "Service alias cannot start with dot."
-msgstr "O nome da MV não pode iniciar com um dígito."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Irlandês, Antigo (até 900)"
 
-# name for SYC
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seicheles"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Linguagem Gestual"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Shan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Siciliano"
-
 # name for WSM
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidamo"
 
-# name for SLE
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Serra Leoa"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Linguagem Gestual"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Ficheiro de assinatura %s não encontrado"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapura"
-
 # name for AGO
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Sinhala"
 
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+msgid "Siouan Languages"
+msgstr "Idiomas Siouan"
+
 #. language code: sit
 #: zypp/LanguageCode.cc:951
 msgid "Sino-Tibetan (Other)"
 msgstr "Sino-Tibetano (Outro)"
 
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-msgid "Siouan Languages"
-msgstr "Idiomas Siouan"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
+msgstr "Eslavo"
+
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "Eslovaco"
+
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Esolveno"
+
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Sami Meridional"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Sami Setentrional"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Idiomas Sami (Outros)"
+
+# name for WSM
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lule Sami"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Inari Sami"
+
+# name for WSM
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoano"
 
 #. language code: sms
 #: zypp/LanguageCode.cc:973
 msgid "Skolt Sami"
 msgstr "Skolt Sami"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slave (Athapascan)"
-
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr "Eslavo"
-
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "Eslovaco"
-
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Eslováquia"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Eslovénia"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Esolveno"
+# workflow: "Software-Auswahl"
+# -ke-
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "Sogdian"
 
-# name for SLB
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Ilhas Salomão"
-
 # name for SOM
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Somalês"
 
-# name for SOM
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somália"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "Songhai"
 
-# workflow: "Software-Auswahl"
-# -ke-
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Idiomas Sórbio"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Sotho, Meridional"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "África do Sul"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Índio da América so Sul (Outro)"
-
-# name for SGS
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Ilhas Geórgia do Sul e Sandwich do Sul"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Coreia do Sul"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Altai do Sul"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Sami Meridional"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Espanha"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Espanhol"
 
-# name for LKA
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanca"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardiniano"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudão"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Sugere"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-Saharan (Outro)"
+
+# name for HTI
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumério"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sundanese"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Suplementos"
-
-# name for SUR
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-# name for SJM
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard e Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumério"
 
 # name for SWZ
 #. language code: swa sw
@@ -4122,62 +4109,16 @@ msgstr "Svalbard e Jan Mayen"
 msgid "Swahili"
 msgstr "Swahili"
 
-# name for HTI
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati"
-
-# name for SWZ
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Suazilândia"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Suécia"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Sueco"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Suíça"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Síria"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Siríaco"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, fuzzy, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"A gestão do sistema está bloqueada pela aplicação com pid %d. Por favor "
-"encerre esta aplicação antes de tentar novamente."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4188,36 +4129,11 @@ msgstr "Taitiano"
 msgid "Tai (Other)"
 msgstr "Tailandêses (Outros)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tajik"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tajiquistão"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamashek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzânia"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4228,6 +4144,11 @@ msgstr "Tatar"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4238,34 +4159,21 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tajik"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Tailandês"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tailândia"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-#, fuzzy
-msgid "The vendor does not provide support."
-msgstr "O disco não existe."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Esta acção já está a ser executada por outro programa."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr ""
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4282,49 +4190,25 @@ msgstr "Tigre"
 msgid "Tigrinya"
 msgstr "Tigrinha"
 
-#: zypp/media/MediaException.cc:207
-#, fuzzy, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Tempo limite excedido quando acedia a '%s'."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-# name for TGO
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-# name for TKL
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-# name for TON
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4337,17 +4221,10 @@ msgstr "Tonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Olhas Tonga)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-# name for TTO
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidade e Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 # /usr/lib/YaST2/clients/adsl_custom.ycp:115
 #. language code: tsi
@@ -4355,726 +4232,931 @@ msgstr "Trinidade e Tobago"
 msgid "Tsimshian"
 msgstr "Tsimshian"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 # name for TON
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turcomano"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunísia"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Idiomas Tupi"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turquia"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turco"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turco, Otomano (1500-1928)"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaico (Outro)"
+
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
+
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "Tuviniano"
+
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "Udmurt"
+
+# name for HTI
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "Ugaritic"
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "Uighur"
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "Ucraniano"
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "Umbundu"
+
+# /usr/lib/YaST2/clients/logcontrol.ycp:69
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Indeterminado"
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Urdu"
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Uzbek"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vai"
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Venda"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnamita"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Volapuk"
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Votic"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "Idiomas Wakashan"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Walamo"
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Waray"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Washo"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Gaulês"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Idiomas Sórbio"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Walloon"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolof"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmyk"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhosa"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yao"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yapese"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Yiddish"
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turcomano"
+# name for ABW
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Yoruba"
 
-# name for TKM
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turquemenistão"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Idiomas Yupik"
 
-# name for TCA
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Ilhas Turcas e Caicos"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapotec"
 
-# name for TUV
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "Tuviniano"
+# name for BTN
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "Udmurt"
+# name for TUV
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
 
-# name for UGA
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
 
-# name for HTI
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "Ugaritic"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "Uighur"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Falha ao apagar chave."
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ucrânia"
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Ficheiro de assinatura %s não encontrado"
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "Ucraniano"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Não é possível fornecer o ficheiro '%s' a partir do repositório '%s'"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "Umbundu"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Nenhum url no repositório."
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Não é possível clonar o objecto Url"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Não foi possível criar a ligação dbus"
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, fuzzy, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"O pacote %s falhou a verificação de integridade. Pretende tentar novamente?"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
 msgstr ""
-"Não foi possível inicializar o contexto HAL -- o hald não está em execução?"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Não é possível interpretar os componentes Url"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, fuzzy, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
+"O pacote %s falhou a verificação de integridade. Pretende tentar novamente?"
 
-# /usr/lib/YaST2/clients/logcontrol.ycp:69
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Indeterminado"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "falhou a verificação applydeltarpm."
 
-#: zypp/RepoManager.cc:1377
-#, fuzzy
-msgid "Unhandled repository type"
-msgstr "Repositório activado"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "falhou o applydeltarpm."
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Emirados Árabes Unidos"
+#: zypp/ZYppFactory.cc:394
+#, fuzzy, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"A gestão do sistema está bloqueada pela aplicação com pid %d. Por favor "
+"encerre esta aplicação antes de tentar novamente."
 
-# name for GBR
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Reino Unido"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr ""
 
-# name for USA
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Estados Unidos"
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s fornece %s, mas tem outra arquitectura."
 
-# name for UMI
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Ilhas Menores Distantes dos Estados Unidos"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problema com o pacote %s instalado"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Pais desconhecido:"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "pedidos em conflito"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Comando '%s' desconhecido"
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "Não foi possível instalar %s devido a problemas de dependências"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Idioma desconhecido: "
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "nada fornece %s solicitado"
 
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Comando '%s' desconhecido"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Digest %s desconhecido para o ficheiro %s."
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s não é instalável"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "nada fornece %s necessário por %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "não é possível instalar tanto %s como %s"
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/solver/detail/SATResolver.cc:1022
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Método '%s' de autenticação HTTP não suportado"
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s conflitua com %s fornecido por %s"
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:1027
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Esquema de URI não suportado em '%s'."
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s torna obsoleto %s fornecido por %s"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Sórbio Alto"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s torna obsoleto %s fornecido por %s"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Urdu"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "Resolúvel %s conflitua com %s fornecido por ele próprio"
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:1068
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "O esquema url não permite um %s"
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s requer %s, mas este requisito não pode ser fornecido"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "O esquema do Url não permite um componente de computador (host)"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "fornecedores apagados: "
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "O esquema do Url não permite uma palavra passe"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"fornecedores não instaláveis: "
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "O esquema de Url não permite um porto"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "fornecedores não instaláveis: "
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "O esquema do Url não permite um nome de utilizador"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "O esquema de url é um componente requerido"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "não instalar %s"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "O esquema de Url requer um componente de computador (host)"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "manter %s"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "O esquema de Url requer um nome de caminho"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbequistão"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "não perguntar para instalar um resolúvel que fornece %s"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vai"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "não perguntar para apagar todos os resolúveis que fornecem %s"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-#, fuzzy
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "Não foi encontrada uma metadata válida no(s) URL(s) especificado(s)"
-msgstr[1] "Não foi encontrada uma metadata válida no(s) URL(s) especificado(s)"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "não instalar a versão mais recente de %s"
 
-# name for VUT
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, fuzzy, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s fornece %s, mas tem outra arquitectura."
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Venda"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, fuzzy, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "instalar %s apesar de alterar a arquitectura"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%s obsoleto %s"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietname"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, fuzzy, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "Repositório activado"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnamita"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "desactualização de %s para %s"
 
-# name for VIR
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Ilhas Virgens Americanas, E.U."
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "alteração de arquitectura de %s para %s"
 
-#: zypp/media/MediaCurl.cc:1008
+#: zypp/solver/detail/SATResolver.cc:1334
+#, fuzzy, c-format, boost-format
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
+"instalar %s (com alteração do vendedor)\n"
+"  %s\n"
+"-->\n"
+"  %s"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "substituição de %s por %s"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Votic"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "desinstalação de %s"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "Idiomas Wakashan"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, fuzzy, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "Ignorar de uma forma geral algumas dependências"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Walamo"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr ""
 
-# name for WLF
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis e Futuna"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, fuzzy, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "Está em falta um ficheiro necessário: "
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Walloon"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
+
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Não é possível abrir ficheiro de bloqueio: %s"
+
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Esta acção já está a ser executada por outro programa."
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Waray"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Histórico:"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Washo"
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Comando '%s' desconhecido"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Gaulês"
+#: zypp/base/StrMatcher.cc:153
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Digest %s desconhecido para o ficheiro %s."
 
-# name for ESH
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Sara Ocidental"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Expressão regular inválida '%s': regcomp devolveu %d"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolof"
+#: zypp/base/StrMatcher.cc:158
+#, fuzzy, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Expressão regular inválida '%s': regcomp devolveu %d"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhosa"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Yakut"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Autenticação requerida para '%s'"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yao"
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Falha ao montar %s em %s"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Yapese"
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Falha ao desmontar %s"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Iémen"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Nome de ficheiro incorrecto: %s"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Yiddish"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
 
-# name for ABW
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Yoruba"
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "Ficheiro '%s' não foi encontrado no suporte '%s'"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Idiomas Yupik"
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Não é possível escrever o ficheiro '%s'."
 
-# name for ZMB
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zâmbia"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Mau ponto de ligação com o suporte"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapotec"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Inicialização da descarga (curl) falhou para '%s'"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
 
-# name for BTN
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabué"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr ""
 
-# name for TUV
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "URI mal formado"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Nome de computador vazio no URI"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "falhou a verificação applydeltarpm."
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Sistema de ficheiros vazio no URI"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "falhou o applydeltarpm."
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Destino vazio no URI"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "alteração de arquitectura de %s para %s"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Esquema de URI não suportado em '%s'."
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, fuzzy, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "Ignorar de uma forma geral algumas dependências"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "não é possível instalar tanto %s como %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Erro de descarga (curl) para '%s':\n"
+"Código do erro: %s\n"
+"Mensagem do erro: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "pedidos em conflito"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"Ocorreu um erro durante a definição das opções de descarga (curl) para '%s':"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "cópia de segurança %s criada"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "desinstalação de %s"
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "fornecedores apagados: "
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Não é possível ejectar nenhum suporte"
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "não perguntar para apagar todos os resolúveis que fornecem %s"
+msgid "Cannot eject media '%s'"
+msgstr "Não é possível ejectar o suporte '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:199
+#, c-format, boost-format
+msgid "Permission to access '%s' denied."
+msgstr "Foi negada a autorização para aceder a '%s'."
+
+#: zypp/media/MediaException.cc:207
+#, fuzzy, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Tempo limite excedido quando acedia a '%s'."
+
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "não perguntar para instalar um resolúvel que fornece %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "não instalar %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" problema no certificado SSL, verifique se o certificado de CA é OK para "
+"'%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "não instalar a versão mais recente de %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "desactualização de %s para %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Método '%s' de autenticação HTTP não suportado"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Não é possível criar o sat-pool."
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, fuzzy, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"instalar %s (com alteração do vendedor)\n"
-"  %s\n"
-"-->\n"
-"  %s"
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, fuzzy, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "instalar %s apesar de alterar a arquitectura"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, fuzzy, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "Repositório activado"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s torna obsoleto %s fornecido por %s"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "manter %s"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, fuzzy, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s fornece %s, mas tem outra arquitectura."
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%s obsoleto %s"
+#, fuzzy
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "Ignorar de uma forma geral algumas dependências"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Não é possível criar o contexto libhal"
+#~ msgid "do not forbid installation of %s"
+#~ msgstr "não proibir a instalação de %s"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: Não é possível definir a ligação dbus"
+#~ msgid "do not keep %s installed"
+#~ msgstr "não manter %s instalado"
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "nada fornece %s necessário por %s"
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "توقف التحميل في %d%%"
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "nada fornece %s solicitado"
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, c-format, boost-format
-msgid "package %s does not exist"
-msgstr ""
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problema com o pacote %s instalado"
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr ""
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr ""
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "تجاهل %s القديم في %s"
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "substituição de %s por %s"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "تجاهل تعارض %s هذا"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "o rpm %s foi criado como %s, mas foi impossível determinar a diferença"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "تجاهل هذا المتطلب هنا فقط"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"o rpm %s foi criado com %s.\n"
-"Tem as primeiras 25 linhas diferentes:\n"
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr ""
-"o rpm %s foi guardado como %s, mas foi impossível determinar a diferença"
+#~ msgid "Install missing resolvables"
+#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
+
+#~ msgid "Keep resolvables"
+#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
+
+#~ msgid "Unlock these resolvables"
+#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
+
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
-msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"o rpm %s foi guardado com %s.\n"
-"Tem as primeiras 25 linhas diferentes:\n"
+#~ msgid "install %s"
+#~ msgstr "تثبيت %s"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "Resolúvel %s conflitua com %s fornecido por ele próprio"
+#~ msgid "unlock %s"
+#~ msgstr "إلغاء قفل %s"
+
+#~ msgid "unlock all resolvables"
+#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
 
-#: zypp/solver/detail/SATResolver.cc:989
 #, fuzzy
-msgid "some dependency problem"
-msgstr "Não foi possível instalar %s devido a problemas de dependências"
+#~ msgid "Can't open solv-file: "
+#~ msgstr "تعذر فتح الملف %1."
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "fornecedores não instaláveis: "
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "تعذرت قراءة القطاع %u."
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "desconhecido"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#: zypp/VendorSupportOptions.cc:17
-#, fuzzy
-msgid "unsupported"
-msgstr " - não suportado"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#~ msgid "Software management is already running."
+#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
 
-#, fuzzy
-#~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
-#~ msgstr ""
-#~ "\n"
-#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
+#~ msgid "%s replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
+
+#, fuzzy
+#~ msgid "%s will be deleted by the user.\n"
 #~ msgstr ""
 #~ "\n"
 #~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#~ msgid " Error!"
-#~ msgstr "خطأ!"
-
-#~ msgid " Important!"
-#~ msgstr "هام!"
+#, fuzzy
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#~ msgid " fails checksum verification."
-#~ msgstr "فشل التحقق من المجموع الاختباري."
+#~ msgid "Invalid information"
+#~ msgstr "المعلومات غير صالحة"
 
-#~ msgid " miss checksum."
-#~ msgstr "فقد المجموع الاختباري."
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
 
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s مطلوب بواسطة\n"
+#~ "%s"
 
 #~ msgid "%s conflicts with other resolvables"
 #~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
@@ -5086,262 +5168,374 @@ msgstr ""
 #~ "%s يتعارض مع:\n"
 #~ "%s"
 
-#~ msgid "%s depended on %s"
-#~ msgstr "%s اعتمد على %s"
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
 
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s اعتمد على %s"
+#~ msgid "%s obsoletes:%s"
+#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
-#~ msgid "%s depends on %s"
-#~ msgstr "%s يعتمد على %s"
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
 #~ msgid "%s depends on other resolvables"
 #~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
 
+#~ msgid "%s depends on %s"
+#~ msgstr "%s يعتمد على %s"
+
 #~ msgid "%s depends on:%s"
 #~ msgstr "%s يعتمد على:%s"
 
+#~ msgid "Child of"
+#~ msgstr "عنصر فرعي لـ"
+
 #, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
 
 #, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
+#~ msgid ""
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
-#~ msgid "%s has missing dependencies"
-#~ msgstr "تم فقد تبعيات %s"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
+
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
 
 #~ msgid "%s has unfulfilled requirements"
 #~ msgstr "لم يتم استيفاء متطلبات %s"
 
-#~ msgid "%s install failed"
-#~ msgstr "Falhou a instalação de %s"
+#~ msgid "%s has missing dependencies"
+#~ msgstr "تم فقد تبعيات %s"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
+
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
+
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
+
+#~ msgid "No need to install %s"
+#~ msgstr "لا داعي لتثبيت %s"
+
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
+
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
+
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "تعذر تثبيت %s لأنه متعارض"
+
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
+
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
+
+#, fuzzy
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s يفتقد المتطلب %s"
+
+#~ msgid ", Action: "
+#~ msgstr "، الإجراء:"
+
+#~ msgid ", Trigger: "
+#~ msgstr "، تشغيل:"
+
+#~ msgid "package"
+#~ msgstr "الحزمة"
+
+#~ msgid "selection"
+#~ msgstr "التحديد"
+
+#~ msgid "pattern"
+#~ msgstr "النمط"
+
+#~ msgid "product"
+#~ msgstr "المنتج"
+
+#~ msgid "patch"
+#~ msgstr "التصحيح"
+
+#~ msgid "script"
+#~ msgstr "البرنامج النصي"
+
+#~ msgid "message"
+#~ msgstr "الرسالة"
+
+#~ msgid "atom"
+#~ msgstr "الذرة"
+
+#~ msgid "system"
+#~ msgstr "النظام"
+
+#~ msgid "Resolvable"
+#~ msgstr "التبعية القابلة للتحليل"
+
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
+
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
+
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
+
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
+
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
+
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
+
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
+
+#~ msgid "Establishing %s"
+#~ msgstr "تأسيس %s"
+
+#~ msgid "Installing %s"
+#~ msgstr "تثبيت %s"
+
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
 
-#~ msgid "%s installed ok"
-#~ msgstr "%s instalado com sucesso"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "تخطي %s: تم التثبيت بالفعل"
 
 #, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
 
-#, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
+#~ msgid "for %s"
+#~ msgstr "لـ %s"
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s يفتقد المتطلب %s"
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
 
-#~ msgid "%s is locked and cannot be uninstalled."
-#~ msgstr "%s Ù\85Ù\82Ù\81Ù\84 Ù\88Ù\8aتعذر إلغاء تثبيته."
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86 ØªÙ\85ت Ø¬Ø¯Ù\88Ù\84تÙ\87 Ù\84إلغاء تثبيته."
 
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "%s Ù\85Ø·Ù\84Ù\88ب Ø¨Ù\88اسطة Ø§Ù\84تبعÙ\8aات Ø§Ù\84Ù\82ابÙ\84Ø© Ù\84Ù\84تحÙ\84Ù\8aÙ\84 Ø§Ù\84أخرÙ\89"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86 ØªÙ\85 ØªØ«Ø¨Ù\8aت Ø¥ØµØ¯Ø§Ø± Ø¢Ø®Ø± Ù\84Ù\80 %s Ù\87ذا Ø¨Ø§Ù\84Ù\81عÙ\84."
 
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "%s Ù\85Ø·Ù\84Ù\88ب Ø¨Ù\88اسطة\n"
-#~ "%s"
+#~ "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86Ù\87 Ù\82ابÙ\84 Ù\84Ø¥Ù\84غاء Ø§Ù\84تثبÙ\8aت.  Ø­Ø§Ù\88Ù\84 ØªØ«Ø¨Ù\8aتÙ\87 Ù\84Ù\84حصÙ\88Ù\84 Ø¹Ù\84Ù\89 Ù\85زÙ\8aد Ù\85Ù\86 "
+#~ "التفاصيل."
 
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s يوفر %s، لكنه مقفل."
+
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
 
 #, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s Ù\85Ø·Ù\84Ù\88ب Ø¨Ù\88اسطة %s"
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86 Ù\84Ù\87 Ù\87Ù\8aÙ\83Ù\84 Ø¢Ø®Ø±."
 
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
 #~ msgstr ""
 #~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
 #~ msgstr ""
 #~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
-#~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
-#~ "الارتباط."
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr ""
-#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
+
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
+
+#~ msgid "from %s"
+#~ msgstr "من %s"
+
+#~ msgid " Error!"
+#~ msgstr "خطأ!"
+
+#~ msgid " Important!"
+#~ msgstr "هام!"
+
+#~ msgid "%s depended on %s"
+#~ msgstr "%s اعتمد على %s"
 
 #, fuzzy
-#~ msgid "%s is suggested by %s"
+#~ msgid "%s is recommended by %s"
 #~ msgstr "%s مطلوب بواسطة %s"
 
 #, fuzzy
-#~ msgid "%s is supplemented by %s"
+#~ msgid "%s is suggested by %s"
 #~ msgstr "%s مطلوب بواسطة %s"
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
-
 #, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
-
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#~ msgid "%s obsoletes:%s"
-#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
 #~ msgid "%s part of %s"
 #~ msgstr "%s جزء من %s"
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
-
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
+#, fuzzy
+#~ msgid "Double timeout"
+#~ msgstr "موعد الاستحقاق: %1"
 
 #, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86 Ù\84Ù\87 Ù\87Ù\8aÙ\83Ù\84 Ø¢Ø®Ø±."
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s Ù\85Ø·Ù\84Ù\88ب Ø¨Ù\88اسطة %s"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "تعذر تحليل سلطة Url"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s يوفر %s، لكنه مقفل."
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
 
 #~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
 #~ msgstr ""
-#~ "%s Ù\8aÙ\88Ù\81ر %sØ\8c Ù\84Ù\83Ù\86Ù\87 Ù\82ابÙ\84 Ù\84Ø¥Ù\84غاء Ø§Ù\84تثبÙ\8aت.  Ø­Ø§Ù\88Ù\84 ØªØ«Ø¨Ù\8aتÙ\87 Ù\84Ù\84حصÙ\88Ù\84 Ø¹Ù\84Ù\89 Ù\85زÙ\8aد Ù\85Ù\86 "
-#~ "اÙ\84تÙ\81اصÙ\8aÙ\84."
+#~ "%s Ù\85Ø·Ù\84Ù\88ب Ø¨Ù\88اسطة ØªØ¨Ø¹Ù\8aØ© Ù\82ابÙ\84Ø© Ù\84Ù\84تحÙ\84Ù\8aÙ\84 Ø£Ø®Ø±Ù\89 Ù\85Ø·Ù\84Ù\88ب ØªØ«Ø¨Ù\8aتÙ\87اØ\8c Ù\84ذا Ù\84Ù\86 Ù\8aتÙ\85 Ø¥Ù\84غاء "
+#~ "اÙ\84ارتباط."
 
-#, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
+
+#~ msgid "Unable to restore all sources."
+#~ msgstr "تعذرت استعادة كافة المصادر."
 
-#, fuzzy
 #~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
 
-#~ msgid "%s remove failed"
-#~ msgstr "Falha ao remover %s"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#~ msgid "%s remove ok"
-#~ msgstr "%s removido com sucesso"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#~ msgid "%s replaced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
+#~ msgid "Reading index files"
+#~ msgstr "قراءة ملفات الفهرس"
 
-#, fuzzy
-#~ msgid "%s will be deleted by the user.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
 
-#, fuzzy
-#~ msgid "%s will be installed by the user.\n"
-#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
+#~ msgid "Reading product from %s"
+#~ msgstr "قراءة المنتج من %s"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "قراءة قائمة الملفات من %s"
 
-#~ msgid ", Action: "
-#~ msgstr "، الإجراء:"
+#~ msgid "Reading packages from %s"
+#~ msgstr "قراءة الحزم من %s"
 
-#~ msgid ", Trigger: "
-#~ msgstr "، تشغيل:"
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
 
-#, fuzzy
-#~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
-#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
 
-#~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
-#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
+#~ msgid "Reading patches index %s"
+#~ msgstr "قراءة فهرس التصحيحات %s"
 
-#~ msgid "Can't chdir to '/' inside chroot (%s)."
-#~ msgstr "Não é possível fazer chdir para '/' dentro do chroot (%s)."
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
 
-#, fuzzy
-#~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
-#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
 
-#, fuzzy
-#~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
-#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
+#~ msgid "Reading packages file"
+#~ msgstr "قراءة ملف الحزم"
 
-#, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
+#~ msgid "Reading translation: %s"
+#~ msgstr "قراءة الترجمة: %s"
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "تعذر فتح الملف %1."
-
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
-
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
-#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
-
-#~ msgid "Cannot create a file needed to perform update installation."
-#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
-
-#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
 #~ msgstr ""
-#~ "Não é possível criar a chave pública %s a partir do chaveiro %s para o "
-#~ "ficheiro %s"
-
-#~ msgid "Cannot install %s to fulfil the dependencies of %s"
-#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
+#~ "التثبيت؟"
 
-#, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting"
-#~ msgstr "تعذر تثبيت %s لأنه متعارض"
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
+#~ msgid "Downloading %s"
+#~ msgstr "إنزال %s"
 
-#~ msgid "Child of"
-#~ msgstr "عنصر فرعي لـ"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr ""
+#~ "Não é possível criar a chave pública %s a partir do chaveiro %s para o "
+#~ "ficheiro %s"
 
-#, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr "Tentativa de importar uma chave %s não existente no chaveiro %s"
 
-#, fuzzy
-#~ msgid "Double timeout"
-#~ msgstr "موعد الاستحقاق: %1"
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "Não é possível fazer chdir para '/' dentro do chroot (%s)."
 
 #, fuzzy
 #~ msgid "Download (Metalink curl) initialization failed for '%s'"
@@ -5357,23 +5551,10 @@ msgstr ""
 #~ "Código do erro: %s\n"
 #~ "Mensagem do erro: %s\n"
 
-#~ msgid "Download interrupted at %d%%"
-#~ msgstr "توقف التحميل في %d%%"
-
 #, fuzzy
 #~ msgid "Download interrupted by user"
 #~ msgstr "A descarregar grupos"
 
-#~ msgid "Downloading %s"
-#~ msgstr "إنزال %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
-
 #, fuzzy
 #~ msgid ""
 #~ "Error occurred while setting download (metalink curl) options for '%s':"
@@ -5382,15 +5563,21 @@ msgstr ""
 #~ "'%s':"
 
 #, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "تعذرت قراءة القطاع %u."
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Falha ao montar %s em %s"
 
-#~ msgid "Establishing %s"
-#~ msgstr "تأسيس %s"
+# name for SCG
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Sérvia e Montenegro"
 
 #, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Falha ao montar %s em %s"
+#~ msgid "Unknown Distribution"
+#~ msgstr "Opção de lista desconhecida"
+
+#, fuzzy
+#~| msgid "Ignore some dependencies of %s"
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "Ignorar algumas dependências de %s"
 
 #~ msgid ""
 #~ "File %s does not have a checksum.\n"
@@ -5440,138 +5627,6 @@ msgstr ""
 #~ "%s|%s|%s\n"
 #~ "Utilizar o ficheiro de qualquer das formas?"
 
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
-
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "تجاهل %s القديم في %s"
-
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "تجاهل تعارض %s هذا"
-
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
-
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "تجاهل هذا المتطلب هنا فقط"
-
-#, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
-
-#~ msgid "Install missing resolvables"
-#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
-
-#~ msgid "Installing %s"
-#~ msgstr "تثبيت %s"
-
-#~ msgid "Invalid information"
-#~ msgstr "المعلومات غير صالحة"
-
-#~ msgid "Invalid user name or password."
-#~ msgstr "Nome de utilizador ou palavra passe inválidos."
-
-#~ msgid "Keep resolvables"
-#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
-
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
-
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
-
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
-
-#~ msgid "No need to install %s"
-#~ msgstr "لا داعي لتثبيت %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
-#~ msgstr ""
-#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
-#~ "التثبيت؟"
-
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
-
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
-
-#~ msgid "Reading filelist from %s"
-#~ msgstr "قراءة قائمة الملفات من %s"
-
-#~ msgid "Reading index files"
-#~ msgstr "قراءة ملفات الفهرس"
-
-#~ msgid "Reading packages file"
-#~ msgstr "قراءة ملف الحزم"
-
-#~ msgid "Reading packages from %s"
-#~ msgstr "قراءة الحزم من %s"
-
-#~ msgid "Reading patch %s"
-#~ msgstr "قراءة التصحيح %s"
-
-#~ msgid "Reading patches index %s"
-#~ msgstr "قراءة فهرس التصحيحات %s"
-
-#~ msgid "Reading pattern from %s"
-#~ msgstr "قراءة النمط من %s"
-
-#~ msgid "Reading product from %s"
-#~ msgstr "قراءة المنتج من %s"
-
-#~ msgid "Reading selection from %s"
-#~ msgstr "قراءة التحديد من %s"
-
-#~ msgid "Reading translation: %s"
-#~ msgstr "قراءة الترجمة: %s"
-
-#~ msgid "Resolvable"
-#~ msgstr "التبعية القابلة للتحليل"
-
-# name for SCG
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Sérvia e Montenegro"
-
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "تخطي %s: تم التثبيت بالفعل"
-
-#~ msgid "Software management is already running."
-#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
-
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
-
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
-
-#, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
-
-#~ msgid "This would invalidate %s."
-#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
-
-#~ msgid "Tried to import not existant key %s into keyring %s"
-#~ msgstr "Tentativa de importar uma chave %s não existente no chaveiro %s"
-
-#~ msgid "Unable to parse Url authority"
-#~ msgstr "تعذر تحليل سلطة Url"
-
-#~ msgid "Unable to restore all sources."
-#~ msgstr "تعذرت استعادة كافة المصادر."
-
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "Opção de lista desconhecida"
-
-#~ msgid "Unlock these resolvables"
-#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
-
 #~ msgid ""
 #~ "Untrusted key found:\n"
 #~ "%s|%s|%s\n"
@@ -5581,75 +5636,20 @@ msgstr ""
 #~ "%s|%s|%s\n"
 #~ "Confiar na chave?"
 
-#~ msgid "Updating %s to %s"
-#~ msgstr "تحديث %s إلى %s"
-
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
-
-#~ msgid "atom"
-#~ msgstr "الذرة"
-
-#~ msgid "delete %s"
-#~ msgstr "حذف %s"
-
-#~ msgid "do not forbid installation of %s"
-#~ msgstr "não proibir a instalação de %s"
-
-#~ msgid "do not keep %s installed"
-#~ msgstr "não manter %s instalado"
-
-#~ msgid "for %s"
-#~ msgstr "لـ %s"
-
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "لطلب %s لـ %s عند تحديث %s"
-
-#~ msgid "from %s"
-#~ msgstr "من %s"
-
-#, fuzzy
-#~ msgid "generally ignore of some dependecies"
-#~ msgstr "Ignorar de uma forma geral algumas dependências"
-
-#, fuzzy
-#~| msgid "Ignore some dependencies of %s"
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "Ignorar algumas dependências de %s"
-
-#~ msgid "install %s"
-#~ msgstr "تثبيت %s"
-
-#~ msgid "message"
-#~ msgstr "الرسالة"
-
-#~ msgid "package"
-#~ msgstr "الحزمة"
-
-#~ msgid "patch"
-#~ msgstr "التصحيح"
-
-#~ msgid "pattern"
-#~ msgstr "النمط"
+#~ msgid "%s remove failed"
+#~ msgstr "Falha ao remover %s"
 
-#~ msgid "product"
-#~ msgstr "المنتج"
+#~ msgid "Invalid user name or password."
+#~ msgstr "Nome de utilizador ou palavra passe inválidos."
 
 #~ msgid "rpm output:"
 #~ msgstr "resultado do rpm:"
 
-#~ msgid "script"
-#~ msgstr "البرنامج النصي"
-
-#~ msgid "selection"
-#~ msgstr "التحديد"
-
-#~ msgid "system"
-#~ msgstr "النظام"
+#~ msgid "%s install failed"
+#~ msgstr "Falhou a instalação de %s"
 
-#~ msgid "unlock %s"
-#~ msgstr "إلغاء قفل %s"
+#~ msgid "%s installed ok"
+#~ msgstr "%s instalado com sucesso"
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
+#~ msgid "%s remove ok"
+#~ msgstr "%s removido com sucesso"
index b90d010..6c9a687 100644 (file)
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# translation of zypp.po to Brazilian Portuguese
+# Portugese (Brasilian) message file for YaST2 (@memory@).
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002 SuSE Linux AG.
+# Copyright (C) 1999-2000, 2001 SuSE GmbH.
 #
+# Karl Eichwalder <ke@suse.de>, 1999.
+# Ralf Lanz <rlanz@genix.com.br>, 1999.
+# Isis Binder <isis.binder@gmail.com>, 2008, 2010.
+# Luiz Fernando Ranghetti <elchevive@opensuse.org>, 2008.
+# Luiz Fernando Ranghetti <elchevive@opensuse.org>, 2008, 2009, 2012, 2013, 2014, 2015, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: zypp\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 16:58\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2016-05-13 18:54+0000\n"
+"Last-Translator: Luiz Fernando Ranghetti <elchevive68@gmail.com>\n"
+"Language-Team: Portuguese (Brazil) "
+"<http://l10n.opensuse.org/projects/libzypp/master/pt_BR/>\n"
+"Language: pt_BR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 2.5\n"
+"X-Poedit-Language: Portuguese\n"
+"X-Poedit-Country: BRAZIL\n"
+"X-Poedit-SourceCharset: utf-8\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"fornecedores de não instaláveis: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Exceção de Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Texto de consulta de URL LDAP inválida"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" Problema no certificado SSL. Verifique se o certificado CA está correto "
-"para '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Parâmetro de consulta de URL de LDAP inválido '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Não foi possível clonar o objeto URL"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Referência a objeto URL vazio inválida"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Não foi possível analisar os componentes da URL"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Não foi possível inicializar os atributos do mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Não foi possível definir o atributo do mutex recursivo"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Não foi possível inicializar o mutex recursivo"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Não foi possível adquirir o bloqueio mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Não foi possível liberar o bloqueio mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Fornece"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Pré-requer"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Requer"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Conflita"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Torna obsoleto"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Recomenda"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Sugere"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Aprimora"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Complementa"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Tipo duvidoso '%s' para %u byte da soma de verificação '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -38,10 +124,6 @@ msgstr " executado"
 msgid " execution failed"
 msgstr " a execução falhou"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " execução ignorada durante interrupção"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -50,1571 +132,2420 @@ msgstr " execução ignorada durante interrupção"
 msgid "%s already executed as %s)"
 msgstr "%s já executado como %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s conflita com %s, fornecido por %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " execução ignorada durante o cancelamento"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s não pertence ao repositório de atualização da distribuição"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Erro ao enviar a notificação de mensagem de atualização."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s tem uma arquitetura inferior"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Nova mensagem de atualização"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s não pode ser instalado"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "A instalação foi cancelada conforme instruções."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s é fornecido pelo sistema e não pode ser apagado"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
+"Desculpe, mas esta versão do libzypp foi compilada sem o suporte ao HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s torna obsoleto %s, fornecido por %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext não conectado"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s requer %s, mas este requisito não pode ser fornecido"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive não inicializado"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(EXPIRADO)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume não inicializado"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(não expira)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Não foi possível criar a conexão com o dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(expira em 24 h)"
-msgstr[1] "(expira em 24 h)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Não foi possível criar o contexto libhal"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(expira em 24 h)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr ""
+"libhal_set_dbus_connection: Não foi possível definir a conexão com dbus"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhaz"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
+"Não foi possível inicializar o contexto HAL -- o hald não está em execução?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achém"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Não é uma unidade de CDROM"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "Falha no RPM: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Circassiano"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Falha ao importar chave pública do arquivo %s: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Adicionando o repositório '%s'"
+msgid "Failed to remove public key %s: %s"
+msgstr "Falha ao remover chave pública %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Contrato Adicional do Consumidor Necessário"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Arquivos de configuração alterados para %s:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "o rpm salvou %s como %s, mas não foi possível determinar a diferença"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"o rpm salvou %s como %s.\n"
+"Aqui estão as 25 primeiras linhas de diferença:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "o rpm criou %s como %s, mas não foi possível determinar a diferença"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm criou %s como %s.\n"
+"Aqui estão as 25 primeiras linhas de diferença:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
 #: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
 msgid "Additional rpm output"
-msgstr "Saída de rpm adicional"
+msgstr "Saída adicional do rpm"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adyghe"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "backup %s criado"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "A assinatura está OK"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afeganistão"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Tipo de assinatura desconhecido"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Afrihili"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "A assinatura não verifica"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Africânder"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "A assinatura está OK, mas a chave não é confiável"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-Asiático (Outros)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "A chave de assinatura pública não está disponível"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Aino"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "O arquivo não existe ou a assinatura não pôde ser verificada"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Akan"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "As seguintes ações serão realizadas:"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Acadiano"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+"Não foi possível ler o diretório de repositório '%1%': Permissão negada"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Aland Islands"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Falha ao ler o diretório '%s'"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albânia"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "Não foi possível ler o arquivo de repositório '%1%': Permissão negada"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albanês"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "O apelido do repositório não pode começar com ponto."
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aleúte"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "O apelido do serviço não pode começar com ponto."
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Argélia"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Não foi possível abrir o arquivo '%s' para gravação."
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Línguas Algonquinas"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+"Serviço '%1%' desconhecido: removendo o repositório de serviço órfão '%2%'"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaico (Outros)"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Metadados válidos não encontrados na URL especificada"
+msgstr[1] "Metadados válidos não encontrados nas URLs especificadas"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Samoa Americana"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Não foi possível criar %s"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Aramáico"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Não foi possível criar o diretório do cache de metadados."
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-"Um contrato adicional com o consumidor é necessário para receber suporte."
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Construindo o cache do repositório '%s'"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Não foi possível criar o cache em %s - sem permissão de escrita."
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Falha ao fazer o cache do repositório (%d)."
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Tipo de repositório não identificado"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antártida"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Ocorreu um erro ao tentar ler a partir de '%s'"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antígua e Barbuda"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Erro desconhecido ao ler de '%s'"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Línguas Apaches"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Adicionando o repositório '%s'"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Árabe"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Nome de arquivo de repositório inválido em '%s'"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonês"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Removendo o repositório '%s'"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Aramaico"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Não foi possível descobrir onde o repositório está armazenado."
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Não foi possível remover '%s'"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Araucano"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Não foi possível descobrir onde o serviço está armazenado."
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "O esquema de URL não permite %s"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Componente '%s' inválido %s"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armênia"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Componente inválido %s"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armênio"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "A análise de texto de consulta não é suportada para esta URL"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Artificial (Outros)"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "O esquema de URL é um componente obrigatório"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Esquema de URL '%s' inválido"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Assamês"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "O esquema de URL não permite nome de usuário"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Asturiano"
-
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Línguas Atapascas"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "O esquema de URL não permite senha"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Austrália"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "O esquema de URL requer um componente de host"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Línguas Australianas"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "O esquema de URL não permite componente de host"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Áustria"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Componente de host inválido '%s'"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronésio (Outros)"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "O esquema de URL não permite porta"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Autenticação necessária para '%s'"
+msgid "Invalid port component '%s'"
+msgstr "Componente de porta inválido '%s'"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Avárico"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "O esquema de URL requer nome de caminho"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Avéstico"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Caminho relativo não permitido se existir autoridade"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Awadhi"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "O texto codificado contém um byte NUL"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Aymara"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Caractere separador de divisão de matriz de parâmetros inválido"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaijão"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Caractere separador de divisão de mapa de parâmetros inválido"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Azerbaidjano"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Caractere separador de integração de matriz de parâmetros inválido"
 
-#: zypp/media/MediaException.cc:47
+#: zypp/ExternalProgram.cc:258
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Nome de arquivo inválido: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Ponto de anexação de mídia inválido"
+msgid "Can't open pty (%s)."
+msgstr "Não foi possível abrir o pty (%s)."
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Não foi possível abrir o pipe (%s)."
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrein"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Não foi possível executar o chroot em '%s' (%s)."
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinês"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "Não foi possível executar chdir para '%s' dentro do chroot '%s' (%s)."
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Báltico (Outros)"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Não foi possível executar chdir para '%s' (%s)."
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Balúchi"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Não foi possível executar '%s' (%s)."
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Bambara"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Não foi possível dividir (%s)."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Línguas Bamileques"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "O comando encerrou com status %d."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Comando foi morto pelo sinal %d (%s)."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "O comando encerrou com erro desconhecido."
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Banto (Outros)"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(não expira)"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(EXPIRADO)"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(expira dentro de 24h)"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bashkir"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(expira em %d dia)"
+msgstr[1] "(expira em %d dias)"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Basco"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "desconhecido"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Bataque (Indonésia)"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "não suportado"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Bejanês"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Nível 1"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belarus"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Nível 2"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Bielo-russo"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Nível 3"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Bélgica"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Contrato adicional do consumidor necessário"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "inválido"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Bemba"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "O nível de suporte não foi especificado"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengali"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "O fornecedor não oferece suporte."
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Determinação do problema, que significa suporte técnico feito para fornecer "
+"informações de compatibilidade, assistência na instalação, suporte ao uso, "
+"manutenção contínua e solução básica de problemas. O Suporte de Nível 1 não "
+"corrige defeitos do produto."
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Berbere (Outros)"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Isolamento do problema, que significa suporte técnico feito para duplicar os "
+"problemas do cliente, isolar a área do problema e fornecer solução para "
+"problemas não resolvidos pelo Suporte de Nível 1."
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermudas"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Resolução de problema, que significa suporte técnico feito para resolver "
+"problemas complexos através de engenharia na resolução de defeitos do "
+"produto que foram identificados pelo Suporte de Nível 2."
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Bhojpuri"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+"Um contrato adicional com o consumidor é necessário para receber suporte."
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Butão"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Opção de suporte desconhecida. A descrição não está disponível"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihari"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "País desconhecido: "
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikol"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Sem código"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Bini"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bichlamar"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Emirados Árabes Unidos"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afeganistão"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolívia"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antígua e Barbuda"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bósnia-Herzegóvina"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguila"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Sérvio"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albânia"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botsuana"
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armênia"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Ilha Bouvet"
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Antilhas Holandesas"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Brajavali"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasil"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antártida"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretão"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Território Britânico no Oceano Índico"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Samoa Americana"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Ilhas Virgens Britânicas"
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Áustria"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei"
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Austrália"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Buginês"
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Construindo o cache do repositório '%s'"
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Ilhas Åland"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgária"
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaijão"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Búlgaro"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bósnia e Herzegovina"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriátio"
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Bélgica"
 
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
-msgstr "Burkina Fasso"
+msgstr "Burkina Faso"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Birmanês"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgária"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Barein"
 
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "Burundi"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Cadoano"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Camboja"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermudas"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Camarões"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Impossível criar o sat-pool."
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolívia"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Impossível adquirir o bloqueio mutex"
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasil"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Impossível executar chdir para '%s' (%s)."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "Impossível executar chdir para '%s' no chroot '%s' (%s)."
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Impossível executar o chroot em '%s' (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Impossível criar %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Impossível criar o cache em %s - sem permissão de gravação."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Impossível criar o diretório do cache de metadados."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Impossível apagar '%s'"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Impossível executar '%s' (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Impossível descobrir onde o .repo está armazenado."
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Impossível descobrir onde o serviço está armazenado."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Butão"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Impossível dividir (%s)."
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Ilha Bouvet"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Impossível inicializar atributos de mutex"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botsuana"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Impossível inicializar mutex recursivo"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Belarus"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Impossível abrir arquivo '%s' para gravação."
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Impossível abrir o arquivo de bloqueio: %s"
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canadá"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Impossível abrir o pipe (%s)."
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Ilhas Cocos (Keeling)"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Impossível abrir o pty (%s)."
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Impossível fornecer o arquivo '%s' a partir do repositório '%s'"
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "República Centro-Africana"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Impossível liberar o bloqueio mutex"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Suíça"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Impossível definir atributo de mutex recursivo"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Costa do Marfim"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canadá"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Ilhas Cook"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Impossível ejetar qualquer mídia"
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Impossível ejetar a mídia '%s'"
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Camarões"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Impossível encontrar dispositivo de loop disponível para montar o arquivo de "
-"imagem de '%s'"
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "China"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "Impossível ler o diretório de repositório '%1%': Permissão negada"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colômbia"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "Impossível ler o arquivo de repositório '%1%': Permissão negada"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Não é possível gravar o arquivo '%s'."
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
 
 #. :CUB:192:
 #: zypp/CountryCode.cc:208
 msgid "Cape Verde"
 msgstr "Cabo Verde"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "Caribe"
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Ilha Christmas"
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Catalão"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Chipre"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "Caucasiano (Outros)"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "República Checa"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Ilhas Cayman"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Alemanha"
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "Cebuano"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibuti"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Celta (Outros)"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Dinamarca"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "República Centro-Africana"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Indígena Centro-Americano (Outros)"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "República Dominicana"
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Chade"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Argélia"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Equador"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Línguas Tchadianas"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estônia"
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "Chamorro"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egito"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Arquivos de configuração alterados para %s:"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Saara Ocidental"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Tchetcheno"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritreia"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Espanha"
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne"
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiópia"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "Chibcha"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finlândia"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Ilhas Malvinas (Falkland)"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "China"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Estados Federados da Micronésia"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Chinês"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Ilhas Feroe"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "Jargão Chinook "
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "França"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyan"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "França metropolitana"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "Choctaw"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabão"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Ilha Natal"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Reino Unido"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "Eslavo Eclesiástico"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Granada"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuukese"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Geórgia"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Chuvash"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Guiana Francesa"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Newari Clássico"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Ilhas Cocos (Keeling)"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Gana"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colômbia"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "O comando encerrou com status %d."
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Groenlândia"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "O comando encerrou com erro desconhecido."
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gâmbia"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Comando eliminado pelo sinal %d (%s)."
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guiné"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Ilhas Comores"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadalupe"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Está em conflito"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Guiné Equatorial"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grécia"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Ilhas Cook"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Ilhas Geórgia do Sul e Sandwich do Sul"
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "Copta"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "Córnico"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "Corso"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guiné-Bissau"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guiana"
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Costa do Marfim"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Ilha Heard e Ilhas McDonald"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Crioulos e Pidgins (Outros)"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Croácia"
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "Crioulos e Pidgins de Base Inglesa (Outros)"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "Crioulos e Pidgins de Base Francesa (Outros)"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hungria"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "Crioulos e Pidgins de Base Portuguesa (Outros)"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonésia"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "Tártaro (Criméia)"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irlanda"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Croácia"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Croata"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Ilha de Man"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Índia"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr "Cuchita (Outros)"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Território Britânico do Oceano Índico"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Chipre"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Iraque"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "Tcheco"
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Irã"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "República Tcheca"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islândia"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "Dacota"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Itália"
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "Dinamarquês"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr "Dargwa"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr "Daiaque"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordânia"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "Delaware"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japão"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Dinamarca"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Quênia"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "Dinca"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Quirguistão"
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "Divehi"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Camboja"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibuti"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "Dogri"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comores"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "São Cristóvão e Nevis"
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Coreia do Norte"
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "República Dominicana"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Coreia do Sul"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Erro de download (curl) para '%s':\n"
-"Código de erro: %s\n"
-"Mensagem de erro: %s\n"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Falha na inicialização do download (curl) para '%s'"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Ilhas Cayman"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "Dravidiano (Outros)"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Cazaquistão"
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "Duala"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Laos"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Tipo duvidoso '%s' para %u byte da soma de verificação '%s'"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Líbano"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Holandês"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Santa Lúcia"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Holandês Medieval (aprox. 1050-1350)"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr "Diúla"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "Dzongkha"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Libéria"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Timor Leste"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesoto"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Equador"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lituânia"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "Efique"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxemburgo"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egito"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Letônia"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "Egípcio (Antigo)"
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Líbia"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "Ekajuk"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marrocos"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Mônaco"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Elamita"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldávia"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Destino vazio no URI"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Sistema de arquivos vazio no URI"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "São Martinho"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Nome de host vazio no URI"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagascar"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "A string codificada contém um byte NUL"
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Ilhas Marshall"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Inglês"
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedônia"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Inglês Medieval (1100-1500)"
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Inglês Antigo (aprox. 450-1100)"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Mianmar"
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Aprimora"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongólia"
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Guiné Equatorial"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macau"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritréia"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Ilhas Marianas do Norte"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "Erro ao definir as opções de download (curl) para '%s':"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinica"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Erro ao enviar a notificação de mensagem de atualização."
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritânia"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Erro ao tentar ler de '%s'"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Esperanto"
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Ilhas Maurício"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estônia"
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldivas"
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Estoniano"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiópia"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "México"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Jeje"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malásia"
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Ewondo"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Moçambique"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Falha ao armazenar .repo (%d) em cache."
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namíbia"
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Falha ao apagar chave."
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nova Caledônia"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Falha ao importar chave pública do arquivo %s: %s"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Níger"
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Falha ao montar %s em %s"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Ilha Norfolk"
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Falha ao fornecer o Pacote %s. Deseja tentar a recuperação novamente?"
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigéria"
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Falha ao ler o diretório '%s'"
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicarágua"
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Falha ao remover chave pública %s: %s"
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Holanda"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Noruega"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauruano"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nova Zelândia"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Omã"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panamá"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Polinésia Francesa"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Nova Guiné"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipinas"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Paquistão"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polônia"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint Pierre e Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Ilhas Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Porto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Território Palestino"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguai"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Catar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Ilha Reunião"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romênia"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Sérvia"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Rússia"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Arábia Saudita"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Ilhas Salomão"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seicheles"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudão"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Suécia"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Cingapura"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Santa Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Eslovênia"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Ilhas Svalbard e Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Eslováquia"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Serra Leoa"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somália"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "São Tomé e Príncipe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Síria"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Suazilândia"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Ilhas Turks e Caicos"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Chade"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Terras Austrais e Antárticas Francesas"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tailândia"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadjiquistão"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Toquelauano"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turcomenistão"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunísia"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Timor-Leste"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turquia"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad e Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvaluano"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzânia"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ucrânia"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Ilhas Menores Distantes dos Estados Unidos"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Estados Unidos"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguai"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbequistão"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Santa Sé (Cidade do Vaticano)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "São Vicente e Granadinas"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Ilhas Virgens Britânicas"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Ilhas Virgens Americanas"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnã"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis e Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Iêmen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "África do Sul"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zâmbia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbábue"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Idioma desconhecido: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abcásio"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achém"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Circassiano"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adyghe"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-asiático (outros)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Afrihili"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Africâner"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Aino"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Akan"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Acadiano"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albanês"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aleúte"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Línguas algonquinas"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Altaico Meridional"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amárico"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Inglês antigo (aprox. 450-1100)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Línguas apaches"
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Árabe"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Aramaico"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonês"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armênio"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Araucano"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Artificial (outros)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Assamês"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Asturiano"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Línguas atapascas"
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Línguas australianas"
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Avárico"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Avéstico"
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Awadhi"
+
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Aymara"
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Azeri"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Línguas bamileques"
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bashkir"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Balúchi"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Bambara"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinês"
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Basco"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Báltico (outros)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Bejanês"
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Bielorusso"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Bemba"
+
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengali"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Berbere (outros)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Bhojpuri"
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Bihari"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikol"
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Bini"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislamá"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Banto (outros)"
+
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bósnio"
+
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Brajavali"
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretão"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Bataque (Indonésia)"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriátio"
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Buginês"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Búlgaro"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Birmanês"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Cadoano"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Indígena centro-americano (outros)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "Caribe"
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "Catalão"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "Caucasiano (outros)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "Cebuano"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Celta (outros)"
+
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "Chamorro"
+
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "Chibcha"
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Checheno"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Falha ao desmontar %s"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Ilhas Malvinas"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Chinês"
+
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuukese"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "Jargão chinook"
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "Choctaw"
+
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee"
+
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Eslavo eclesiástico"
+
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Chuvash"
+
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne"
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Línguas tchadianas"
+
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "Copta"
+
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "Córnico"
+
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "Corso"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr "Crioulos e pidgins de base inglesa (outros)"
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr "Crioulos e pidgins de base francesa (outros)"
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr "Crioulos e pidgins de base portuguesa (outros)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
+
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "Tártaro (Crimeia)"
+
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Crioulos e pidgins (outros)"
+
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Cassúbio"
+
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr "Cuchita (outros)"
+
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "Checo"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "Dacota"
+
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Dinamarquês"
+
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr "Dargwa"
+
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr "Daiaque"
+
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "Delaware"
+
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slave (Atapasca)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
+
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "Dinca"
+
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "Divehi"
+
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "Dogri"
+
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "Dravidiano (outros)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Baixo-sorbiano"
+
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "Duala"
+
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Holandês medieval (aprox. 1050-1350)"
+
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Holandês"
+
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
+msgstr "Diula"
+
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "Dzongkha"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "Efique"
+
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "Egípcio (Antigo)"
+
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "Ekajuk"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Elamita"
+
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Inglês"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Inglês medieval (1100-1500)"
+
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Esperanto"
+
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Estoniano"
+
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Jeje"
+
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Ewondo"
 
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
-msgstr "Fang"
-
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Ilhas Faeroes"
+msgstr "Fang"
 
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
-msgstr "Faeroês"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Micronésia"
+msgstr "Feroês"
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "Fijiano"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Arquivo %1%\n"
-"  da instalação de\n"
-"     %2%\n"
-"  está em conflito com arquivo\n"
-"     %3%\n"
-"  da instalação de\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Arquivo %1%\n"
-"  da instalação de\n"
-"     %2%\n"
-"  está em conflito com arquivo\n"
-"     %3%\n"
-"  do pacote\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Arquivo %1%\n"
-"  da instalação de\n"
-"     %2%\n"
-"  está em conflito com arquivo da instalação de\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Arquivo %1%\n"
-"  da instalação de\n"
-"     %2%\n"
-"  está em conflito com arquivo do pacote\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Arquivo %1%\n"
-"  do pacote\n"
-"     %2%\n"
-"  está em conflito com arquivo\n"
-"     %3%\n"
-"  da instalação de\n"
-"     %4%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Arquivo %1%\n"
-"  do pacote\n"
-"     %2%\n"
-"  está em conflito com arquivo\n"
-"     %3%\n"
-"  do pacote\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Arquivo %1%\n"
-"  do pacote\n"
-"     %2%\n"
-"  está em conflito com arquivo da instalação de\n"
-"     %3%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Arquivo %1%\n"
-"  do pacote\n"
-"     %2%\n"
-"  está em conflito com arquivo do pacote\n"
-"     %3%"
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Arquivo '%s' não encontrado no meio '%s'"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "O arquivo não existe ou a assinatura não pode ser verificada"
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finlândia"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1623,97 +2554,48 @@ msgstr "Finlandês"
 #. language code: fiu
 #: zypp/LanguageCode.cc:441
 msgid "Finno-Ugrian (Other)"
-msgstr "Fino-Ugriano (Outros)"
-
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "As seguintes ações serão realizadas:"
+msgstr "Fino-ugriano (outros)"
 
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "França"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Francês"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Guiana Francesa"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Polinésia Francesa"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Territórios Franceses Meridionais"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
-msgstr "Francês Medieval (aprox. 1400-1600)"
+msgstr "Francês medieval (aprox. 1400-1600)"
 
 #. language code: fro
 #: zypp/LanguageCode.cc:451
 msgid "French, Old (842-ca.1400)"
-msgstr "Francês Antigo (842-aprox. 1400)"
+msgstr "Francês antigo (aprox. 842-1400)"
 
 #. language code: fry fy
 #: zypp/LanguageCode.cc:453
 msgid "Frisian"
 msgstr "Frísio"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friulano"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fula"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friulano"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Cua"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabão"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaélico"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galego"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gâmbia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Nganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1724,15 +2606,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaia"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Ge'ez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Geórgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germânico (outros)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1744,39 +2621,45 @@ msgstr "Georgiano"
 msgid "German"
 msgstr "Alemão"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Ge'ez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertês"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaélico"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irlandês"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galego"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
-msgstr "Alto-Alemão Medieval (aprox. 1050-1500)"
+msgstr "Alto-alemão medieval (aprox. 1050-1500)"
 
 #. language code: goh
 #: zypp/LanguageCode.cc:489
 msgid "German, Old High (ca.750-1050)"
-msgstr "Alto-Alemão Antigo (aprox. 750-1050)"
-
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germânico (Outros)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Alemanha"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Gana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertês"
+msgstr "Alto-alemão antigo (aprox. 750-1050)"
 
 #. language code: gon
 #: zypp/LanguageCode.cc:491
@@ -1798,75 +2681,25 @@ msgstr "Gótico"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grécia"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
-msgstr "Grego Antigo (até 1453)"
+msgstr "Grego antigo (até 1453)"
 
 #. language code: gre ell el
 #: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
 msgid "Greek, Modern (1453-)"
-msgstr "Grego Moderno (1453-Presente)"
-
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Groenlândia"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Granada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadalupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
+msgstr "Grego moderno (após 1453)"
 
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guiné"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guiné-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
-msgstr "Gujarati"
-
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guiana"
+msgstr "Guzerate"
 
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
@@ -1878,52 +2711,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitiano"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Exceção de Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext não conectado"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive não inicializado"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume não inicializado"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
-msgstr "Hauçá"
-
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Você habilitou todos os repositórios solicitados?"
+msgstr "Haúça"
 
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Havaiano"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Ilhas Heard e McDonald"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1947,17 +2749,7 @@ msgstr "Himachali"
 #. language code: hin hi
 #: zypp/LanguageCode.cc:527
 msgid "Hindi"
-msgstr "Híndi"
-
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Histórico:"
+msgstr "Hindi"
 
 #. language code: hit
 #: zypp/LanguageCode.cc:529
@@ -1969,31 +2761,21 @@ msgstr "Hitita"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Cidade do Vaticano"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Alto-Sorbiano"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Húngaro"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hungria"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2004,10 +2786,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islândia"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Ibo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2019,252 +2801,107 @@ msgstr "Islandês"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Ibo"
-
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
-msgstr "Ijo"
-
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr "Ilocano"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Lapão (Inari)"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Índia"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr "Índico (Outros)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indo-Europeu (Outros)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonésia"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "Indonésio"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "Ingush"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "A instalação foi interrompida conforme instruções."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-"Interlíngua (International Auxiliary Language Association, Associação de "
-"Línguas Internacionais Auxiliares)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlínguas"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "Inupiaq"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Componente inválido %s"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Componente '%s' inválido %s"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Parâmetro de consulta de URL de LDAP inválido '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "String de consulta de URL de LDAP inválida"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Esquema de Url '%s' inválido"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Referência a objeto Url vazio inválida"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Componente de host inválido '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Caractere separador de integração de matriz de parâmetros inválido"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Caractere separador de divisão de matriz de parâmetros inválido"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Caractere separador de divisão de mapa de parâmetros inválido"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Yi (Sechuan)"
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Componente de porta inválido '%s'"
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
+msgstr "Ijo"
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Expressão regular inválida '%s'"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Expressão regular inválida '%s': o regcomp retornou %d"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlíngua"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Nome de arquivo .repo inválido em '%s'"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr "Ilocano"
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Irã"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
+"Interlíngua (International Auxiliary Language Association, Associação de "
+"Línguas Internacionais Auxiliares)"
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
-msgstr "Iraniano (Outros)"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr "Índico (outros)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Iraque"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "Indonésio"
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irlanda"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indo-europeu (outros)"
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irlandês"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "Ingush"
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Irlandês Medieval (900-1200)"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "Inupiaq"
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Irlandês Antigo (até 900)"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
+msgstr "Iraniano (outros)"
 
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
-msgstr "Línguas Iroquesas"
-
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Ilha de Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
+msgstr "Línguas iroquesas"
 
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italiano"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Itália"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javanês"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japão"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japonês"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javanês"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordânia"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Judeu-persa"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
-msgstr "Judeo-Arábico"
-
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Judeo-Persa"
+msgstr "Judeu-arábico"
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Cabardíaco"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Karakalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2279,12 +2916,7 @@ msgstr "Kachin"
 #. language code: kal kl
 #: zypp/LanguageCode.cc:595
 msgid "Kalaallisut"
-msgstr "Kalaallisut"
-
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmyk"
+msgstr "Groenlandês"
 
 #. language code: kam
 #: zypp/LanguageCode.cc:597
@@ -2296,21 +2928,6 @@ msgstr "Camba"
 msgid "Kannada"
 msgstr "Canarês"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Canúri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Karakalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karachay-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2321,10 +2938,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Caxemira"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Cassubiano"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Canúri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2336,31 +2953,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Cazaque"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Cazaquistão"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Quênia"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Cabardíaco"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
+msgstr "Khoisan (outros)"
+
 #. language code: khm km
 #: zypp/LanguageCode.cc:617
 msgid "Khmer"
 msgstr "Khmer"
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
-msgstr "Khoisan (Outros)"
-
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2371,11 +2983,6 @@ msgstr "Cotanês"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Quimbundo"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2386,15 +2993,15 @@ msgstr "Kinyarwanda"
 msgid "Kirghiz"
 msgstr "Quirguiz"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Quimbundo"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Concani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2406,11 +3013,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Congo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Concani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2426,11 +3028,21 @@ msgstr "Cosreano"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karachay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2446,26 +3058,11 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Curdo"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Quirguistão"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2482,72 +3079,25 @@ msgid "Lamba"
 msgstr "Lamba"
 
 #. language code: lao lo
-#: zypp/LanguageCode.cc:661
-msgid "Lao"
-msgstr "Laosiano"
-
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Laos"
+#: zypp/LanguageCode.cc:661
+msgid "Lao"
+msgstr "Laosiano"
 
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latim"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Letônia"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Letão"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Líbano"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesoto"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Nível 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Nível 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Nível 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezghian"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Libéria"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Líbia"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2558,61 +3108,46 @@ msgstr "Limburgano"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lituânia"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Lituano"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "O local '%s' está temporariamente inacessível."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Baixo-Alemão"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Baixo-Sorbiano"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburguês"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Nganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lapão (Lule)"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2628,35 +3163,11 @@ msgstr "Luo (Quênia e Tanzânia)"
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxemburgo"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburguês"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macau"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedônia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Macedônio"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagascar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2667,6 +3178,11 @@ msgstr "Madurês"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshallino"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2677,178 +3193,60 @@ msgstr "Maithili"
 msgid "Makasar"
 msgstr "Makasar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malgaxe"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malaui"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malaio"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malaiala"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malásia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldivas"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "URI Incorreto"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltês"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchu"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandinga"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Línguas Manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronésio (outros)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
-msgstr "Marata"
-
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Ilhas Marshall"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshallino"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinica"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
+msgstr "Marati"
 
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Massai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritânia"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Maurício"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Línguas Maias"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "A origem de mídia '%s' não contém o meio desejado"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "O meio '%s' está sendo usado por outra instância"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malaio"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Meio não anexado"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Meio não aberto ao tentar executar a ação '%s'."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "França Metropolitana"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "México"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Irlandês medieval (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2860,299 +3258,205 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandês"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
-msgstr "Línguas Diversas"
+msgstr "Línguas diversas"
+
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-khmer (outros)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malgaxe"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltês"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manchu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Línguas manobo"
 
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldávio"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Khmer (Outros)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongólia"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongol"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marrocos"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Moçambique"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
-msgstr "Vários Idiomas"
+msgstr "Vários idiomas"
 
 #. language code: mun
 #: zypp/LanguageCode.cc:763
 msgid "Munda languages"
-msgstr "Línguas Mundas"
+msgstr "Línguas mundas"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanma"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandês"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Línguas maias"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namíbia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Indígena norte-americano"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauruano"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Napolitano"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele (Norte)"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
-msgstr "Ndebele (Sul)"
+msgstr "Ndebele do sul"
+
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele do norte"
 
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
-msgstr "Ndomba"
+msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Napolitano"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Baixo-alemão"
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
+msgstr "Nepalês"
 
 #. language code: new
 #: zypp/LanguageCode.cc:795
 msgid "Nepal Bhasa"
 msgstr "Bhasa (Nepal)"
 
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
-msgstr "Nepali"
-
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Países Baixos"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Antilhas Holandesas"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nova Caledônia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nova Zelândia"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Nova mensagem de atualização"
-
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicarágua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Níger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
-msgstr "Nigero-Cordofânio (Outros)"
-
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigéria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-Saariano (Outros)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
+msgstr "Nigero-cordofânio (outros)"
 
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niueano"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Sem Código"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Novo norueguês"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Nenhuma url no repositório."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Dano-norueguês"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Ilha Norfolk"
-
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
-msgstr "Norueguês Antigo"
-
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Indígena Norte-Americano"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Coréia do Norte"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Ilhas Marianas do Norte"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Lapão Setentrional"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Sotho (Setentrional)"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Noruega"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
+msgstr "Nórdico antigo"
 
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norueguês"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Bokmal (Noruega)"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Neonorueguês"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Não é uma unidade de CDROM"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Sotho (setentrional)"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
-msgstr "Línguas Núbias"
+msgstr "Línguas núbias"
+
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Newari clássico"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
 
 #. language code: nym
 #: zypp/LanguageCode.cc:821
@@ -3174,10 +3478,6 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Obsoletos"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3188,20 +3488,6 @@ msgstr "Occitano (após 1500)"
 msgid "Ojibwa"
 msgstr "Ojíbua"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Omã"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Um ou ambos os atributos '%s' ou '%s' são necessários."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Operação não suportada pelo meio"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3220,1644 +3506,1977 @@ msgstr "Osage"
 #. language code: oss os
 #: zypp/LanguageCode.cc:839
 msgid "Ossetian"
-msgstr "Osseta"
+msgstr "Osseto"
+
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turco otomano (1500-1928)"
 
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
-msgstr "Línguas Otomianas"
+msgstr "Línguas otomianas"
+
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papua (outros)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinano"
+
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr "Pálavi"
+
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "Pampanga"
+
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "Panjabi"
+
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "Papiamento"
+
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauano"
+
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
+msgstr "Persa antigo (aprox. 600-400 A.C.)"
+
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persa"
+
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
+msgstr "Filipino (outros)"
+
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
+msgstr "Fenício"
+
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Páli"
+
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
+msgstr "Polonês"
+
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pompeano"
+
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
+msgstr "Português"
+
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
+msgstr "Línguas prácritas"
+
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
+msgstr "Provençal antigo (até 1500)"
+
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
+msgstr "Afegão"
+
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
+msgstr "Quíchua"
+
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
+msgstr "Rajastanês"
+
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
+msgstr "Rapa Nui"
+
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
+msgstr "Rarotonganês"
+
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
+msgstr "Latim (outros)"
+
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Romanche"
+
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "Romani"
+
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Romeno"
+
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundi"
+
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Russo"
+
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandawe"
+
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango"
+
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Iacuto"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Indígena sul-americano (outros)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Línguas salichanas"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Aramaico samaritano"
+
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
+msgstr "Sânscrito"
+
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "Santali"
+
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Sérvio"
+
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Siciliano"
+
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "Escocês"
+
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Croata"
+
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "Selkup"
+
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "Semita (outros)"
+
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Irlandês antigo (até 900)"
+
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Linguagens de sinais"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"O Pacote %s parece ter sido corrompido durante a transferência. Deseja "
-"tentar a recuperação novamente?"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "Shan"
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr "Pahlavi"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "Sidamo"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Paquistão"
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr "Sinhala"
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+msgid "Siouan Languages"
+msgstr "Línguas sioux"
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauano"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-tibetano (outros)"
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Território Palestino"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
+msgstr "Eslavo (outros)"
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Páli"
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "Eslovaco"
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "Pampanga"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Esloveno"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panamá"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Lapão Meridional"
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinano"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Lapão setentrional"
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "Panjabi"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Línguas lapônias (outras)"
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "Papiamento"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lapão (Lule)"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua-Nova Guiné"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Lapão (Inari)"
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papua (Outros)"
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoano"
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguai"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Lapão (Skolt)"
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "O caminho '%s' no meio '%s' não é um diretório."
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Xichonês"
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "O caminho '%s' no meio '%s' não é um arquivo."
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindi"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Permissão negada para acessar '%s'."
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninquê"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persa"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "Sogdian"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr "Persa Antigo (aprox. 600-400 A.C.)"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Somali"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "Songai"
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
-msgstr "Filipino (Outros)"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "Sotho (Meridional)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipinas"
+#. language code: spa es
+#: zypp/LanguageCode.cc:989
+msgid "Spanish"
+msgstr "Espanhol"
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
-msgstr "Fenício"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardo"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Ilha Pitcairn"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Instale o pacote ''lsof'' primeiro."
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-saariano (outros)"
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pompeano"
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Suázi"
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polônia"
+#. language code: suk
+#: zypp/LanguageCode.cc:999
+msgid "Sukuma"
+msgstr "Sukuma"
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
-msgstr "Polonês"
+#. language code: sun su
+#: zypp/LanguageCode.cc:1001
+msgid "Sundanese"
+msgstr "Sundanês"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: sus
+#: zypp/LanguageCode.cc:1003
+msgid "Susu"
+msgstr "Susu"
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
-msgstr "Português"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumério"
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
-msgstr "Línguas Prácritas"
+#. language code: swa sw
+#: zypp/LanguageCode.cc:1007
+msgid "Swahili"
+msgstr "Suaíli"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Pré-requisitos"
+#. language code: swe sv
+#: zypp/LanguageCode.cc:1009
+msgid "Swedish"
+msgstr "Sueco"
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Determinação do problema, que significa suporte técnico feito para fornecer "
-"informações de compatibilidade, assistência na instalação, suporte ao uso, "
-"manutenção contínua e solução básica de problemas. O Suporte de Nível 1 não "
-"corrige defeitos do produto."
+#. language code: syr
+#: zypp/LanguageCode.cc:1011
+msgid "Syriac"
+msgstr "Siríaco"
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Isolamento do problema, que significa suporte técnico feito para duplicar os "
-"problemas do cliente, isolar a área do problema e fornecer solução para "
-"problemas não resolvidos pelo Suporte de Nível 1."
+#. language code: tah ty
+#: zypp/LanguageCode.cc:1013
+msgid "Tahitian"
+msgstr "Taitiano"
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Resolução de problema, que significa suporte técnico feito para resolver "
-"problemas complexos através de engenharia na resolução de defeitos do "
-"produto que foram identificados pelo Suporte de Nível 2."
+#. language code: tai
+#: zypp/LanguageCode.cc:1015
+msgid "Tai (Other)"
+msgstr "Tai (outros)"
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
-msgstr "Provençal Antigo (até 1500)"
+#. language code: tam ta
+#: zypp/LanguageCode.cc:1017
+msgid "Tamil"
+msgstr "Tâmil"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Fornece"
+#. language code: tat tt
+#: zypp/LanguageCode.cc:1019
+msgid "Tatar"
+msgstr "Tártaro"
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Porto Rico"
+#. language code: tel te
+#: zypp/LanguageCode.cc:1021
+msgid "Telugu"
+msgstr "Telugu"
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
-msgstr "Pushtu"
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Temne"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
+#. language code: ter
+#: zypp/LanguageCode.cc:1025
+msgid "Tereno"
+msgstr "Tereno"
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
-msgstr "Quíchua"
+#. language code: tet
+#: zypp/LanguageCode.cc:1027
+msgid "Tetum"
+msgstr "Tétum"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "A análise de strings de consulta não é suportada para este URL"
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tadjique"
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "Falha no RPM: "
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalo"
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Reto-Romano"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "Tailandês"
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
-msgstr "Rajastanês"
+#. language code: tib bod bo
+#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
+msgid "Tibetan"
+msgstr "Tibetano"
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
-msgstr "Rapa Nui"
+#. language code: tig
+#: zypp/LanguageCode.cc:1039
+msgid "Tigre"
+msgstr "Tigré"
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr "Rarotonganês"
+#. language code: tir ti
+#: zypp/LanguageCode.cc:1041
+msgid "Tigrinya"
+msgstr "Tigrínio"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Recomenda"
+#. language code: tiv
+#: zypp/LanguageCode.cc:1043
+msgid "Tiv"
+msgstr "Tiv"
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Caminho relativo não permitido se existir autoridade"
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Removendo o repositório '%s'"
+#. language code: tli
+#: zypp/LanguageCode.cc:1049
+msgid "Tlingit"
+msgstr "Tlingit"
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "O álias do repositório não pode começar com ponto."
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tuaregue"
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Atributo necessário '%s' faltando."
+#. language code: tog
+#: zypp/LanguageCode.cc:1053
+msgid "Tonga (Nyasa)"
+msgstr "Tonganês (Nyasa)"
 
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Requer"
+#. language code: ton to
+#: zypp/LanguageCode.cc:1055
+msgid "Tonga (Tonga Islands)"
+msgstr "Tonganês (Ilhas Tonga)"
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Ilha Reunião"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "Romance (Outros)"
+#. language code: tsi
+#: zypp/LanguageCode.cc:1059
+msgid "Tsimshian"
+msgstr "Tsimshian"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romênia"
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Setswana"
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Romeno"
+#. language code: tso ts
+#: zypp/LanguageCode.cc:1063
+msgid "Tsonga"
+msgstr "Tsonga"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "Romani"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turcomeno"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundi"
+#. language code: tum
+#: zypp/LanguageCode.cc:1067
+msgid "Tumbuka"
+msgstr "Tumbuka"
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Russo"
+#. language code: tup
+#: zypp/LanguageCode.cc:1069
+msgid "Tupi Languages"
+msgstr "Línguas tupis"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Rússia"
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "Turco"
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaico (outros)"
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Santa Helena"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "São Cristóvão e Névis"
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "Tuviniano"
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Santa Lúcia"
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "Udmurt"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint Martin"
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "Ugarítico"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre e Miquelon"
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "Uigur"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "São Vicente e Granadinas"
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "Ucraniano"
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Línguas Salichanas"
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "Umbundo"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Aramaico Samaritano"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Indeterminado"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Línguas Lapônias (Outros)"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Urdu"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa Ocidental"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Uzbeque"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoano"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vai"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Venda"
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandawe"
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnamita"
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sango"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Volapuque"
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
-msgstr "Sânscrito"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Vótico"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "Santali"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "Línguas wakashan"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "São Tomé e Príncipe"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Walamo"
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardo"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Waray"
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Washo"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Arábia Saudita"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Galês"
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "Escocês"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Línguas sorbianas"
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "Selkup"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Valão"
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "Semita (Outros)"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolof"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmyk"
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Sérvia"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhosa"
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Sérvio"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Iao"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yapês"
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "O álias do serviço não pode começar com ponto."
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Iídiche"
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "O plug-in de serviço não suporta mudança de atributo."
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Iorubá"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Ilhas Seychelles"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Línguas yupik"
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "Shan"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapoteca"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Chishona"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Yi (Sechuan)"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Siciliano"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "Sidamo"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Serra Leoa"
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zunhi"
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Linguagens de Sinais"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Tentou importar a chave não existente %s no chaveiro %s"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "Assinatura não verificada"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Falha ao remover chave."
 
 #: zypp/KeyRing.cc:575
 #, c-format, boost-format
 msgid "Signature file %s not found"
-msgstr "Arquivo de assinatura %s não encontrado"
+msgstr "O arquivo de assinatura %s não foi encontrado"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Não foi possível fornecer o arquivo '%s' a partir do repositório '%s'"
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Nenhuma URL no repositório."
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "Assinatura OK"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "O plug-in de serviço não suporta alterar um atributo."
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "A assinatura está OK, mas a chave não é confiável"
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"O pacote %s parece ter sido corrompido durante a transferência. Deseja "
+"tentar obtê-lo novamente?"
 
 #: zypp/repo/PackageProvider.cc:216
 msgid "Signature verification failed"
 msgstr "Falha na verificação da assinatura"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "A chave de assinatura pública não está disponível"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Cingapura"
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Falha ao fornecer o pacote %s. Deseja tentar obtê-lo novamente?"
 
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
-msgstr "Sinhala"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "Falha na verificação de applydeltarpm."
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-Tibetano (Outros)"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "Falha no applydeltarpm."
 
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-msgid "Siouan Languages"
-msgstr "Línguas Sioux"
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"O gerenciamento do sistema está bloqueado pelo aplicativo com o PID %d "
+"(%s).\n"
+"Feche este aplicativo antes de tentar novamente."
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Lapão (Skolt)"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s não pertence a um repositório de atualização da distribuição"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slave (Atapasca)"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s tem uma arquitetura inferior"
 
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr "Eslavo (Outros)"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problema com o pacote instalado %s"
 
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "Eslovaco"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "requisições conflitantes"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Eslováquia"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "algum problema de dependência"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Eslovênia"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "ninguém fornece o pacote requerido %s"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Esloveno"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Você habilitou todos os repositórios requeridos?"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "Sogdian"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "o pacote %s não existe"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Ilhas Salomão"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "requisição não suportada"
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Somali"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s é fornecido pelo sistema e não pode ser apagado"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somália"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s não pode ser instalado"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "Songhai"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "ninguém fornece %s, que é necessário para %s"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninquê"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Não foi possível instalar ambos (%s e %s)"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Línguas Sorbianas"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s conflita com %s, fornecido por %s"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Esta versão do libzypp foi compilada sem o suporte a HAL."
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s torna obsoleto %s, fornecido por %s"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "Sotho (Meridional)"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s instalado torna obsoleto %s fornecido por %s"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "África do Sul"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "resolvível %s conflita com %s fornecido por ele mesmo"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Indígena Sul-Americano (Outro)"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s requer %s, mas este requisito não pode ser fornecido"
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Ilhas Sandwich e Geórgia do Sul"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "fornecedores removidos: "
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Coréia do Sul"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"fornecedores não-instaláveis: "
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Altaico Meridional"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "fornecedores não-instaláveis: "
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Lapão Meridional"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "remover bloqueio para permitir a remoção de %s"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Espanha"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "não instalar %s"
 
-#. language code: spa es
-#: zypp/LanguageCode.cc:989
-msgid "Spanish"
-msgstr "Espanhol"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "manter %s"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "remover bloqueio para permitir a instalação de %s"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudão"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Esta requisição irá deixar seu sistema inconsistente!"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Sugere"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ignorar o aviso de um sistema inconsistente"
 
-#. language code: suk
-#: zypp/LanguageCode.cc:999
-msgid "Sukuma"
-msgstr "Sukuma"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "não perguntar ao instalar um resolvível que fornece %s"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumério"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "não perguntar ao remover todos os resolvíveis que fornecem %s"
 
-#. language code: sun su
-#: zypp/LanguageCode.cc:1001
-msgid "Sundanese"
-msgstr "Sundanês"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "não instalar a versão mais recente de %s"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Suplementos"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "manter %s apesar da arquitetura inferior"
 
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "instalar %s apesar da arquitetura inferior"
 
-#. language code: sus
-#: zypp/LanguageCode.cc:1003
-msgid "Susu"
-msgstr "Susu"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "manter o obsoleto %s"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Ilhas Svalbard e Jan Mayen"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "instalar %s do repositório excluído"
 
-#. language code: swa sw
-#: zypp/LanguageCode.cc:1007
-msgid "Swahili"
-msgstr "Suaíli"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "desatualização de %s para %s"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "alteração de arquitetura de %s para %s"
 
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Suazilândia"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"instalar %s (com alteração do fornecedor)\n"
+"  %s  -->  %s"
 
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Suécia"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "substituição de %s por %s"
 
-#. language code: swe sv
-#: zypp/LanguageCode.cc:1009
-msgid "Swedish"
-msgstr "Sueco"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "desinstalação de %s"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Suíça"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "quebrar %s ao ignorar algumas das dependências"
 
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Síria"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "geralmente ignorar algumas dependências"
 
-#. language code: syr
-#: zypp/LanguageCode.cc:1011
-msgid "Syriac"
-msgstr "Siríaco"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "Atributo necessário '%s' faltando."
 
-#: zypp/media/MediaException.cc:91
+#: zypp/parser/RepoindexFileReader.cc:209
 #, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Exceção do sistema '%s' no meio '%s'."
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Um ou ambos os atributos '%s' ou '%s' são necessários."
 
-#: zypp/ZYppFactory.cc:394
+#: zypp/base/InterProcessMutex.cc:83
 #, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"O gerenciamento do sistema está bloqueado pelo aplicativo com o pid %d "
-"(%s).\n"
-"Feche esse aplicativo antes de tentar novamente."
+msgid "Can't open lock file: %s"
+msgstr "Não foi possível abrir o arquivo de bloqueio: %s"
 
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalo"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Esta ação já está sendo executada por outro programa."
 
-#. language code: tah ty
-#: zypp/LanguageCode.cc:1013
-msgid "Tahitian"
-msgstr "Taitiano"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Histórico:"
 
-#. language code: tai
-#: zypp/LanguageCode.cc:1015
-msgid "Tai (Other)"
-msgstr "Tai (Outros)"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Modo de correspondência desconhecido '%s'"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Modo de correspondência desconhecido '%s' para o padrão '%s'"
 
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tadjique"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Expressão regular inválida '%s': o regcomp retornou %d"
 
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadjiquistão"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Expressão regular inválida '%s'"
 
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tuaregue"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Instale o pacote 'lsof' primeiro."
 
-#. language code: tam ta
-#: zypp/LanguageCode.cc:1017
-msgid "Tamil"
-msgstr "Tâmil"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Autenticação necessária para '%s'"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzânia"
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Falha ao montar %s em %s"
 
-#. language code: tat tt
-#: zypp/LanguageCode.cc:1019
-msgid "Tatar"
-msgstr "Tártaro"
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Falha ao desmontar %s"
 
-#. language code: tel te
-#: zypp/LanguageCode.cc:1021
-msgid "Telugu"
-msgstr "Télugo"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Nome de arquivo inválido: %s"
 
-#. language code: ter
-#: zypp/LanguageCode.cc:1025
-msgid "Tereno"
-msgstr "Tereno"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Mídia não aberta ao tentar realizar a ação '%s'."
 
-#. language code: tet
-#: zypp/LanguageCode.cc:1027
-msgid "Tetum"
-msgstr "Tétum"
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "Arquivo '%s' não encontrado na mídia '%s'"
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr "Tai"
+#: zypp/media/MediaException.cc:67
+#, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Não foi possível salvar o arquivo '%s'."
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tailândia"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Mídia não conectada"
 
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "O nível de suporte não foi especificado"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Ponto de conexão de mídia inválido"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Falha na inicialização do download (curl) para '%s'"
+
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr "Exceção do sistema '%s' na mídia '%s'."
 
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "O fornecedor não oferece suporte."
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "O caminho '%s' na mídia '%s' não é um arquivo."
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Esta ação já está sendo executada por outro programa."
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "O caminho '%s' na mídia '%s' não é um diretório."
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Esta solicitação travará o seu sistema!"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "URI mal formado"
 
-#. language code: tib bod bo
-#: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
-msgid "Tibetan"
-msgstr "Tibetano"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Nome de host vazio no URI"
 
-#. language code: tig
-#: zypp/LanguageCode.cc:1039
-msgid "Tigre"
-msgstr "Tigré"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Sistema de arquivos vazios no URI"
 
-#. language code: tir ti
-#: zypp/LanguageCode.cc:1041
-msgid "Tigrinya"
-msgstr "Tigrínia"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Destino vazio no URI"
 
-#: zypp/media/MediaException.cc:207
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Tempo de espera excedido ao acessar '%s'."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Temne"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Esquema de URI não suportado em '%s'."
 
-#. language code: tiv
-#: zypp/LanguageCode.cc:1043
-msgid "Tiv"
-msgstr "Tiv"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operação não suportada pela mídia"
 
-#. language code: tli
-#: zypp/LanguageCode.cc:1049
-msgid "Tlingit"
-msgstr "Tlingit"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Erro de download (curl) para '%s':\n"
+"Código de erro: %s\n"
+"Mensagem de erro: %s\n"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "Erro ao configurar as opções de download (curl) para '%s':"
 
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "A mídia fonte '%s' não contém a mídia desejada"
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "A mídia '%s' está sendo usado por outra instância"
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Não foi possível ejetar qualquer mídia"
 
-#. language code: tog
-#: zypp/LanguageCode.cc:1053
-msgid "Tonga (Nyasa)"
-msgstr "Tonganês (Nyasa)"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
+msgstr "Não foi possível ejetar a mídia '%s'"
 
-#. language code: ton to
-#: zypp/LanguageCode.cc:1055
-msgid "Tonga (Tonga Islands)"
-msgstr "Tonganês (Ilhas Tonga)"
+#: zypp/media/MediaException.cc:199
+#, c-format, boost-format
+msgid "Permission to access '%s' denied."
+msgstr "Permissão para acessar '%s' negada."
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Tentativa de importar a chave não existente %s para o chaveiro %s"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Tempo de espera excedido ao acessar '%s'."
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad e Tobago"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "O local '%s' está temporariamente inacessível."
 
-#. language code: tsi
-#: zypp/LanguageCode.cc:1059
-msgid "Tsimshian"
-msgstr "Tsimshian"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" Problema no certificado SSL. Verifique se o certificado CA está correto "
+"para '%s'."
 
-#. language code: tso ts
-#: zypp/LanguageCode.cc:1063
-msgid "Tsonga"
-msgstr "Tsonga"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Não foi possível encontrar um dispositivo loop disponível para montar o "
+"arquivo de imagem de '%s'"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Setswana"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Método de autenticação HTTP '%s' não suportado"
 
-#. language code: tum
-#: zypp/LanguageCode.cc:1067
-msgid "Tumbuka"
-msgstr "Tumbuka"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Visite o Novell Customer Center para verificar se seu registro é válido e "
+"não expirou."
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunísia"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Não foi possível criar o sat-pool."
 
-#. language code: tup
-#: zypp/LanguageCode.cc:1069
-msgid "Tupi Languages"
-msgstr "Línguas Tupis"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"O arquivo %1%\n"
+"  do pacote\n"
+"     %2%\n"
+"  conflita com o arquivo do pacote\n"
+"     %3%"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turquia"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"O arquivo %1%\n"
+"  do pacote\n"
+"     %2%\n"
+"  conflita com o arquivo da instalação de\n"
+"     %3%"
 
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "Turco"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"O arquivo %1%\n"
+"  da instalação de\n"
+"     %2%\n"
+"  conflita com o arquivo do pacote\n"
+"     %3%"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turco Otomano (1500-1928)"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"O arquivo %1%\n"
+"  da instalação de\n"
+"     %2%\n"
+"  conflita com o arquivo da instalação de\n"
+"     %3%"
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turcomeno"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"O arquivo %1%\n"
+"  do pacote\n"
+"     %2%\n"
+"  conflita com o arquivo\n"
+"     %3%\n"
+"  do pacote\n"
+"     %4%"
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turcomenistão"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"O arquivo %1%\n"
+"  do pacote\n"
+"     %2%\n"
+"  conflita com o arquivo\n"
+"     %3%\n"
+"  da instalação de\n"
+"     %4%"
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Ilhas Turks e Caicos"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"O arquivo %1%\n"
+"  da instalação de\n"
+"     %2%\n"
+"  conflita com o arquivo\n"
+"     %3%\n"
+"  do pacote\n"
+"     %4%"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvaluano"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"O arquivo %1%\n"
+"  da instalação de\n"
+"     %2%\n"
+"  conflita com o arquivo\n"
+"     %3%\n"
+"  da instalação de\n"
+"     %4%"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "Tuviniano"
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "geralmente ignorar algumas das dependências"
+
+#~ msgid "do not forbid installation of %s"
+#~ msgstr "não proibir a instalação de %s"
+
+#~ msgid "do not keep %s installed"
+#~ msgstr "não manter %s instalado"
+
+#~ msgid ""
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "لا يحتوي الملف %s على مجموع اختباري.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الملف %s باستخدام المفتاح التالي:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير صالح.\n"
+#~ "متوقع %s، تم العثور على %s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير معروف %s.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "لم يتم توقيع الملف %s.\n"
+#~ "هل تريد استخدامه على أي حال؟"
+
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "تم توقيع الملف %s باستخدام مفتاح غير معروف:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
+
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "تم العثور على مفتاح غير موثوق:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد الوثوق بالمفتاح؟"
+
+#~ msgid "%s remove failed"
+#~ msgstr "فشلت إزالة %s"
+
+#, fuzzy
+#~ msgid "Invalid user name or password."
+#~ msgstr "كلمة السر CA غير صالحة."
+
+#~ msgid "rpm output:"
+#~ msgstr "مخرجات rpm:"
+
+#~ msgid "%s install failed"
+#~ msgstr "فشل تثبيت %s"
+
+#~ msgid "%s installed ok"
+#~ msgstr "تم تثبيت %s بنجاح"
+
+#~ msgid "%s remove ok"
+#~ msgstr "تمت إزالة %s بنجاح"
+
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+
+#, fuzzy
+#~ msgid ""
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
+#~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
+
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "عدم تثبيت التبعيات القابلة للتحليل المتعلقة أو حذفها"
+
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "تجاهل أنه تم تعيين %s بالفعل لتثبيته"
+
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "تجاهل %s القديم في %s"
+
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "تجاهل تعارض %s هذا"
+
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "تجاهل هذا المتطلب هنا فقط"
+
+#, fuzzy
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
+
+#~ msgid "Install missing resolvables"
+#~ msgstr "تثبيت التبعيات القابلة للتحليل المفقودة"
+
+#~ msgid "Keep resolvables"
+#~ msgstr "الاحتفاظ بالتبعيات القابلة للتحليل"
+
+#~ msgid "Unlock these resolvables"
+#~ msgstr "إلغاء قفل التبعيات القابلة للتحليل هذه"
+
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
+
+#~ msgid "install %s"
+#~ msgstr "تثبيت %s"
+
+#~ msgid "unlock %s"
+#~ msgstr "إلغاء قفل %s"
+
+#~ msgid "unlock all resolvables"
+#~ msgstr "إلغاء قفل كافة التبعيات القابلة للتحليل"
+
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "تعذر فتح الملف %1."
+
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "تعذرت قراءة القطاع %u."
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "Udmurt"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
+#~ msgid "Software management is already running."
+#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "Ugarítico"
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "Uigur"
+#~ msgid "%s replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ucrânia"
+#, fuzzy
+#~ msgid "%s will be deleted by the user.\n"
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "Ucraniano"
+#, fuzzy
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "Umbundo"
+#~ msgid "Invalid information"
+#~ msgstr "المعلومات غير صالحة"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Impossível clonar objeto Url"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Impossível criar conexão com dbus"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s مطلوب بواسطة\n"
+#~ "%s"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Impossível inicializar contexto HAL -- hald não está em execução?"
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "يتعارض %s مع التبعيات القابلة للتحليل الأخرى"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Impossível analisar os componentes do Url"
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s يتعارض مع:\n"
+#~ "%s"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Indeterminado"
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Tipo de repositório não identificado"
+#~ msgid "%s obsoletes:%s"
+#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Emirados Árabes Unidos"
+#~ msgid ""
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Reino Unido"
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Estados Unidos"
+#~ msgid "%s depends on %s"
+#~ msgstr "%s يعتمد على %s"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Ilhas Menores do Território Externo Norte-Americano"
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s يعتمد على:%s"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "País desconhecido:"
+#~ msgid "Child of"
+#~ msgstr "عنصر فرعي لـ"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Erro desconhecido ao ler de '%s'"
+#, fuzzy
+#~ msgid ""
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Idioma desconhecido:"
+#, fuzzy
+#~ msgid ""
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Modo de correspondência desconhecido '%s'"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "تعذر تثبيت %s لأنه يتعارض مع %s"
 
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Modo de correspondência desconhecido '%s' para o padrão '%s'"
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "لم يتم تثبيت %s وتم وضع علامة عليه كقابل لإلغاء التثبيت"
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-"Serviço '%1%' desconhecido: Removendo o repositório de serviço órfão '%2%'"
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "لم يتم استيفاء متطلبات %s"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Opção de suporte desconhecida. A descrição não está disponível"
+#~ msgid "%s has missing dependencies"
+#~ msgstr "تم فقد تبعيات %s"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Tipo de assinatura desconhecido"
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "تعذر تثبيت %s بسبب عدم وجود التبعيات"
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Método de autenticação HTTP '%s' não suportado"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
 
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Esquema de URI não suportado em '%s'."
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Alto-Sorbiano"
+#~ msgid "No need to install %s"
+#~ msgstr "لا داعي لتثبيت %s"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Urdu"
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "O esquema de Url não permite %s"
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "O esquema de Url não permite componente de host"
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "O esquema de Url não permite senha"
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "O esquema de Url não permite porta"
+#, fuzzy
+#~ msgid "Cannot install %s, because it is conflicting"
+#~ msgstr "تعذر تثبيت %s لأنه متعارض"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "O esquema de Url não permite nome de usuário"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s يمكن إلغاء تثبيته لأنه يتعارض مع %s"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "O esquema de Url é um componente obrigatório"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "O esquema de Url requer um componente de host"
+#, fuzzy
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s يفتقد المتطلب %s"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "O esquema de Url requer nome de caminho"
+#~ msgid ", Action: "
+#~ msgstr "، الإجراء:"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguai"
+#~ msgid ", Trigger: "
+#~ msgstr "، تشغيل:"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Uzbeque"
+#~ msgid "package"
+#~ msgstr "الحزمة"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbequistão"
+#~ msgid "selection"
+#~ msgstr "التحديد"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vai"
+#~ msgid "pattern"
+#~ msgstr "النمط"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#~ msgid "product"
+#~ msgstr "المنتج"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#~ msgid "patch"
+#~ msgstr "التصحيح"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Venda"
+#~ msgid "script"
+#~ msgstr "البرنامج النصي"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
+#~ msgid "message"
+#~ msgstr "الرسالة"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnã"
+#~ msgid "atom"
+#~ msgstr "الذرة"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnamita"
+#~ msgid "system"
+#~ msgstr "النظام"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Ilhas Virgens Norte-Americanas"
+#~ msgid "Resolvable"
+#~ msgstr "التبعية القابلة للتحليل"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Visite o Novell Customer Center para verificar se seu registro é válido e "
-"não expirou."
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Volapük"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Vótico"
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "Línguas Wakashan"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
+
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Walamo"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Ilhas Wallis e Futuna"
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Valão"
+#~ msgid "Establishing %s"
+#~ msgstr "تأسيس %s"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Waray"
+#~ msgid "Installing %s"
+#~ msgstr "تثبيت %s"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Washo"
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Galês"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "تخطي %s: تم التثبيت بالفعل"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Saara Ocidental"
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolof"
+#~ msgid "for %s"
+#~ msgstr "لـ %s"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xosa"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Iacuto"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Iao"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Iapês"
+#~ msgid ""
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
+#~ msgstr ""
+#~ "%s يوفر %s، لكنه قابل لإلغاء التثبيت.  حاول تثبيته للحصول على مزيد من "
+#~ "التفاصيل."
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Iêmen"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s يوفر %s، لكنه مقفل."
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Iídiche"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Iorubá"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Línguas Yupik"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zâmbia"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapoteca"
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "%s مقفل ويتعذر إلغاء تثبيته."
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbábue"
+#~ msgid "from %s"
+#~ msgstr "من %s"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#~ msgid " Error!"
+#~ msgstr "خطأ!"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zunhi"
+#~ msgid " Important!"
+#~ msgstr "هام!"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "Falha na verificação de applydeltarpm."
+#~ msgid "%s depended on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "Falha de applydeltarpm."
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1325
-#, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "mudança de arquitetura de %s para %s"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "quebrar %s ignorando algumas de suas dependências"
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
-#: zypp/solver/detail/SATResolver.cc:1017
-#, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "impossível instalar ambos %s e %s"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "solicitações conflitantes"
+#~ msgid "%s part of %s"
+#~ msgstr "%s جزء من %s"
 
-#: zypp/target/rpm/RpmDb.cc:2344
-#, c-format, boost-format
-msgid "created backup %s"
-msgstr "backup %s criado"
+#, fuzzy
+#~ msgid "Double timeout"
+#~ msgstr "موعد الاستحقاق: %1"
 
-#: zypp/solver/detail/SATResolver.cc:1354
-#, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "desinstalação de %s"
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "fornecedores removidos: "
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "تعذر تحليل سلطة Url"
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "não perguntar ao apagar todos os resolvíveis que fornecem %s"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "تجاهل هذا المتطلب بصفة عامة"
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "não perguntar ao instalar um resolvível que fornece %s"
+#~ msgid ""
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
+#~ "الارتباط."
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, c-format, boost-format
-msgid "do not install %s"
-msgstr "não instalar %s"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "não instalar a versão mais recente de %s"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "تعذرت استعادة كافة المصادر."
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "desatualização de %s para %s"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "geralmente ignorar algumas dependências"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "igorar o aviso de um sistema travado"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"instalar %s (com alteração do fornecedor)\n"
-"  %s  -->  %s"
+#~ msgid "Reading index files"
+#~ msgstr "قراءة ملفات الفهرس"
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "instalar %s apesar da arquitetura inferior"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "instalar %s do repositório excluído"
+#~ msgid "Reading product from %s"
+#~ msgstr "قراءة المنتج من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s instalado torna obsoleto %s fornecido por %s"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "قراءة قائمة الملفات من %s"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "inválido"
+#~ msgid "Reading packages from %s"
+#~ msgstr "قراءة الحزم من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "manter %s"
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "manter %s apesar da arquitetura inferior"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "manter %s obsoleto(a)"
+#~ msgid "Reading patches index %s"
+#~ msgstr "قراءة فهرس التصحيحات %s"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Não é possível criar contexto libhal"
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: Não é possível definir conexão com dbus"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "ninguém fornece %s que é necessário a %s"
+#~ msgid "Reading packages file"
+#~ msgstr "قراءة ملف الحزم"
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "ninguém fornece o pacote solicitado %s"
+#~ msgid "Reading translation: %s"
+#~ msgstr "قراءة الترجمة: %s"
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "o pacote %s não existe"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
+#~ "التثبيت؟"
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problema com o pacote instalado %s"
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "remover bloqueio para permitir a instalação de %s"
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "remover bloqueio para permitir a remoção de %s"
+#~ msgid "Downloading %s"
+#~ msgstr "إنزال %s"
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "substituição de %s por %s"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr ""
+#~ "Não foi possível criar a chave pública %s do chaveiro %s para o arquivo %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "o rpm criou %s como %s, mas não foi possível determinar a diferença"
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr ""
+#~ "Tentativa de importar chave não existente %s no gerenciador de chaves %s"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"rpm criou %s como %s.\n"
-"Aqui estão as 25 primeiras linhas de diferença:\n"
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr ""
+#~ "Não foi possível alterar o diretório para '/' dentro do chroot (%s)."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "o rpm gravou %s como %s, mas não foi possível determinar a diferença"
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "Falha na inicialização do download (Metalink curl) para '%s'"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
-msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
-"rpm gravou %s como %s.\n"
-"Aqui estão as 25 primeiras linhas de diferença:\n"
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "Erro de download (metalink curl) para '%s':\n"
+#~ "Código de erro: %s\n"
+#~ "Mensagem de erro: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "O resolvível %s conflita com %s fornecido por ele mesmo"
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "Download interrompido em %d%%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "algum problema de dependência"
+#~ msgid "Download interrupted by user"
+#~ msgstr "Download interrompido pelo usuário"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "fornecedores de não instaláveis:"
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr "Erro ao configurar as opções de download (metalink curl) para '%s':"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "desconhecido"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Falha ao baixar %s de %s"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "não suportado"
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Sérvia e Montenegro"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "solicitação não suportada"
+#~ msgid "Unknown Distribution"
+#~ msgstr "Distribuição desconhecida"
+
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "ignorar algumas das dependências de %s"
+
+#~ msgid "Timeout exceeded when access '%s'."
+#~ msgstr "Tempo de espera excedido quando acessando '%s'."
index f2b83b3..aa2bfc5 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -19,7 +19,7 @@
 # Alexandru Szasz <alexxed@gmail.com>
 # strainu <narro@strainu.ro>
 #
-# Comunitatea romana openSUSE - www.suseromania.ro
+# Comunitatea romana openSUSE - www.suseromania.ro\r
 msgid ""
 msgstr ""
 "Project-Id-Version: OpenSUSE\n"
@@ -37,21 +37,94 @@ msgstr ""
 "20)) ? 1 : 2;\n"
 "X-Generator: Narro 2.0 on http://tradu.softwareliber.ro\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"pachete care pot fi dezinstalate: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Excepție Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Șir de interogare URL LDAP invalid"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Parametru șir de interogare URL LDAP invalid '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Nu pot clona obiectul Url"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Referință vidă invalidă la obiect Url"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Nu pot parcurge componentele Url"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Nu pot inițializa atributele mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Nu pot seta atributul mutex recursiv"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Nu pot inițializa mutex-ul recursiv"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Nu pot obține zăvorul mutex-ului"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Nu pot elibera zăvorul mutex-ului"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Oferă"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
-"Problemă de certificat SSL, verificați dacă certificatul autorității de "
-"certificare este OK pentru '%s'."
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Necesită"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Conflicte"
+
+#: zypp/Dep.cc:100
+#, fuzzy
+msgid "Obsoletes"
+msgstr "păstrează pachetul vechi %s"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Recomandă"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Sugerează"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Îmbunătățește"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Suplimentează"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Tip dubios '%s' pentru byte-ul %u, suma de control '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -61,10 +134,6 @@ msgstr " executat"
 msgid " execution failed"
 msgstr " execuție eșuată"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " execuție sărită în timpul anulării"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -73,114 +142,1797 @@ msgstr " execuție sărită în timpul anulării"
 msgid "%s already executed as %s)"
 msgstr "%1 este deja decriptat!"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s intră în conflict cu %s pus la dispoziție de %s"
-
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s nu aparține de o sursă de instalare de actualizare distribuție"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " execuție sărită în timpul anulării"
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s are arhitectură inferioară"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Eroare trimitere notificare mesaj de actualizare."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s nu este instalabil"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Nou mesaj de actualizare"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s este blocat şi nu poate fi deinstalat."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Instalarea a fost anulată la cerere."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s înlocuiește %s oferit de %s"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
+"Ne pare rău, dar această versiune de libzypp a fost construită fără suport "
+"HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s necesită %s, dar această cerință nu este îndeplinită"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext nu este conectat"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(EXPIRAT)"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive nu este inițializat"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(nu expiră)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume nu este inițializat"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(expiră în 24h)"
-msgstr[1] "(expiră în 24h)"
-msgstr[2] "(expiră în 24h)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Nu pot crea conexiunea dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(expiră în 24h)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Nu pot crea contextul libhal"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abhază"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: Nu pot seta conexiunea dbus"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achineză"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Nu pot inițializa contextul HAL -- este posibil ca hald să nu ruleze?"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Nu este o unitate CDROM"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM a eșuat:"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Adaug sursa de instalare '%s'"
+msgid "Failed to import public key from file %s: %s"
+msgstr "Importul cheii publice din fișierul %s a eșuat: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Este necesar un contract client suplimentar"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Îndepărtarea cheii publice %s a eșuat: %s"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "Ieșire rpm suplimentară"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Fișiere de configurare modificate pentru %s:"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adâgă"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm a salvat %s ca %s, dar nu a putut determina diferențele"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm a salvat %s ca %s.\n"
+"Acestea sunt primele 25 de linii diferite:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm a creat %s ca %s, dar nu a putut determina diferențele"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm a creat %s ca %s.\n"
+"Acestea sunt primele 25 de linii diferite:\n"
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "Ieșire rpm suplimentară"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "backup %s creat"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "Fișierul semnătură %s nu a fost găsit"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "Fișierul semnătură %s nu a fost găsit"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "Fișierul semnătură %s nu a fost găsit"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Vor fi efectuate următoarele acțiuni:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Citirea directorului '%s' a eșuat"
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Aliasul sursei de instalare nu poate începe cu punct."
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Aliasul serviciului nu poate începe cu punct."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Nu se poate deschide fișierul '%s' pentru scriere."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "La URL-ul (URL-urile) specificate nu au fost găsite metadate valide"
+msgstr[1] "La URL-ul (URL-urile) specificate nu au fost găsite metadate valide"
+msgstr[2] "La URL-ul (URL-urile) specificate nu au fost găsite metadate valide"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Nu se poate crea %s"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Nu se poate crea directorul pentru cache-ul de metadate."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Construirea cache-ului sursei de instalare '%s'"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Nu se poate crea memoria cache la %s - lipsește dreptul de scriere."
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Sursa de instalare (%d) nu a putut fi încărcată în cache."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Tip de sursă de instalare netratat"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Eroare la încercarea de a citi din '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Eroare necunoscută la citirea de la '%s'"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Adaug sursa de instalare '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Nume de fișier sursă de instalare invalid la '%s'"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Îndepărtez sursa de instalare '%s'"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Nu pot determina unde este stocată sursa de instalare."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Nu pot șterge '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Nu pot determina unde este stocat serviciul."
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Schema url nu permite %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Componentă %s invalidă '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Componentă invalidă %s"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Pentru acest URL nu este suportată parcurgerea unui șir de interogare"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Schema url este o componentă obligatorie"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Schemă ulr invalidă '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Schema url nu permite un nume de utilizator"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Schema url nu permite parolă"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Schema url necesită o componentă gazdă"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Schema url nu permite componentă gazdă"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Componentă gazdă invalidă '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Schema url nu permite port"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Componentă port invalidă '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Schema url necesită o cale"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Calea relativă nu este permisă dacă autoritatea există"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Șirul codat conține un byte NUL"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Parametru invalid caracter de separare împărțire matrici"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Parametru de hartă invalid pentru separarea caracterelor"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Parametru invalid caracter de separare uniune matrici"
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Nu pot deschide pty (%s)."
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Nu pot deschide pipe-ul (%s)."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Nu se poate face chroot la '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:360
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "Nu pot efectua chdir spre '/' în chroot (%s)."
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Nu se poate face chroot la '%s' (%s)."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Nu pot executa '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Nu pot crea un proces nou (%s)."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Comandă finalizată cu starea %d."
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Comanda a fost oprită de semnalul %d(%s)."
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Comandă finalizată cu eroare necunoscută."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(nu expiră)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(EXPIRAT)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(expiră în 24h)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(expiră în 24h)"
+msgstr[1] "(expiră în 24h)"
+msgstr[2] "(expiră în 24h)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "necunoscut"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "nesuportat"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Nivelul 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Nivelul 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Nivelul 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Este necesar un contract client suplimentar"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "invalid"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Nivelul de suport este nespecificat"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Vânzătorul nu oferă suport."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Determinarea problemei, ceea ce înseamnă suport tehnic menit să ofere "
+"informații de compatibilitate, asistență la instalare, suport la utilizare, "
+"mentenanță curentă și rezolvarea problemelor simple. Suportul de nivel 1 nu "
+"este menit să corecteze erori ale produsului."
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Izolarea problemei, ceea ce înseamnă suport tehnic menit să reproducă "
+"problemele clienților, să izoleze zona cu probleme și să ofere soluții "
+"pentru probleme nerezolvate de suportul de nivel 1."
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Rezolvarea problemei, ceea ce înseamnă suport tehnic menit să rezolve "
+"problemele complexe prin contribuția specialiștilor la rezolvarea de defecte "
+"ale produselor, identificate de suportul de nivel 2."
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+"Pentru a obține suport tehnic se necesită un contract client suplimentar."
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Opțiune de suport necunoscută. Descrierea nu este disponibilă"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Țară necunoscută: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Fără cod"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Emiratele Arabe Unite"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afghanistan"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua și Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albania"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenia"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Antilele Olandeze"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarctica"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Samoa Americană"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austria"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australia"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Insulele Aland"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaidjan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnia și Herțegovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgia"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaria"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrein"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermude"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brazilia"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Insula Bouvet"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Belarus"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Insulele Cocos (Keeling)"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Republica Centrafricană"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Elveția"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Coasta de Fildeș"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Insulele Cook"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Camerun"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "China"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Columbia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Capul Verde"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Insulele Christmas"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Cipru"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Republica Cehă"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Germania"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibuti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danemarca"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Republica Dominicană"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algeria"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonia"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egipt"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Sahara Occidentală"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritreea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spania"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopia"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finlanda"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Insulele Falkland (Malvine)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Micronezia"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Insulele Feroe"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Franța"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Franța metropolitană"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Anglia"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgia"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Guiana Franceză"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Groenlanda"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guineea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadelupa"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Guineea Ecuatorială"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grecia"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Georgia de Sud și Insulele Sandwich de Sud"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guineea-Bissau"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Insula Heard și Insulele McDonald"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Croația"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Ungaria"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonezia"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irlanda"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Insula Man"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Teritoriul britanic din Oceanul Indian"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islanda"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italia"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Iordania"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japonia"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenia"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kârgâzstan"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Cambodgia"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Insulele Comore"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts și Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Coreea de Nord"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Coreea de Sud"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuweit"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Insulele Cayman"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazahstan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Republica Populară Democratică Laos"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Liban"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lituania"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxembourg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Letonia"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libia"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Maroc"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Muntenegru"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Saint Martin"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagascar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Insulele Marshall"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedonia"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolia"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Insulele Mariana de Nord"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinica"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritania"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Maurițius"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldive"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexic"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaezia"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambic"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Noua Caledonie"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Insula Norfolk"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Olanda"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norvegia"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Noua Zeelandă"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Polinezia franceză"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Noua Guinee"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipine"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polonia"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint Pierre și Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Teritoriile palestiniene"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugalia"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "România"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbia"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Federația Rusă"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Arabia Saudită"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Insulele Solomon"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychelles"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Suedia"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapore"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Sfânta Elena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenia"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard și Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovacia"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome și Principe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Siria"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swaziland"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Insulele Turks și Caicos"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Ciad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Teritoriile Franceze Sudice"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tailanda"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadjikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisia"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Timorul de Est"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turcia"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad și Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzania"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ucraina"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Insulele minore din afara Statelor Unite"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Statele Unite"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Sfântul Scaun (Vatican)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Sfântul Vincent și Grenadine"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Insulele Virgine Britanice"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Insulele Virgine, S.U.A."
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis și Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Yemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Africa de Sud"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Limbă necunoscută: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abhază"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achineză"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adâgă"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-Asiatică (alta)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -192,11 +1944,6 @@ msgstr "Afrihili"
 msgid "Afrikaans"
 msgstr "Afrikaans"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-Asiatică (alta)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -212,16 +1959,6 @@ msgstr "Akan"
 msgid "Akkadian"
 msgstr "Akkadiană"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Insulele Aland"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albania"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -232,59 +1969,25 @@ msgstr "Albaneză"
 msgid "Aleut"
 msgstr "Aleută"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algeria"
-
 #. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Limbi Algonquian"
-
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaică (alta)"
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Limbi Algonquian"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Samoa Americană"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Altai de Sud"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "Amharică"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-"Pentru a obține suport tehnic se necesită un contract client suplimentar."
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarctica"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua și Barbuda"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Engleză veche (cca.450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -296,55 +1999,40 @@ msgstr "Limbi apache"
 msgid "Arabic"
 msgstr "Arabă"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragoneză"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "Aramaică"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragoneză"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armeană"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "Araucaniană"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenia"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armeană"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "Artificială (alta)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -361,32 +2049,11 @@ msgstr "Asturian"
 msgid "Athapascan Languages"
 msgstr "Limbi athapascane"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australia"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "Limbi australiene"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austria"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austroneziană (alta)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Pentru '%s' este necesară autentificarea"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -407,44 +2074,25 @@ msgstr "Awadhi"
 msgid "Aymara"
 msgstr "Aymara"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaidjan"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Azeră"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Nume de fișier incorect: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Punct incorect de conectare a mediului"
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrein"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balineză"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Limbi Bamileke"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltică (alta)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bașkiră"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -456,76 +2104,36 @@ msgstr "Balochi"
 msgid "Bambara"
 msgstr "Bambara"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Limbi Bamileke"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (alta)"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balineză"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Bască"
 
 #. language code: bas
 #: zypp/LanguageCode.cc:253
 msgid "Basa"
 msgstr "Basa"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bașkiră"
-
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Bască"
-
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonezia)"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltică (alta)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "Beja"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belarus"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "Bielorusă"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgia"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -536,31 +2144,16 @@ msgstr "Bemba"
 msgid "Bengali"
 msgstr "Bengaleză"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "Berberă (alta)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermude"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "Bhojpuri"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
@@ -581,264 +2174,70 @@ msgstr "Bini"
 msgid "Bislama"
 msgstr "Bislama"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia și Herțegovina"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (alta)"
 
 #. language code: bos bs
 #: zypp/LanguageCode.cc:281
 msgid "Bosnian"
 msgstr "Bosniacă"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Insula Bouvet"
-
 #. language code: bra
 #: zypp/LanguageCode.cc:283
 msgid "Braj"
 msgstr "Braj"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brazilia"
-
 #. language code: bre br
 #: zypp/LanguageCode.cc:285
 msgid "Breton"
 msgstr "Bretonă"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Teritoriul britanic din Oceanul Indian"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Insulele Virgine Britanice"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonezia)"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriată"
 
 #. language code: bug
 #: zypp/LanguageCode.cc:291
 msgid "Buginese"
 msgstr "Buginese"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Construirea cache-ului sursei de instalare '%s'"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaria"
-
 #. language code: bul bg
 #: zypp/LanguageCode.cc:293
 msgid "Bulgarian"
 msgstr "Bulgară"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriată"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
 #. language code: bur mya my
 #: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
 msgid "Burmese"
 msgstr "Birmaneză"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
 
 #. language code: cad
 #: zypp/LanguageCode.cc:301
 msgid "Caddo"
 msgstr "Caddo"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Cambodgia"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Camerun"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Nu pot crea sat-pool."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Nu pot obține zăvorul mutex-ului"
-
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Nu se poate face chroot la '%s' (%s)."
-
-#: zypp/ExternalProgram.cc:360
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "Nu pot efectua chdir spre '/' în chroot (%s)."
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Nu se poate face chroot la '%s' (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Nu se poate crea %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Nu se poate crea memoria cache la %s - lipsește dreptul de scriere."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Nu se poate crea directorul pentru cache-ul de metadate."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Nu pot șterge '%s'"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Nu pot executa '%s' (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Nu pot determina unde este stocată sursa de instalare."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Nu pot determina unde este stocat serviciul."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Nu pot crea un proces nou (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Nu pot inițializa atributele mutex"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Nu pot inițializa mutex-ul recursiv"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Nu se poate deschide fișierul '%s' pentru scriere."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Nu pot deschide fișierul zăvor: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Nu pot deschide pipe-ul (%s)."
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Nu pot deschide pty (%s)."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Nu pot oferi fișierul '%s' din sursa '%s'"
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Nu pot elibera zăvorul mutex-ului"
-
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Nu pot seta atributul mutex recursiv"
-
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canada"
-
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Nu pot ejecta nici un mediu"
-
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Nu pot ejecta mediul '%s'"
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr "Nu este disponibil dispozitivul pentru a monta imagine de la '%s'"
-
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
-
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
-
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Nu pot scrie fișierul '%s'."
-
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Capul Verde"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Indiană din America Centrala (alta)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -855,181 +2254,90 @@ msgstr "Catalană"
 msgid "Caucasian (Other)"
 msgstr "Caucaziană (alta)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Insulele Cayman"
-
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "Cebuano"
-
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Celtică (alta)"
-
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Republica Centrafricană"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Indiană din America Centrala (alta)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Ciad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Limbi chamice"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "Cebuano"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Celtică (alta)"
 
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Fișiere de configurare modificate pentru %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Cecenă"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokee"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Chibcha"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Cecenă"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "China"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Chineză"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Chuuk"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Jargon Chinook"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chipewyan"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Choctaw"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Insulele Christmas"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chipewyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokee"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "Slavonă bisericească"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Chuuk"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "Ciuvașă"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Newari clasică"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Insulele Cocos (Keeling)"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Columbia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Comandă finalizată cu starea %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Comandă finalizată cu eroare necunoscută."
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Comanda a fost oprită de semnalul %d(%s)."
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Insulele Comore"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Conflicte"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Insulele Cook"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Limbi chamice"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1046,31 +2354,6 @@ msgstr "Cornică"
 msgid "Corsican"
 msgstr "Corsicană"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Coasta de Fildeș"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Creole și pidgin (altele)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1086,46 +2369,36 @@ msgstr "Creole și pidgin bazate pe franceză (altele)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Creole și pidgin bazate pe portugheză (altele)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Tătară crimeeană"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Croația"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Croată"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Creole și pidgin (altele)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kașubiană"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Cuștică (alta)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Cipru"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Cehă"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Republica Cehă"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1151,10 +2424,15 @@ msgstr "Dayak"
 msgid "Delaware"
 msgstr "Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danemarca"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slave (Athapascan)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1166,74 +2444,36 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Divehi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibuti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Republica Dominicană"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Eroare de descărcare (curl) pentru '%s':\n"
-"Cod eroare: %s\n"
-"Mesaj eroare: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Inițializarea download-ului (curl) a eșuat pentru '%s'"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Dravidiană (alta)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Sorabă de jos"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Tip dubios '%s' pentru byte-ul %u, suma de control '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Olandeză medievală (cca. 1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Olandeză"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Olandeză medievală (cca. 1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1244,26 +2484,11 @@ msgstr "Dyula"
 msgid "Dzongkha"
 msgstr "Dzongkha (Bhutan)"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Timorul de Est"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egipt"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1274,32 +2499,11 @@ msgstr "Egipteană (antică)"
 msgid "Ekajuk"
 msgstr "Ekajuk"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "Elamită"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Destinație vidă în URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Sistem de fișiere vid în URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Nume de gazdă vid în URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Șirul codat conține un byte NUL"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1310,287 +2514,51 @@ msgstr "Engleză"
 msgid "English, Middle (1100-1500)"
 msgstr "Engleză medievală (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Engleză veche (cca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Îmbunătățește"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Guineea Ecuatorială"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritreea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"A apărut o eroare la setarea opțiunilor de download (curl) pentru '%s':"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Eroare trimitere notificare mesaj de actualizare."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Eroare la încercarea de a citi din '%s'"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzia"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonia"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
-msgstr "Estoniană"
-
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopia"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Ewe"
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Ewondo"
-
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Sursa de instalare (%d) nu a putut fi încărcată în cache."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Ștergerea cheii a eșuat."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Importul cheii publice din fișierul %s a eșuat: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Montarea %s pe %s a eșuat"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"Furnizarea pachetului %s a eșuat. Doriți să încercați să-l obțineți din nou?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Citirea directorului '%s' a eșuat"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Îndepărtarea cheii publice %s a eșuat: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Demontarea %s a eșuat"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Insulele Falkland (Malvine)"
-
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "Fang"
-
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Insulele Feroe"
-
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Feroeză"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Micronezia"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fijiană"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+msgstr "Estoniană"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Ewe"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Ewondo"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "Fang"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Feroeză"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Fișierul '%s' nu a fost găsit pe mediul '%s'"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Fijiană"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipineză"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finlanda"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1601,40 +2569,16 @@ msgstr "Finlandeză"
 msgid "Finno-Ugrian (Other)"
 msgstr "Fino-ugrică (alta)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Vor fi efectuate următoarele acțiuni:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Franța"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Franceză"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Guiana Franceză"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Polinezia franceză"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Teritoriile Franceze Sudice"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1650,46 +2594,21 @@ msgstr "Franceză veche (842-cca.1400)"
 msgid "Frisian"
 msgstr "Friziană"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friulană"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fulah"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friulană"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Galică"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galiciană"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1700,15 +2619,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Geez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germanică (alta)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1720,6 +2634,36 @@ msgstr "Georgiană"
 msgid "German"
 msgstr "Germană"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Geez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilberteză"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Galică"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irlandeză"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galiciană"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1730,30 +2674,6 @@ msgstr "Germană medievală (cca. 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Germană veche (cca. 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germanică (alta)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Germania"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilberteză"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1774,11 +2694,6 @@ msgstr "Gotică"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grecia"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1789,61 +2704,16 @@ msgstr "Greacă veche (până la 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Greacă modernă (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Groenlanda"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadelupa"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
-msgstr "Guarani"
-
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guineea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guineea-Bissau"
+msgstr "Guarani"
 
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1854,52 +2724,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitiană"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Excepție Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext nu este conectat"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive nu este inițializat"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume nu este inițializat"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Ați activat toate sursele cerute?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaiiană"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Insula Heard și Insulele McDonald"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1925,16 +2764,6 @@ msgstr "Himachali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Istoric:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1945,31 +2774,21 @@ msgstr "Hitită"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Sfântul Scaun (Vatican)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Sorabă de sus"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Maghiară"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Ungaria"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1980,10 +2799,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islanda"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1995,250 +2814,105 @@ msgstr "Islandez"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Sami inari"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (International Auxiliary Language Association)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Indiană (alta)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indo-europeană (alta)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonezia"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indoneziană"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indo-europeană (alta)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Ingușă"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Instalarea a fost anulată la cerere."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (International Auxiliary Language Association)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Inupiaq"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Componentă invalidă %s"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Componentă %s invalidă '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Parametru șir de interogare URL LDAP invalid '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Șir de interogare URL LDAP invalid"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Schemă ulr invalidă '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Referință vidă invalidă la obiect Url"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Componentă gazdă invalidă '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Parametru invalid caracter de separare uniune matrici"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Parametru invalid caracter de separare împărțire matrici"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Parametru de hartă invalid pentru separarea caracterelor"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Componentă port invalidă '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Expresie regulată invalidă '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "'%s' este o expresie regulată invalidă: regcomp a întors %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Nume de fișier sursă de instalare invalid la '%s'"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Iraniană (alta)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irlanda"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irlandeză"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Irlandeză medievală (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Irlandeză veche (până la 900)"
-
 #. language code: iro
-#: zypp/LanguageCode.cc:575
-msgid "Iroquoian Languages"
-msgstr "Limbi irocheze"
-
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Insula Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
+#: zypp/LanguageCode.cc:575
+msgid "Iroquoian Languages"
+msgstr "Limbi irocheze"
 
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italiană"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italia"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javaneză"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japonia"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japoneză"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javaneză"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Iordania"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Iudeo-persiană"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Iudeo-arabică"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Iudeo-persiană"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2255,11 +2929,6 @@ msgstr "Kachin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmucă"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2270,21 +2939,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karageai-Balkară"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2295,10 +2949,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kașmiră"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kașubiană"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2310,31 +2964,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Cazacă"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazahstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenia"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardian"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Khoisan (alta)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2345,11 +2994,6 @@ msgstr "Khotaneză"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2360,15 +3004,15 @@ msgstr "Kinyarwanda"
 msgid "Kirghiz"
 msgstr "Kirghiză"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingoniană"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2380,11 +3024,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Komi"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2400,11 +3039,21 @@ msgstr "Kosraeană"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karageai-Balkară"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2420,26 +3069,11 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Kurdă"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuweit"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kârgâzstan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2460,68 +3094,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Laoțiană"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Republica Populară Democratică Laos"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latină"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Letonia"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Letonă"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Liban"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Nivelul 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Nivelul 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Nivelul 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezghiană"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libia"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2532,60 +3119,45 @@ msgstr "Limburgheză"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lituania"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Lituaniană"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Locația '%s' este temporar inaccesibilă."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Germană de jos"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Sorabă de jos"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburgheză"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
-#. language code: lui
-#: zypp/LanguageCode.cc:687
-msgid "Luiseno"
-msgstr "Luiseno"
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Sami lule"
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
+#. language code: lui
+#: zypp/LanguageCode.cc:687
+msgid "Luiseno"
+msgstr "Luiseno"
 
 #. language code: lun
 #: zypp/LanguageCode.cc:689
@@ -2602,35 +3174,11 @@ msgstr "Luo (Kenya și Tanzania)"
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxembourg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburgheză"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Macedoneană"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagascar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2641,6 +3189,11 @@ msgstr "Madurese"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshalleză"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2651,179 +3204,60 @@ msgstr "Maithili"
 msgid "Makasar"
 msgstr "Makasar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malgașă"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malaeziană"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malayalam"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaezia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldive"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "URI Invalid"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Malteză"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchu"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Limbi manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austroneziană (alta)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Insulele Marshall"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshalleză"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinica"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritania"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Maurițius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Limbi maya"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "Sursa '%s' nu conține CD-ul/DVD-ul corect"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Mediul '%s' este utilizat momentan de o altă instanță"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malaeziană"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Mediu neatașat"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
-"Mediul nu a fost deschis în timp ce se încerca efectuarea acțiunii '%s'."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Franța metropolitană"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexic"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Irlandeză medievală (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2835,86 +3269,61 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandeză"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Diverse limbi"
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
-msgstr "Mohawk"
-
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
-msgstr "Moldovenească"
-
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
 #. language code: mkh
 #: zypp/LanguageCode.cc:741
 msgid "Mon-Khmer (Other)"
 msgstr "Mon-Khmer (alta)"
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malgașă"
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Malteză"
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolia"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manchu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Limbi manobo"
+
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
+msgstr "Mohawk"
+
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
+msgstr "Moldovenească"
 
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongolă"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Muntenegru"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Maroc"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambic"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2925,210 +3334,141 @@ msgstr "Limbi multiple"
 msgid "Munda languages"
 msgstr "Limbile Munda"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandeză"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Limbi maya"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzia"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Indiană din America de Nord"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Napolitană"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele de nord"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele de sud"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele de nord"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Napolitană"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepal Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Germană de jos"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepaleză"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Olanda"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Antilele Olandeze"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Noua Caledonie"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Noua Zeelandă"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Nou mesaj de actualizare"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepal Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Niger-Kordofanian (alta)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-sahariană (alta)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niueană"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Fără cod"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Norwegiană Nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Nici un url în sursa de instalare."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Norwegiană Bokmal"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Insula Norfolk"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Scandinavă veche"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Indiană din America de Nord"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Coreea de Nord"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Insulele Mariana de Nord"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Sami nordică"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Sotho de Nord"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norvegia"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norvegiană"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Norwegiană Bokmal"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Norwegiană Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Nu este o unitate CDROM"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Sotho de Nord"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Limbi nubiene"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Newari clasică"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3147,36 +3487,17 @@ msgstr "Nyoro"
 #. language code: nzi
 #: zypp/LanguageCode.cc:827
 msgid "Nzima"
-msgstr "Nzima"
-
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "păstrează pachetul vechi %s"
-
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
-msgstr "Occitană (după 1500)"
-
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
-msgstr "Ojibwa"
-
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Unul sau ambele din atributele '%s' și '%s' sunt necesare."
+msgstr "Nzima"
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Operația nu este suportată de mediu"
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
+msgstr "Occitană (după 1500)"
+
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
+msgstr "Ojibwa"
 
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
@@ -3198,66 +3519,36 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Osetă"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turcă otomană (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Limbi otomiene"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Pachetul %s a fost probabil corupt în timpul transferului. Doriți să "
-"repetați descărcarea?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papua (alta)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinan"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauană"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Teritoriile palestiniene"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "Pampanga"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinan"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3268,95 +3559,45 @@ msgstr "Panjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua Noua Guinee"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papua (alta)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Calea '%s' de pe mediul '%s' nu este un director."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Calea '%s' de pe mediul '%s' nu este un fișier."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Accesul la '%s' a fost interzis."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persană"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauană"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Persană veche (cca. 600-400 î.e.n.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persană"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Filipineză (alta)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipine"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Feniciană"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-#, fuzzy
-msgid "Please install package 'lsof' first."
-msgstr "Curăț cache-ul pachetelor instalate."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeian"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polonia"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Poloneză"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugalia"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeian"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3368,153 +3609,56 @@ msgstr "Portugheză"
 msgid "Prakrit Languages"
 msgstr "Limbi prakrite"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Determinarea problemei, ceea ce înseamnă suport tehnic menit să ofere "
-"informații de compatibilitate, asistență la instalare, suport la utilizare, "
-"mentenanță curentă și rezolvarea problemelor simple. Suportul de nivel 1 nu "
-"este menit să corecteze erori ale produsului."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Izolarea problemei, ceea ce înseamnă suport tehnic menit să reproducă "
-"problemele clienților, să izoleze zona cu probleme și să ofere soluții "
-"pentru probleme nerezolvate de suportul de nivel 1."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Rezolvarea problemei, ceea ce înseamnă suport tehnic menit să rezolve "
-"problemele complexe prin contribuția specialiștilor la rezolvarea de defecte "
-"ale produselor, identificate de suportul de nivel 2."
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Provensală veche (până la 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Oferă"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pushto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
-msgstr "Quechua"
-
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Pentru acest URL nu este suportată parcurgerea unui șir de interogare"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM a eșuat:"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Retoromană"
-
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
-msgstr "Rajasthani"
-
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
-msgstr "Rapanui"
-
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr "Rarotongan"
-
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Recomandă"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Calea relativă nu este permisă dacă autoritatea există"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Îndepărtez sursa de instalare '%s'"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Aliasul sursei de instalare nu poate începe cu punct."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Atributul necesar '%s' lipsește."
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
+msgstr "Quechua"
 
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Necesită"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
+msgstr "Rajasthani"
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
+msgstr "Rapanui"
+
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
+msgstr "Rarotongan"
 
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Romanică (alta)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "România"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Română"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Retoromană"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Romani"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Română"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3525,43 +3669,25 @@ msgstr "Rundi"
 msgid "Russian"
 msgstr "Rusă"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Federația Rusă"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Sfânta Elena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts și Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandawe"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint Martin"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre și Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Yakută"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Sfântul Vincent și Grenadine"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Indiană din America de sud (alta)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3573,224 +3699,85 @@ msgstr "Limbi salishan"
 msgid "Samaritan Aramaic"
 msgstr "Aramaică samariteană"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Limbi sami (altele)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoană"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandawe"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sango"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanscrită"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "Santali"
-
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome și Principe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardă"
-
 #. language code: sas
 #: zypp/LanguageCode.cc:919
 msgid "Sasak"
 msgstr "Sasak"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Arabia Saudită"
-
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "Scots"
-
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "Selkup"
-
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "Semitică (alta)"
-
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbia"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "Santali"
 
 #. language code: scc srp sr
 #: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
 msgid "Serbian"
 msgstr "Sârbă"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Aliasul serviciului nu poate începe cu punct."
-
-#: zypp/repo/RepoException.cc:129
-#, fuzzy
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
-"tipul de resursă VAR1 nu suportă funcția de arătare a modificărilor (show "
-"changes)"
-
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelles"
-
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "Shan"
-
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
-
 #. language code: scn
 #: zypp/LanguageCode.cc:927
 msgid "Sicilian"
 msgstr "Siciliană"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "Sidamo"
-
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Limbajul semnelor"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "Fișierul semnătură %s nu a fost găsit"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Fișierul semnătură %s nu a fost găsit"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "Scots"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "Fișierul semnătură %s nu a fost găsit"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Croată"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "Fișierul semnătură %s nu a fost găsit"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "Selkup"
 
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr " execuție eșuată"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "Semitică (alta)"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Irlandeză veche (până la 900)"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Limbajul semnelor"
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "Shan"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapore"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "Sidamo"
 
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Sinhala"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-tibetană (alta)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Limbi siouan"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Sami skolt"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-tibetană (alta)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3802,214 +3789,141 @@ msgstr "Slavă (alta)"
 msgid "Slovak"
 msgstr "Slovacă"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovacia"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenia"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Slovenă"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Sami sudică"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Sami nordică"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Limbi sami (altele)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Sami lule"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Sami inari"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoană"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Sami skolt"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "Sogdiană"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Insulele Solomon"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Somali"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "Songhai"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Limbi sorabe"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-"Ne pare rău, dar această versiune de libzypp a fost construită fără suport "
-"HAL."
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Sotho de sud"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Africa de Sud"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Indiană din America de sud (alta)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Georgia de Sud și Insulele Sandwich de Sud"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Coreea de Sud"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Altai de Sud"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Sami sudică"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spania"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Spaniolă"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardă"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Sugerează"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-sahariană (alta)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumeriană"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sumeriană"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Suplimentează"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard și Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumeriană"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Swahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Suedia"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
-msgstr "Suedeză"
-
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Elveția"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Siria"
+msgstr "Suedeză"
 
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Siriacă"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Excepție sistem '%s' pe mediul '%s'."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Gestiunea sistemului a fost blocată de aplicația cu pid %d (%s).\n"
-"Închideți această aplicație înainte de a încerca din nou."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4020,36 +3934,11 @@ msgstr "Tahitiană"
 msgid "Tai (Other)"
 msgstr "Tai (alta)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tajik"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadjikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamashek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4060,6 +3949,11 @@ msgstr "Tătară"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4070,33 +3964,21 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tajik"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Tailandeză"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tailanda"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Nivelul de suport este nespecificat"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Vânzătorul nu oferă suport."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Această acțiune este rulată deja de alt program."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Această cerere vă va afecta sistemul!"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4112,46 +3994,25 @@ msgstr "Tigre"
 msgid "Tigrinya"
 msgstr "Tigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Timp depășit în timpul accesării '%s'."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingoniană"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4163,694 +4024,836 @@ msgstr "Tonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Insulele Tonga)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, fuzzy, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Am încercat să import cheia inexistentă %s în colecția de chei %s"
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad și Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimshian"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmenă"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisia"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Limbi Tupi"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turcia"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turcă"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turcă otomană (1500-1928)"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaică (alta)"
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkmenă"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr "Tuviniană"
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Insulele Turks și Caicos"
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "Udmurt"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "Ugaritică"
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "Uigură"
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "Ucrainiană"
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "Umbundu"
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Nedeterminată"
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Urdu"
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Uzbecă"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vai"
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Venda"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnameză"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Volapuk"
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Votică"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "Limbi wakashan"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
-msgstr "Tuviniană"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Walamo"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Waray"
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "Udmurt"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Washo"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Galeză"
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "Ugaritică"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Limbi sorabe"
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "Uigură"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Valonă"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ucraina"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolof"
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "Ucrainiană"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmucă"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "Umbundu"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhosa"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Nu pot clona obiectul Url"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yao"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Nu pot crea conexiunea dbus"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yapese"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Nu pot inițializa contextul HAL -- este posibil ca hald să nu ruleze?"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Idiș"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Nu pot parcurge componentele Url"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Yoruba"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Nedeterminată"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Limbi yupik"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Tip de sursă de instalare netratat"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapotecă"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Emiratele Arabe Unite"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Anglia"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Statele Unite"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Insulele minore din afara Statelor Unite"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Țară necunoscută: "
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Eroare necunoscută la citirea de la '%s'"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, fuzzy, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Am încercat să import cheia inexistentă %s în colecția de chei %s"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Limbă necunoscută: "
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Ștergerea cheii a eșuat."
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Mod necunoscut '%s'"
+msgid "Signature file %s not found"
+msgstr "Fișierul semnătură %s nu a fost găsit"
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Mod necunoscut '%s' pentru modelul '%s'"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Nu pot oferi fișierul '%s' din sursa '%s'"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Opțiune de suport necunoscută. Descrierea nu este disponibilă"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Nici un url în sursa de instalare."
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/RepoException.cc:129
+#, fuzzy
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
+"tipul de resursă VAR1 nu suportă funcția de arătare a modificărilor (show "
+"changes)"
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Metodă de autentificare HTTP nesuportată '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Pachetul %s a fost probabil corupt în timpul transferului. Doriți să "
+"repetați descărcarea?"
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr " execuție eșuată"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Schemă URI nesuportată în '%s'."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
+"Furnizarea pachetului %s a eșuat. Doriți să încercați să-l obțineți din nou?"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Sorabă de sus"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "verificarea applydeltarpm a eșuat."
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Urdu"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm a eșuat."
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"Gestiunea sistemului a fost blocată de aplicația cu pid %d (%s).\n"
+"Închideți această aplicație înainte de a încerca din nou."
+
+#: zypp/solver/detail/SATResolver.cc:975
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Schema url nu permite %s"
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s nu aparține de o sursă de instalare de actualizare distribuție"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Schema url nu permite componentă gazdă"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s are arhitectură inferioară"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Schema url nu permite parolă"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problemă cu pachetul instalat %s"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Schema url nu permite port"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "cereri ce intră în conflict"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Schema url nu permite un nume de utilizator"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "o problemă de dependențe"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Schema url este o componentă obligatorie"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "nimic nu oferă %s necesar"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Schema url necesită o componentă gazdă"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Ați activat toate sursele cerute?"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Schema url necesită o cale"
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "nu există backup"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
+#: zypp/solver/detail/SATResolver.cc:1000
+#, fuzzy
+msgid "unsupported request"
+msgstr "nesuportat"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Uzbecă"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s este blocat şi nu poate fi deinstalat."
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s nu este instalabil"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vai"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "Nimic nu oferă %s necesar pentru %s"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-#, fuzzy
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "La URL-ul (URL-urile) specificate nu au fost găsite metadate valide"
-msgstr[1] "La URL-ul (URL-urile) specificate nu au fost găsite metadate valide"
-msgstr[2] "La URL-ul (URL-urile) specificate nu au fost găsite metadate valide"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "nu pot instala %s și %s împreună"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s intră în conflict cu %s pus la dispoziție de %s"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Venda"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s înlocuiește %s oferit de %s"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "versiuni vechi %s instalate %s furnizate de %s"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "dependența %s intră în conflict cu %s furnizat de ea însăși"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnameză"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s necesită %s, dar această cerință nu este îndeplinită"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Insulele Virgine, S.U.A."
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "pachete șterse: "
 
-#: zypp/media/MediaCurl.cc:1008
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"\n"
+"uninstallable providers: "
 msgstr ""
-"Vizitează Centru de Relații cu Clienții Novell pentru a verifica dacă "
-"înregistrarea este validă și încă valabilă."
+"\n"
+"pachete care pot fi dezinstalate: "
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Volapuk"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "furnizori dezinstalabili: "
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Votică"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "Limbi wakashan"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "nu instala %s"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "păstrează %s"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis și Futuna"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "nu interzice instalarea %s"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Valonă"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Această cerere vă va afecta sistemul!"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Waray"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ignoră avertismentul privitor la stricarea sistemului"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Washo"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "nu cere instalarea unui pachet ce oferă %s"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Galeză"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "nu cere stergerea tuturor pachetelor ce oferă %s"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Sahara Occidentală"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "nu instala cea mai recentă versiune a %s"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "păstrează %s chiar dacă arhitectura este inferioară"
+
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "instalează %s chiar dacă arhitectura este inferioară"
+
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "păstrează pachetul vechi %s"
+
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "instalează %s de la o sursă de instalare exclusă"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "downgrade %s la %s"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Yakută"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "modificare de arhitectură a %s în %s"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yao"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"instalează %s (cu modificarea vânzătorului)\n"
+" %s\n"
+"-->\n"
+" %s"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "înlocuirea %s cu %s"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "deinstalarea %s"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Idiș"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "întrerupe pachetul %s ignorând o parte din dependențele lui"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Yoruba"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "în general se ignoră unele dependințe"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Limbi yupik"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "Atributul necesar '%s' lipsește."
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Unul sau ambele din atributele '%s' și '%s' sunt necesare."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Nu pot deschide fișierul zăvor: %s"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapotecă"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Această acțiune este rulată deja de alt program."
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Istoric:"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Mod necunoscut '%s'"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Mod necunoscut '%s' pentru modelul '%s'"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "'%s' este o expresie regulată invalidă: regcomp a întors %d"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Expresie regulată invalidă '%s'"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "verificarea applydeltarpm a eșuat."
+#: zypp/misc/CheckAccessDeleted.cc:242
+#, fuzzy
+msgid "Please install package 'lsof' first."
+msgstr "Curăț cache-ul pachetelor instalate."
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm a eșuat."
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Pentru '%s' este necesară autentificarea"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "modificare de arhitectură a %s în %s"
+msgid "Failed to mount %s on %s"
+msgstr "Montarea %s pe %s a eșuat"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "întrerupe pachetul %s ignorând o parte din dependențele lui"
+msgid "Failed to unmount %s"
+msgstr "Demontarea %s a eșuat"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "nu pot instala %s și %s împreună"
+msgid "Bad file name: %s"
+msgstr "Nume de fișier incorect: %s"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "cereri ce intră în conflict"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
+"Mediul nu a fost deschis în timp ce se încerca efectuarea acțiunii '%s'."
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "backup %s creat"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Fișierul '%s' nu a fost găsit pe mediul '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "deinstalarea %s"
+msgid "Cannot write file '%s'."
+msgstr "Nu pot scrie fișierul '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "pachete șterse: "
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Mediu neatașat"
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "nu cere stergerea tuturor pachetelor ce oferă %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Punct incorect de conectare a mediului"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "nu cere instalarea unui pachet ce oferă %s"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Inițializarea download-ului (curl) a eșuat pentru '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "nu instala %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "Excepție sistem '%s' pe mediul '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "nu instala cea mai recentă versiune a %s"
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Calea '%s' de pe mediul '%s' nu este un fișier."
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "downgrade %s la %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Calea '%s' de pe mediul '%s' nu este un director."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "în general se ignoră unele dependințe"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "URI Invalid"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ignoră avertismentul privitor la stricarea sistemului"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Nume de gazdă vid în URI"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Sistem de fișiere vid în URI"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Destinație vidă în URI"
+
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Schemă URI nesuportată în '%s'."
+
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operația nu este suportată de mediu"
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
-"instalează %s (cu modificarea vânzătorului)\n"
-" %s\n"
-"-->\n"
-" %s"
+"Eroare de descărcare (curl) pentru '%s':\n"
+"Cod eroare: %s\n"
+"Mesaj eroare: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "instalează %s chiar dacă arhitectura este inferioară"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"A apărut o eroare la setarea opțiunilor de download (curl) pentru '%s':"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "instalează %s de la o sursă de instalare exclusă"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Sursa '%s' nu conține CD-ul/DVD-ul corect"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "versiuni vechi %s instalate %s furnizate de %s"
+msgid "Medium '%s' is in use by another instance"
+msgstr "Mediul '%s' este utilizat momentan de o altă instanță"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "invalid"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Nu pot ejecta nici un mediu"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "păstrează %s"
+msgid "Cannot eject media '%s'"
+msgstr "Nu pot ejecta mediul '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "păstrează %s chiar dacă arhitectura este inferioară"
+msgid "Permission to access '%s' denied."
+msgstr "Accesul la '%s' a fost interzis."
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "păstrează pachetul vechi %s"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Nu pot crea contextul libhal"
-
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: Nu pot seta conexiunea dbus"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Timp depășit în timpul accesării '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "Nimic nu oferă %s necesar pentru %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Locația '%s' este temporar inaccesibilă."
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "nimic nu oferă %s necesar"
-
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "nu există backup"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+"Problemă de certificat SSL, verificați dacă certificatul autorității de "
+"certificare este OK pentru '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problemă cu pachetul instalat %s"
-
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "nu interzice instalarea %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr "Nu este disponibil dispozitivul pentru a monta imagine de la '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr ""
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Metodă de autentificare HTTP nesuportată '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "înlocuirea %s cu %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Vizitează Centru de Relații cu Clienții Novell pentru a verifica dacă "
+"înregistrarea este validă și încă valabilă."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm a creat %s ca %s, dar nu a putut determina diferențele"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Nu pot crea sat-pool."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm a creat %s ca %s.\n"
-"Acestea sunt primele 25 de linii diferite:\n"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm a salvat %s ca %s, dar nu a putut determina diferențele"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm a salvat %s ca %s.\n"
-"Acestea sunt primele 25 de linii diferite:\n"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "dependența %s intră în conflict cu %s furnizat de ea însăși"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "o problemă de dependențe"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "furnizori dezinstalabili: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "necunoscut"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "nesuportat"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-#, fuzzy
-msgid "unsupported request"
-msgstr "nesuportat"
+#~ msgid "do not keep %s installed"
+#~ msgstr "nu păstra %s instalat"
 
 #~ msgid "Cannot create public key %s from %s keyring to file %s"
 #~ msgstr "Nu pot crea cheia publică %s din keyring-ul %s pe fișierul %s"
@@ -4881,6 +4884,3 @@ msgstr "nesuportat"
 
 #~ msgid "Failed to download %s from %s"
 #~ msgstr "A eșuat descărcarea %s de la %s"
-
-#~ msgid "do not keep %s installed"
-#~ msgstr "nu păstra %s instalat"
index 014a240..89c581f 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# Translation of zypp.po to russian
+# Copyright (C) 2005, 2006 SUSE Linux Products GmbH.
+# Copyright (C) 2002 SuSE Linux AG.
+# Copyright (C) 1999, 2000, 2001 SuSE GmbH.
 #
+# Aleksey Novodvorksy <aen@logic.ru>, 2000.
+# Eugene Osintsev <osgene@omskelecom.ru>, 1999, 2000.
+# Aleksey Osipov <aliks-os@yandex.ru>, 2005, 2006, 2007, 2008.
+# Nikolay Derkach <nderkach@gmail.com>, 2007, 2008.
+# Alexander Melentiev <alex239@gmail.com>, 2008, 2009, 2010.
+# Alexander Melentiev <minton@opensuse.org>, 2011, 2012, 2013, 2014, 2015.
 msgid ""
 msgstr ""
-"Project-Id-Version: zypp\n"
+"Project-Id-Version: zypp.ru\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 17:04\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2015-11-17 22:10+0300\n"
+"Last-Translator: Aleksandr Melentev <minton@opensuse.org>\n"
+"Language-Team: Russian <opensuse-translation-ru@opensuse.org>\n"
+"Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Lokalize 2.0\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"поставщики, не подлежащие установке: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Исключение Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Неверная строка запроса LDAP в URL-адресе"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" Проблема сертификатов SSL, проверьте, всё ли в порядке с удостоверяющим "
-"центром сертификата '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Неверный параметр запроса LDAP в URL-адресе: '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Не удалось создать клон объекта URL"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Неверная ссылка на пустой объект URL"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Не удалось выполнить анализ компонентов URL-адреса"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Невозможно инициализировать атрибуты взаимного исключения"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Невозможно установить атрибут рекурсивного взаимного исключения"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Невозможно инициализировать рекурсивное взаимное исключение"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Невозможно получить блокировку взаимного исключения"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Невозможно освободить блокировку взаимного исключения"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Предоставляет"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Предварительно требует"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Требует"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Конфликтует"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Делает устаревшим"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Рекомендует"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Предлагает"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Улучшает"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Дополняет"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Подозрительный тип '%s' байта номер %u контрольной суммы '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
-msgstr " выполнено"
+msgstr "выполнено"
 
 #: zypp/target/TargetImpl.cc:332
 msgid " execution failed"
-msgstr " сбой при выполнении"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " выполнение пропущено во время прерывания работы"
+msgstr "сбой выполнения"
 
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
@@ -48,94 +127,121 @@ msgstr " выполнение пропущено во время прерыва
 #: zypp/target/TargetImpl.cc:449
 #, c-format, boost-format
 msgid "%s already executed as %s)"
-msgstr "%s уже выполняется как %s"
+msgstr "%s уже выполнен как %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s конфликтует с %s, который предоставляется %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr "выполнение пропущено при прерывании"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s не принадлежит репозиторию обновления рассылки"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Ошибка при отправке сообщения об обновлении."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s имеет худшую архитектуру"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Новое сообщение об обновлении"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s недоступен для установки"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Установка прервана согласно указаниям."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s предоставляется системой и не может быть удалён"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "Увы, данная версия libzypp была собрана без поддержки HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s делает устаревшим %s, предоставляемый %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext не подключен"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s требует %s, но это требование не может быть удовлетворено"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive не инициализирован"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(ИСТЕК)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume не инициализирован"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(не истекает)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Не удалось создать подключение dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(истекает в пределах 24 часов)"
-msgstr[1] "(истекает в пределах 24 часов)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Не удаётся создать контекст libhal"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(истекает в пределах 24 часов)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: не удалось установить подключение к dbus"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Абхазский"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Не удалось инициализировать контекст HAL -- не запущен hald?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Ачехский"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Не привод CD-ROM"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Ачоли"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "Сбой RPM: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Адангме"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Не удалось импортировать публичный ключ из файла %s: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Ð\94обавлÑ\8fеÑ\82Ñ\81Ñ\8f Ñ\80епозиÑ\82аÑ\80ий '%s'"
+msgid "Failed to remove public key %s: %s"
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\83далиÑ\82Ñ\8c Ð¿Ñ\83блиÑ\87нÑ\8bй ÐºÐ»Ñ\8eÑ\87 %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Необходим дополнительный контакт с заказчиком"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Изменённые файлы настройки для %s:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm сохранил %s как %s, но было невозможно определить различия"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm сохранил %s как %s.\n"
+"Первые 25 строк различий:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm создал %s как %s, но было невозможно определить различия"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm создал %s как %s.\n"
+"Первые 25 строк различий:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -143,1477 +249,2298 @@ msgstr "Необходим дополнительный контакт с зак
 msgid "Additional rpm output"
 msgstr "Дополнительный вывод rpm"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Адыгейский"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "создана резервная копия %s"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Ð\90Ñ\84аÑ\80"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "Ð\9fодпиÑ\81Ñ\8c Ð² Ð¿Ð¾Ñ\80Ñ\8fдке"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Ð\90Ñ\84ганиÑ\81Ñ\82ан"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Ð\9dеизвеÑ\81Ñ\82нÑ\8bй Ñ\82ип Ð¿Ð¾Ð´Ð¿Ð¸Ñ\81и"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Ð\90Ñ\84Ñ\80иÑ\85или"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "Ð\9fодпиÑ\81Ñ\8c Ð½Ðµ Ð¿Ñ\80овеÑ\80ена"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Ð\90Ñ\84Ñ\80икаанÑ\81"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "Ð\9fодпиÑ\81Ñ\8c Ð² Ð¿Ð¾Ñ\80Ñ\8fдке, Ð½Ð¾ ÐºÐ»Ñ\8eÑ\87 Ð½Ðµ Ñ\8fвлÑ\8fеÑ\82Ñ\81Ñ\8f Ð´Ð¾Ð²ÐµÑ\80еннÑ\8bм"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Ð\90Ñ\84Ñ\80азийÑ\81кие (дÑ\80Ñ\83гие)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "Ð\9fÑ\83блиÑ\87нÑ\8bй ÐºÐ»Ñ\8eÑ\87 Ð¿Ð¾Ð´Ð¿Ð¸Ñ\81ей Ð½ÐµÐ´Ð¾Ñ\81Ñ\82Ñ\83пен"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Ð\90йнÑ\81кий"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "Файл Ð½Ðµ Ñ\81Ñ\83Ñ\89еÑ\81Ñ\82вÑ\83еÑ\82 Ð¸Ð»Ð¸ Ð½ÐµÐ²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾ Ð¿Ñ\80овеÑ\80иÑ\82Ñ\8c Ð¿Ð¾Ð´Ð¿Ð¸Ñ\81Ñ\8c"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Акан"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Будут выполнены следующие действия:"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Ð\90ккадÑ\81кий"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "Ð\9dевозможно Ð¿Ñ\80оÑ\87иÑ\82аÑ\82Ñ\8c ÐºÐ°Ñ\82алог Ñ\80епозиÑ\82оÑ\80иÑ\8f '%1%': Ð\94оÑ\81Ñ\82Ñ\83п Ð·Ð°Ð¿Ñ\80еÑ\89Ñ\91н"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Аландские острова"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Не удалось прочесть каталог '%s'"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Ð\90лбаниÑ\8f"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "Ð\9dевозможно Ð¿Ñ\80оÑ\87иÑ\82аÑ\82Ñ\8c Ñ\84айл Ñ\80епозиÑ\82оÑ\80иÑ\8f '%1%': Ð\94оÑ\81Ñ\82Ñ\83п Ð·Ð°Ð¿Ñ\80еÑ\89Ñ\91н"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Албанский"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Псевдоним репозитория не может начинаться с точки."
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Алеутский"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Псевдоним службы не может начинаться с точки."
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Алжир"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Невозможно открыть файл '%s' для записи."
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Алгонкинские языки"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr "Неизвестная служба '%1%': удаление репозитория службы '%2%'"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Алтайские (другие)"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "По указанному URL-адресу не найдено действительных метаданных"
+msgstr[1] "По указанным URL-адресам не найдено действительных метаданных"
+msgstr[2] "По указанным URL-адресам не найдено действительных метаданных"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "СевеÑ\80наÑ\8f Ð\90меÑ\80ика"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\81оздаÑ\82Ñ\8c %s"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Амхарский (амаринья)"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Невозможно создать каталог кэша метаданных."
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Для получения поддержки необходим дополнительный контакт с заказчиком."
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Сбор кэша репозитория '%s'"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Андорра"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Не удалось создать кэш в %s — нет прав на запись."
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Ð\90нгола"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\81обÑ\80аÑ\82Ñ\8c ÐºÑ\8dÑ\88 Ñ\80епозиÑ\82оÑ\80иÑ\8f (%d)."
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Ангилья"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Необрабатываемый тип репозитория"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Антарктида"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Ошибка чтения из '%s'"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Антигуа и Барбадос"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Неизвестная ошибка при чтении из '%s'"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Ð\90паÑ\87Ñ\81кие Ñ\8fзÑ\8bки"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Ð\94обавление Ñ\80епозиÑ\82оÑ\80иÑ\8f '%s'"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Арабский"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Неверное имя файла репозитория в '%s'"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Ð\90Ñ\80агонÑ\81кий"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Удаление Ñ\80епозиÑ\82оÑ\80иÑ\8f '%s'"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Арамейский"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Невозможно выяснить, где хранится репозиторий."
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Арапахо"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Невозможно удалить '%s'"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Арауканский"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Невозможно выяснить, где хранится служба."
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Ð\90Ñ\80авакÑ\81кие"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "СÑ\85ема URL-адÑ\80еÑ\81а Ð½Ðµ Ð¿Ð¾Ð·Ð²Ð¾Ð»Ñ\8fеÑ\82 Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c %s"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Ð\90Ñ\80генÑ\82ина"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Ð\9dевеÑ\80нÑ\8bй ÐºÐ¾Ð¼Ð¿Ð¾Ð½ÐµÐ½Ñ\82 %s: '%s'"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Ð\90Ñ\80генÑ\82ина"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Ð\9dевеÑ\80нÑ\8bй ÐºÐ¾Ð¼Ð¿Ð¾Ð½ÐµÐ½Ñ\82: %s"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Армянский"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Для данного URL-адреса анализ строки запроса не поддерживается"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Искусственные (другие)"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Схема URL адреса является необходимым компонентом"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Ð\90Ñ\80Ñ\83ба"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Ð\9dевеÑ\80наÑ\8f Ñ\81Ñ\85ема URL-адÑ\80еÑ\81а '%s'"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Ассамский"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Схема URL-адреса не позволяет использовать имя пользователя"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Астурийский"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Схема URL-адреса не позволяет использовать пароль"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Атапаскские языки"
-
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Австралия"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Схема URL-адреса требует указания компонента узла"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Австралийские языки"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Схема URL-адреса не позволяет использовать компонент узла"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Ð\90вÑ\81Ñ\82Ñ\80иÑ\8f"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Ð\9dевеÑ\80нÑ\8bй ÐºÐ¾Ð¼Ð¿Ð¾Ð½ÐµÐ½Ñ\82 Ñ\83зла '%s'"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Австронезийские (другие)"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Схема URL-адреса не позволяет использовать порт"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Ð\9dеобÑ\85одима Ð°Ñ\83Ñ\82енÑ\82иÑ\84икаÑ\86иÑ\8f Ð´Ð»Ñ\8f '%s'"
+msgid "Invalid port component '%s'"
+msgstr "Ð\9dевеÑ\80нÑ\8bй ÐºÐ¾Ð¼Ð¿Ð¾Ð½ÐµÐ½Ñ\82 Ð¿Ð¾Ñ\80Ñ\82а '%s'"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Аварский"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Схема URL-адреса требует указания пути"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Авестийский"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+"При наличии компонентов авторизации относительные пути указывать нельзя"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Авадхи"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Зашифрованная строка содержит байт со значением NULL"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Аймара"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Неверный символ разделителя для разбиения массива параметров"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Азербайджанский"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Неверный символ разделителя для разбиения отображения параметров"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Азербайджанский"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Неверный символ разделителя для объединения массива параметров"
 
-#: zypp/media/MediaException.cc:47
+#: zypp/ExternalProgram.cc:258
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Ð\9dевеÑ\80ное Ð¸Ð¼Ñ\8f Ñ\84айла: %s"
+msgid "Can't open pty (%s)."
+msgstr "Ð\9dевозможно Ð¾Ñ\82кÑ\80Ñ\8bÑ\82Ñ\8c Ð¿Ñ\81евдоÑ\82еÑ\80минал (%s)."
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Неверная точка присоединения носителя"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Невозможно открыть канал (%s)."
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Ð\9fанама"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Ð\9dевозможно Ð²Ñ\8bполниÑ\82Ñ\8c chroot Ð² '%s' (%s)."
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Ð\91аÑ\85Ñ\80ейн"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "Ð\9dевозможно Ñ\81мениÑ\82Ñ\8c ÐºÐ°Ñ\82алог Ð½Ð° '%s' Ð²Ð½Ñ\83Ñ\82Ñ\80и Ñ\81Ñ\80едÑ\8b chroot '%s' (%s)."
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Ð\91алийÑ\81кий"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Ð\9dевозможно Ñ\81мениÑ\82Ñ\8c ÐºÐ°Ñ\82алог Ð½Ð° '%s' (%s)."
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Балтийский (Другие)"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Невозможно выполнить exec '%s' (%s)."
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Ð\91елÑ\83джÑ\81кий"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Ð\9dевозможно Ð²Ñ\8bполниÑ\82Ñ\8c fork (%s)."
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Ð\91амбаÑ\80а"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Ð\9aоманда Ð·Ð°Ð²ÐµÑ\80Ñ\88илаÑ\81Ñ\8c Ñ\81 ÐºÐ¾Ð´Ð¾Ð¼ %d."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Ð\91амилеке Ñ\8fзÑ\8bки"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Ð\9aоманда Ð±Ñ\8bла Ñ\83биÑ\82а Ñ\81игналом %d (%s)."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Банда"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Команда завершилась с неизвестной ошибкой."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Английский"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(не истекает)"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Банту (другие)"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(Истекший)"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Барбадос"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(истекает в течение 24 часов)"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Баса"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(истекает через %d день)"
+msgstr[1] "(истекает через %d дня)"
+msgstr[2] "(истекает через %d дней)"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Башкирский"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "неизвестно"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Баскский"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "не поддерживается"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Батакский (Индонезия)"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Уровень 1"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Беджа"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Уровень 2"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Беларуссия"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Уровень 3"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Белорусский"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Необходимо дополнительное клиентское соглашение"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Бельгия"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "неверно"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Бельгия"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Уровень поддержки не определён"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Бемба"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Производитель не предоставляет поддержку."
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Бенгальский"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Определение проблемы, т.е. техподдержка должна предоставлять информацию о "
+"совместимости, помощь при установке, поддержку использования, обслуживание и "
+"базовое выявление неисправностей. Поддержка первого уровня не подразумевает "
+"исправление дефектов продукта."
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Бенин"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Изоляция проблемы, т.е. техподдержка должна воспроизводить проблему клиента, "
+"изолировать проблемную область и предоставлять решения проблем, не решённых "
+"поддержкой первого уровня."
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Берберские (другие)"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Решение проблемы, т.е. техподдержка должна решать сложные проблемы с "
+"привлечением инженеров для исправления дефектов продукта, обнаруженных "
+"поддержкой второго уровня."
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Бермудские острова"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+"Для получения поддержки необходимо дополнительное клиентское соглашение."
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Бходжпури"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Неизвестный вариант поддержки. Описание недоступно."
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Бутан"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Неизвестная страна: "
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Бихари"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Нет кода"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Бикольский"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Андорра"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Ð\91ини"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Ð\9eбÑ\8aединÑ\91ннÑ\8bе Ð\90Ñ\80абÑ\81кие Ð­Ð¼Ð¸Ñ\80аÑ\82Ñ\8b"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Ð\91иÑ\81лама"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Ð\90Ñ\84ганиÑ\81Ñ\82ан"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Ð\91лин"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Ð\90нÑ\82игÑ\83а Ð¸ Ð\91аÑ\80бадоÑ\81"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Ð\91оливия"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Ð\90нгилÑ\8cя"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Ð\91оÑ\81ниÑ\8f Ð¸ Ð\93еÑ\80Ñ\86еговина"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Ð\90лбаниÑ\8f"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Ð\91оÑ\81нийÑ\81кий"
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Ð\90Ñ\80мениÑ\8f"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Ð\91оÑ\82Ñ\81вана"
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Ð\9dидеÑ\80ландÑ\81кие Ð\90нÑ\82илÑ\8cÑ\81кие Ð¾Ñ\81Ñ\82Ñ\80ова "
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Ð\9eÑ\81Ñ\82Ñ\80ов Ð\91Ñ\83ве"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Ð\90нгола"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Ð\91Ñ\80аÑ\83и"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Ð\90нÑ\82аÑ\80кÑ\82ида"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Ð\91Ñ\80азилиÑ\8f"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Ð\90Ñ\80генÑ\82ина"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Ð\91Ñ\80еÑ\82онÑ\81кий"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Ð\90меÑ\80иканÑ\81кое Ð¡Ð°Ð¼Ð¾Ð°"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Ð\91Ñ\80иÑ\82анÑ\81каÑ\8f Ñ\82еÑ\80Ñ\80иÑ\82оÑ\80иÑ\8f Ð\98ндийÑ\81кого Ð¾ÐºÐµÐ°Ð½Ð°"
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Ð\90вÑ\81Ñ\82Ñ\80иÑ\8f"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Ð\91Ñ\80иÑ\82анÑ\81кие Ð\92иÑ\80гинÑ\81кие Ð¾Ñ\81Ñ\82Ñ\80ова"
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Ð\90вÑ\81Ñ\82Ñ\80алиÑ\8f"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Ð\91Ñ\80Ñ\83ней-Ð\94аÑ\80Ñ\83Ñ\81Ñ\81алам"
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Ð\90Ñ\80Ñ\83ба"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Ð\91Ñ\83гийÑ\81кий"
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Ð\90ландÑ\81кие Ð¾Ñ\81Ñ\82Ñ\80ова"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "СобиÑ\80аеÑ\82Ñ\81Ñ\8f ÐºÑ\8dÑ\88 Ñ\80епозиÑ\82аÑ\80иÑ\8f '%s'"
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Ð\90зеÑ\80байджан"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Болгария"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Босния и Герцеговина"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Ð\91олгаÑ\80Ñ\81кий"
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Ð\91аÑ\80бадоÑ\81"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Бурятский"
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Бангладеш"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Бельгия"
 
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
 msgstr "Буркина-Фасо"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Бирманский"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Болгария"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Бахрейн"
 
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "Бурунди"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Ð\9aаддо"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Ð\91енин"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Ð\9aолÑ\83мбиÑ\8f"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Ð\91еÑ\80мÑ\83дÑ\81кие Ð¾Ñ\81Ñ\82Ñ\80ова"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Ð\9aамеÑ\80Ñ\83н"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Ð\91Ñ\80Ñ\83ней-Ð\94аÑ\80Ñ\83Ñ\81Ñ\81алам"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Не удаётся создать пул SAT."
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Боливия"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Не удается получить блокировку взаимоисключения"
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Бразилия"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Ð\9dевозможно Ñ\81мениÑ\82Ñ\8c ÐºÐ°Ñ\82алог Ð½Ð° %s (%s)."
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Ð\91агамÑ\8b"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "Ð\9dевозможно Ñ\81мениÑ\82Ñ\8c ÐºÐ°Ñ\82алог Ð½Ð° %s Ð²Ð½Ñ\83Ñ\82Ñ\80и Ñ\81Ñ\80едÑ\8b chroot %s (%s)."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Ð\91Ñ\83Ñ\82ан"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Не удаётся выполнить chroot в '%s' (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Не удалось создать %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Не удалось создать кэш в %s - нет прав на запись."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Невозможно создать каталог кэша метаданных."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Не удается удалить \"%s\""
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Не удаётся выполнить exec '%s' (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Невозможно определить, где хранится репозитарий."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Невозможно определить, где хранится сервис."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Не удаётся выполнить fork (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Не удается инициализировать атрибуты взаимоисключения"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Не удается инициализировать рекурсивное взаимоисключение"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Невозможно открыть файл \"%s\" для записи."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Не удаётся открыть файл блокировки: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Не удаётся открыть канал (%s)."
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Не удаётся открыть псевдо-терминал (%s)."
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Остров Буве"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Ð\9dе Ñ\83даÑ\91Ñ\82Ñ\81Ñ\8f Ð´Ð¾Ñ\81Ñ\82авиÑ\82Ñ\8c Ñ\84айл '%s' Ð¸Ð· Ñ\80епозиÑ\82аÑ\80иÑ\8f '%s'"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Ð\91оÑ\82Ñ\81вана"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Не удается освободить блокировку взаимоисключения"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Беларусь"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Не удается установить атрибут рекурсивного взаимоисключения"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Белиз"
 
 #. :BLZ:084:
 #: zypp/CountryCode.cc:194
 msgid "Canada"
 msgstr "Канада"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Невозможно выгрузить носитель"
-
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Невозможно выгрузить носитель \"%s\"'"
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Не удается найти доступное петлевое устройство для монтирования файла образа "
-"из \"%s\""
-
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "Невозможно прочитать каталог репозитория \"%1%\": доступ запрещен"
-
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "Невозможно прочитать файл репозитория \"%1%\": доступ запрещен"
-
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Невозможно записать файл \"%s\"."
-
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Капе Верде"
-
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "Кариб"
-
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Каталонский"
-
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "Кавказские (другие)"
-
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Каймановы Острова"
-
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "Себуанский"
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Кокосовые острова (Килинг)"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Кельтские (другие)"
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Конго"
 
 #. :COD:180:
 #: zypp/CountryCode.cc:197
 msgid "Central African Republic"
 msgstr "Центрально-Африканская Республика"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Индейцев Центральной Америки (Другой)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Китай"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Чагатайский"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Чамикские языки"
-
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "Чаморро"
-
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Измененные файлы конфигурации для %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Чеченский"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Чероки"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Чейенн"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Швейцария"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "ЧибÑ\87а"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Ð\9aоÑ\82-д'Ð\98вÑ\83аÑ\80"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "ЧиÑ\87ева"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Ð\9eÑ\81Ñ\82Ñ\80ова Ð\9aÑ\83ка"
 
 #. :COK:184:
 #: zypp/CountryCode.cc:202
 msgid "Chile"
 msgstr "Чили"
 
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Камерун"
+
 #. :CMR:120:
 #: zypp/CountryCode.cc:204
 msgid "China"
 msgstr "Китай"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Ð\9aиÑ\82айÑ\81кий"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Ð\9aолÑ\83мбиÑ\8f"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "ЧинÑ\83к Ð¶Ð°Ñ\80гон"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Ð\9aоÑ\81Ñ\82а-Рика"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "ЧипевÑ\8cÑ\8fн"
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Ð\9aÑ\83ба"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "ЧокÑ\82ав"
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Ð\9aабо-Ð\92еÑ\80де"
 
 #. :CPV:132:
 #: zypp/CountryCode.cc:209
 msgid "Christmas Island"
 msgstr "Остров Рождества"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "ЦеÑ\80ковно-Ñ\81лавÑ\8fнÑ\81кий"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Ð\9aипÑ\80"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Чукотский"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Чехия"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "ЧÑ\83ваÑ\88Ñ\81кий"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Ð\93еÑ\80маниÑ\8f"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Ð\9aлаÑ\81Ñ\81иÑ\87еÑ\81кий Ð½ÐµÐ²Ð°Ñ\80Ñ\81кий"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Ð\94жибÑ\83Ñ\82и"
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Ð\9aокоÑ\81овÑ\8bе Ð¾Ñ\81Ñ\82Ñ\80ова"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Ð\94аниÑ\8f"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Ð\9aолÑ\83мбиÑ\8f"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Ð\94оминика"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Ð\9aоманда Ð·Ð°Ð²ÐµÑ\80Ñ\88илаÑ\81Ñ\8c Ñ\81 ÐºÐ¾Ð´Ð¾Ð¼ %d."
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Ð\94оминиканÑ\81каÑ\8f Ñ\80еÑ\81пÑ\83блика"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Команда завершилась с неизвестной ошибкой."
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Алжир"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Ð\9aоманда Ð±Ñ\8bла Ð¿Ñ\80екÑ\80аÑ\89ена Ñ\81игналом %d (%s)."
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "ЭквадоÑ\80"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Ð\9aомоÑ\80Ñ\81кие Ð¾Ñ\81Ñ\82Ñ\80ова"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "ЭÑ\81Ñ\82ониÑ\8f"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Конфликтует"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Египет"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Конго"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Западная Сахара"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Ð\9eÑ\81Ñ\82Ñ\80ова Ð\9aÑ\83ка"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "ЭÑ\80иÑ\82Ñ\80еÑ\8f"
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "Ð\9aопÑ\82Ñ\81кий"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Ð\98Ñ\81паниÑ\8f"
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "Ð\9aоÑ\80нÑ\81кий"
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "ЭÑ\84иопиÑ\8f"
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "Ð\9aоÑ\80Ñ\81иканÑ\81кий"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "ФинлÑ\8fндиÑ\8f"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Ð\9aоÑ\81Ñ\82а-Рика"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Фиджи"
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Ð\9aоÑ\82-д'Ð\98вÑ\83аÑ\80"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "ФолклендÑ\81кие Ð¾Ñ\81Ñ\82Ñ\80ова (Ð\9cалÑ\8cвинÑ\81кие)"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Ð\9aÑ\80и"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "ФедеÑ\80аÑ\82ивнÑ\8bе Ð¨Ñ\82аÑ\82Ñ\8b Ð\9cикÑ\80онезии"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Ð\9aÑ\80ик"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "ФаÑ\80еÑ\80Ñ\81кие Ð\9eÑ\81Ñ\82Ñ\80ова"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Ð\9aÑ\80еолÑ\8cÑ\81кие Ð¸ Ð¿Ð¸Ð´Ð¶Ð¸Ð½Ñ\8b (дÑ\80Ñ\83гие)"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "ФÑ\80анÑ\86иÑ\8f"
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "Ð\90нгло-кÑ\80еолÑ\8cÑ\81кие Ð¸ Ð¿Ð¸Ð´Ð¶Ð¸Ð½Ñ\8b (дÑ\80Ñ\83гие)"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "СÑ\82олиÑ\87наÑ\8f Ð¤Ñ\80анÑ\86иÑ\8f"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "ФÑ\80анко-кÑ\80еолÑ\8cÑ\81кие Ð¸ Ð¿Ð¸Ð´Ð¶Ð¸Ð½Ñ\8b (дÑ\80Ñ\83гие)"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Ð\93абон"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "Ð\9fоÑ\80Ñ\82Ñ\83гало-кÑ\80еолÑ\8cÑ\81кие Ð¸ Ð¿Ð¸Ð´Ð¶Ð¸Ð½Ñ\8b (дÑ\80Ñ\83гие)"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Соединенное Ð\9aоÑ\80олевÑ\81Ñ\82во"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "Ð\9aÑ\80Ñ\8bмÑ\81ко-Ñ\82аÑ\82аÑ\80Ñ\81кий"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Ð\93Ñ\80енада"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "ХоÑ\80ваÑ\82ия"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Ð\93Ñ\80Ñ\83зия"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "ХоÑ\80ваÑ\82Ñ\81кий"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "ФÑ\80анÑ\86Ñ\83зÑ\81каÑ\8f Ð\93винеÑ\8f"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Ð\9aолÑ\83мбиÑ\8f"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Ð\93еÑ\80нÑ\81и"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr "Кушитские (другие)"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Гана"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Ð\9aипр"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Ð\93ибÑ\80алÑ\82ар"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "ЧеÑ\88Ñ\81кий"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Ð\93Ñ\80енландиÑ\8f"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "ЧеÑ\85ия"
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Ð\93амбия"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "Ð\94акоÑ\82а"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Ð\93винеÑ\8f"
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "Ð\94аÑ\82Ñ\81кий"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Ð\93ваделÑ\83па"
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr "Ð\94аÑ\80гинÑ\81кий"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "ЭкваÑ\82оÑ\80иалÑ\8cнаÑ\8f Ð\93винеÑ\8f"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr "Ð\94аÑ\8fкÑ\81кий"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Ð\93Ñ\80еÑ\86иÑ\8f"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "Ð\94елаваÑ\80Ñ\81кий"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "ЮжнаÑ\8f Ð\93еоÑ\80гиÑ\8f Ð¸ Ð®Ð¶Ð½Ñ\8bе Ð¡Ð°Ð½Ð´Ð²Ð¸Ñ\87евÑ\8b Ð¾Ñ\81Ñ\82Ñ\80ова"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Ð\93оландиÑ\8f"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Ð\93ваÑ\82емала"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "Ð\94инка"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Ð\9eÑ\81Ñ\82Ñ\80ов Ð\93Ñ\83ам"
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "Ð\94ивеÑ\85и (Ð\9cалÑ\8cдивÑ\81кий)"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Ð\93винеÑ\8f\91еÑ\81Ñ\81аÑ\83"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Ð\94жибÑ\83Ñ\82и"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Ð\93айÑ\8fна"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "Ð\94огÑ\80и"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Ð\93онг-Ð\9aонг"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Ð\94огÑ\80иб"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Ð\9eÑ\81Ñ\82Ñ\80ов Ð¥ÐµÑ\80д Ð¸ Ð¾Ñ\81Ñ\82Ñ\80ова Ð\9cакÐ\94оналÑ\8cда"
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Ð\94оминика"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Ð\93ондÑ\83Ñ\80аÑ\81"
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Ð\94оминиканÑ\81каÑ\8f Ñ\80еÑ\81пÑ\83блика"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "ХоÑ\80ваÑ\82иÑ\8f"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Ошибка загрузки (закрутки) для \"%s\"\n"
-"Код ошибки: %s\n"
-"Сообщение об ошибке: %s\n"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Гаити"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Ошибка при инициализации загрузки (закрутки) для \"%s\""
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Венгрия"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "Ð\94Ñ\80авидийÑ\81кие (дÑ\80Ñ\83гие)"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Ð\98ндонезиÑ\8f"
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "Ð\94Ñ\83ала"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Ð\98Ñ\80ландиÑ\8f"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Подозрительный тип '%s' байта номер %u контрольной суммы '%s'"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Израиль"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Ð\93олландÑ\81кий"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Ð\9eÑ\81Ñ\82Ñ\80ов Ð\9cÑ\8dн"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Немецкий, средневековый (ca.1050-1350)"
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Индия"
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr "Ð\94иÑ\83ла (Ð\94Ñ\8cÑ\8eла)"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Ð\91Ñ\80иÑ\82анÑ\81каÑ\8f Ñ\82еÑ\80Ñ\80иÑ\82оÑ\80иÑ\8f Ð\98ндийÑ\81кого Ð¾ÐºÐµÐ°Ð½Ð°"
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "Ð\94зонг-кÑ\8d"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Ð\98Ñ\80ак"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Ð\92оÑ\81Ñ\82оÑ\87нÑ\8bй Ð¢Ð¸Ð¼Ð¾Ñ\80"
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Ð\98Ñ\80ан"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "ЭквадоÑ\80"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Ð\98Ñ\81ландиÑ\8f"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "ЭÑ\84ик"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Ð\98Ñ\82алиÑ\8f"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Ð\95гипÑ\82"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Ð\94жеÑ\80Ñ\81и"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "Древнеегипетский"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Ямайка"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "ЭкаджÑ\83к"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Ð\98оÑ\80дан"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "СалÑ\8cвадоÑ\80"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "ЯпониÑ\8f"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "ЭламÑ\81кий"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Ð\9aениÑ\8f"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Пустое место назначения в URI"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Киргизстан"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Пустая файловая система в URI"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Камбоджа"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Пустое имя хоста в URI"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Кирибати"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Зашифрованная строка содержит байты со значением NULL"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Коморские острова"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Ð\90нглийÑ\81кий"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "СенÑ\82\9aиÑ\82Ñ\81 Ð¸ Ð\9dевиÑ\81"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Ð\90нглийÑ\81кий, Ð¡Ñ\80едневековÑ\8bй (1100-1500)"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "СевеÑ\80наÑ\8f Ð\9aоÑ\80еÑ\8f"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Ð\90нглийÑ\81кий, Ð¡Ñ\82аÑ\80Ñ\8bй (ca.450-1100)"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "ЮжнаÑ\8f Ð\9aоÑ\80еÑ\8f"
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Улучшает"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Кувейт"
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "ЭкваÑ\82оÑ\80иалÑ\8cнаÑ\8f Ð\93винеÑ\8f"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Ð\9aаймановÑ\8b Ð\9eÑ\81Ñ\82Ñ\80ова"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "ЭÑ\80иÑ\82Ñ\80еÑ\8f"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Ð\9aазаÑ\85Ñ\81Ñ\82ан"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "Ошибка при настройке загрузки (закрутки) для \"%s\":"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Лаосская Народная Демократическая республика"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Ошибка при отправке сообщения об обновлении."
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Ливан"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Ошибка при попытке чтения из \"%s\""
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Сент-Люсия"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "ЭÑ\80зÑ\8fнÑ\81кий"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Ð\9bиÑ\85Ñ\82енÑ\88Ñ\82ейн"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "ЭÑ\81пеÑ\80анÑ\82о"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "ШÑ\80и-Ð\9bанка"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "ЭÑ\81Ñ\82ония"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Ð\9bибеÑ\80ия"
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "ЭÑ\81Ñ\82онÑ\81кий"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Ð\9bеÑ\81оÑ\82о"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "ЭÑ\81Ñ\82ониÑ\8f"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Ð\9bиÑ\82ва"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Эве"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Ð\9bÑ\8eкÑ\81ембÑ\83Ñ\80г"
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Эвондо"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Ð\9bаÑ\82виÑ\8f"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Ð\9eÑ\88ибка Ð¿Ñ\80и ÐºÑ\8dÑ\88иÑ\80овании Ñ\80епозиÑ\82аÑ\80иÑ\8f (%d)."
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Ð\9bивиÑ\8f"
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Не удалось удалить ключ."
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Морокко"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Не удалось импортировать публичный ключ из файла %s: %s"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Монако"
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\81монÑ\82иÑ\80оваÑ\82Ñ\8c %s Ð½Ð° %s"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Ð\9cолдова"
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Не удалось предоставить пакет %s. Повторить попытку получения?"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Монтенегро"
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Не удалось прочитать каталог \"%s\""
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Сен-Мартен"
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Не удалось удалить публичный ключ %s: %s"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Мадагаскар"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ð¾Ñ\82Ñ\81оединиÑ\82Ñ\8c %s"
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Ð\9cаÑ\80Ñ\88алловÑ\8b Ð¾Ñ\81Ñ\82Ñ\80ова"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "ФанклендÑ\81кие Ð¾Ñ\81Ñ\82Ñ\80ова (Ð\9cалÑ\8cвинÑ\8b)"
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Ð\9cакедониÑ\8f"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "Фанг"
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Ð\9cали"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "ФанÑ\82и"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Ð\9cÑ\8cÑ\8fнма"
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "ФаÑ\80оÑ\81кие Ð\9eÑ\81Ñ\82Ñ\80ова"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Ð\9cонголиÑ\8f"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "ФаÑ\80еÑ\80Ñ\81кий"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Ð\9cакао"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "ФедеÑ\80алÑ\8cнÑ\8bе Ð¨Ñ\82аÑ\82Ñ\8b Ð\9cикÑ\80онезии"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "СевеÑ\80нÑ\8bе Ð\9cаÑ\80ианÑ\81кие Ð\9eÑ\81Ñ\82Ñ\80ова"
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Фиджи"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Ð\9eÑ\81Ñ\82Ñ\80ов Ð\9cаÑ\80Ñ\82иника"
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Фиджи"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Ð\9cавÑ\80иÑ\82аниÑ\8f"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Файл %1%\n"
-" из папки установки\n"
-"     %2%\n"
-" конфликтует с файлом\n"
-"     %3%\n"
-" из папки установки\n"
-"     %4%"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Монтсеррат"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Файл %1%\n"
-" из папки установки\n"
-"     %2%\n"
-" конфликтует с файлом\n"
-"     %3%\n"
-" из пакета\n"
-"     %4%"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Мальта"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Маврикий"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Мальдивы"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Малави"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Мексика"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Малайзия"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Мозамбик"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Намибия"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Новая Калифорния"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Нигер"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Остров Норфолк"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Нигерия"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Никарагуа"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Нидерланды"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Норвегия"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Непал"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Науру"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Ниуэ"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Новая Зеландия"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Оман"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Панама"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Перу"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Французская Полинезия"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Папуа Новая Гвинея"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Филиппины"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Пакистан"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Польша"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Сен-Пьер и Микелон"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Остров Питкэрн"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Пуэрто-Рико"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Палестинские Территории"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Португалия"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Острова Палау"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Парагвай"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Катар"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Реюньон"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Румыния"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Сербия"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Российская Федерация"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Руанда"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Саудовская Аравия"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Соломоновы острова"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Сейшеллы"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Судан"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Швеция"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Сингапур"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Остров Святой Елены"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Словения"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Свальбард и Ян Майен"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Словакия"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Сьерра-Леоне"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "Сан-Марино"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Сенегал"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Сомали"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Суринам"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Сан-Томе и Принсипи"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "Сальвадор"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Сирия"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Свазиленд"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Тёркс и Кайкос"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Чад"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Французские Южные Территории"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Того"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Тайланд"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Таджикистан"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Токелау"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Туркменистан"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Тунис"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Тонга"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Восточный Тимор"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Турция"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Тринидад и Тобаго"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Тувалу"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Тайвань"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Танзания"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Украина"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Уганда"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Внешние малые острова США"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "США"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Уругвай"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Узбекистан"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Ватикан"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Сент-Винсент и Гренадины"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Венесуэлла"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Британские Виргинские острова"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Виргинские острова, США"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Вьетнам"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Вануату"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Уоллис и Футуна"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Острова Самоа"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Йемен"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Майотта"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "ЮАР"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Замбия"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Зимбабве"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Неизвестный язык: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Афарский"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Абхазский"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Ачехский"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Ачоли"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Адангме"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Адыгейский"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Афро-азиатский (другие)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Африхили"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Африкаанс"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Айнский"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Аканский"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Аккадский"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Албанский"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Алеутский"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Алгонкинские языки"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Южно-алтайский"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Амхарский (амаринья)"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Английский, Старый (ca.450-1100)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Апачские языки"
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Арабский"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Арамейский"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Арагонский"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Армянский"
+
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Арауканский"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Арапахо"
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Искусственные (другие)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Аравакские"
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Ассамский"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Астурийский"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Атапаскские языки"
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Австралийские языки"
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Аварский"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Авестийский"
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Авадхи"
+
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Аймара"
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Азербайджанский"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Банда"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Бамилеке языки"
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Башкирский"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Белуджский"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Бамбара"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Балийский"
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Баскский"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Баса"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Балтийский (Другие)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Беджа"
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Белорусский"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Бемба"
+
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Бенгальский"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Берберские (другие)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Бходжпури"
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Бихари"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Бикольский"
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Бини"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Бислама"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Сиксика"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Банту (другие)"
+
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Боснийский"
+
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Брауи"
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Бретонский"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Батакский (Индонезия)"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Бурятский"
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Бугийский"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Болгарский"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Бирманский"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Блин"
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Каддо"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Индейцев Центральной Америки (Другой)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "Кариб"
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "Каталонский"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "Кавказские (другие)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "Себуанский"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Кельтские (другие)"
+
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "Чаморро"
+
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "Чибча"
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Чеченский"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Чагатайский"
+
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Китайский"
+
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Чукотский"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Марийский"
+
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "Чинук жаргон"
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "Чоктав"
+
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Чипевьян"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Файл %1%\n"
-" из папки установки\n"
-"     %2%\n"
-" конфликтует с файлом из папки установки\n"
-"     %3%"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Чероки"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Файл %1%\n"
-" из папки установки\n"
-"     %2%\n"
-" конфликтует с файлом из пакета\n"
-"     %3%"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Церковно-славянский"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Файл %1%\n"
-" из пакета\n"
-"     %2%\n"
-" конфликтует с файлом\n"
-"     %3%\n"
-" из папки установки\n"
-"     %4%"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Чувашский"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Файл %1%\n"
-" из пакета\n"
-"     %2%\n"
-" конфликтует с файлом\n"
-"     %3%\n"
-" из пакета\n"
-"     %4%"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Чейенн"
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Чамикские языки"
+
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "Коптский"
+
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "Корнский"
+
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "Корсиканский"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr "Англо-креольские и пиджины (другие)"
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr "Франко-креольские и пиджины (другие)"
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr "Португало-креольские и пиджины (другие)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Кри"
+
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "Крымско-татарский"
+
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Креольские и пиджины (другие)"
+
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Кашубианский"
+
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr "Кушитские (другие)"
+
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "Чешский"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "Дакота"
+
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Датский"
+
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr "Даргинский"
+
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr "Даякский"
+
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "Делаварский"
+
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Атапачские языки"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Догриб"
+
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "Динка"
+
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "Дивехи (Мальдивский)"
+
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "Догри"
+
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "Дравидийские (другие)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Нижне-лужицкий"
+
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "Дуала"
+
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Немецкий, средневековый (ca.1050-1350)"
+
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Голландский"
+
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
+msgstr "Диула (Дьюла)"
+
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "Дзонг-кэ"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "Эфик"
+
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "Древнеегипетский"
+
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "Экаджук"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Эламский"
+
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Английский"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Английский, Средневековый (1100-1500)"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Файл %1%\n"
-" из пакета\n"
-"     %2%\n"
-" конфликтует с файлом из папки установки\n"
-"     %3%"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Эсперанто"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Файл %1%\n"
-" из пакета\n"
-"     %2%\n"
-" конфликтует с файлом из пакета\n"
-"     %3%"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Эстонский"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Файл \"%s\" Ð½Ðµ Ð½Ð°Ð¹Ð´ÐµÐ½ Ð½Ð° Ð½Ð¾Ñ\81иÑ\82еле \"%s\""
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Эве"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "Файл не существует, или невозможно проверить подпись"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Эвондо"
+
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "Фанг"
+
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Фарерский"
+
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Фанти"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Фиджи"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Филиппинский"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Финляндия"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1624,40 +2551,16 @@ msgstr "Финский"
 msgid "Finno-Ugrian (Other)"
 msgstr "Финно-Угрисйкий (другие)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Будут выполнены следующие действия:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Фон"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Франция"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Французский"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Французская Гвинея"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Французская Полинезия"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Французские южные территории"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1673,46 +2576,21 @@ msgstr "Старофранцузский"
 msgid "Frisian"
 msgstr "Фризский"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Фриулийский"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Фулах"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Фриулийский"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Га"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Габон"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Гаэльский"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Галисийский"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Ямайка"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ганда"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1723,15 +2601,10 @@ msgstr "Гайо"
 msgid "Gbaya"
 msgstr "Гбайя"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Геэз"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Грузия"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Германские (другие)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1743,6 +2616,36 @@ msgstr "Грузинский"
 msgid "German"
 msgstr "Немецкий"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Геэз"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Гильбертский"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Гаэльский"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Ирландский"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Галисийский"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Мэнский"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1753,30 +2656,6 @@ msgstr "Немецкий, средние века (ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Немецкий, старый (ca.750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Германские (другие)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Германия"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Китай"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Гибралтар"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Гильбертский"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1797,11 +2676,6 @@ msgstr "Готский"
 msgid "Grebo"
 msgstr "Гребо"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Греция"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1812,117 +2686,41 @@ msgstr "Древнегреческий"
 msgid "Greek, Modern (1453-)"
 msgstr "Греческий, Современный (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Гринландия"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Гренада"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Гваделупа"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Остров Гуам"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Гуарани"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Гватемала"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Гернси"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Гвинея"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Гвинея-Бессау"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Гуджарати"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Гайяна"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
 msgstr "Гвичин"
 
 #. language code: hai
-#: zypp/LanguageCode.cc:511
-msgid "Haida"
-msgstr "Хайда"
-
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Гаити"
+#: zypp/LanguageCode.cc:511
+msgid "Haida"
+msgstr "Хайда"
 
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Гаитянский"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Исключение Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext не подключен"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive не инициализирован"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume не инициализирован"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Хауса"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Включены все необходимые репозитарии?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Гавайский"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Остров Херд и острова МакДональда"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1948,16 +2746,6 @@ msgstr "Химачали"
 msgid "Hindi"
 msgstr "Хинди"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Хири"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "История:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1968,31 +2756,21 @@ msgstr "Хиттит"
 msgid "Hmong"
 msgstr "Хмонг"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Ватикан"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Гондурас"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Хири"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Ð\93онконг"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Ð\92еÑ\80Ñ\85не-лÑ\83жиÑ\86кий"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Венгерский"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Венгрия"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2003,10 +2781,10 @@ msgstr "Хупа"
 msgid "Iban"
 msgstr "Ибанский"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Исландия"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Игбо"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2018,250 +2796,105 @@ msgstr "Исландский"
 msgid "Ido"
 msgstr "Идо"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Ð\98гбо"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Ð\99и (СÑ\8bÑ\87Ñ\83анÑ\8c)"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Иджо"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Инуктитут"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Интерлингве"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Илоко"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Инари-саамский"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Индия"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Интерлингва (Международная Ассоциация Вспомогательного Языка)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Индийские (другие)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Индо-Европейский (Другой)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Индонезия"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Индонезийский"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Индо-Европейский (Другой)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Ингушский"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Установка прервана согласно инструкции."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Интерлингва"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Интерлингве"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Инуктитут"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Инупиак"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Недопустимый компонент %s"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Недопустимый компонент %s: '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Недопустимый параметр запроса LDAP в URL-адресе: '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Недопустимая строка запроса LDAP в URL-адресе"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Неверная схема URL-адреса '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Недопустимая ссылка на пустой объект URL"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Неверный компонент хоста '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Неверный символ разделителя для объединения массива параметров"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Неверный символ разделителя для разбиения массива параметров"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Неверный символ разделителя для разбиения отображения параметров"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Неверный компонент порта '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Недопустимое регулярное выражение \"%s\""
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Неверное регулярное выражение '%s': regcomp вернул %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Недопустимое имя файла репозитария на \"%s\""
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Израиль"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Иранский (Другой)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Ирак"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Ирландия"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Ирландский"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Ирландский, средневековый (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Ирландский, Устаревший (до 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Ирокезские языки"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Остров Мэн"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Израиль"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Итальянский"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Италия"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Ямайка"
-
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Япония"
-
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
-msgstr "Япония"
-
 #. language code: jav jv
 #: zypp/LanguageCode.cc:579
 msgid "Javanese"
 msgstr "Яванский"
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Джерси"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Иордан"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Ложбан"
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
-msgstr "Ð\95вÑ\80ейÑ\81ко-аÑ\80абÑ\81кий"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
+msgstr "ЯпониÑ\8f"
 
 #. language code: jpr
 #: zypp/LanguageCode.cc:585
 msgid "Judeo-Persian"
 msgstr "Еврейско-персидский"
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Кабардинский"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
+msgstr "Еврейско-арабский"
+
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Кара-Калпакский"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2278,11 +2911,6 @@ msgstr "Качинский"
 msgid "Kalaallisut"
 msgstr "Гренландский"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Калмыцкий"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2293,21 +2921,6 @@ msgstr "Камба"
 msgid "Kannada"
 msgstr "Каннада"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Канури"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Кара-Калпакский"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Карачаево-балкарский"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2318,10 +2931,10 @@ msgstr "Каренский"
 msgid "Kashmiri"
 msgstr "Кашмири"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Кашубианский"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Канури"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2333,31 +2946,26 @@ msgstr "Кави"
 msgid "Kazakh"
 msgstr "Казахский"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Тайвань"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Кения"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Кабардинский"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Кхаси"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Хмерский"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Койсанские (другие)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Хмерский"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2368,11 +2976,6 @@ msgstr "Хотанский"
 msgid "Kikuyu"
 msgstr "Кикуйю"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Кимбунду"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2383,15 +2986,15 @@ msgstr "Киньяруанда"
 msgid "Kirghiz"
 msgstr "Киргизский (Кыргызский)"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Кирибати"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Кимбунду"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Ð\9aлингон"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Ð\9aонкани"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2403,11 +3006,6 @@ msgstr "Коми"
 msgid "Kongo"
 msgstr "Конго"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Конкани"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2423,11 +3021,21 @@ msgstr "Кусайе"
 msgid "Kpelle"
 msgstr "Кпелле"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Карачаево-балкарский"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Кру"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Курух"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2443,26 +3051,11 @@ msgstr "Кумыкский"
 msgid "Kurdish"
 msgstr "Курдский"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Курух"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Кутенаи"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Кувейт"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Киргизстан"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2483,68 +3076,21 @@ msgstr "Ламба"
 msgid "Lao"
 msgstr "Лаосский"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Лаосская Народная Демократическая республика"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Латинский"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Латвия"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Латышский"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Лебанон"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Лесото"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Уровень 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Уровень 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Уровень 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Лезгинский"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Сербия"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Ливия"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Лихтенштейн"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2555,61 +3101,46 @@ msgstr "Лимбуржский"
 msgid "Lingala"
 msgstr "Лингала"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Литва"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Литовский"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Расположение \"%s\" временно недоступно."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Ложбан"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Нижненемецкий"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Нижне-лужицкий"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Монго"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Лози"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Ð\9bÑ\83ба-Ð\9aаÑ\82анга"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Ð\9bÑ\8eкÑ\81ембÑ\83Ñ\80гÑ\81кий"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Луба-Лулуа"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Луба-Катанга"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ганда"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Луисеньо"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Люле-саамский"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2625,35 +3156,11 @@ msgstr "Луо (Кения и Танзания)"
 msgid "Lushai"
 msgstr "Лушаи"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Люксембург"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Люксембургский"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Макао"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Македония"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Македонский"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Мадагаскар"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2664,6 +3171,11 @@ msgstr "Мадурский"
 msgid "Magahi"
 msgstr "Магахи"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Маршальский"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2674,178 +3186,60 @@ msgstr "Майтхили"
 msgid "Makasar"
 msgstr "Макассарский"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Малагасийский"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Мальта"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Малайский"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Малаялам"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Малазия"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Мальта"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Неверная форма URI"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Мальта"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Мальта"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Мальтийский"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Манчу"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Мандара"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Мандинго"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Манипурский"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Манобо языки"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Мэнский"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Маори"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Австронезийские (другие)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Маратхи"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Марийский"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Маршалловы острова"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Маршальский"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Остров Мартиника"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Марвари"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Масаи"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Литва"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Литва"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Майя языки"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Майотта"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "В источнике носителей \"%s\" не содержится требуемый носитель"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Носитель \"%s\" используется другим экземпляром"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Малайский"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Носитель не присоединен"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Мокшанский"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Ð\9dоÑ\81иÑ\82елÑ\8c Ð½Ðµ Ð¾Ñ\82кÑ\80Ñ\8bвалÑ\81Ñ\8f Ð¿Ñ\80и Ð¿Ð¾Ð¿Ñ\8bÑ\82ке Ð²Ñ\8bполниÑ\82Ñ\8c Ð´ÐµÐ¹Ñ\81Ñ\82вие \"%s\"."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Ð\9cандаÑ\80а"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Менде"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Франция"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Мексика"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Ирландский, средневековый (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2857,300 +3251,206 @@ msgstr "Микмак"
 msgid "Minangkabau"
 msgstr "Минангкабау"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Мирандский"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Смешанные языки"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Монкхмерские (другие)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Малагасийский"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Мальтийский"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Манчу"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Манипурский"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Манобо языки"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Мохаук"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Мокшанский"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Молдавский"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Молдова"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Монкхмерские (другие)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Монако"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Монго"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Монголия"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Монгольский"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Черногория"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Мносерат"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Морокко"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Моси"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Мозамбик"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
-msgstr "Разных семей языки"
+msgstr "Языки разных семей"
+
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
+msgstr "Мунда языки"
+
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Крик"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Мирандский"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Марвари"
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
-msgstr "Мунда языки"
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Майя языки"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Ð\9fанама"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "ЭÑ\80зÑ\8fнÑ\81кий"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Науатль"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Ð\9dамибиÑ\8f"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "СевеÑ\80ной Ð\90меÑ\80ики Ð¸Ð½Ð´ÐµÐ¹Ñ\86ев"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Науру"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Неаполитанский"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Навахо"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ндебеле северный"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ндебеле южный"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ндебеле северный"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ндунга"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Неаполитанский"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Непал"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Непал-бхаса"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Нижненемецкий"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Непальский"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Нидерланды"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Нидерланды"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Македония"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Новая Зеландия"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Новое сообщение об обновлении"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Непал-бхаса"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Ниасский"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Никарагуа"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Нигер"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Нигер-кордофанские (другие)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Сербия"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Нило-сахарские (другие)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Ниуэ"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Ниуэ"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Нет кода"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Нюнорск (Новонорвежский)"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "В репозитарии нет URL-адреса."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Букмоль (Норвежский)"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Ногайский"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Остров Норфолк"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Старонорвежский"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Северной Америки индейцев"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Северная Корея"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Северные Марианские Острова"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Северо-саамский"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Сото Северный"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Норвегия"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Норвежский"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Букмоль (Норвежский)"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Нюнорск (Новонорвежский)"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Не привод CD-ROM"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Северный Сото"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Нубийские языки"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Классический неварский"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Чичева"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3171,10 +3471,6 @@ msgstr "Ньоро"
 msgid "Nzima"
 msgstr "Нзима"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Устаревшие"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3185,20 +3481,6 @@ msgstr "Окситанский (после 1500)"
 msgid "Ojibwa"
 msgstr "Оджибва"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Оман"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Необходим один или оба атрибута '%s' или '%s'."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Операция не поддерживается носителем"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3219,65 +3501,36 @@ msgstr "Оседжи"
 msgid "Ossetian"
 msgstr "Осетинский"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Турецкий, Оттоманский (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Отомангские языки"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Вероятно, пакет %s поврежден при передаче. Повторить попытку получения?"
-
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr "Пехлевийский"
-
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Пакистан"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Острова Палау"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Палау"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Паллестина"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Пали"
-
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "Пампанга"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Панама"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Папуасские (другие)"
 
 #. language code: pag
 #: zypp/LanguageCode.cc:847
 msgid "Pangasinan"
 msgstr "Пангасинан"
 
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr "Пехлевийский"
+
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "Пампанга"
+
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3288,94 +3541,45 @@ msgstr "Панджаби"
 msgid "Papiamento"
 msgstr "Папьяменто"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Папуа Новая Гвинея"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Папуасские (другие)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Парагвай"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Путь \"%s\" на носителе \"%s\" не представляет каталог."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Путь \"%s\" на носителе \"%s\" не представляет файл."
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Палау"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Ð\94оÑ\81Ñ\82Ñ\83п Ðº \"%s\" Ð·Ð°Ð¿Ñ\80еÑ\89ен."
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
+msgstr "Ð\9fеÑ\80Ñ\81идÑ\81кий, Ð¡Ñ\82аÑ\80Ñ\8bй (ca.600-400 Ð´Ð¾ Ð½.Ñ\8d.)"
 
 #. language code: per fas fa
 #: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
 msgid "Persian"
 msgstr "Персидский"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr "Староперсидский"
-
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Перу"
-
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Филиппинские (другие)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Филиппины"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Финикийский"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Остров Питкэрн"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Сначала установите пакет 'lsof'."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Понпейский"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Польша"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Пали"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Польский"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Португалия"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Понпейский"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3385,90 +3589,23 @@ msgstr "Португальский"
 #. language code: pra
 #: zypp/LanguageCode.cc:877
 msgid "Prakrit Languages"
-msgstr "Пракриты языки"
-
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Предварительные требования"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Определение проблемы, что означает: техническая поддержка предусматривает "
-"предоставление текущего сопровождения, помощи при установке, поддержки при "
-"эксплуатации, сведений о совместимости, а также устранение основных "
-"неполадок. Поддержка на уровне 1 не предусматривает исправления ошибок в "
-"продукте."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Локализация проблемы, что означает: техническая поддержка предусматривает "
-"воспроизведение проблем заказчика, уточнение проблемной области и "
-"предоставление решения проблемы, не предусмотренное поддержкой на уровне 1."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Решение проблемы, что означает: техническая поддержка предусматривает "
-"решение комплексных проблем за счет инженерного устранения дефектов "
-"продукта, выявленных поддержкой на уровне 2."
+msgstr "Языки пракрит"
 
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
-msgstr "Старопровансальский"
-
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Предоставляет"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Пуэрто-Рико"
+msgstr "Провансальский, Старый (до 1500)"
 
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Пушту"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Кватар"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Кечуа"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Для данного URL-адреса разбор строки запроса не поддерживается"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "Сбой RPM: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Ретороманский"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3484,135 +3621,35 @@ msgstr "Рапануи"
 msgid "Rarotongan"
 msgstr "Раротонга"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Рекомендует"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-"При наличии компонентов авторизации относительные пути указывать нельзя"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Удаляется репозитарий '%s'"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Псевдоним репозитория не может начинаться с точки."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Отсутствует обязательный атрибут '%s'."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Требует"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Реюнион"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Романские (другие)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Румыния"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Румынский"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Рето-Романский"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Цыганский"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Рунди"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Русский"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Российская Федерация"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Канада"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "о.Святой Елены"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Сент-Китс и Невис"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Сент-Люсия"
-
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Сан-Марино"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Сен-Пьер и Микелон"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Сент-Винсент и Гренадины"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Салишские языки"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Самаритянский арамейский"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Саамские языки (другие)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Острова Самоа"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Самоанский"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Румынский"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "Сан марино"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Рунди"
+
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Русский"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3624,41 +3661,61 @@ msgstr "Сандаве"
 msgid "Sango"
 msgstr "Санго"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Якутский"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Индейцев Южной Америки (другие)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Салишские языки"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Самаритянский арамейский"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Санскрит"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Сасакский"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Сантали"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Сан-Томе и Принсипи"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Сардинский"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Сасакский"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Сербский"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "СаÑ\83довÑ\81каÑ\8f Ð\90Ñ\80авиÑ\8f"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "СиÑ\86илийÑ\81кий"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Шотландский (Гэльский)"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Хорватский"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3669,142 +3726,40 @@ msgstr "Селькупский"
 msgid "Semitic (Other)"
 msgstr "Семитские (другие)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Сенегал"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Сербия"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Сербский"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Серер"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Псевдоним службы не может начинаться с точки."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "Служебный подключаемый модуль не поддерживает изменение атрибута."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Ирландский, Устаревший (до 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "СейÑ\88елÑ\8cÑ\81кие Ð¾Ñ\81Ñ\82Ñ\80ова"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "ЯзÑ\8bки Ð¶ÐµÑ\81Ñ\82ов"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Шанский"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Шона"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Йи (Сычуань)"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Сицилийский"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Сидама"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Сьерра-Леоне"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Языки жестов"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "Подпись не проверена"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Не найден файл подписи %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "Подпись в порядке"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "Подпись в порядке, но ключ не является доверенным"
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "Сбой при проверке подписи"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "Открытый ключ подписей недоступен"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Сиксика"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Синдхи"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Сингапур"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Сингальский"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Синотибетские (другие)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
-msgstr "Сиу языки"
-
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Скольт-саамский"
+msgstr "Языки Сиу"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Ð\90Ñ\82апаÑ\87Ñ\81кие Ñ\8fзÑ\8bки"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Сино-ТибеÑ\82Ñ\81кие (дÑ\80Ñ\83гие)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3814,215 +3769,143 @@ msgstr "Славянские (другие)"
 #. language code: slo slk sk
 #: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
 msgid "Slovak"
-msgstr "Словакский"
-
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Словакия"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Словения"
+msgstr "Словацкий"
 
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Словенский"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Южно-саамский"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Северо-саамский"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Саамские языки (другие)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Люле-саамский"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Инари-саамский"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Самоанский"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Скольт-саамский"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Шона"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Синдхи"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Сонинке"
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
-msgstr "Согдийский"
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Соломоновы острова"
+msgstr "Согдийский"
 
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Сомали"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Румыния"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "Сонгаи"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Сонинке"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Лужицкие языки"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Эта версия libzypp была собрана без поддержки HAL."
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Сото Южный"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "ЮАР"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Южной Америки индейцев (другие)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Южная Георгия и Южные Сандвичевы острова"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Южная Корея"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Южно-алтайский"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Южно-саамский"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Испания"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Испанский"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "ШÑ\80и-Ð\9bанка"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "СаÑ\80динÑ\81кий"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Судан"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Серер"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Советуется"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Нило-сахарские (другие)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Свати"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Сукума"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Шумерский"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Сунданский"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Дополняет"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Суринам"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Сусу"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "СвалÑ\8cбаÑ\80д Ð¸ Ð¯Ð½ Ð\9cайен"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "ШÑ\83меÑ\80Ñ\81кий"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Суахили"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Свати"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Таиланд"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Швеция"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Шведский"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Швейцария"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Сербия"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Сирийский"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Системное исключение \"%s\" на носителе \"%s\"."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Управление системами заблокировано приложением с идентификатором pid %d "
-"(%s).\n"
-"Закройте это приложение и повторите попытку."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Тагальский"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4033,36 +3916,11 @@ msgstr "Таитянский"
 msgid "Tai (Other)"
 msgstr "Тайские (другие)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Тайвань"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Таджикский"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Таджикистан"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Тамашек"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Тамильский"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Танзания"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4073,6 +3931,11 @@ msgstr "Татарский"
 msgid "Telugu"
 msgstr "Телугу"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Темне"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4083,33 +3946,21 @@ msgstr "Терено"
 msgid "Tetum"
 msgstr "Тетумский"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Таджикский"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Тагальский"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Тайский"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Тайланд"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Не указан уровень поддержки"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Производитель не обеспечивает поддержку."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Это действие уже выполняется другой программой."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Этот запрос нарушит работу системы!"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4125,46 +3976,25 @@ msgstr "Тигре"
 msgid "Tigrinya"
 msgstr "Тигринья"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Превышено время ожидания при попытке доступа к \"%s\"."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Темне"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Тив"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Клингон"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Тлингит"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Того"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Ток-писин"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Токелау"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Тонга"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Тамашек"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4176,103 +4006,66 @@ msgstr "Тонга (Ньяса)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Тонга (Тонга Исландский)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Попытка импорта несуществующего ключа %s в хранилище ключей %s"
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Тринидад и Тобаго"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Ток-писин"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Цимшиан"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Тсвана"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Тсонга"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "ТÑ\81вана"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "ТÑ\83Ñ\80кменÑ\81кий"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Тумбука"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Тунис"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Тупи языки"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Турция"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Турецкий"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Турецкий, Оттоманский (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Туркменский"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Туркменистан"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Терк и Кайкос"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Алтайские (другие)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Тувалу"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Тви"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "Тувинский"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Тви"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Удмуртский"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Канада"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4283,11 +4076,6 @@ msgstr "Угаритский"
 msgid "Uighur"
 msgstr "Уйгурский"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Украина"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4298,569 +4086,833 @@ msgstr "Украинский"
 msgid "Umbundu"
 msgstr "Умбунду"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Не удается создать клон объекта URL"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Неопределённый"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Не удалось создать подключение к dbus"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Урду"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Не удалось инициализировать контекст HAL -- hald не запущен?"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Узбекский"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Не удалось выполнить анализ URL-компонентов"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Ваи"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Ð\9dеиденÑ\82иÑ\84иÑ\86иÑ\80ованнÑ\8bй"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Ð\92енда"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Необрабатываемый тип репозитария"
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Вьетнамский"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Ð\9eбÑ\8aединеннÑ\8bе Ð\90Ñ\80абÑ\81кие Ð­Ð¼Ð¸Ñ\80аÑ\82Ñ\8b"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Ð\92олапÑ\8eк"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Ð\92еликобÑ\80иÑ\82аниÑ\8f"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Ð\92одÑ\81кий"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "СШÐ\90"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "Ð\92акаÑ\88Ñ\81кие Ñ\8fзÑ\8bки"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "СШÐ\90"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Ð\92оламо"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Неизвестная страна: "
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Варай"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Вашо"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Уэльский"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Лужицкие языки"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Валлонский"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Волоф"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Калмыцкий"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Кхоса"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Яо"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Яп"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Идиш"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Йоруба"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Языки группы Юпик"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Сапотекский"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Зенагский"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Чжуань"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Занди"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Зулусский"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Зунийский"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Попытка импорта несуществующего ключа %s в хранилище ключей %s"
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Не удалось удалить ключ."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Не найден файл подписи %s"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Невозможно предоставить файл '%s' из репозитория '%s'"
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "В репозитории нет URL-адреса."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "Модуль службы не поддерживает изменение атрибута."
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Похоже, что пакет %s повреждён при передаче. Попробовать получить ещё раз?"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "Сбой при проверке подписи"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Неизвестная ошибка при чтении из \"%s\""
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Не удалось предоставить пакет %s. Попробовать получить ещё раз?"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Неизвестный язык: "
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "сбой при проверке applydeltarpm."
 
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Неизвестный режим сопоставления \"%s\""
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "сбой в applydeltarpm."
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Неизвестный режим сопоставления \"%s\" для шаблона \"%s\""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
-"Ð\9dеизвеÑ\81Ñ\82нÑ\8bй Ñ\81еÑ\80виÑ\81 \"%1%\": Ñ\83даление Ñ\81лÑ\83жебного Ñ\80епозиÑ\82оÑ\80иÑ\8f \"%2%\" Ñ\81 "
-"наÑ\80Ñ\83Ñ\88еннÑ\8bми Ð°Ñ\81Ñ\81оÑ\86иаÑ\86иÑ\8fми"
+"УпÑ\80авление Ñ\81иÑ\81Ñ\82емой Ð·Ð°Ð±Ð»Ð¾ÐºÐ¸Ñ\80овано Ð¿Ñ\80иложением Ñ\81 pid %d (%s).\n"
+"Ð\97акÑ\80ойÑ\82е Ñ\8dÑ\82о Ð¿Ñ\80иложение Ð¿ÐµÑ\80ед Ñ\81ледÑ\83Ñ\8eÑ\89ей Ð¿Ð¾Ð¿Ñ\8bÑ\82кой."
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Неизвестный параметр поддержки. Описание недоступно"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Неизвестный тип подписи"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s не принадлежит репозиторию обновления дистрибутива"
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/solver/detail/SATResolver.cc:979
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Неподдерживаемый метод HTTP-аутенфикации '%s'"
+msgid "%s has inferior architecture"
+msgstr "%s имеет худшую архитектуру"
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Ð\9dеподдеÑ\80живаемаÑ\8f Ñ\81Ñ\85ема URI Ð² \"%s\"."
+msgid "problem with installed package %s"
+msgstr "пÑ\80облема Ð² Ñ\83Ñ\81Ñ\82ановленном Ð¿Ð°ÐºÐµÑ\82е %s"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Верхне-лужицкий"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "конфликтующие запросы"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Урду"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "проблема с некоторыми зависимостями"
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:992
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Схема URL-адреса не позволяет использовать %s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Схема URL-адреса не позволяет использовать компонент хоста"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Схема URL-адреса не позволяет использовать пароль"
+msgid "nothing provides requested %s"
+msgstr "ничто не предоставляет запрошенный %s"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "СÑ\85ема URL-адÑ\80еÑ\81а Ð½Ðµ Ð¿Ð¾Ð·Ð²Ð¾Ð»Ñ\8fеÑ\82 Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c Ð¿Ð¾Ñ\80Ñ\82"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Ð\92клÑ\8eÑ\87или Ð»Ð¸ Ð²Ñ\8b Ð²Ñ\81е Ñ\82Ñ\80ебÑ\83емÑ\8bе Ñ\80епозиÑ\82оÑ\80ии?"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Схема URL-адреса не позволяет использовать имя пользователя"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "пакет %s не существует"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Url схемы это требуемый компонент"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "запрос не поддерживается"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Схема URL-адреса требует указания компонента хоста"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s предоставляется системой и не может быть удалён"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Схема URL-адреса требует указания пути"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s недоступен для установки"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "УÑ\80Ñ\83гвай"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "ниÑ\87Ñ\82о Ð½Ðµ Ð¿Ñ\80едоÑ\81Ñ\82авлÑ\8fеÑ\82 %s, Ð½ÐµÐ¾Ð±Ñ\85одимÑ\8bй Ð´Ð»Ñ\8f %s"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "УзбекÑ\81кий"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Ð\9dе Ñ\83даÑ\91Ñ\82Ñ\81Ñ\8f Ñ\83Ñ\81Ñ\82ановиÑ\82Ñ\8c Ð¾Ð±Ð° %s Ð¸ %s"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Узбекистан"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s конфликтует с %s, который предоставляется %s"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Ваи"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s делает устаревшим %s, предоставляемый %s"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "установленный пакет %s делает устаревшим %s, предоставляемый %s"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Вануату"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr ""
+"объект разрешения зависимостей %s конфликтует с %s, который предоставляется "
+"им самим"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Венда"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s требует %s, но это требование не может быть удовлетворено"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Венесуэлла"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "удалённые поставщики: "
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Вьетнамский"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"неустанавливаемые поставщики: "
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Ð\92Ñ\8cеÑ\82намÑ\81кий"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "неÑ\83Ñ\81Ñ\82анавливаемÑ\8bе Ð¿Ð¾Ñ\81Ñ\82авÑ\89ики:"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Финляндия"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "удалить блокировку для удаления %s"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Посетите Novell Customer Center, чтобы убедиться, что ваша регистрация "
-"действительна и не просрочена."
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "не устанавливать %s"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Волапюк"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "оставить %s"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Удмуртский"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "удалить блокировку для установки %s"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "Ð\92акаÑ\88Ñ\81кие Ñ\8fзÑ\8bки"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "ЭÑ\82оÑ\82 Ð·Ð°Ð¿Ñ\80оÑ\81 Ð¿Ð¾Ð²Ñ\80едиÑ\82 Ð²Ð°Ñ\88Ñ\83 Ñ\81иÑ\81Ñ\82емÑ\83!"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Ð\92оламо"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "игноÑ\80иÑ\80оваÑ\82Ñ\8c Ð¿Ñ\80едÑ\83пÑ\80еждение Ð¾ Ð¿Ð¾Ð²Ñ\80еждении Ñ\81иÑ\81Ñ\82емÑ\8b"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Уоллис и Футуна"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr ""
+"не просить установить объект разрешения зависимостей, предоставляющий %s"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Валлонский"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr ""
+"не просить удалить все объекты разрешения зависимостей, предоставляющие %s"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Ð\92аÑ\80ай"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "не Ñ\83Ñ\81Ñ\82анавливаÑ\82Ñ\8c Ñ\81амÑ\83Ñ\8e Ð¿Ð¾Ñ\81леднÑ\8eÑ\8e Ð²ÐµÑ\80Ñ\81иÑ\8e %s"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Ð\92аÑ\88о"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "оÑ\81Ñ\82авиÑ\82Ñ\8c %s, Ð½ÐµÑ\81моÑ\82Ñ\80Ñ\8f Ð½Ð° Ñ\81менÑ\83 Ð°Ñ\80Ñ\85иÑ\82екÑ\82Ñ\83Ñ\80Ñ\8b"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Уэльский"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "установить %s, несмотря на смену архитектуры"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Ð\97ападнаÑ\8f Ð¡Ð°Ñ\85аÑ\80а"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "оÑ\81Ñ\82авиÑ\82Ñ\8c Ñ\83Ñ\81Ñ\82аÑ\80евÑ\88ий %s"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Волоф"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "установить %s из исключённого репозитория"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "обновить %s до более старой версии %s"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "ЯкÑ\83Ñ\82Ñ\81кий"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "изменение Ð°Ñ\80Ñ\85иÑ\82екÑ\82Ñ\83Ñ\80Ñ\8b %s Ð½Ð° %s"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Яо"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"установить %s (со сменой поставщика)\n"
+"  %s  -->  %s"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Яп"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "замена %s Ð½Ð° %s"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Йемен"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "удаление %s"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Идиш"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "повредить %s, игнорируя некоторые из его зависимостей"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Йоруба"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "вообще игнорировать некоторые зависимости"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "ЯзÑ\8bки Ð³Ñ\80Ñ\83ппÑ\8b Ñ\8eпик"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "Ð\9dеобÑ\85одимÑ\8bй Ð°Ñ\82Ñ\80ибÑ\83Ñ\82 '%s' Ð¾Ñ\82Ñ\81Ñ\83Ñ\82Ñ\81Ñ\82вÑ\83еÑ\82."
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Ямайка"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "ТÑ\80ебÑ\83Ñ\8eÑ\82Ñ\81Ñ\8f Ð¾Ð´Ð¸Ð½ Ð¸Ð»Ð¸ Ð¾Ð±Ð° Ð°Ñ\82Ñ\80ибÑ\83Ñ\82а '%s' Ð¸Ð»Ð¸ '%s'."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Ð\97анди"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Ð\9dевозможно Ð¾Ñ\82кÑ\80Ñ\8bÑ\82Ñ\8c Ñ\84айл Ð±Ð»Ð¾ÐºÐ¸Ñ\80овки: %s"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Сапотекский"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Это действие уже выполняется другой программой."
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Ð\97енагÑ\81кий"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Ð\98Ñ\81Ñ\82оÑ\80иÑ\8f:"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "ЧжÑ\83анÑ\8c"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Ð\9dеизвеÑ\81Ñ\82нÑ\8bй Ñ\80ежим Ñ\81опоÑ\81Ñ\82авлениÑ\8f '%s'"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Ð\97имбабве"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Ð\9dеизвеÑ\81Ñ\82нÑ\8bй Ñ\80ежим Ñ\81опоÑ\81Ñ\82авлениÑ\8f '%s' Ð´Ð»Ñ\8f Ñ\88аблона '%s'"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "СÑ\80еднее Ð²Ñ\80емÑ\8f Ð¿Ð¾ Ð\93Ñ\80инвиÑ\87Ñ\83 (Zulu)"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Ð\9dевеÑ\80ное Ñ\80егÑ\83лÑ\8fÑ\80ное Ð²Ñ\8bÑ\80ажение '%s': regcomp Ð²ÐµÑ\80нÑ\83л %d"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Ð\97Ñ\83нÑ\8cи"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Ð\9dевеÑ\80ное Ñ\80егÑ\83лÑ\8fÑ\80ное Ð²Ñ\8bÑ\80ажение '%s'"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "сбой при проверке applydeltarpm."
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Сначала установите пакет 'lsof'."
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "сбой в applydeltarpm."
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "Необходима аутентификация для '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "изменение Ð°Ñ\80Ñ\85иÑ\82екÑ\82Ñ\83Ñ\80Ñ\8b %s Ð½Ð° %s"
+msgid "Failed to mount %s on %s"
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\81монÑ\82иÑ\80оваÑ\82Ñ\8c %s Ð² %s"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "пÑ\80еÑ\80ваÑ\82Ñ\8c %s, Ð¸Ð³Ð½Ð¾Ñ\80иÑ\80Ñ\83Ñ\8f Ð½ÐµÐºÐ¾Ñ\82оÑ\80Ñ\8bе Ð¸Ð· ÐµÐ³Ð¾ Ð·Ð°Ð²Ð¸Ñ\81имоÑ\81Ñ\82ей"
+msgid "Failed to unmount %s"
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ð¾Ñ\82монÑ\82иÑ\80оваÑ\82Ñ\8c %s"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "не Ñ\83даÑ\91Ñ\82Ñ\81Ñ\8f Ñ\83Ñ\81Ñ\82ановиÑ\82Ñ\8c Ð¾Ð±Ð° %s Ð¸ %s"
+msgid "Bad file name: %s"
+msgstr "Ð\9dекоÑ\80Ñ\80екÑ\82ное Ð¸Ð¼Ñ\8f Ñ\84айла: %s"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "конфликтующие запросы"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "При попытке произведения действия '%s' не был открыт носитель."
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "созданная резервная копия %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Файл '%s' не найден на носителе '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "удаление %s"
+msgid "Cannot write file '%s'."
+msgstr "Невозможно записать файл '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "удалённые поставщики: "
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Носитель не присоединён"
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr ""
-"не просить удалить все объекты разрешения зависимостей, предоставляющие %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Некорректная точка присоединения носителя"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr ""
-"не просить установить объект разрешения зависимостей, предоставляющий %s"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Сбой инициализации загрузки (curl) для '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "не Ñ\83Ñ\81Ñ\82анавливаÑ\82Ñ\8c %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "СиÑ\81Ñ\82емное Ð¸Ñ\81клÑ\8eÑ\87ение '%s' Ð½Ð° Ð½Ð¾Ñ\81иÑ\82еле '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "не Ñ\83Ñ\81Ñ\82анавливаÑ\82Ñ\8c Ñ\81амÑ\83Ñ\8e Ð¿Ð¾Ñ\81леднÑ\8eÑ\8e Ð²ÐµÑ\80Ñ\81иÑ\8e %s"
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Ð\9fÑ\83Ñ\82Ñ\8c '%s' Ð½Ð° Ð½Ð¾Ñ\81иÑ\82еле '%s' Ð½Ðµ Ñ\8fвлÑ\8fеÑ\82Ñ\81Ñ\8f Ñ\84айлом."
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "обновиÑ\82Ñ\8c %s Ð´Ð¾ Ð±Ð¾Ð»ÐµÐµ Ñ\81Ñ\82аÑ\80ой Ð²ÐµÑ\80Ñ\81ии %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Ð\9fÑ\83Ñ\82Ñ\8c '%s' Ð½Ð° Ð½Ð¾Ñ\81иÑ\82еле '%s' Ð½Ðµ Ñ\8fвлÑ\8fеÑ\82Ñ\81Ñ\8f ÐºÐ°Ñ\82алогом."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "вообще игнорировать некоторые зависимости"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Неправильно сформированный URI-адрес"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Пустое имя узла в URI-адресе"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Пустая файловая система в URI-адресе"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Пустой пункт назначения в URI-адресе"
+
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Неподдерживаемая схема URI-адреса в '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "игнорировать предупреждение о нарушении работы системы"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Операция не поддерживается носителем"
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
-"установить %s (со сменой поставщика)\n"
-"  %s  -->  %s"
+"Ошибка загрузки (curl) '%s':\n"
+"Код ошибки: %s\n"
+"Сообщение об ошибке: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "установить %s, несмотря на худшую архитектуру"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "Произошла ошибка при установке параметров загрузки (curl) для '%s':"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "установить %s из исключенного репозитория"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Источник носителей '%s' не содержит желаемого носителя"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "УÑ\81Ñ\82ановка %s Ñ\81делаеÑ\82 Ñ\83Ñ\81Ñ\82аÑ\80евÑ\88им Ð¿Ð°ÐºÐµÑ\82 %s, Ð¿Ñ\80едоÑ\81Ñ\82авленнÑ\8bй %s"
+msgid "Medium '%s' is in use by another instance"
+msgstr "Ð\9dоÑ\81иÑ\82елÑ\8c'%s' Ð¸Ñ\81полÑ\8cзÑ\83еÑ\82Ñ\81Ñ\8f Ð´Ñ\80Ñ\83гим Ñ\8dкземплÑ\8fÑ\80ом"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "недейÑ\81Ñ\82виÑ\82елÑ\8cно"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Ð\9dевозможно Ð¸Ð·Ð²Ð»ÐµÑ\87Ñ\8c Ð½Ð¸ Ð¾Ð´Ð¸Ð½ Ð½Ð¾Ñ\81иÑ\82елÑ\8c"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "оÑ\81Ñ\82авиÑ\82Ñ\8c %s"
+msgid "Cannot eject media '%s'"
+msgstr "Ð\9dевозможно Ð¸Ð·Ð²Ð»ÐµÑ\87Ñ\8c Ð½Ð¾Ñ\81иÑ\82елÑ\8c '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "оÑ\81Ñ\82авиÑ\82Ñ\8c %s, Ð½ÐµÑ\81моÑ\82Ñ\80Ñ\8f Ð½Ð° Ñ\85Ñ\83дÑ\88Ñ\83Ñ\8e Ð°Ñ\80Ñ\85иÑ\82екÑ\82Ñ\83Ñ\80Ñ\83"
+msgid "Permission to access '%s' denied."
+msgstr "Ð\94оÑ\81Ñ\82Ñ\83п Ðº '%s' Ð·Ð°Ð¿Ñ\80еÑ\89Ñ\91н."
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "оставить устаревший %s"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Не удается создать контекст libhal"
-
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: не удалось установить подключение к dbus"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Превышено время ожидания при попытке доступа к '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "ниÑ\87Ñ\82о Ð½Ðµ Ð¿Ñ\80едоÑ\81Ñ\82авлÑ\8fеÑ\82 %s, Ð½ÐµÐ¾Ð±Ñ\85одимÑ\8bй Ð´Ð»Ñ\8f %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "РаÑ\81положение '%s' Ð²Ñ\80еменно Ð½ÐµÐ´Ð¾Ñ\81Ñ\82Ñ\83пно."
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "ничто не предоставляет запрошенный %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+"Проблема с сертификатом SSL, проверьте, всё ли в порядке с удостоверяющим "
+"центром сертификата '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "пакет %s не существует"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Невозможно найти доступное loop-устройство для монтирования файла образа из "
+"'%s'"
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "пÑ\80облема Ð² Ñ\83Ñ\81Ñ\82ановленном Ð¿Ð°ÐºÐµÑ\82е %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Ð\9dеподдеÑ\80живаемÑ\8bй Ð¼ÐµÑ\82од HTTP-аÑ\83Ñ\82енÑ\82иÑ\84икаÑ\86ии '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "удалить блокировку для установки %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Посетите Novell Customer Center для проверки срока действия вашей "
+"регистрации."
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "удалить блокировку для удаления %s"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Невозможно создать sat-pool."
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "замена %s на %s"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Файл %1%\n"
+"  из пакета\n"
+"     %2%\n"
+"  конфликтует с файлом из пакета\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm создал %s как %s, но было невозможно определить различия"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Файл %1%\n"
+"  из пакета\n"
+"     %2%\n"
+"  конфликтует с файлом из пакета\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm создано%s как %s.\n"
-"Здесь первые 25 строк различий:\n"
+"Файл %1%\n"
+"  из пакета\n"
+"     %2%\n"
+"  конфликтует с файлом из пакета\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm сохранил %s как %s, но было невозможно определить различия"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Файл %1%\n"
+"  из пакета\n"
+"     %2%\n"
+"  конфликтует с файлом из пакета\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
-"rpm создано%s как %s.\n"
-"Здесь первые 25 строк различий:\n"
+"Файл %1%\n"
+"  из пакета\n"
+"     %2%\n"
+"  конфликтует с файлом\n"
+"     %3%\n"
+"  из пакета\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
-"Объект разрешения зависимостей %s конфликтует с %s, который предоставляется "
-"им самим"
+"Файл %1%\n"
+"  из пакета\n"
+"     %2%\n"
+"  конфликтует с файлом\n"
+"     %3%\n"
+"  из пакета\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "некоторые проблемы зависимости"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Файл %1%\n"
+"  из пакета\n"
+"     %2%\n"
+"  конфликтует с файлом\n"
+"     %3%\n"
+"  из пакета\n"
+"     %4%"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "поставщики, не подлежащие установке: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Файл %1%\n"
+"  из пакета\n"
+"     %2%\n"
+"  конфликтует с файлом\n"
+"     %3%\n"
+"  из пакета\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "неизвестный"
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "игнорировать некоторые зависимости везде"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "не поддерживается"
+#~ msgid "do not keep %s installed"
+#~ msgstr "не оставлять установленным %s"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "запрос не поддерживается"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr "Невозможно записать публичный ключ %s из хранилища %s в файл %s"
+
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr "Попытка импорта несуществующего ключа %s в хранилище ключей %s"
+
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "Невозможно выполнить chdir в '/' внутри среды chroot (%s)."
+
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "Сбой инициализации загрузки (Metalink curl) для '%s'"
+
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "Ошибка загрузки (metalink curl) для '%s':\n"
+#~ "Код ошибки: %s\n"
+#~ "Сообщение об ошибке: %s\n"
+
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "Загрузка прервана на %d%%"
+
+#~ msgid "Download interrupted by user"
+#~ msgstr "Загрузка прервана пользователем"
+
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr ""
+#~ "Произошла ошибка при установке параметров загрузки (metalink curl) для "
+#~ "'%s':"
+
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Не удалось загрузить %s с %s"
index c5b3148..5991a29 100644 (file)
--- a/po/si.po
+++ b/po/si.po
@@ -15,832 +15,813 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-#, fuzzy
-msgid " execution failed"
-msgstr "DBI Execution failed: %s"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr ""
+#: zypp/target/TargetImpl.cc:332
+#, fuzzy
+msgid " execution failed"
+msgstr "DBI Execution failed: %s"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
 msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
 msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
 msgstr ""
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
 msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
 msgstr ""
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
 msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
 msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
 msgstr ""
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr ""
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
 msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr ""
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Couldn't open file: %s."
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
 msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr ""
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Couldn't open file: %s."
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
 msgstr ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
 msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
 msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
+msgid "Error trying to read from '%s'"
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
 msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
 msgstr ""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Couldn't open file: %s."
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
 msgstr ""
 
-#: zypp/media/MediaException.cc:47
+#: zypp/url/UrlBase.cc:154
 #, c-format, boost-format
-msgid "Bad file name: %s"
+msgid "Url scheme does not allow a %s"
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
 msgstr ""
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
 msgstr ""
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
 msgstr ""
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
 msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
 msgstr ""
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
 msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
 msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
 msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
 msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
 msgstr ""
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr ""
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "බෙල්ජියම"
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Couldn't open file: %s."
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
 msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr ""
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Couldn't open file: %s."
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
 msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
 msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
 msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
 msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr ""
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
 msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
 msgstr ""
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
 msgstr ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
 msgstr ""
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
 msgstr ""
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
 msgstr ""
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
 msgstr ""
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
 msgstr ""
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
 msgstr ""
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
 msgstr ""
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
 msgstr ""
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
 msgstr ""
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
 msgstr ""
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
 msgstr ""
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
 msgstr ""
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
 msgstr ""
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
 msgstr ""
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
 msgstr ""
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
 msgstr ""
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
 msgstr ""
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr ""
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+#, fuzzy
+msgid "Netherlands Antilles"
+msgstr "නෙදර්ලන්තය"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
 msgstr ""
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Couldn't open file: %s."
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Couldn't open file: %s."
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Couldn't open file: %s."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Couldn't open file: %s."
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr ""
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Couldn't open file: %s."
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "බෙල්ජියම"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
 msgstr ""
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
 msgstr ""
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
 msgstr ""
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
 msgstr ""
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Couldn't open file: %s."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr ""
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
 msgstr ""
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
 msgstr ""
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
 msgstr ""
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
 msgstr ""
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
 msgstr ""
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
 msgstr ""
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
 msgstr ""
 
 #. :COD:180:
@@ -848,61 +829,20 @@ msgstr ""
 msgid "Central African Republic"
 msgstr ""
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr ""
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+#, fuzzy
+msgid "Switzerland"
+msgstr "නෙදර්ලන්තය"
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr ""
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr ""
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr ""
-
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr ""
-
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr ""
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr ""
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr ""
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr ""
-
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
 msgstr ""
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
 msgstr ""
 
 #. :COK:184:
@@ -910,29 +850,34 @@ msgstr ""
 msgid "Chile"
 msgstr ""
 
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr ""
+
 #. :CMR:120:
 #: zypp/CountryCode.cc:204
 msgid "China"
 msgstr ""
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
 msgstr ""
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
 msgstr ""
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
 msgstr ""
 
 #. :CPV:132:
@@ -940,659 +885,613 @@ msgstr ""
 msgid "Christmas Island"
 msgstr ""
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
 msgstr ""
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr ""
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "ජර්මනිය"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr ""
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "ඩෙන්මාර්කය"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
 msgstr ""
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
 msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
 msgstr ""
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
 msgstr ""
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
 msgstr ""
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
 msgstr ""
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr ""
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "පින්ලන්තය"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
 msgstr ""
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
 msgstr ""
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
 msgstr ""
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr ""
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+#, fuzzy
+msgid "Faroe Islands"
+msgstr "අයර්ලන්තය"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
 msgstr ""
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
 msgstr ""
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
 msgstr ""
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr ""
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "එක්සත් රාජධානිය"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
 msgstr ""
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
 msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr ""
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "ජර්මනිය"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
 msgstr ""
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr ""
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+#, fuzzy
+msgid "Greenland"
+msgstr "අයර්ලන්තය"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
 msgstr ""
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
 msgstr ""
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
 msgstr ""
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
 msgstr ""
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr ""
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "ග්‍රිසිය"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
 msgstr ""
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "ඩෙන්මාර්කය"
-
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
 msgstr ""
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
 msgstr ""
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
 msgstr ""
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
 msgstr ""
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
 msgstr ""
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
 msgstr ""
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr ""
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "හන්ගේරියාව"
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "අයර්ලන්තය"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
 msgstr ""
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
 msgstr ""
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
+#: zypp/CountryCode.cc:261
+msgid "India"
 msgstr ""
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
 msgstr ""
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
 msgstr ""
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+#, fuzzy
+msgid "Iceland"
+msgstr "අයර්ලන්තය"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
 msgstr ""
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
 msgstr ""
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
 msgstr ""
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
 msgstr ""
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
 msgstr ""
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
 msgstr ""
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
 msgstr ""
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+#, fuzzy
+msgid "North Korea"
+msgstr "උතුරු අයර්ලන්තය"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
 msgstr ""
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
 msgstr ""
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
 msgstr ""
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
 msgstr ""
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
 msgstr ""
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
 msgstr ""
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
 msgstr ""
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
 msgstr ""
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "ලක්සන්බර්ග්"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
 msgstr ""
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
 msgstr ""
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr ""
 
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "මෝල්ඩෝව"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
 msgstr ""
 
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Failed to parse: %s."
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr ""
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Failed to parse: %s."
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
 msgstr ""
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
 msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
 #, fuzzy
-msgid "Faroe Islands"
-msgstr "අයර්ලන්තය"
+msgid "Northern Mariana Islands"
+msgstr "à¶\8bතà·\94රà·\94 à¶\85යරà·\8aලනà·\8aතය"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
 msgstr ""
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
 msgstr ""
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
 msgstr ""
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr ""
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
 msgstr ""
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr ""
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+#, fuzzy
+msgid "Norfolk Island"
+msgstr "උතුරු අයර්ලන්තය"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
 msgstr ""
 
-#. language code: fil
-#: zypp/LanguageCode.cc:437
-msgid "Filipino"
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
 msgstr ""
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "පà·\92න්ලන්තය"
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "නà·\99දර්ලන්තය"
 
-#. language code: fin fi
-#: zypp/LanguageCode.cc:439
-msgid "Finnish"
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
 msgstr ""
 
-#. language code: fiu
-#: zypp/LanguageCode.cc:441
-msgid "Finno-Ugrian (Other)"
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
 msgstr ""
 
-#. language code: fon
-#: zypp/LanguageCode.cc:443
-msgid "Fon"
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+#, fuzzy
+msgid "New Zealand"
+msgstr "නෙදර්ලන්තය"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
 msgstr ""
 
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
 msgstr ""
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
 msgstr ""
 
 #. :PER:604:
@@ -1600,2141 +1499,2249 @@ msgstr ""
 msgid "French Polynesia"
 msgstr ""
 
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
 msgstr ""
 
-#. language code: frm
-#: zypp/LanguageCode.cc:449
-msgid "French, Middle (ca.1400-1600)"
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
 msgstr ""
 
-#. language code: fro
-#: zypp/LanguageCode.cc:451
-msgid "French, Old (842-ca.1400)"
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
 msgstr ""
 
-#. language code: fry fy
-#: zypp/LanguageCode.cc:453
-msgid "Frisian"
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+#, fuzzy
+msgid "Poland"
+msgstr "පින්ලන්තය"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
 msgstr ""
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
 msgstr ""
 
-#. language code: gaa
-#: zypp/LanguageCode.cc:459
-msgid "Ga"
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
 msgstr ""
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "පෘතුගාලය"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
 msgstr ""
 
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
 msgstr ""
 
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
 msgstr ""
 
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
 msgstr ""
 
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "රුමෙනියාව"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
 msgstr ""
 
-#. language code: gay
-#: zypp/LanguageCode.cc:461
-msgid "Gayo"
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr ""
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr ""
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr ""
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr ""
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
 msgstr ""
 
-#. language code: gba
-#: zypp/LanguageCode.cc:463
-msgid "Gbaya"
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
 msgstr ""
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
 msgstr ""
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
 msgstr ""
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-#, fuzzy
-msgid "German"
-msgstr "ජර්මනිය"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "ස්ලෝවෙනියාව"
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
 msgstr ""
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
-msgstr ""
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "ස්ලෝවැකියාව"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
 msgstr ""
 
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "ජර්මනිය"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr ""
 
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
 msgstr ""
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
 msgstr ""
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
 msgstr ""
 
-#. language code: gon
-#: zypp/LanguageCode.cc:491
-msgid "Gondi"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
 msgstr ""
 
-#. language code: gor
-#: zypp/LanguageCode.cc:493
-msgid "Gorontalo"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
 msgstr ""
 
-#. language code: got
-#: zypp/LanguageCode.cc:495
-msgid "Gothic"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
 msgstr ""
 
-#. language code: grb
-#: zypp/LanguageCode.cc:497
-msgid "Grebo"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+#, fuzzy
+msgid "Swaziland"
+msgstr "පින්ලන්තය"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "ග්‍රිසිය"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr ""
 
-#. language code: grc
-#: zypp/LanguageCode.cc:499
-msgid "Greek, Ancient (to 1453)"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
 msgstr ""
 
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
 #, fuzzy
-msgid "Greenland"
-msgstr "à¶\85යර්ලන්තය"
+msgid "Thailand"
+msgstr "පà·\92න්ලන්තය"
 
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
 msgstr ""
 
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
 msgstr ""
 
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
 msgstr ""
 
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
 msgstr ""
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
 msgstr ""
 
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "ජර්මනිය"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr ""
 
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "තුර්කිය"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
 msgstr ""
 
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
 msgstr ""
 
-#. language code: guj gu
-#: zypp/LanguageCode.cc:507
-msgid "Gujarati"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
 msgstr ""
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
 msgstr ""
 
-#. language code: gwi
-#: zypp/LanguageCode.cc:509
-msgid "Gwich'in"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "යුක්රේනය"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
 msgstr ""
 
-#. language code: hai
-#: zypp/LanguageCode.cc:511
-msgid "Haida"
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
 msgstr ""
 
-#. language code: hat ht
-#: zypp/LanguageCode.cc:513
-msgid "Haitian"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
 msgstr ""
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr ""
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr ""
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
 msgstr ""
 
-#. language code: hau ha
-#: zypp/LanguageCode.cc:515
-msgid "Hausa"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
 msgstr ""
 
-#. language code: haw
-#: zypp/LanguageCode.cc:517
-msgid "Hawaiian"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
 msgstr ""
 
-#. language code: heb he
-#: zypp/LanguageCode.cc:519
-msgid "Hebrew"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
 msgstr ""
 
-#. language code: her hz
-#: zypp/LanguageCode.cc:521
-msgid "Herero"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-#. language code: hil
-#: zypp/LanguageCode.cc:523
-msgid "Hiligaynon"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
 msgstr ""
 
-#. language code: him
-#: zypp/LanguageCode.cc:525
-msgid "Himachali"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
 msgstr ""
 
-#. language code: hin hi
-#: zypp/LanguageCode.cc:527
-msgid "Hindi"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
 msgstr ""
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#. language code: hit
-#: zypp/LanguageCode.cc:529
-msgid "Hittite"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#. language code: hmn
-#: zypp/LanguageCode.cc:531
-msgid "Hmong"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#. language code: hun hu
-#: zypp/LanguageCode.cc:537
-#, fuzzy
-msgid "Hungarian"
-msgstr "හන්ගේරියාව"
-
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "හන්ගේරියාව"
-
-#. language code: hup
-#: zypp/LanguageCode.cc:539
-msgid "Hupa"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. language code: iba
-#: zypp/LanguageCode.cc:541
-msgid "Iban"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
 msgstr ""
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-#, fuzzy
-msgid "Iceland"
-msgstr "අයර්ලන්තය"
-
-#. language code: ice isl is
-#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
-#, fuzzy
-msgid "Icelandic"
-msgstr "අයර්ලන්තය"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr ""
 
-#. language code: ido io
-#: zypp/LanguageCode.cc:549
-msgid "Ido"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#: zypp/CountryCode.cc:261
-msgid "India"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
 msgstr ""
 
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+#, fuzzy
+msgid "Southern Altai"
+msgstr "උතුරු අයර්ලන්තය"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
 msgstr ""
 
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
 msgstr ""
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
 msgstr ""
 
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
 msgstr ""
 
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
 msgstr ""
 
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
 msgstr ""
 
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
 msgstr ""
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
 msgstr ""
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "අයර්ලන්තය"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
 msgstr ""
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
 msgstr ""
 
-#. language code: iro
-#: zypp/LanguageCode.cc:575
-msgid "Iroquoian Languages"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
 msgstr ""
 
-#. language code: ita it
-#: zypp/LanguageCode.cc:577
-msgid "Italian"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
 msgstr ""
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
 msgstr ""
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
 msgstr ""
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
 msgstr ""
 
-#. language code: kab
-#: zypp/LanguageCode.cc:591
-msgid "Kabyle"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
 msgstr ""
 
-#. language code: kac
-#: zypp/LanguageCode.cc:593
-msgid "Kachin"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#. language code: kal kl
-#: zypp/LanguageCode.cc:595
-msgid "Kalaallisut"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
 msgstr ""
 
-#. language code: kam
-#: zypp/LanguageCode.cc:597
-msgid "Kamba"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#. language code: kan kn
-#: zypp/LanguageCode.cc:599
-msgid "Kannada"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
 msgstr ""
 
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
 msgstr ""
 
-#. language code: kar
-#: zypp/LanguageCode.cc:601
-msgid "Karen"
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
 msgstr ""
 
-#. language code: kas ks
-#: zypp/LanguageCode.cc:603
-msgid "Kashmiri"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
 msgstr ""
 
-#. language code: kaw
-#: zypp/LanguageCode.cc:607
-msgid "Kawi"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
 msgstr ""
 
-#. language code: kaz kk
-#: zypp/LanguageCode.cc:609
-msgid "Kazakh"
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
 msgstr ""
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
 msgstr ""
 
-#. language code: kha
-#: zypp/LanguageCode.cc:613
-msgid "Khasi"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
 msgstr ""
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
 msgstr ""
 
-#. language code: kho
-#: zypp/LanguageCode.cc:619
-msgid "Khotanese"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
 msgstr ""
 
-#. language code: kik ki
-#: zypp/LanguageCode.cc:621
-msgid "Kikuyu"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#. language code: kin rw
-#: zypp/LanguageCode.cc:623
-msgid "Kinyarwanda"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#. language code: kir ky
-#: zypp/LanguageCode.cc:625
-msgid "Kirghiz"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
 msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
 msgstr ""
 
-#. language code: kom kv
-#: zypp/LanguageCode.cc:631
-msgid "Komi"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-#. language code: kon kg
-#: zypp/LanguageCode.cc:633
-msgid "Kongo"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
 msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
 msgstr ""
 
-#. language code: kor ko
-#: zypp/LanguageCode.cc:635
-msgid "Korean"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
 msgstr ""
 
-#. language code: kos
-#: zypp/LanguageCode.cc:637
-msgid "Kosraean"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
 msgstr ""
 
-#. language code: kpe
-#: zypp/LanguageCode.cc:639
-msgid "Kpelle"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
 msgstr ""
 
-#. language code: kro
-#: zypp/LanguageCode.cc:643
-msgid "Kru"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
 msgstr ""
 
-#. language code: kua kj
-#: zypp/LanguageCode.cc:647
-msgid "Kuanyama"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
-#. language code: kum
-#: zypp/LanguageCode.cc:649
-msgid "Kumyk"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
 
-#. language code: kur ku
-#: zypp/LanguageCode.cc:651
-msgid "Kurdish"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
 msgstr ""
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-#. language code: kut
-#: zypp/LanguageCode.cc:653
-msgid "Kutenai"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
 msgstr ""
 
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
 msgstr ""
 
-#. language code: lad
-#: zypp/LanguageCode.cc:655
-msgid "Ladino"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
 msgstr ""
 
-#. language code: lah
-#: zypp/LanguageCode.cc:657
-msgid "Lahnda"
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
 msgstr ""
 
-#. language code: lam
-#: zypp/LanguageCode.cc:659
-msgid "Lamba"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
 msgstr ""
 
-#. language code: lao lo
-#: zypp/LanguageCode.cc:661
-msgid "Lao"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
 msgstr ""
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
 msgstr ""
 
-#. language code: lat la
-#: zypp/LanguageCode.cc:663
-msgid "Latin"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#. language code: lav lv
-#: zypp/LanguageCode.cc:665
-msgid "Latvian"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
 msgstr ""
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
 msgstr ""
 
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
 msgstr ""
 
-#. language code: lez
-#: zypp/LanguageCode.cc:667
-msgid "Lezghian"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
 msgstr ""
 
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
 
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. language code: lim li
-#: zypp/LanguageCode.cc:669
-msgid "Limburgan"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#. language code: lin ln
-#: zypp/LanguageCode.cc:671
-msgid "Lingala"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
-msgid "Lithuanian"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
 msgstr ""
 
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-#, fuzzy
-msgid "Low German"
-msgstr "ජර්මනිය"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
 msgstr ""
 
-#. language code: loz
-#: zypp/LanguageCode.cc:677
-msgid "Lozi"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
 msgstr ""
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
 
-#. language code: lui
-#: zypp/LanguageCode.cc:687
-msgid "Luiseno"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
 msgstr ""
 
-#. language code: lun
-#: zypp/LanguageCode.cc:689
-msgid "Lunda"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#. language code: luo
-#: zypp/LanguageCode.cc:691
-msgid "Luo (Kenya and Tanzania)"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
 msgstr ""
 
-#. language code: lus
-#: zypp/LanguageCode.cc:693
-msgid "Lushai"
+#. language code: fil
+#: zypp/LanguageCode.cc:437
+msgid "Filipino"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "ලක්සන්බර්ග්"
+#. language code: fin fi
+#: zypp/LanguageCode.cc:439
+msgid "Finnish"
+msgstr ""
 
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-#, fuzzy
-msgid "Luxembourgish"
-msgstr "ලක්සන්බර්ග්"
+#. language code: fiu
+#: zypp/LanguageCode.cc:441
+msgid "Finno-Ugrian (Other)"
+msgstr ""
 
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
+#. language code: fon
+#: zypp/LanguageCode.cc:443
+msgid "Fon"
 msgstr ""
 
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
 msgstr ""
 
-#. language code: mac mkd mk
-#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
-msgid "Macedonian"
+#. language code: frm
+#: zypp/LanguageCode.cc:449
+msgid "French, Middle (ca.1400-1600)"
 msgstr ""
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
+#. language code: fro
+#: zypp/LanguageCode.cc:451
+msgid "French, Old (842-ca.1400)"
 msgstr ""
 
-#. language code: mad
-#: zypp/LanguageCode.cc:699
-msgid "Madurese"
+#. language code: fry fy
+#: zypp/LanguageCode.cc:453
+msgid "Frisian"
 msgstr ""
 
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
 msgstr ""
 
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
 msgstr ""
 
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
+#. language code: gaa
+#: zypp/LanguageCode.cc:459
+msgid "Ga"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
+#. language code: gay
+#: zypp/LanguageCode.cc:461
+msgid "Gayo"
 msgstr ""
 
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
+#. language code: gba
+#: zypp/LanguageCode.cc:463
+msgid "Gbaya"
 msgstr ""
 
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
 msgstr ""
 
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
 msgstr ""
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+#, fuzzy
+msgid "German"
+msgstr "ජර්මනිය"
+
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
 msgstr ""
 
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
 msgstr ""
 
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
 msgstr ""
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
 msgstr ""
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
 msgstr ""
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
 msgstr ""
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
 msgstr ""
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
+#. language code: gon
+#: zypp/LanguageCode.cc:491
+msgid "Gondi"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
+#. language code: gor
+#: zypp/LanguageCode.cc:493
+msgid "Gorontalo"
 msgstr ""
 
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
+#. language code: got
+#: zypp/LanguageCode.cc:495
+msgid "Gothic"
 msgstr ""
 
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
+#. language code: grb
+#: zypp/LanguageCode.cc:497
+msgid "Grebo"
 msgstr ""
 
-#. language code: mao mri mi
-#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
-msgid "Maori"
+#. language code: grc
+#: zypp/LanguageCode.cc:499
+msgid "Greek, Ancient (to 1453)"
 msgstr ""
 
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
-msgid "Marathi"
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
 msgstr ""
 
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
+#. language code: guj gu
+#: zypp/LanguageCode.cc:507
+msgid "Gujarati"
 msgstr ""
 
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
+#. language code: gwi
+#: zypp/LanguageCode.cc:509
+msgid "Gwich'in"
 msgstr ""
 
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
+#. language code: hai
+#: zypp/LanguageCode.cc:511
+msgid "Haida"
 msgstr ""
 
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
+#. language code: hat ht
+#: zypp/LanguageCode.cc:513
+msgid "Haitian"
 msgstr ""
 
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
+#. language code: hau ha
+#: zypp/LanguageCode.cc:515
+msgid "Hausa"
 msgstr ""
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
+#. language code: haw
+#: zypp/LanguageCode.cc:517
+msgid "Hawaiian"
 msgstr ""
 
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
+#. language code: heb he
+#: zypp/LanguageCode.cc:519
+msgid "Hebrew"
 msgstr ""
 
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
+#. language code: her hz
+#: zypp/LanguageCode.cc:521
+msgid "Herero"
 msgstr ""
 
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
+#. language code: hil
+#: zypp/LanguageCode.cc:523
+msgid "Hiligaynon"
 msgstr ""
 
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
+#. language code: him
+#: zypp/LanguageCode.cc:525
+msgid "Himachali"
 msgstr ""
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
+#. language code: hin hi
+#: zypp/LanguageCode.cc:527
+msgid "Hindi"
 msgstr ""
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: hit
+#: zypp/LanguageCode.cc:529
+msgid "Hittite"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: hmn
+#: zypp/LanguageCode.cc:531
+msgid "Hmong"
 msgstr ""
 
-#. language code: men
-#: zypp/LanguageCode.cc:731
-msgid "Mende"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
+#. language code: hun hu
+#: zypp/LanguageCode.cc:537
+#, fuzzy
+msgid "Hungarian"
+msgstr "හන්ගේරියාව"
+
+#. language code: hup
+#: zypp/LanguageCode.cc:539
+msgid "Hupa"
 msgstr ""
 
-#. language code: mic
-#: zypp/LanguageCode.cc:735
-msgid "Mi'kmaq"
+#. language code: iba
+#: zypp/LanguageCode.cc:541
+msgid "Iban"
 msgstr ""
 
-#. language code: min
-#: zypp/LanguageCode.cc:737
-msgid "Minangkabau"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
+#. language code: ice isl is
+#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
+#, fuzzy
+msgid "Icelandic"
+msgstr "අයර්ලන්තය"
+
+#. language code: ido io
+#: zypp/LanguageCode.cc:549
+msgid "Ido"
 msgstr ""
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
 msgstr ""
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
 msgstr ""
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-#, fuzzy
-msgid "Moldavian"
-msgstr "මෝල්ඩෝව"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr ""
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "මෝල්ඩෝව"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr ""
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
 msgstr ""
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
 msgstr ""
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#. language code: mon mn
-#: zypp/LanguageCode.cc:757
-msgid "Mongolian"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
 msgstr ""
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
 msgstr ""
 
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
 msgstr ""
 
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
+#. language code: iro
+#: zypp/LanguageCode.cc:575
+msgid "Iroquoian Languages"
 msgstr ""
 
-#. language code: mos
-#: zypp/LanguageCode.cc:759
-msgid "Mossi"
+#. language code: ita it
+#: zypp/LanguageCode.cc:577
+msgid "Italian"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
 msgstr ""
 
-#. language code: mul
-#: zypp/LanguageCode.cc:761
-msgid "Multiple Languages"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
 msgstr ""
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
 msgstr ""
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-#. language code: nah
-#: zypp/LanguageCode.cc:775
-msgid "Nahuatl"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
+#. language code: kab
+#: zypp/LanguageCode.cc:591
+msgid "Kabyle"
 msgstr ""
 
-#. language code: nav nv
-#: zypp/LanguageCode.cc:783
-msgid "Navajo"
+#. language code: kac
+#: zypp/LanguageCode.cc:593
+msgid "Kachin"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
+#. language code: kal kl
+#: zypp/LanguageCode.cc:595
+msgid "Kalaallisut"
 msgstr ""
 
-#. language code: nbl nr
-#: zypp/LanguageCode.cc:785
-msgid "Ndebele, South"
+#. language code: kam
+#: zypp/LanguageCode.cc:597
+msgid "Kamba"
 msgstr ""
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
+#. language code: kan kn
+#: zypp/LanguageCode.cc:599
+msgid "Kannada"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
+#. language code: kar
+#: zypp/LanguageCode.cc:601
+msgid "Karen"
 msgstr ""
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
+#. language code: kas ks
+#: zypp/LanguageCode.cc:603
+msgid "Kashmiri"
 msgstr ""
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
+#. language code: kaw
+#: zypp/LanguageCode.cc:607
+msgid "Kawi"
 msgstr ""
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "නෙදර්ලන්තය"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-#, fuzzy
-msgid "Netherlands Antilles"
-msgstr "නෙදර්ලන්තය"
+#. language code: kaz kk
+#: zypp/LanguageCode.cc:609
+msgid "Kazakh"
+msgstr ""
 
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-#, fuzzy
-msgid "New Zealand"
-msgstr "නෙදර්ලන්තය"
+#. language code: kha
+#: zypp/LanguageCode.cc:613
+msgid "Khasi"
+msgstr ""
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
 msgstr ""
 
-#. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
+#. language code: kho
+#: zypp/LanguageCode.cc:619
+msgid "Khotanese"
 msgstr ""
 
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
+#. language code: kik ki
+#: zypp/LanguageCode.cc:621
+msgid "Kikuyu"
 msgstr ""
 
-#. language code: nic
-#: zypp/LanguageCode.cc:799
-msgid "Niger-Kordofanian (Other)"
+#. language code: kin rw
+#: zypp/LanguageCode.cc:623
+msgid "Kinyarwanda"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
+#. language code: kir ky
+#: zypp/LanguageCode.cc:625
+msgid "Kirghiz"
 msgstr ""
 
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
-#. language code: niu
-#: zypp/LanguageCode.cc:801
-msgid "Niuean"
+#. language code: kom kv
+#: zypp/LanguageCode.cc:631
+msgid "Komi"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
+#. language code: kon kg
+#: zypp/LanguageCode.cc:633
+msgid "Kongo"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: kor ko
+#: zypp/LanguageCode.cc:635
+msgid "Korean"
 msgstr ""
 
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
+#. language code: kos
+#: zypp/LanguageCode.cc:637
+msgid "Kosraean"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-#, fuzzy
-msgid "Norfolk Island"
-msgstr "උතුරු අයර්ලන්තය"
+#. language code: kpe
+#: zypp/LanguageCode.cc:639
+msgid "Kpelle"
+msgstr ""
 
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-#, fuzzy
-msgid "North American Indian"
-msgstr "උතුරු අයර්ලන්තය"
+#. language code: kro
+#: zypp/LanguageCode.cc:643
+msgid "Kru"
+msgstr ""
 
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-#, fuzzy
-msgid "North Korea"
-msgstr "උතුරු අයර්ලන්තය"
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr ""
 
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-#, fuzzy
-msgid "Northern Mariana Islands"
-msgstr "උතුරු අයර්ලන්තය"
+#. language code: kua kj
+#: zypp/LanguageCode.cc:647
+msgid "Kuanyama"
+msgstr ""
 
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-#, fuzzy
-msgid "Northern Sami"
-msgstr "උතුරු අයර්ලන්තය"
+#. language code: kum
+#: zypp/LanguageCode.cc:649
+msgid "Kumyk"
+msgstr ""
 
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-#, fuzzy
-msgid "Northern Sotho"
-msgstr "උතුරු අයර්ලන්තය"
+#. language code: kur ku
+#: zypp/LanguageCode.cc:651
+msgid "Kurdish"
+msgstr ""
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
+#. language code: kut
+#: zypp/LanguageCode.cc:653
+msgid "Kutenai"
 msgstr ""
 
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
+#. language code: lad
+#: zypp/LanguageCode.cc:655
+msgid "Ladino"
 msgstr ""
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
+#. language code: lah
+#: zypp/LanguageCode.cc:657
+msgid "Lahnda"
 msgstr ""
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
+#. language code: lam
+#: zypp/LanguageCode.cc:659
+msgid "Lamba"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: lao lo
+#: zypp/LanguageCode.cc:661
+msgid "Lao"
 msgstr ""
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
-msgid "Nubian Languages"
+#. language code: lat la
+#: zypp/LanguageCode.cc:663
+msgid "Latin"
 msgstr ""
 
-#. language code: nym
-#: zypp/LanguageCode.cc:821
-msgid "Nyamwezi"
+#. language code: lav lv
+#: zypp/LanguageCode.cc:665
+msgid "Latvian"
 msgstr ""
 
-#. language code: nyn
-#: zypp/LanguageCode.cc:823
-msgid "Nyankole"
+#. language code: lez
+#: zypp/LanguageCode.cc:667
+msgid "Lezghian"
 msgstr ""
 
-#. language code: nyo
-#: zypp/LanguageCode.cc:825
-msgid "Nyoro"
+#. language code: lim li
+#: zypp/LanguageCode.cc:669
+msgid "Limburgan"
 msgstr ""
 
-#. language code: nzi
-#: zypp/LanguageCode.cc:827
-msgid "Nzima"
+#. language code: lin ln
+#: zypp/LanguageCode.cc:671
+msgid "Lingala"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
+msgid "Lithuanian"
 msgstr ""
 
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
+#. language code: loz
+#: zypp/LanguageCode.cc:677
+msgid "Lozi"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr ""
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+#, fuzzy
+msgid "Luxembourgish"
+msgstr "ලක්සන්බර්ග්"
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
 msgstr ""
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
 msgstr ""
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
+#. language code: lui
+#: zypp/LanguageCode.cc:687
+msgid "Luiseno"
 msgstr ""
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
-msgid "Osage"
+#. language code: lun
+#: zypp/LanguageCode.cc:689
+msgid "Lunda"
 msgstr ""
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
+#. language code: luo
+#: zypp/LanguageCode.cc:691
+msgid "Luo (Kenya and Tanzania)"
 msgstr ""
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
+#. language code: lus
+#: zypp/LanguageCode.cc:693
+msgid "Lushai"
 msgstr ""
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: mac mkd mk
+#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
+msgid "Macedonian"
 msgstr ""
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
+#. language code: mad
+#: zypp/LanguageCode.cc:699
+msgid "Madurese"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
 msgstr ""
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
 msgstr ""
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
 msgstr ""
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
 msgstr ""
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
 msgstr ""
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
+#. language code: mao mri mi
+#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
+msgid "Maori"
 msgstr ""
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
 msgstr ""
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+msgid "Marathi"
 msgstr ""
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
 msgstr ""
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
 msgstr ""
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
 msgstr ""
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
+#. language code: men
+#: zypp/LanguageCode.cc:731
+msgid "Mende"
 msgstr ""
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: mic
+#: zypp/LanguageCode.cc:735
+msgid "Mi'kmaq"
 msgstr ""
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
+#. language code: min
+#: zypp/LanguageCode.cc:737
+msgid "Minangkabau"
 msgstr ""
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
 msgstr ""
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
 msgstr ""
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
 msgstr ""
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
 #, fuzzy
-msgid "Poland"
-msgstr "පà·\92නà·\8aලනà·\8aතය"
+msgid "Moldavian"
+msgstr "මà·\9dලà·\8aඩà·\9dà·\80"
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
+#. language code: mon mn
+#: zypp/LanguageCode.cc:757
+msgid "Mongolian"
 msgstr ""
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "පෘතුගාලය"
+#. language code: mos
+#: zypp/LanguageCode.cc:759
+msgid "Mossi"
+msgstr ""
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-#, fuzzy
-msgid "Portuguese"
-msgstr "පෘතුගාලය"
+#. language code: mul
+#: zypp/LanguageCode.cc:761
+msgid "Multiple Languages"
+msgstr ""
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
 msgstr ""
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
 msgstr ""
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
+#. language code: nah
+#: zypp/LanguageCode.cc:775
+msgid "Nahuatl"
 msgstr ""
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+#, fuzzy
+msgid "North American Indian"
+msgstr "උතුරු අයර්ලන්තය"
+
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
+#. language code: nav nv
+#: zypp/LanguageCode.cc:783
+msgid "Navajo"
 msgstr ""
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
+#. language code: nbl nr
+#: zypp/LanguageCode.cc:785
+msgid "Ndebele, South"
 msgstr ""
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
 msgstr ""
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+#, fuzzy
+msgid "Low German"
+msgstr "ජර්මනිය"
+
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
 msgstr ""
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
 msgstr ""
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
+#. language code: nic
+#: zypp/LanguageCode.cc:799
+msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+msgid "Niuean"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
 msgstr ""
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
 msgstr ""
 
-#: zypp/Dep.cc:98
-msgid "Requires"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+#, fuzzy
+msgid "Northern Sotho"
+msgstr "උතුරු අයර්ලන්තය"
+
+#. language code: nub
+#: zypp/LanguageCode.cc:815
+msgid "Nubian Languages"
 msgstr ""
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
 msgstr ""
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "රුමෙනියාව"
+#. language code: nym
+#: zypp/LanguageCode.cc:821
+msgid "Nyamwezi"
+msgstr ""
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-#, fuzzy
-msgid "Romanian"
-msgstr "රුමෙනියාව"
+#. language code: nyn
+#: zypp/LanguageCode.cc:823
+msgid "Nyankole"
+msgstr ""
+
+#. language code: nyo
+#: zypp/LanguageCode.cc:825
+msgid "Nyoro"
+msgstr ""
+
+#. language code: nzi
+#: zypp/LanguageCode.cc:827
+msgid "Nzima"
+msgstr ""
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-#, fuzzy
-msgid "Romany"
-msgstr "රුමෙනියාව"
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
+msgstr ""
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
 msgstr ""
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
 msgstr ""
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
 msgstr ""
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+msgid "Osage"
 msgstr ""
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
 msgstr ""
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
 msgstr ""
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
 msgstr ""
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
 msgstr ""
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
 msgstr ""
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
 msgstr ""
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr ""
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
 msgstr ""
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
 msgstr ""
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
 msgstr ""
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
 msgstr ""
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+#, fuzzy
+msgid "Portuguese"
+msgstr "පෘතුගාලය"
+
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
 msgstr ""
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
 msgstr ""
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
 msgstr ""
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
 msgstr ""
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
 msgstr ""
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
 msgstr ""
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
 msgstr ""
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+#, fuzzy
+msgid "Romany"
+msgstr "රුමෙනියාව"
+
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+#, fuzzy
+msgid "Romanian"
+msgstr "රුමෙනියාව"
+
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
 msgstr ""
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
 msgstr ""
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
 msgstr ""
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
 msgstr ""
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr ""
+
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
 msgstr ""
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
 msgstr ""
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
 msgstr ""
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
 msgstr ""
 
 #. language code: sin si
@@ -3742,24 +3749,14 @@ msgstr ""
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr ""
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -3773,100 +3770,81 @@ msgstr ""
 msgid "Slovak"
 msgstr "ස්ලෝවැකියාව"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "ස්ලෝවැකියාව"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "ස්ලෝවෙනියාව"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 #, fuzzy
 msgid "Slovenian"
 msgstr "ස්ලෝවෙනියාව"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr ""
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr ""
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+#, fuzzy
+msgid "Northern Sami"
+msgstr "උතුරු අයර්ලන්තය"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
 msgstr ""
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
 msgstr ""
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
 msgstr ""
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-#, fuzzy
-msgid "Southern Altai"
-msgstr "උතුරු අයර්ලන්තය"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
 msgstr ""
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
 msgstr ""
 
 #. language code: spa es
@@ -3874,18 +3852,24 @@ msgstr ""
 msgid "Spanish"
 msgstr ""
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
 msgstr ""
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
 msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
 #. language code: suk
@@ -3893,54 +3877,24 @@ msgstr ""
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr ""
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr ""
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr ""
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr ""
-
-#. language code: swa sw
-#: zypp/LanguageCode.cc:1007
-msgid "Swahili"
-msgstr ""
-
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-#, fuzzy
-msgid "Swaziland"
-msgstr "පින්ලන්තය"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
+#. language code: swa sw
+#: zypp/LanguageCode.cc:1007
+msgid "Swahili"
 msgstr ""
 
 #. language code: swe sv
@@ -3948,39 +3902,11 @@ msgstr ""
 msgid "Swedish"
 msgstr ""
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-#, fuzzy
-msgid "Switzerland"
-msgstr "නෙදර්ලන්තය"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr ""
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr ""
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3991,36 +3917,11 @@ msgstr ""
 msgid "Tai (Other)"
 msgstr ""
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr ""
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr ""
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr ""
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr ""
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4031,6 +3932,11 @@ msgstr ""
 msgid "Telugu"
 msgstr ""
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4041,32 +3947,19 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr ""
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-#, fuzzy
-msgid "Thailand"
-msgstr "පින්ලන්තය"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
 msgstr ""
 
 #. language code: tib bod bo
@@ -4084,45 +3977,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4135,15 +4007,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4151,672 +4017,806 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr ""
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr ""
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr ""
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+#, fuzzy
+msgid "Turkmen"
+msgstr "තුර්කිය"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr ""
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr ""
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "තුර්කිය"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 #, fuzzy
 msgid "Turkish"
 msgstr "තුර්කිය"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr ""
+
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr ""
+
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr ""
+
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr ""
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr ""
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
 #, fuzzy
-msgid "Turkmen"
-msgstr "තà·\94රà·\8aà¶\9aà·\92ය"
+msgid "Ukrainian"
+msgstr "යà·\94à¶\9aà·\8aරà·\9aනය"
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
 msgstr ""
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
 msgstr ""
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr ""
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr ""
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr ""
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
 msgstr ""
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
 msgstr ""
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
 msgstr ""
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "යුක්රේනය"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr ""
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-#, fuzzy
-msgid "Ukrainian"
-msgstr "යුක්රේනය"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr ""
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
 msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "එක්සත් රාජධානිය"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
 msgstr ""
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
+
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid "Signature file %s not found"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
 msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
 msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Couldn't open file: %s."
+
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:31
+#, fuzzy, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "deinstallation of %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Couldn't open file: %s."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep obsolete %s"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#, fuzzy
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Failed to parse: %s."
 
 #, fuzzy
 #~ msgid "Can't open solv-file: "
 #~ msgstr "Couldn't open file: %s."
-
-#, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Failed to parse: %s."
index 9c88840..2eef15f 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -7,31 +7,104 @@ msgstr ""
 "Project-Id-Version: libzypp\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-17 09:31+0100\n"
+"PO-Revision-Date: 2016-05-19 17:32+0000\n"
 "Last-Translator: Ferdinand Galko <galko.ferdinand@gmail.com>\n"
-"Language-Team: Slovak <opensuse-translation-sk@opensuse.org>\n"
+"Language-Team: Slovak <http://l10n.opensuse.org/projects/libzypp/master/sk/>"
+"\n"
 "Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Weblate 2.5\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"neinštalovateľní poskytovatelia:"
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Výnimka Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Neplatný query string v URL pre LDAP"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" problém s certifikátom SSL, skontrolujte či certifikát CA je v poriadku pre "
-"'%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Neplatný parameter dopytu LDAP URL '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Daný URL objekt nie je možne klonovať"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Neplatný odkaz na prázdny URL objekt"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Nie je možné prečítať zložky URL"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Nemôžem inicializovať mutex atribúty"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Nemôžem nastaviť rekurzívny mutex"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Nemôžem inicializovať rekurzívny mutex"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Nepodarilo sa získať mutex zámok"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Nemôžem uvoľniť mutex zámok"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Poskytuje"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Predpokladá"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Vyžaduje"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Je v konflikte"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Zastarané"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Odporúča"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Navrhuje"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Zlepšuje"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Doplnky"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Pochybný typ '%s' pre %u bajtový kontrolný súčet '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -41,10 +114,6 @@ msgstr " spustený"
 msgid " execution failed"
 msgstr " spustenie zlyhalo"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " spustenie odložené kvôli prerušeniu programu"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -53,130 +122,1803 @@ msgstr " spustenie odložené kvôli prerušeniu programu"
 msgid "%s already executed as %s)"
 msgstr "%s už spustený ako %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s je v konflikte s %s poskytovaným %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " spustenie odložené kvôli prerušeniu programu"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s nepatrí do repozitára distupgrade"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Chyba zasielania oznámenia o aktualizačnej správe."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s má podriadenú architektúru"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Nová správa aktualizácie"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s nie je inštalovateľný"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Inštalácia bola podľa príkazu zrušená."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s je poskytovaný systémom a nemôže byť vymazaný"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "Prepáčte, ale táto verzia libzypp bola zostavená bez podpory HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s zastarané %s poskytované %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext nie je pripojený"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s vyžaduje %s, ale táto požiadavka nemôže byť splnená"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "Jednotka HalDrive nie je inicializovaná"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(VYPRŠANÉ)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "Jednotka HalVolume nie je inicializovaná"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(nevyprší)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Nie je možné vytvoriť spojenie pomocou dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(vyprší za %d deň)"
-msgstr[1] "(vyprší za %d dni)"
-msgstr[2] "(vyprší za %d dní)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Nie je možné vytvoriť libhal context"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(vyprší do 24h)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: Nie je možné nastaviť spojenie s dbus"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhazian"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Nie je možné inicializovať HAL kontext -- je spustený hald?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achinese"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Nie je CDROM mechanika"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM zlyhalo: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Nepodarilo sa importovať verejný kľúč zo súboru %s: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Pridávam repozitár '%s'"
+msgid "Failed to remove public key %s: %s"
+msgstr "Nepodarilo zmazať verejný kľúč %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Je potrebná ďalšia Zákaznícka Zmluva"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Zmenené konfiguračné súbory pre '%s':"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "Ďalší výstup z rpm"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "Balík rpm uložil %s ako %s, ale nebolo možné určiť rozdiel"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adyghe"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"Balík rpm uložil %s ako %s.\n"
+"Tu je prvých 25 riadkov rozdielov:\n"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "Balík rpm vytvoril %s as %s, ale nebolo možné určiť rozdiel"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"Balík rpm vytvoril %s as %s.\n"
+"Tu je prvých 25 riadkov rozdielov:\n"
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "Ďalší výstup z rpm"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "Bola vytvorená záloha %s"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "Podpis je v poriadku"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Neznámy typ podpisu"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "Podpis neoveruje"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "Podpis je v poriadku, ale kľúč nie je dôveryhodný"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "Verejný kľúč podpisov nie je k dispozícii"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "Súbor neexistuje alebo podpis nie je možné overiť"
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Budú vykonané nasledovné akcie:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "Nie je možné čítať adresár repozitára '%1%': Prístup zamietnutý"
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Zlyhalo čítanie adresára '%s'"
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "Nie je možné čítať súbor repozitára '%1%': Prístup zamietnutý"
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Alias repozitára nemôže začínať bodkou."
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Alias služby nemôže začínať bodkou."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Nemôžem otvoriť súbor '%s' pre zápis."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr "Neznámá služba '%1%': Odstraňovanie osirelého repozitára služby '%2%'"
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Na stanovenej adrese URL sa nenašli platné metadáta"
+msgstr[1] "Na stanovených adresách URL sa nenašli platné metadáta"
+msgstr[2] "Na stanovených adresách URL sa nenašli platné metadáta"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Nie je možné vytvoriť %s"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Nie je možné vytvoriť adresár vyrovnávacej pamäte metadát."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Vytváram vyrovnávaciu pamäť repozitára '%s'"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+"Nie je možné vytvoriť vyrovnávaciu pamäť v %s - žiadne práva na zapisovanie."
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Zlyhalo ukladanie do vyrovnávacej pamäti pre repozitár (%d)."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Nepodporovaný typ repozitára"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Chyba pri čítaní z '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Neznáma chyba čítania z '%s'"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Pridávam repozitár '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Neplatný názov súboru repozitára v '%s'"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Odstraňujem repozitár '%s'"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Nie je možné prísť na to, kde je uložený repozitár."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Nie je možné vymazať '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Nie je možné prísť na to, kde je uložená služba."
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Zadaná URL schéma nepovoľuje %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "%s obsahuje neplatnú položku '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "%s obsahuje neplatnú položku"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Query string nie je pre túto URL povolený"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Schéma URL je povinná"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Neplatný názov URL schémy: '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Daná URL schéma nepovoľuje meno používateľa"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Daná URL schéma nepovoľuje heslo"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Daná URL schéma vyžaduje názov hostiteľského počítača (host component)"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
+"Daná URL schéma nepovoľuje názov hostiteľského počítača (host component)"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Neplatný názov počítača '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Daná URL schéma nepovoľuje port"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Neplatný port '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Daná URL schéma vyžaduje zadanú cestu"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Relatívna cesta nie je povolená v prípade, že je zadaná autorita"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Zakódovaný reťazec obsahuje NUL bajt"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Neplatný oddeľovací znak pre pole parametrov"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Neplatný oddeľovací znak pre mapu parametrov"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Neplatný oddeľovací znak pre spájanie poľa parametrov"
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Nie je možné otvoriť pty (%s)."
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Nie je možné otvoriť rúru (%s)."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Nemôžem spraviť chroot do '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "Nie je možné vykonať chdir pre '%s' vo vnútri chroot '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Nie je možné vykonať chroot pre '%s' (%s)."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Nemôžem spustiť '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Nemôžem spraviť rozdelenie programu (%s)."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Stav príkazu po skončení je %d."
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Príkaz bol zabitý signálom %d (%s)."
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Príkaz skončil s neznámou chybou."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(nevyprší)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(VYPRŠANÉ)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(vyprší do 24h)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(vyprší za %d deň)"
+msgstr[1] "(vyprší za %d dni)"
+msgstr[2] "(vyprší za %d dní)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "neznámy"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "nepodporovaný"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Úroveň 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Úroveň 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Úroveň 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Je potrebná ďalšia Zákaznícka Zmluva"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "chybný"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Úroveň podpory nie je určená"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Dodávateľ neposkytuje podporu."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Určenie problému, teda technická podpora zameraná na poskytovanie informácií "
+"o kompatibilite, pomoc pri inštalácii, pomoc pri používaní, nepretržitú "
+"údržbu a základnú pomoc pri riešení problémov. Podpora Úrovne 1 nie je "
+"určená na opravu chýb produktu."
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Izolácia problému, teda technická podpora zameraná na reprodukovanie "
+"problémov zákazníka, vymedzenie problémovej oblasti a poskytovanie riešenia "
+"problémov nevyriešených Podporou Úrovne 1."
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Riešenie problému, teda technická podpora zameraná na riešenie zložitých "
+"problémov za pomoci odborníkov pri riešení chýb produktu, ktoré boli "
+"identifikované Podporou Úrovne 2."
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "Pre poskytovanie podpory je potrebná ďalšia zákaznícka zmluva."
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Neznáma voľba podpory. Popis nie je k dispozícii"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Neznáma krajina: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Žiadny kód"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Spojené Arabské Emiráty"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistan"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua a Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albánsko"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Arménsko"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Holandské Antily"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktída"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentína"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Americká Samoa"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Rakúsko"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Austrália"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Alandské ostrovy"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbajdžan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosna a Hercegovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladéš"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgicko"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulharsko"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrajn"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermudy"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolívia"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brazílsky"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamy"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhután"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvetov ostrov"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Bielorusko"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Kokosové (Keeling) ostrovy"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Stredoafrická Republika"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Švajčiarsko"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Pobrežie slonoviny"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cookove ostrovy"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Čile"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Čína"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolumbia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Kostarika"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Kapverdy"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Vianočne ostrovy"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Cyprus"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Česká Republika"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Nemecko"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Džibuti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Dánsko"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominika"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikánska Republika"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Alžírsko"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ekvádor"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estónsko"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egypt"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Západná Sahara"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Španielsko"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiópia"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Fínsko"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidži"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falklandské ostrovy (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Federácia Mikronézskych štátov"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Faerské ostrovy"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Francúzsko"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Metropolitné Francúzsko"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Spojené kráľovstvo"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Granada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Gruzínsko"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Francúzska Guana"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltár"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grónsko"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Rovníková Guinea"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grécko"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Južná Georgia a Južné Sandwichove ostrovy"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hongkong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heardov ostrov a Macdonaldové ostrovy"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Chorvátsko"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Maďarsko"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonézia"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Írsko"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Izrael"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Ostrov Man"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Britská oblasť Indického oceánu"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Irak"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Island"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Taliansko"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamajka"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordánsko"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japonsko"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Keňa"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgizsko"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodža"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Komory"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Svätý Kitts a Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Severná Kórea"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Južná Kórea"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuvajt"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Kaimanské ostrovy"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazachstan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Ľudová Demokratická Republika Laos"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Svätá Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Lichtenštajnsko"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Srí Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Libéria"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litva"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxembursko"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Lotyšsko"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libéria"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Maroko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monako"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldavsko"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Čierna hora"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Svätý Martin"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshallove ostrovy"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedónsko"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Mjanmarsko"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolsko"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Makao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Severné ostrovy Mariana"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinik"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritánia"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Maurícius"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Mali"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexiko"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malajzia"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambik"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namíbia"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nová Kaledónia"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolské ostrovy"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigéria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nikaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Holandsko"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Nórsko"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepál"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nový Zéland"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Omán"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Francúzska Polynézia"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Nová Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipíny"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Poľsko"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Svätý Pierre a Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairnove ostrovy"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Portoriko"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestínske teritórium"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugalsko"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguaj"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Katar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Réunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Rumunsko"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Srbsko"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Ruská Federácia"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudská Arábia"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Solomon ostrovy"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychely"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudán"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Švédsko"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Svätá Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovinsko"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard a Jan Mayen ostrovy"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovensko"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Maríno"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somálsko"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome a Principe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "Salvádor"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Surinam"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swazijsko"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Ostrovy Turks a Caicos"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Čad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Južné Francúzske teritóriá"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thajsko"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadžikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkménsko"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisko"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Východný Timor"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turecko"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad a Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Tajwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzánia"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukrajina"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Spojené Štáty Minor Outlying ostrovy"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Spojené Štáty"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguaj"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Mestský Štát Vatikán"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Svätý Vincent a Grenadíny"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Britské Panenské ostrovy"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Panenské ostrovy, U.S."
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis a Futuna ostrovy"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistan"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Južná Afrika"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Neznámy jazyk: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afarčina"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abcházčina"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Acehčina"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Ačoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adygčina"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-Ázijský (ostatné)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
 msgid "Afrihili"
-msgstr "Afrihili"
+msgstr "Afrihikli"
 
 #. language code: afr af
 #: zypp/LanguageCode.cc:177
 msgid "Afrikaans"
 msgstr "Afrikánsky"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-Ázijský (ostatné)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -190,17 +1932,7 @@ msgstr "Akan"
 #. language code: akk
 #: zypp/LanguageCode.cc:183
 msgid "Akkadian"
-msgstr "Akkadian"
-
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Alandské ostrovy"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albánsko"
+msgstr "Akkadčina"
 
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
@@ -212,58 +1944,25 @@ msgstr "Albánsky"
 msgid "Aleut"
 msgstr "Aleuty"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Alžírsko"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "Algonkské jazyky"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaic (Other)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Americká Samoa"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Južný Altai"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "Amharic"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Pre poskytovanie podpory je potrebná ďalšia zákaznícka zmluva."
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktída"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua a Barbuda"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Staroanglický (r. 450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -275,55 +1974,40 @@ msgstr "Apačské jazyky"
 msgid "Arabic"
 msgstr "Arabský"
 
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Aramejčina"
+
 #. language code: arg an
 #: zypp/LanguageCode.cc:205
 msgid "Aragonese"
 msgstr "Aragonese"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Aramaic"
-
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Arménsky"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
-msgstr "Araucanian"
-
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentína"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Arménsko"
+msgstr "Araukánčina"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Arménsky"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "Umelý (ostatné)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawačtina"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -338,34 +2022,13 @@ msgstr "Rakúsky"
 #. language code: ath
 #: zypp/LanguageCode.cc:223
 msgid "Athapascan Languages"
-msgstr "Athapascan Languages"
-
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Austrália"
+msgstr "Athabaské jazyky"
 
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "Austrálske jazyky"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Rakúsko"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronézsky (ostatné)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "'%s' vyžaduje autentifikáciu"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -374,7 +2037,7 @@ msgstr "Avarský"
 #. language code: ave ae
 #: zypp/LanguageCode.cc:229
 msgid "Avestan"
-msgstr "Avestan"
+msgstr "Avestský jazyk"
 
 #. language code: awa
 #: zypp/LanguageCode.cc:231
@@ -384,127 +2047,68 @@ msgstr "Awadhi"
 #. language code: aym ay
 #: zypp/LanguageCode.cc:233
 msgid "Aymara"
-msgstr "Aymara"
-
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbajdžan"
+msgstr "Aymarčina"
 
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Ázerbajdžánsky"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Nesprávne meno súboru: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Nesprávny prípojný bod média"
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamy"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrajn"
-
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinese"
-
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltický (ostatné)"
-
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Baluchi"
-
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Bambara"
-
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Bamileke Languages"
-
 #. language code: bad
 #: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladéš"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (ostatné)"
-
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
-
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Basa"
+msgid "Banda"
+msgstr "Banda"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Bamileke"
 
 #. language code: bak ba
 #: zypp/LanguageCode.cc:241
 msgid "Bashkir"
 msgstr "Bashkir"
 
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Balúdžtina"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Bambara"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balijčina"
+
 #. language code: baq eus eu
 #: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 msgid "Basque"
 msgstr "Baskitský"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "(Batak) Indonézia"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Basa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltický (ostatné)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
-msgstr "Beja"
-
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Bielorusko"
+msgstr "Bedža"
 
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "Bieloruský"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgicko"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -515,311 +2119,100 @@ msgstr "Bemba"
 msgid "Bengali"
 msgstr "Bengálsky"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "Berber (ostatné)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermudy"
-
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Bhojpuri"
-
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
-
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihari"
-
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikol"
-
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Bini"
-
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
-
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolívia"
-
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosna a Hercegovina"
-
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosniansky"
-
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvet Island"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Braj"
-
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brazílsky"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretónsky"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Britská oblasť Indického oceánu"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Britské Panenské ostrovy"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Buginese"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Vytváram vyrovnávaciu pamäť repozitára '%s'"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulharsko"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulharský"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buriat"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Burmese"
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Caddo"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodža"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Nepodarilo sa vytvoriť sat-pole."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Nepodarilo sa získať mutex zámok"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Nie je možné vykonať chroot pre '%s' (%s)."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "Nie je možné vykonať chdir pre '%s' vo vnútri chroot '%s' (%s)."
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Nemôžem spraviť chroot do '%s' (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Nie je možné vytvoriť %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-"Nie je možné vytvoriť vyrovnávaciu pamäť v %s - žiadne práva na zapisovanie."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Nie je možné vytvoriť adresár vyrovnávacej pamäte metadát."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Nie je možné vymazať '%s'"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Nemôžem spustiť '%s' (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Nie je možné prísť na to, kde je uložený repozitár."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Nie je možné prísť na to, kde je uložená služba."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Nemôžem spraviť rozdelenie programu (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Nemôžem inicializovať mutex atribúty"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Bhódžpurčina"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Nemôžem inicializovať rekurzívny mutex"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Biharčina"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Nemôžem otvoriť súbor '%s' pre zápis."
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikolčina"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Nemôžem otvoriť súbor so zámkom: %s."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Bini"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Nemôžem otvoriť rúru (%s)"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Nemôžem otvoriť pty (%s)"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Nemôžem poskytnúť súbor '%s' z repozitára '%s'"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (ostatné)"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Nemôžem uvoľniť mutex zámok"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosniansky"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Nemôžem nastaviť rekurzívny mutex"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Bradžčina"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretónsky"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Nemôžem vysunúť žiadne médium"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "(Batak) Indonézia"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Nemôžem vysunúť médium '%s'"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buriatčina"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Neviem nájsť dostupné loop zariadenie na pripojenie súboru '%s' s obrazom."
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Buginčina"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "Nie je možné čítať adresár repozitára '%1%': Prístup zamietnutý"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulharský"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "Nie je možné čítať súbor repozitára '%1%': Prístup zamietnutý"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Burmese"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Nemôžem zapísať súbor '%s'."
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Cape Verde"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Kaddo"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Stredoamerický Indiánsky (ostatné)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -836,186 +2229,95 @@ msgstr "Katalánsky"
 msgid "Caucasian (Other)"
 msgstr "Kaukazský (ostatné)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Kaimanské ostrovy"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
-msgstr "Cebuano"
+msgstr "Cebuánčina"
 
 #. language code: cel
 #: zypp/LanguageCode.cc:313
 msgid "Celtic (Other)"
 msgstr "Keltský (ostatné)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Stredoafrická Republika"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Stredoamerický Indiánsky (ostatné)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Čad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Čagatajský"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Chamic Languages"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Zmenené konfiguračné súbory pre '%s':"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Čečenský"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Čerokézčina"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Čejenský"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Čibský"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Čečenský"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Čína"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Čagatajský"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Čínsky"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "Chinook Jargon"
-
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Čipeva"
-
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "Choctaw"
-
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Vianočne ostrovy"
-
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "Cirkevný slovanský"
-
 #. language code: chk
 #: zypp/LanguageCode.cc:327
 msgid "Chuukese"
 msgstr "Čukský"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Chuvash"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Classical Newari"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokosové (Keeling) ostrovy"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolumbia"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Maríjčina"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Stav príkazu po skončení je %d."
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "Činucký žargón"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Príkaz skončil s neznámou chybou."
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "Choctaw"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Príkaz bol zabitý signálom %d (%s)."
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Čipeva"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comoros"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Čerokézčina"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Je v konflikte"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Cirkevný slovanský"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Čuvaština"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cookove ostrovy"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Čejenský"
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Čamaské jazyky"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
 msgid "Coptic"
-msgstr "Coptic"
+msgstr "Koptčina"
 
 #. language code: cor kw
 #: zypp/LanguageCode.cc:349
@@ -1027,31 +2329,6 @@ msgstr "Cornish"
 msgid "Corsican"
 msgstr "Korzický"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Kostarika"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Pobrežie slonoviny"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Creoles a Pidgins (ostatné)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1067,46 +2344,36 @@ msgstr "Creoles a Pidgins, francúzske (ostatné)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Creoles a Pidgins, Portugalské (ostatné)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Krimský tatársky"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Chorvátsko"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Chorvátsky"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Creoles a Pidgins (ostatné)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kašubský"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Cushitic (ostatné)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Cyprus"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Český"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Česká Republika"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1120,22 +2387,27 @@ msgstr "Dánsky"
 #. language code: dar
 #: zypp/LanguageCode.cc:377
 msgid "Dargwa"
-msgstr "Dargwa"
+msgstr "Darginčina"
 
 #. language code: day
 #: zypp/LanguageCode.cc:379
 msgid "Dayak"
-msgstr "Dayak"
+msgstr "Dajačtina"
 
 #. language code: del
 #: zypp/LanguageCode.cc:381
 msgid "Delaware"
 msgstr "Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Dánsko"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slave"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1147,104 +2419,51 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Divehi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Džibuti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominika"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikánska Republika"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Chyba sťahovania (curl) pre '%s':\n"
-"Kód chyby: %s\n"
-"Chybová správa: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Zlyhala inicializácia sťahovania (curl) pre '%s'"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Dravidian (ostatné)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Dolná lužická srbčina"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Pochybný typ '%s' pre %u bajtový kontrolný súčet '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Holandský, stredoveký (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Holandský"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Holandský, stredoveký (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
-msgstr "Dyula"
+msgstr "Djula"
 
 #. language code: dzo dz
 #: zypp/LanguageCode.cc:407
 msgid "Dzongkha"
 msgstr "Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Východný Timor"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ekvádor"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egypt"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1253,112 +2472,33 @@ msgstr "Egyptský (starobylý)"
 #. language code: eka
 #: zypp/LanguageCode.cc:413
 msgid "Ekajuk"
-msgstr "Ekajuk"
-
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
+msgstr "Ekadžuk"
 
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
-msgstr "Elamite"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Prázdny cieľ v URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Prázdny súborový systém v URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Prázdny názov hostiteľa v URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Zakódovaný reťazec obsahuje NUL bajt"
+msgstr "Elamčina"
 
 #. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Anglický"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Anglický stredoveký (1100-1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Staroanglický (r. 450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Zlepšuje"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Equatorial Guinea"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"Vyskytla sa chyba počas nastavovania možností sťahovania (curl) pre '%s':"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Chyba zasielania oznámenia o aktualizačnej správe."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Chyba pri čítaní z '%s'"
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Anglický"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Anglický stredoveký (1100-1500)"
 
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estónsko"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estónsky"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiópia"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1369,255 +2509,30 @@ msgstr "Ewe"
 msgid "Ewondo"
 msgstr "Ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Zlyhalo ukladanie do vyrovnávacej pamäti pre repozitár (%d)."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Nepodarilo zmazať kľúč."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Nepodarilo sa importovať verejný kľúč zo súboru %s: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Nepodarilo sa pripojiť %s na %s."
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Zlyhalo poskytnutie Balíka %s. Chcete sa pokúsiť o znovuzískanie?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Zlyhalo čítanie adresára '%s'"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Nepodarilo zmazať verejný kľúč %s: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Nepodarilo sa odpojiť %s."
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandské ostrovy (Malvinas)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Fang"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Faerské ostrovy"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "Faroese"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Federácia Mikronézskych štátov"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidži"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "Fidžský"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Súbor %1%\n"
-"  inštalovaný z\n"
-"     %2%\n"
-"  je v konflikte so súborom\n"
-"     %3%\n"
-"  inštalovaným z\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Súbor %1%\n"
-"  inštalovaný z\n"
-"     %2%\n"
-"  je v konflikte so súborom\n"
-"     %3%\n"
-"  z balíka\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Súbor %1%\n"
-"  inštalovaný z\n"
-"     %2%\n"
-"  je v konflikte so súborom inštalovaným z\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Súbor %1%\n"
-"  inštalovaný z\n"
-"     %2%\n"
-"  je v konflikte so súborom z balíka\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Súbor %1%\n"
-"  z balíka\n"
-"     %2%\n"
-"  je v konflikte so súborom\n"
-"     %3%\n"
-"  inštalovaným z\n"
-"     %4%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Súbor %1%\n"
-"  z balíka\n"
-"     %2%\n"
-"  je v konflikte so súborom\n"
-"     %3%\n"
-"  z balíka\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Súbor %1%\n"
-"  z balíka\n"
-"     %2%\n"
-"  je v konflikte so súborom inštalovaným z\n"
-"     %3%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Súbor %1%\n"
-"  z balíka\n"
-"     %2%\n"
-"  je v konflikte so súborom z balíka\n"
-"     %3%"
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Súbor '%s' nebol nájdený na médiu '%s'"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "Súbor neexistuje alebo podpis nie je možné overiť"
-
-#. language code: fil
-#: zypp/LanguageCode.cc:437
-msgid "Filipino"
-msgstr "Filipínsky"
-
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Fínsko"
+#. language code: fil
+#: zypp/LanguageCode.cc:437
+msgid "Filipino"
+msgstr "Filipínsky"
 
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
@@ -1629,40 +2544,16 @@ msgstr "Fínsky"
 msgid "Finno-Ugrian (Other)"
 msgstr "Fínsko-uhorský (ostatné)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Budú vykonané nasledovné akcie:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
-msgstr "Fon"
-
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Francúzsko"
+msgstr "Fončina"
 
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Francúzsky"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Francúzska Guana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Francúzska Polynézia"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Južné Francúzske teritóriá"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1678,46 +2569,21 @@ msgstr "Francúzsky stredný (r. 1400-1600)"
 msgid "Frisian"
 msgstr "Frízsky"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Frízsky"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fulah"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Frízsky"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaelic"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galícijský"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1726,17 +2592,12 @@ msgstr "Gayo"
 #. language code: gba
 #: zypp/LanguageCode.cc:463
 msgid "Gbaya"
-msgstr "Gbaya"
-
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Geez"
+msgstr "Gbaja"
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Gruzínsko"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Nemecký (ostatné)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1748,6 +2609,36 @@ msgstr "Gruzínsky"
 msgid "German"
 msgstr "Nemecký"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Ge´ez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Kiribatčina"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaelic"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Írsky"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galícijský"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Mančina"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1758,30 +2649,6 @@ msgstr "Nemecký (r. 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Nemecký (r. 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Nemecký (ostatné)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Nemecko"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltár"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertese"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1802,11 +2669,6 @@ msgstr "Gotický"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grécko"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1817,61 +2679,16 @@ msgstr "Grécky starobylý (do r. 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Grécky moderný (od r. 1453)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grónsko"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Granada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1882,52 +2699,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitian"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Výnimka Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext nie je pripojený"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "Jednotka HalDrive nie je inicializovaná"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "Jednotka HalVolume nie je inicializovaná"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Máte zapnuté všetky požadované repozitáre?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Havajský"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heardov ostrov a Macdonaldové ostrovy"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1941,7 +2727,7 @@ msgstr "Herero"
 #. language code: hil
 #: zypp/LanguageCode.cc:523
 msgid "Hiligaynon"
-msgstr "Hiligaynon"
+msgstr "Hiligajnončina"
 
 #. language code: him
 #: zypp/LanguageCode.cc:525
@@ -1953,51 +2739,31 @@ msgstr "Himachálsky"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "História:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
-msgstr "Hittite"
+msgstr "Chetitčina"
 
 #. language code: hmn
 #: zypp/LanguageCode.cc:531
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Mestský Štát Vatikán"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hongkong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Hornosrbský"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Maďarský"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Maďarsko"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2008,10 +2774,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Island"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2021,252 +2787,107 @@ msgstr "Islandský"
 #. language code: ido io
 #: zypp/LanguageCode.cc:549
 msgid "Ido"
-msgstr "Ido"
-
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+msgstr "Ido"
+
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
-msgstr "Ijo"
+msgstr "Idžo"
+
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
 
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Inari Sami"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (International Auxiliary Language Association)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Indický (ostatné)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indoeurópsky (ostatné)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonézia"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonézsky"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indoeurópsky (ostatné)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
-msgstr "Ingush"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Inštalácia bola podľa príkazu zrušená."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (International Auxiliary Language Association)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
+msgstr "Inguština"
 
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Inupiaq"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "%s obsahuje neplatnú položku"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "%s obsahuje neplatnú položku '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Neplatný parameter dopytu LDAP URL '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Neplatný query string v URL pre LDAP"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Neplatný názov URL schémy: '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Neplatný odkaz na prázdny URL objekt"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Neplatný názov počítača '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Neplatný oddeľovací znak pre spájanie poľa parametrov"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Neplatný oddeľovací znak pre pole parametrov"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Neplatný oddeľovací znak pre mapu parametrov"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Neplatný port '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Neplatný regulárny výraz '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Neplatný regulárny výraz '%s': regcomp vrátil %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Neplatný názov súboru repozitára v '%s'"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Irak"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Iránsky (ostatné)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Írsko"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Írsky"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Írsky stredný (r. 900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Írsky starý (do r. 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Iroquoian Languages"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Ostrov Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Izrael"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Taliansky"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Taliansko"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamajka"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Jávsky"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japonsko"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japonský"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Jávsky"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordánsko"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Židovsko-Perzský"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Židovsko-Arabský"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Židovsko-Perzský"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2283,11 +2904,6 @@ msgstr "Kachin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmyk"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2298,21 +2914,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karachay-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2323,10 +2924,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kašmírsky"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kašubský"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2335,34 +2936,29 @@ msgstr "Kawi"
 
 #. language code: kaz kk
 #: zypp/LanguageCode.cc:609
-msgid "Kazakh"
-msgstr "Kazašský"
-
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazachstan"
+msgid "Kazakh"
+msgstr "Kazašský"
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Keňa"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardian"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Khoisan (Other)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2373,11 +2969,6 @@ msgstr "Khotanese"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2388,15 +2979,15 @@ msgstr "Kinyarwanda"
 msgid "Kirghiz"
 msgstr "Kirgizský"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingónsky"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2408,11 +2999,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Konžský"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2428,11 +3014,21 @@ msgstr "Kosraean"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karachay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2448,26 +3044,11 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Kurdský"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuvajt"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kyrgyzstan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2488,68 +3069,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Ľudová Demokratická Republika Laos"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latinský"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Lotyšsko"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Lotyšský"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Úroveň 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Úroveň 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Úroveň 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezghian"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libéria"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Lichtenštajnsko"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2560,61 +3094,46 @@ msgstr "Limburgan"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litva"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Litovský"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Umiestnenie '%s' je dočasne nedostupné."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Dolnonemčina"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Lower Sorbian"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburský"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lule Sami"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2630,35 +3149,11 @@ msgstr "Luo (Keňa a Tanzánia)"
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxembursko"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburský"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Makao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedónsko"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Macedónsky"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2669,6 +3164,11 @@ msgstr "Madurese"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshallove ostrovy"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2676,181 +3176,63 @@ msgstr "Maithili"
 
 #. language code: mak
 #: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr "Makasar"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malagasy"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malajský"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "Malayalam"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malajzia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Mali"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Chybné URI"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltézsky"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchu"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
+msgid "Makasar"
+msgstr "Makasar"
+
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "Malayalam"
 
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Manobo Languages"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronézsky (ostatné)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshallove ostrovy"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshallove ostrovy"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinik"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritania"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Maurícius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Májske jazyky"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "Zdroj média '%s' neobsahuje požadované médium"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Médium '%s' už používa iná inštancia"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malajský"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Médium nie je pripojené"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Médium sa neotvorilo pri pokuse vykonať '%s'."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Metropolitné Francúzsko"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexiko"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Írsky stredný (r. 900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2862,86 +3244,61 @@ msgstr "Mi'kmaq"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandese"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Rôzne jazyky"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Khmer (ostatné)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malagasy"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltézsky"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manchu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Manobo Languages"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldavský"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldavsko"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Khmer (ostatné)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monako"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolsko"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongolský"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Čierna hora"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Maroko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambik"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2952,210 +3309,141 @@ msgstr "Viaceré jazyky"
 msgid "Munda languages"
 msgstr "Munda languages"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandese"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Májske jazyky"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namíbia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Severoamerický Indiánsky"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Neapolitan"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele, North"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele, South"
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
-msgstr "Ndonga"
-
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Neapolitan"
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele, North"
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
+msgstr "Ndonga"
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepál Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Dolnonemčina"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepálsky"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Holandsko"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Holandské Antily"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nová Kaledónia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nový Zéland"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Nová správa aktualizácie"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepál Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nikaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Nigérisjko-Kordofanský (ostatné)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigéria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nílsko-Saharský"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niuean"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Žiadny kód"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Nórsky Nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Pre tento repozitár nie je definovaná žiadna URL adresa."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Nórsky Bokmal"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolské ostrovy"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Norse, starý"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Severoamerický Indiánsky"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Severná Kórea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Severné ostrovy Mariana"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Severné Sami"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Severné Sotho"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Nórsko"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Nórsky"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Nórsky Bokmal"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Nórsky Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Dané zariadenie nie je CDROM mechanika."
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Severné Sotho"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Nubian Languages"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Classical Newari"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3176,10 +3464,6 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Zastarané"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3190,20 +3474,6 @@ msgstr "Occitan (post 1500)"
 msgid "Ojibwa"
 msgstr "Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Omán"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Jeden alebo oba z atribútov '%s' alebo '%s' sú vyžadované."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Operácie nie je médiom podporovaná"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3224,164 +3494,85 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Ossetian"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turecký, Ottoman (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Otomian Languages"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Balík %s sa počas sťahovania pravdepodobne poškodil. Chcete sa znova pokúsiť "
-"o jeho stiahnutie?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papujský (ostatné)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangasinan"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauan"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestínske teritórium"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "Pampanga"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangasinan"
-
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "Panjabi"
-
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "Papiamento"
-
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua Nová Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papujský (ostatné)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguaj"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Cesta '%s' na médiu '%s' nie je adresárom."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Cesta '%s' na médiu '%s' nie je súborom."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Zamietnutý prístup na '%s'."
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "Panjabi"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Perzský"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "Papiamento"
+
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauan"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Perzský starý (r. 600-400 p.n.l.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Perzský"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Filipíny (ostatné)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipíny"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Phoenician"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Prosím, najskôr nainštalujte balík 'lsof'."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeian"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Poľsko"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Poľský"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugalsko"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeian"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3393,87 +3584,21 @@ msgstr "Portugalský"
 msgid "Prakrit Languages"
 msgstr "Prakrit Languages"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Predpokladá"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Určenie problému, teda technická podpora zameraná na poskytovanie informácií "
-"o kompatibilite, pomoc pri inštalácii, pomoc pri používaní, nepretržitú "
-"údržbu a základnú pomoc pri riešení problémov. Podpora Úrovne 1 nie je "
-"určená na opravu chýb produktu."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Izolácia problému, teda technická podpora zameraná na reprodukovanie "
-"problémov zákazníka, vymedzenie problémovej oblasti a poskytovanie riešenia "
-"problémov nevyriešených Podporou Úrovne 1."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Riešenie problému, teda technická podpora zameraná na riešenie zložitých "
-"problémov za pomoci odborníkov pri riešení chýb produktu, ktoré boli "
-"identifikované Podporou Úrovne 2."
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Provensálsky, starý (do 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Poskytuje"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Portoriko"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pushto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Katar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Query string nie je pre túto URL povolený"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM zlyhalo:"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Raeto-Romance"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3489,57 +3614,26 @@ msgstr "Rapanui"
 msgid "Rarotongan"
 msgstr "Rarotongan"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Odporúča"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Relatívna cesta nie je povolená v prípade, že je zadaná autorita"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Odstraňujem repozitár '%s'"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Alias repozitára nemôže začínať bodkou."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Chýba vyžadovaný atribút '%s' ."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Vyžaduje"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Romance (ostatné)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Rumunsko"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumunský"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Raeto-Romance"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Romany"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumunský"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3550,119 +3644,71 @@ msgstr "Rundi"
 msgid "Russian"
 msgstr "Ruský"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Ruská Federácia"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Svätá Helena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Svätý Kitts a Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Svätá Lucia"
-
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint Martin"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Svätý Pierre a Miquelon"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Svätý Vincent a Grenadíny"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Salishan Languages"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Samaritan Aramaic"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Samské jazyky (ostatné)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoan"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
 #. language code: sad
 #: zypp/LanguageCode.cc:905
 msgid "Sandawe"
 msgstr "Sandawe"
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sango"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango"
+
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Yakut"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Juhoamerický Indiánsky (ostatné)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Salishan Languages"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Samaritan Aramaic"
 
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskrt"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome a Principe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardínsky"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Srbský"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudská Arábia"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Sicílsky"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Scots"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Chorvátsky"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3673,142 +3719,40 @@ msgstr "Selkup"
 msgid "Semitic (Other)"
 msgstr "Semitský (ostatné)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Srbsko"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Srbský"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Alias služby nemôže začínať bodkou."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "Zásuvný modul služby nepodporuje zmenu atribútu."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Írsky starý (do r. 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelles"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Sign Languages"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Shan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Sicílsky"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Sign Languages"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "Podpis neoveruje"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Podpis súboru %s nebol nájdený."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "Podpis je v poriadku"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "Podpis je v poriadku, ale kľúč nie je dôveryhodný"
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "Overenie podpisu zlyhalo"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "Verejný kľúč podpisov nie je k dispozícii"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Sinhala"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-tibetský (ostatné)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Siouan Languages"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Skolt Sami"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-tibetský (ostatné)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3820,212 +3764,141 @@ msgstr "Slovanský (ostatné)"
 msgid "Slovak"
 msgstr "Slovenský"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovensko"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovinsko"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Slovinský"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "Sogdian"
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Solomon ostrovy"
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Somálsky"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Južné Sami"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somálsko"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Severné Sami"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "Songhai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Samské jazyky (ostatné)"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lule Sami"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Sorbian Languages"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Inari Sami"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Prepáčte, ale táto verzia libzypp bola zostavená bez podpory HAL."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoan"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "Sotho, Southern"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Skolt Sami"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Južná Afrika"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Juhoamerický Indiánsky (ostatné)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Južná Georgia a Južné Sandwichove ostrovy"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Južná Kórea"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "Sogdian"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Južný Altai"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Somálsky"
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Južné Sami"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "Songhai"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Španielsko"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "Sotho, Southern"
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Španielsky"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardínsky"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudán"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Navrhuje"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nílsko-Saharský"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumérsky"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sundánsky"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Doplnky"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard a Jan Mayen ostrovy"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumérsky"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Svahilský"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swati"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swazijsko"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Švédsko"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Švédsky"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Švajčiarsko"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Surinam"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Syriac"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Systémová výnimka '%s' na médiu '%s'."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Správa softvéru je uzamknutá inou aplikáciou s pid %d (%s).\n"
-"Ukončite najprv túto aplikáciu a skúste znova."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4036,36 +3909,11 @@ msgstr "Tahitský"
 msgid "Tai (Other)"
 msgstr "Tai (ostatné)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Tajwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tajik"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadžikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamashek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamilský"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzánia"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4076,6 +3924,11 @@ msgstr "Tatársky"
 msgid "Telugu"
 msgstr "Telugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4086,33 +3939,21 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tajik"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Thajský"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thajsko"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Úroveň podpory nie je určený."
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Dodávateľ neposkytuje podporu."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Táto akcia je už spustená iným programom."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Tento požiadavka poruší váš systém!"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4128,46 +3969,25 @@ msgstr "Tigre"
 msgid "Tigrinya"
 msgstr "Tigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Vypršal časový limit pri prístupe na '%s'."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingónsky"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4179,103 +3999,66 @@ msgstr "Tonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Tongské ostrovy)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Pokus o importovanie neexistujúceho kľúča %s do zväzku kľúčov %s"
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad a Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimshian"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkménsky"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisko"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Tupi Languages"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turecko"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turecký"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turecký, Ottoman (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkménsky"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Ostrovy Turks a Caicos"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaic (Other)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "Tuvinian"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Udmurt"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4286,11 +4069,6 @@ msgstr "Ugaritic"
 msgid "Uighur"
 msgstr "Uighur"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukrajina"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4301,212 +4079,36 @@ msgstr "Ukrajinský"
 msgid "Umbundu"
 msgstr "Umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Daný URL objekt nie je možne klonovať"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Nie je možné vytvoriť spojenie pomocou dbus"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Nie je možné inicializovať HAL context - overte či je spustený hald."
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Nie je možné prečítať zložky URL"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Neurčený"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Nepodporovaný typ repozitára"
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Spojené Arabské Emiráty"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Spojené kráľovstvo"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Spojené Štáty"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Spojené Štáty Minor Outlying ostrovy"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Neznáma krajina"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Neznáma chyba čítania z '%s'"
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Neznámy jazyk:"
-
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Neznámy režim zhody '%s'"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Neznámy režim zhody '%s' pre šablónu '%s'"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr "Neznámá služba '%1%': Odstraňovanie osirelého repozitára služby '%2%'"
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Neznámy typ podpory. Popis nie je k dispozícii."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Neznámy typ podpisu"
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "'%s' nie je podporovaná metóda autentifikácie"
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Nepodporovaná schéma URI v '%s'."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Hornosrbský"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "Urdu"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Zadaná URL schéma nepovoľuje %s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr ""
-"Daná URL schéma nepovoľuje názov hostiteľského počítača (host component)"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Daná URL schéma nepovoľuje heslo"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Daná URL schéma nepovoľuje port"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Daná URL schéma nepovoľuje meno používateľa"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Schéma URL je povinná"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Daná URL schéma vyžaduje názov hostiteľského počítača (host component)"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Daná URL schéma vyžaduje zadanú cestu"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguaj"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "Uzbecký"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "Vai"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "Na stanovenej adrese URL sa nenašli platné metadáta"
-msgstr[1] "Na stanovených adresách URL sa nenašli platné metadáta"
-msgstr[2] "Na stanovených adresách URL sa nenašli platné metadáta"
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "Venda"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "Vietnamský"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Panenské ostrovy, U.S."
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Navštívte Novell Customer Center, aby ste skontrolovali, či je vaša "
-"registrácia platná a ešte nevypršala."
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4527,16 +4129,6 @@ msgstr "Wakashan Languages"
 msgid "Walamo"
 msgstr "Walamo"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis a Futuna ostrovy"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Walloon"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4552,26 +4144,31 @@ msgstr "Washo"
 msgid "Welsh"
 msgstr "Welšský"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Západná Sahara"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Sorbian Languages"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Walloon"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "Wolof"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmyk"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "Xhosa"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Yakut"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4582,11 +4179,6 @@ msgstr "Yao"
 msgid "Yapese"
 msgstr "Yapese"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
-
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
 msgid "Yiddish"
@@ -4602,16 +4194,6 @@ msgstr "Yoruba"
 msgid "Yupik Languages"
 msgstr "Yupik Languages"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
-
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
-
 #. language code: zap
 #: zypp/LanguageCode.cc:1139
 msgid "Zapotec"
@@ -4622,244 +4204,664 @@ msgstr "Zapotec"
 msgid "Zenaga"
 msgstr "Zenaga"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Pokus o importovanie neexistujúceho kľúča %s do zväzku kľúčov %s"
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Nepodarilo zmazať kľúč."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Súbor podpisu %s nebol nájdený"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Nemôžem poskytnúť súbor '%s' z repozitára '%s'"
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Pre tento repozitár nie je definovaná žiadna URL adresa."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "Zásuvný modul služby nepodporuje zmenu atribútu."
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Balík %s sa počas sťahovania pravdepodobne poškodil. Chcete sa znova pokúsiť "
+"o jeho stiahnutie?"
+
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "Overenie podpisu zlyhalo"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Zlyhalo poskytnutie Balíka %s. Chcete sa pokúsiť o znovuzískanie?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "Kontrola aplikovania delta rpm zlyhala."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "Aplikovanie delta rpm zlyhalo."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"Správa softvéru je uzamknutá inou aplikáciou s pid %d (%s).\n"
+"Ukončite najprv túto aplikáciu a skúste znova."
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s nepatrí do repozitára distupgrade"
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s má podriadenú architektúru"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "Problém s nainštalovaným balíkom %s"
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "protichodné požiadavky"
+
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "problém so závislosťami"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "nič neposkytuje požadovaný %s"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Máte zapnuté všetky požadované repozitáre?"
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "balík %s neexistuje"
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "nepodporovaná požiadavka"
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s je poskytovaný systémom a nemôže byť vymazaný"
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s nie je inštalovateľný"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "nič neposkytuje %s, ktorý je vyžadovaný balíkom %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Nie je možné nainštalovať oboje %s a %s"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s je v konflikte s %s poskytovaným %s"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s zastarané %s poskytované %s"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "nainštalované %s zastarané %s poskytované %s"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "Riešenie %s je v konflikte s %s, ktorý je poskytnutý sám sebou"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s vyžaduje %s, ale táto požiadavka nemôže byť splnená"
+
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "zmazaný poskytovatelia: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"neinštalovateľní poskytovatelia:"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "neinštalovateľní poskytovatelia: "
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "odstrániť zámok pre umožnenie odstránenia %s"
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "neinštaluj %s"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "ponechať %s"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "odstrániť zámok pre umožnenie inštalácie %s"
+
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Tento požiadavka poruší váš systém!"
+
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ignorovať varovanie o porušení systému"
+
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "nepýtať sa či inštalovať riešenie, ktoré poskytuje %s"
+
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "nepýtaj sa či zmazať všetky riešenia poskytujúce %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "neinštalovať najnovšiu verziu %s"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "ponechať %s napriek podriadenej architektúre"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "nainštalovať %s napriek podriadenú architektúru"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "Kontrola aplikovania delta rpm zlyhala."
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "ponechať zastarané %s"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "Aplikovanie delta rpm zlyhalo."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "inštalovať %s z vylúčeného repozitára"
+
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "znížiť verziu z %s na %s"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr "zmena architektúry z %s na %s"
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"inštalovať %s (so zmenou dodávateľa)\n"
+"  %s -->  %s"
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "%s nahradiť %s"
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "odinštalovanie %s"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "porušiť %s ignorovaním niektorých závislostí"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "všeobecne ignorovať niektoré závislosti"
+
+#: zypp/parser/RepoindexFileReader.cc:197
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Nie je možné nainštalovať oboje %s a %s"
+msgid "Required attribute '%s' is missing."
+msgstr "Chýba vyžadovaný atribút '%s' ."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "protichodné požiadavky"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Jeden alebo oba z atribútov '%s' alebo '%s' sú vyžadované."
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/base/InterProcessMutex.cc:83
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "Bola vytvorená záloha %s"
+msgid "Can't open lock file: %s"
+msgstr "Nie je možné otvoriť súbor so zámkom: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Táto akcia je už spustená iným programom."
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "História:"
+
+#: zypp/base/StrMatcher.cc:152
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "odinštalovanie %s"
+msgid "Unknown match mode '%s'"
+msgstr "Neznámy režim zhody '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "zmazaný poskytovatelia:"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Neznámy režim zhody '%s' pre šablónu '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "nepýtaj sa či zmazať všetky riešenia poskytujúce %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Neplatný regulárny výraz '%s': regcomp vrátil %d"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "nepýtať sa či inštalovať riešenie, ktoré poskytuje %s"
+msgid "Invalid regular expression '%s'"
+msgstr "Neplatný regulárny výraz '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Prosím, najskôr nainštalujte balík 'lsof'."
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "neinštaluj %s"
+msgid "Authentication required for '%s'"
+msgstr "'%s' vyžaduje autentifikáciu"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "neinštalovať najnovšiu verziu %s"
+msgid "Failed to mount %s on %s"
+msgstr "Nepodarilo sa pripojiť %s na %s"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "znížiť verziu z %s na %s"
+msgid "Failed to unmount %s"
+msgstr "Nepodarilo sa odpojiť %s"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "všeobecne ignorovať niektoré závislosti"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Nesprávne meno súboru: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ignorovať varovanie o porušení systému"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Médium sa neotvorilo pri pokuse vykonať '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"inštalovať %s (so zmenou dodávateľa)\n"
-"  %s -->  %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Súbor '%s' nebol nájdený na médiu '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "nainštalovať %s napriek podriadenú architektúru"
+msgid "Cannot write file '%s'."
+msgstr "Nemôžem zapísať súbor '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Médium nie je pripojené"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Nesprávny prípojný bod média"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "inštalovať %s z vylúčeného repozitára"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Zlyhala inicializácia sťahovania (curl) pre '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "nainštalované %s zastarané %s poskytované %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "Systémová výnimka '%s' na médiu '%s'."
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "chybný"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Cesta '%s' na médiu '%s' nie je súborom."
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "ponechať %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Cesta '%s' na médiu '%s' nie je adresárom."
+
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Chybné URI"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Prázdny názov hostiteľa v URI"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Prázdny súborový systém v URI"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Prázdny cieľ v URI"
+
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Nepodporovaná schéma URI v '%s'."
+
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operácie nie je médiom podporovaná"
+
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Chyba sťahovania (curl) pre '%s':\n"
+"Kód chyby: %s\n"
+"Chybová správa: %s\n"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"Vyskytla sa chyba počas nastavovania možností sťahovania (curl) pre '%s':"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "ponechať %s napriek podriadenej architektúre"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Zdroj média '%s' neobsahuje požadované médium"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "ponechať zastarané %s"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Nie je možné vytvoriť libhal context"
-
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: Nie je možné nastaviť spojenie s dbus"
+msgid "Medium '%s' is in use by another instance"
+msgstr "Médium '%s' už používa iná inštancia"
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "nič neposkytuje %s, ktorý je vyžadovaný balíkom %s"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Nemôžem vysunúť žiadne médium"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "nič neposkytuje požadovaný %s"
+msgid "Cannot eject media '%s'"
+msgstr "Nemôžem vysunúť médium '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "balík %s neexistuje"
+msgid "Permission to access '%s' denied."
+msgstr "Zamietnutý prístup na '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "Problém s nainštalovaným balíkom %s"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Vypršal časový limit pri prístupe na '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "odstrániť zámok pre umožnenie inštalácie %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Umiestnenie '%s' je dočasne nedostupné."
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "odstrániť zámok pre umožnenie odstránenia %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" problém s certifikátom SSL, skontrolujte či certifikát CA je v poriadku pre "
+"'%s'."
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "%s nahradiť %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Nie je možné nájsť dostupné loop zariadenie na pripojenie súboru obrazu z "
+"'%s'"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "Balík rpm vytvoril %s as %s, ale nebolo možné určiť rozdiel"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "'%s' nie je podporovaná metóda autentifikácie"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
-"Balík rpm vytvoril %s as %s.\n"
-"Tu je prvých 25 riadkov rozdielov:\n"
+"Navštívte Novell Customer Center, aby ste skontrolovali, či je vaša "
+"registrácia platná a ešte nevypršala."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "Balík rpm uložil %s ako %s, ale nebolo možné určiť rozdiel"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Nepodarilo sa vytvoriť sat-pole."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"Balík rpm uložil %s ako %s.\n"
-"Tu je prvých 25 riadkov rozdielov:\n"
+"Súbor %1%\n"
+"  z balíka\n"
+"     %2%\n"
+"  je v konflikte so súborom z balíka\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "Riešenie %s je v konflikte s %s, ktorý je poskytnutý sám sebou"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Súbor %1%\n"
+"  z balíka\n"
+"     %2%\n"
+"  je v konflikte so súborom inštalovaným z\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "problém so závislosťami"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"Súbor %1%\n"
+"  inštalovaný z\n"
+"     %2%\n"
+"  je v konflikte so súborom z balíka\n"
+"     %3%"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "neinštalovateľní poskytovatelia: "
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Súbor %1%\n"
+"  inštalovaný z\n"
+"     %2%\n"
+"  je v konflikte so súborom inštalovaným z\n"
+"     %3%"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "neznámy"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Súbor %1%\n"
+"  z balíka\n"
+"     %2%\n"
+"  je v konflikte so súborom\n"
+"     %3%\n"
+"  z balíka\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "nepodporovaný"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Súbor %1%\n"
+"  z balíka\n"
+"     %2%\n"
+"  je v konflikte so súborom\n"
+"     %3%\n"
+"  inštalovaným z\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "nepodporovaná požiadavka"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Súbor %1%\n"
+"  inštalovaný z\n"
+"     %2%\n"
+"  je v konflikte so súborom\n"
+"     %3%\n"
+"  z balíka\n"
+"     %4%"
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Súbor %1%\n"
+"  inštalovaný z\n"
+"     %2%\n"
+"  je v konflikte so súborom\n"
+"     %3%\n"
+"  inštalovaným z\n"
+"     %4%"
index b143681..d4fc41e 100644 (file)
--- a/po/sl.po
+++ b/po/sl.po
@@ -18,16 +18,94 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+#, fuzzy
+msgid "Hal Exception"
+msgstr "Šifriranje"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr ""
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr ""
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr ""
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr ""
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Priskrbi"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Zahteva"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Konflikti"
+
+#: zypp/Dep.cc:100
+#, fuzzy
+msgid "Obsoletes"
+msgstr "Zbriši %1"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -40,10 +118,6 @@ msgstr ""
 msgid " execution failed"
 msgstr "Prilagoditev %s ni bila uspešna."
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -52,94 +126,119 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%1 je v sporu s/z %2"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "Zagonska arhitektura"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "Namestitev ni uspela."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "Ta paket ni nameščen in ne bo nameščen."
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/target/hal/HalContext.cc:117
+#, fuzzy
+msgid "HalContext not connected"
+msgstr "ni povezave"
+
+#: zypp/target/hal/HalContext.cc:127
+#, fuzzy
+msgid "HalDrive not initialized"
+msgstr "Ponovno pripravi"
+
+#: zypp/target/hal/HalContext.cc:137
+#, fuzzy
+msgid "HalVolume not initialized"
+msgstr "Ponovno pripravi"
+
+#: zypp/target/hal/HalContext.cc:229
+#, fuzzy
+msgid "Unable to create dbus connection"
+msgstr "povazava kanal-kanal"
+
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/target/hal/HalContext.cc:851
+#, fuzzy
+msgid "Not a CDROM drive"
+msgstr "Ni CD-ROM enot."
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abkhazijski"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-#, fuzzy
-msgid "Achinese"
-msgstr "Kitajščina"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, fuzzy, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Shrani nastavivene datoteke"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-#, fuzzy
-msgid "Acoli"
-msgstr "Tihi način"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-#, fuzzy
-msgid "Adangme"
-msgstr "Območje"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
 #. report additional rpm output in finish
@@ -149,557 +248,520 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "Dodatne nastavitve skupine"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr ""
-
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
-
-# AF
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistan"
-
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr ""
+#: zypp/target/rpm/RpmDb.cc:2344
+#, fuzzy, c-format, boost-format
+msgid "created backup %s"
+msgstr "Ne Kreiraj Varnostnih Kopij"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikanščina"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "KScreensaver-ja ni možno najti."
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-#, fuzzy
-msgid "Ainu"
-msgstr "Linux"
-
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
 #, fuzzy
-msgid "Akan"
-msgstr "Abkhazijski"
+msgid "Signature does not verify"
+msgstr "KScreensaver-ja ni možno najti."
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
 #, fuzzy
-msgid "Akkadian"
-msgstr "Abkhazijski"
+msgid "Signature is OK, but key is not trusted"
+msgstr "KScreensaver-ja ni možno najti."
 
-# KY
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Aland Islands"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albanija"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Albanščina"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-#, fuzzy
-msgid "Aleut"
-msgstr "Aleutian"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Alžirija"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Napaka pri nalaganju modula \"%s\"."
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-#, fuzzy
-msgid "Algonquian Languages"
-msgstr "Prilagoditev jezika..."
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
 msgstr ""
 
-# AS
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Ameriška Samoa"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amharic"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Datoteke ni mogoče odpreti za pisanje."
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
 msgstr ""
 
-# AD
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
 
-# AO
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Nameščam na:"
 
-# AI
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Angvila"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr ""
 
-# AQ
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktika"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
 
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigva in Barbuda"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-#, fuzzy
-msgid "Apache Languages"
-msgstr "Nastavi jezik"
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Neuspešen dostop do media za posodobitev gonilnika."
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Arabski"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-#, fuzzy
-msgid "Aragonese"
-msgstr "Faerščina"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-#, fuzzy
-msgid "Aramaic"
-msgstr "Arabski"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Napaka pri branju z disketne enote."
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-#, fuzzy
-msgid "Arapaho"
-msgstr "Grafi"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-#, fuzzy
-msgid "Araucanian"
-msgstr "Albanščina"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Nepravilno ime naprave."
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
 
-# AM
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenija"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Nameščam na:"
 
-# AM
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armenski"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-#, fuzzy
-msgid "Artificial (Other)"
-msgstr "CA certifikat"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
 
-# AW
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Assamski"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-#, fuzzy
-msgid "Asturian"
-msgstr "Avstrija"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-#, fuzzy
-msgid "Athapascan Languages"
-msgstr "Nastavi jezik"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Avstralija"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-#, fuzzy
-msgid "Australian Languages"
-msgstr "Prikaži vse razpoložljive jezike."
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Avstrija"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-#, fuzzy
-msgid "Avaric"
-msgstr "Amharic"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Avestan"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
 msgstr ""
 
-# MM
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Aymara"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
 
-# AZ
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbajdžan"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Azerbaižanščina"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
 msgstr ""
 
-# BS
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahami"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrein"
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-#, fuzzy
-msgid "Balinese"
-msgstr "Osnova"
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Couldn't open file: %s."
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-#, fuzzy
-msgid "Bambara"
-msgstr "Samba"
-
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-#, fuzzy
-msgid "Bamileke Languages"
-msgstr "Nastavi jezik"
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Couldn't open file: %s."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-#, fuzzy
-msgid "Banda"
-msgstr "Kanada"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladeš"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
+#: zypp/ExternalProgram.cc:532
 #, fuzzy
-msgid "Basa"
-msgstr "Osnova"
+msgid "Command exited with unknown error."
+msgstr "Ukaz, ki naj se izvede ob povezovanju"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bashkir"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baskovščina"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-#, fuzzy
-msgid "Batak (Indonesia)"
-msgstr "Indonezija"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "neznano"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belorusija"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Belorusščina"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgija"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
 
-# BZ
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
+#: zypp/VendorSupportOptions.cc:31
 #, fuzzy
-msgid "Bemba"
-msgstr "Bermuda"
+msgid "invalid"
+msgstr "Namesti"
 
-# SN
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Bengali"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
 
-# BJ
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
 msgstr ""
 
-# BT
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Butan"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Bihari"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
 #, fuzzy
-msgid "Bini"
-msgstr "Hindi"
+msgid "No Code"
+msgstr "Ko&da"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
+# AD
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-#, fuzzy
-msgid "Blin"
-msgstr "Belgijska"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Združeni arabski emirati"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivija"
+# AF
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistan"
 
-# BA
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosna in Hercegovina"
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigva in Barbuda"
 
-# BJ
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Bosanski"
+# AI
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Angvila"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botsvana"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albanija"
 
-# BV
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvetov otok"
+# AM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenija"
 
-# BR
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-#, fuzzy
-msgid "Braj"
-msgstr "Brazilija"
+# AN
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Nizozemski Antili"
 
-# BR
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brazilija"
+# AO
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Bretonščina"
+# AQ
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktika"
 
-# IO
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Britansko ozemlje v Indijskem oceanu"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
 
-# VI
-# fuzzy
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Britanski Deviški otoki"
+# AS
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Ameriška Samoa"
 
-# BN
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunej"
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Avstrija"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-#, fuzzy
-msgid "Buginese"
-msgstr "Kitajščina"
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Avstralija"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
+# AW
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bolgarija"
+# KY
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Aland Islands"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgarščina"
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbajdžan"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-#, fuzzy
-msgid "Buriat"
-msgstr "Bolgarija"
+# BA
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosna in Hercegovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladeš"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgija"
 
 # BF
 #. :BEL:056:
@@ -707,11 +769,15 @@ msgstr "Bolgarija"
 msgid "Burkina Faso"
 msgstr "Burkina Faso"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-#, fuzzy
-msgid "Burmese"
-msgstr "Vodilo"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bolgarija"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrein"
 
 # BI
 #. :BHR:048:
@@ -719,17 +785,115 @@ msgstr "Vodilo"
 msgid "Burundi"
 msgstr "Burundi"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
+# BJ
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+# BN
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunej"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivija"
+
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brazilija"
+
+# BS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahami"
+
+# BT
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Butan"
+
+# BV
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvetov otok"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botsvana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Belorusija"
+
+# BZ
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
+
+# CC
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Kokosovi otoki"
+
+# CG
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
+
+# CF
+#. :COD:180:
+#: zypp/CountryCode.cc:197
 #, fuzzy
-msgid "Caddo"
-msgstr "Karte"
+msgid "Central African Republic"
+msgstr "Centralnoafriška republika"
 
-# KH
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodža"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Švica"
+
+# CI
+# fuzzy
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Slonokoščena obala"
+
+# CK
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cookovi otoki"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Čile"
 
 # CM
 #. :CHL:152:
@@ -737,934 +901,1852 @@ msgstr "Kambodža"
 msgid "Cameroon"
 msgstr "Kamerun"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr ""
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Kitajska"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr ""
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolumbija"
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Couldn't open file: %s."
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Kostarika"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuba"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+# CV
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Zelenortski otoki"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Nameščam na:"
+# CX
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Božični otok"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
+# CY
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Ciper"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr ""
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Češka republika"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Nameščam na:"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Nemčija"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Dschibuti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danska"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominika"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikanska republika"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Alžirija"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ekvador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonija"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egipt"
+
+# EH
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Zahodna Sahara"
+
+# ER
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritreja"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Španija"
+
+# ET
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopija"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finska"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidji"
+
+# FK
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falklandski otoki"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Federalne države Mikronezija"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Farerski otoki"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Francija"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Metropolitan France"
+
+# GA
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Velika Britanija"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Gruzija"
+
+# Shouldn't this be French Guyane?
+# GF
+# fuzzy
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Francoska Gvineja"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Nemčija"
+
+# GH
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Gana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grenlandija"
+
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambija"
+
+# GN
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Gvineja"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+# GQ
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Ekvatorialna Gvineja"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grčija"
+
+# GS
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Južna Georgia in Južni Sandwichevi otoki"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Gvatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+# GW
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Gvineja Bissau"
+
+# GY
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Gvajana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+# HM
+# fuzzy
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heardov otok in McDonaldov otok"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Hrvaška"
+
+# HT
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Madžarska"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonezija"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irska"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Izrael"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Indija"
+
+# IO
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Britansko ozemlje v Indijskem oceanu"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+# IR
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Islandija"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italija"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamajka"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordanija"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japonska"
+
+# KE
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenija"
+
+# KG
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgizstan"
+
+# KH
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodža"
+
+# KI
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+# KM
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Komori"
+
+# KN
+# fuzzy
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts in Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Severna Korea"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Južna Koreja"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuvajt"
+
+# KY
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Kajmanski otoki"
+
+# Shouldn't this be "Kazakhstan"?
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazahstan"
+
+# CD
+# fuzzy
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Lao, ljudska demokratična republika"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
+
+# LC
+# fuzzy
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Sv. Lucija"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+# LK
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberija"
+
+# LS
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesoto"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litva"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luksemburg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latvija"
+
+# LY
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libija"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Maroko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monako"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldavija"
+
+# CG
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "Kongo"
+
+# SM
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "San Marino"
+
+# MG
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+# MH
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshallovi otoki"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonija"
+
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+# MM
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Mjanmar"
+
+# MN
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolija"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+# MP
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Severni Marianski otoki"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+# MR
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mavretanija"
+
+# MS
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+# Shouldn't this be "Mauritius"?
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mavricij"
+
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Malta"
+
+# MW
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malavi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mehika"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malezija"
+
+# MZ
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambik"
+
+# NA
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibija"
+
+# NC
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nova Kaledonija"
+
+# NE
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+# NF
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolški otok"
+
+# NG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigerija"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nikaragva"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Nizozemska"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norveška"
+
+# NP
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+# NU
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nova Zelandija"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+# PF
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Francoska Polinezija"
+
+# PG
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Nova Gvineja"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipini"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Poljska"
+
+# PM
+# fuzzy
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Sveti Pierre in Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Portoriko"
+
+# IO
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestinskoo ozemlje "
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugalska"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paragvaj"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Katar"
+
+# RE
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romunija"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "Srbščina"
+
+# RU
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Ruska federacija"
+
+# RW
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudova Arabija"
+
+# SB
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Solomonovi otoki"
+
+# SC
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Sejšeli"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Švedska"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
+
+# SH
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Sveta Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenija"
+
+# SJ
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard in Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovaška"
+
+# SL
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+# SM
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+# SN
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+# SO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalija"
+
+# SR
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+# ST
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome in Principe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "Salvador"
+
+# SY
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Sirija"
+
+# SZ
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Svazi"
+
+# Perhaps "Turks and Caicos Islands"?
+# TC
+# fuzzy
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "otočji Turks in Caicos"
+
+# TD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Čad"
+
+# TF
+# fuzzy
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Francoska južna ozemlja"
+
+# TG
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tajska"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadžikistan"
+
+# TK
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+# TM
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunizija"
+
+# TO
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Vzhodni Timor"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turčija"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad in Tabago"
+
+# TV
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Tajska"
+
+# TZ
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzanija"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukrajina"
+
+# UG
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+# UM
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "manjši otoki Združenih držav Amerike"
+
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Združene države"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Urugvaj"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
+# VA
+# fuzzy
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Vatikanska država (Sveti sedež)"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr ""
+# VC
+# fuzzy
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Sv. Vincent in Grenadini"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr ""
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr ""
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Britanski Deviški otoki"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Datoteke ni mogoče odpreti za pisanje."
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Ameriški Deviški otoki"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Couldn't open file: %s."
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Couldn't open file: %s."
+# VU
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+# This should be Wallis, not Wallace
+# WF
+# fuzzy
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "otočji Wallis in Futuna"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr ""
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr ""
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr ""
+# YT
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Južna Afrika"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+# ZM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambija"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Nameščam na:"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabve"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abkhazijski"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Nameščam na:"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+#, fuzzy
+msgid "Achinese"
+msgstr "Kitajščina"
 
-# CV
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Zelenortski otoki"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+#, fuzzy
+msgid "Acoli"
+msgstr "Tihi način"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
+#. language code: ada
+#: zypp/LanguageCode.cc:169
 #, fuzzy
-msgid "Carib"
-msgstr "Karte"
+msgid "Adangme"
+msgstr "Območje"
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Katalanščina"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr ""
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-# KY
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Kajmanski otoki"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr ""
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-#, fuzzy
-msgid "Cebuano"
-msgstr "Libanon"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikanščina"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr ""
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+#, fuzzy
+msgid "Ainu"
+msgstr "Linux"
 
-# CF
-#. :COD:180:
-#: zypp/CountryCode.cc:197
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
 #, fuzzy
-msgid "Central African Republic"
-msgstr "Centralnoafriška republika"
+msgid "Akan"
+msgstr "Abkhazijski"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr ""
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+#, fuzzy
+msgid "Akkadian"
+msgstr "Abkhazijski"
 
-# TD
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Čad"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Albanščina"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
+#. language code: ale
+#: zypp/LanguageCode.cc:189
 #, fuzzy
-msgid "Chagatai"
-msgstr "Shanghai"
+msgid "Aleut"
+msgstr "Aleutian"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
+#. language code: alg
+#: zypp/LanguageCode.cc:191
 #, fuzzy
-msgid "Chamic Languages"
-msgstr "Jeziki"
-
-# KM
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "Komorski"
+msgid "Algonquian Languages"
+msgstr "Prilagoditev jezika..."
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, fuzzy, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Shrani nastavivene datoteke"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+#, fuzzy
+msgid "Southern Altai"
+msgstr "Južna Afrika"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Češki"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amharic"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
+#. language code: apa
+#: zypp/LanguageCode.cc:199
 #, fuzzy
-msgid "Cheyenne"
-msgstr "Kanal"
+msgid "Apache Languages"
+msgstr "Nastavi jezik"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Arabski"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
 #, fuzzy
-msgid "Chibcha"
-msgstr "Kitajska"
+msgid "Aramaic"
+msgstr "Arabski"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
 #, fuzzy
-msgid "Chichewa"
-msgstr "Češki"
+msgid "Aragonese"
+msgstr "Faerščina"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Čile"
+# AM
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armenski"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Kitajska"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+#, fuzzy
+msgid "Araucanian"
+msgstr "Albanščina"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Kitajščina"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+#, fuzzy
+msgid "Arapaho"
+msgstr "Grafi"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr ""
+#. language code: art
+#: zypp/LanguageCode.cc:215
+#, fuzzy
+msgid "Artificial (Other)"
+msgstr "CA certifikat"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Assamski"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
 #, fuzzy
-msgid "Choctaw"
-msgstr "Chroot"
+msgid "Asturian"
+msgstr "Avstrija"
 
-# CX
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Božični otok"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+#, fuzzy
+msgid "Athapascan Languages"
+msgstr "Nastavi jezik"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "Cerkveno Slovanski"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+#, fuzzy
+msgid "Australian Languages"
+msgstr "Prikaži vse razpoložljive jezike."
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
 #, fuzzy
-msgid "Chuukese"
-msgstr "Kitajščina"
+msgid "Avaric"
+msgstr "Amharic"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "Chuvash"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Avestan"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-#, fuzzy
-msgid "Classical Newari"
-msgstr "Ime razreda"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr ""
 
-# CC
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokosovi otoki"
+# MM
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Aymara"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolumbija"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Azerbaižanščina"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+#, fuzzy
+msgid "Banda"
+msgstr "Kanada"
 
-#: zypp/ExternalProgram.cc:532
+#. language code: bai
+#: zypp/LanguageCode.cc:239
 #, fuzzy
-msgid "Command exited with unknown error."
-msgstr "Ukaz, ki naj se izvede ob povezovanju"
+msgid "Bamileke Languages"
+msgstr "Nastavi jezik"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bashkir"
 
-# KM
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Komori"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Konflikti"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+#, fuzzy
+msgid "Bambara"
+msgstr "Samba"
 
-# CG
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+#, fuzzy
+msgid "Balinese"
+msgstr "Osnova"
 
-# CK
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cookovi otoki"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Baskovščina"
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
+#. language code: bas
+#: zypp/LanguageCode.cc:253
 #, fuzzy
-msgid "Coptic"
-msgstr "Računanje"
-
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "Kornščina"
+msgid "Basa"
+msgstr "Osnova"
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "Korziški"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr ""
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Kostarika"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr ""
 
-# CI
-# fuzzy
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Slonokoščena obala"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Belorusščina"
 
-# &A is taken
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
+#. language code: bem
+#: zypp/LanguageCode.cc:261
 #, fuzzy
-msgid "Cree"
-msgstr "Kreiraj"
+msgid "Bemba"
+msgstr "Bermuda"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-#, fuzzy
-msgid "Creek"
-msgstr "Grška"
+# SN
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Bengali"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr ""
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Bihari"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
+#. language code: bin
+#: zypp/LanguageCode.cc:273
 #, fuzzy
-msgid "Crimean Tatar"
-msgstr "Čas in datum"
-
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Hrvaška"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Hrvaška"
+msgid "Bini"
+msgstr "Hindi"
 
-# CU
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuba"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-# CY
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Ciper"
-
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "Češka"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr ""
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Češka republika"
+# BJ
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Bosanski"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
 #, fuzzy
-msgid "Dakota"
-msgstr "Dhaka"
+msgid "Braj"
+msgstr "Brazilija"
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "Danska"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Bretonščina"
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
+#. language code: btk
+#: zypp/LanguageCode.cc:287
 #, fuzzy
-msgid "Dargwa"
-msgstr "Darwin"
+msgid "Batak (Indonesia)"
+msgstr "Indonezija"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
+#. language code: bua
+#: zypp/LanguageCode.cc:289
 #, fuzzy
-msgid "Dayak"
-msgstr "Dan:"
+msgid "Buriat"
+msgstr "Bolgarija"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
+#. language code: bug
+#: zypp/LanguageCode.cc:291
 #, fuzzy
-msgid "Delaware"
-msgstr "Strojna oprema"
+msgid "Buginese"
+msgstr "Kitajščina"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danska"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgarščina"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
 #, fuzzy
-msgid "Dinka"
-msgstr "Trdi disk"
+msgid "Burmese"
+msgstr "Vodilo"
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
+#. language code: byn
+#: zypp/LanguageCode.cc:299
 #, fuzzy
-msgid "Divehi"
-msgstr "Gonilnik"
-
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Dschibuti"
+msgid "Blin"
+msgstr "Belgijska"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
+#. language code: cad
+#: zypp/LanguageCode.cc:301
 #, fuzzy
-msgid "Dogri"
-msgstr "Prijava"
+msgid "Caddo"
+msgstr "Karte"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominika"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikanska republika"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
+#. language code: car
+#: zypp/LanguageCode.cc:305
+#, fuzzy
+msgid "Carib"
+msgstr "Karte"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "Katalanščina"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
 #, fuzzy
-msgid "Duala"
-msgstr "Dakar"
+msgid "Cebuano"
+msgstr "Libanon"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
 msgstr ""
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Nizozemska"
+# KM
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "Komorski"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr ""
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+#, fuzzy
+msgid "Chibcha"
+msgstr "Kitajska"
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Češki"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
 #, fuzzy
-msgid "Dyula"
-msgstr "Dubai"
+msgid "Chagatai"
+msgstr "Shanghai"
 
-# TO
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "Dzongkha"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Kitajščina"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Vzhodni Timor"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+#, fuzzy
+msgid "Chuukese"
+msgstr "Kitajščina"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ekvador"
+# ML
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+#, fuzzy
+msgid "Mari"
+msgstr "Mali"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egipt"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+#, fuzzy
+msgid "Choctaw"
+msgstr "Chroot"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "Salvador"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Cerkveno Slovanski"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr ""
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Chuvash"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+#, fuzzy
+msgid "Cheyenne"
+msgstr "Kanal"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+#, fuzzy
+msgid "Chamic Languages"
+msgstr "Jeziki"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr ""
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+#, fuzzy
+msgid "Coptic"
+msgstr "Računanje"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr ""
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "Kornščina"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Angleščina"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "Korziški"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
 msgstr ""
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
-# GQ
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Ekvatorialna Gvineja"
-
-# ER
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritreja"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
+# &A is taken
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+#, fuzzy
+msgid "Cree"
+msgstr "Kreiraj"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+#, fuzzy
+msgid "Crimean Tatar"
+msgstr "Čas in datum"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
 msgstr ""
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Esperanto"
-
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonija"
-
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Estonska"
-
-# ET
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopija"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
 msgstr ""
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "Češka"
+
+#. language code: dak
+#: zypp/LanguageCode.cc:373
 #, fuzzy
-msgid "Ewondo"
-msgstr "Konec"
+msgid "Dakota"
+msgstr "Dhaka"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Neuspešen dostop do media za posodobitev gonilnika."
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Danska"
 
-#: zypp/KeyRing.cc:566
+#. language code: dar
+#: zypp/LanguageCode.cc:377
 #, fuzzy
-msgid "Failed to delete key."
-msgstr "Napaka pri nalaganju modula \"%s\"."
+msgid "Dargwa"
+msgstr "Darwin"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
+#. language code: day
+#: zypp/LanguageCode.cc:379
+#, fuzzy
+msgid "Dayak"
+msgstr "Dan:"
 
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Napaka pri nalaganju modula \"%s\"."
+#. language code: del
+#: zypp/LanguageCode.cc:381
+#, fuzzy
+msgid "Delaware"
+msgstr "Strojna oprema"
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Napaka pri nalaganju modula \"%s\"."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Napaka pri nalaganju modula \"%s\"."
+#. language code: din
+#: zypp/LanguageCode.cc:387
+#, fuzzy
+msgid "Dinka"
+msgstr "Trdi disk"
 
-# FK
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandski otoki"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+#, fuzzy
+msgid "Divehi"
+msgstr "Gonilnik"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
+#. language code: doi
+#: zypp/LanguageCode.cc:391
 #, fuzzy
-msgid "Fang"
-msgstr "Območje"
+msgid "Dogri"
+msgstr "Prijava"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr ""
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
 #, fuzzy
-msgid "Fanti"
-msgstr "Atlantik"
+msgid "Lower Sorbian"
+msgstr "Varčevanje z energijo"
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Farerski otoki"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+#, fuzzy
+msgid "Duala"
+msgstr "Dakar"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Faerščina"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr ""
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Federalne države Mikronezija"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Nizozemska"
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidji"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+#, fuzzy
+msgid "Dyula"
+msgstr "Dubai"
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fijian"
+# TO
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "Dzongkha"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Angleščina"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Esperanto"
+
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Estonska"
+
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+#, fuzzy
+msgid "Ewondo"
+msgstr "Konec"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr ""
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+#, fuzzy
+msgid "Fang"
+msgstr "Območje"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Faerščina"
+
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+#, fuzzy
+msgid "Fanti"
+msgstr "Atlantik"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Fijian"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
@@ -1672,11 +2754,6 @@ msgstr ""
 msgid "Filipino"
 msgstr "Filipini"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finska"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1687,47 +2764,17 @@ msgstr "Finska"
 msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 #, fuzzy
 msgid "Fon"
 msgstr "Pisave"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Francija"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Francoska"
 
-# Shouldn't this be French Guyane?
-# GF
-# fuzzy
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Francoska Gvineja"
-
-# PF
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Francoska Polinezija"
-
-# TF
-# fuzzy
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Francoska južna ozemlja"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1743,18 +2790,18 @@ msgstr ""
 msgid "Frisian"
 msgstr "Frizijski"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-#, fuzzy
-msgid "Friulian"
-msgstr "Frizijski"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 #, fuzzy
 msgid "Fulah"
 msgstr "Zastavice"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+#, fuzzy
+msgid "Friulian"
+msgstr "Frizijski"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 #, fuzzy
@@ -1762,38 +2809,6 @@ msgid "Ga"
 msgstr "Gaza"
 
 # GA
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-# ML
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-#, fuzzy
-msgid "Gaelic"
-msgstr "Mali"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-#, fuzzy
-msgid "Galician"
-msgstr "Vatikan"
-
-# GM
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambija"
-
-# GH
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-#, fuzzy
-msgid "Ganda"
-msgstr "Gana"
-
-# GA
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 #, fuzzy
@@ -1806,16 +2821,11 @@ msgstr "Gabon"
 msgid "Gbaya"
 msgstr "Gaza"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
+#. language code: gem
+#: zypp/LanguageCode.cc:465
 #, fuzzy
-msgid "Geez"
-msgstr "Grška"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Gruzija"
+msgid "Germanic (Other)"
+msgstr "Nemška (mrtva tipka)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1827,6 +2837,41 @@ msgstr "Gruzijski"
 msgid "German"
 msgstr "Nemška"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+#, fuzzy
+msgid "Geez"
+msgstr "Grška"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+#, fuzzy
+msgid "Gilbertese"
+msgstr "Vietnamski"
+
+# ML
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+#, fuzzy
+msgid "Gaelic"
+msgstr "Mali"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irščina"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+#, fuzzy
+msgid "Galician"
+msgstr "Vatikan"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1837,33 +2882,6 @@ msgstr ""
 msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-#, fuzzy
-msgid "Germanic (Other)"
-msgstr "Nemška (mrtva tipka)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Nemčija"
-
-# GH
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Gana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-#, fuzzy
-msgid "Gilbertese"
-msgstr "Vietnamski"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 #, fuzzy
@@ -1886,11 +2904,6 @@ msgstr ""
 msgid "Grebo"
 msgstr "Skupina"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grčija"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1901,64 +2914,15 @@ msgstr ""
 msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grenlandija"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Gvatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Nemčija"
-
-# GN
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Gvineja"
-
-# GW
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Gvineja Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
-msgid "Gujarati"
-msgstr "Gujarati"
-
-# GY
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Gvajana"
+msgid "Gujarati"
+msgstr "Gujarati"
 
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
@@ -1973,61 +2937,23 @@ msgid "Haida"
 msgstr "Strojna oprema"
 
 # HT
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
-# HT
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 #, fuzzy
 msgid "Haitian"
 msgstr "Haiti"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-#, fuzzy
-msgid "Hal Exception"
-msgstr "Šifriranje"
-
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "ni povezave"
-
-#: zypp/target/hal/HalContext.cc:127
-#, fuzzy
-msgid "HalDrive not initialized"
-msgstr "Ponovno pripravi"
-
-#: zypp/target/hal/HalContext.cc:137
-#, fuzzy
-msgid "HalVolume not initialized"
-msgstr "Ponovno pripravi"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 #, fuzzy
 msgid "Hawaiian"
 msgstr "Havaji"
 
-# HM
-# fuzzy
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heardov otok in McDonaldov otok"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -2054,19 +2980,6 @@ msgid "Hindi"
 msgstr "Hindi"
 
 # HT
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-#, fuzzy
-msgid "Hiri Motu"
-msgstr "Hiri"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-#, fuzzy
-msgid "History:"
-msgstr "Preglejte zgodovino"
-
-# HT
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 #, fuzzy
@@ -2079,33 +2992,24 @@ msgstr "Haiti"
 msgid "Hmong"
 msgstr "HongKong"
 
-# VA
-# fuzzy
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Vatikanska država (Sveti sedež)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+# HT
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+#, fuzzy
+msgid "Hiri Motu"
+msgstr "Hiri"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+#, fuzzy
+msgid "Upper Sorbian"
+msgstr "Srbščina"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Madžarska"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Madžarska"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 #, fuzzy
@@ -2119,10 +3023,11 @@ msgstr "Hausa"
 msgid "Iban"
 msgstr "Iran"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Islandija"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+#, fuzzy
+msgid "Igbo"
+msgstr "Ne upoštevaj"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2135,184 +3040,67 @@ msgstr "Islandska"
 msgid "Ido"
 msgstr "ld"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
 #, fuzzy
-msgid "Igbo"
-msgstr "Ne upoštevaj"
+msgid "Sichuan Yi"
+msgstr "Litva"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr ""
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Medzejični"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 #, fuzzy
 msgid "Iloko"
 msgstr "Tokijo"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Indija"
-
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr ""
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonezija"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonezijščina"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr ""
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 #, fuzzy
-msgid "Ingush"
-msgstr "Angleščina"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Medzejični"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "Inupiaq"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr ""
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr ""
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Nepravilno ime naprave."
-
-# IR
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
-msgstr ""
-
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irska"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irščina"
+msgid "Ingush"
+msgstr "Angleščina"
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr ""
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "Inupiaq"
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
 msgstr ""
 
 #. language code: iro
@@ -2321,60 +3109,26 @@ msgstr ""
 msgid "Iroquoian Languages"
 msgstr "Prilagoditev jezika..."
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Izrael"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italijanska"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italija"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamajka"
-
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japonska"
-
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
-msgstr "Japonska"
-
 #. language code: jav jv
 #: zypp/LanguageCode.cc:579
 msgid "Javanese"
 msgstr "Javanski"
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordanija"
-
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
 #, fuzzy
-msgid "Judeo-Arabic"
-msgstr "Arabski"
+msgid "Lojban"
+msgstr "Libanon"
+
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
+msgstr "Japonska"
 
 #. language code: jpr
 #: zypp/LanguageCode.cc:585
@@ -2382,11 +3136,16 @@ msgstr "Arabski"
 msgid "Judeo-Persian"
 msgstr "Perzijski"
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
 #, fuzzy
-msgid "Kabardian"
-msgstr "Kanada"
+msgid "Judeo-Arabic"
+msgstr "Arabski"
+
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr ""
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2405,12 +3164,6 @@ msgstr "Išči v"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-#, fuzzy
-msgid "Kalmyk"
-msgstr "Pogovori"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 #, fuzzy
@@ -2422,22 +3175,6 @@ msgstr "Samba"
 msgid "Kannada"
 msgstr "Kanada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-#, fuzzy
-msgid "Kanuri"
-msgstr "Kurdsko"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr ""
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr ""
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 #, fuzzy
@@ -2449,10 +3186,11 @@ msgstr "Korejščina"
 msgid "Kashmiri"
 msgstr "Kašmir"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr ""
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+#, fuzzy
+msgid "Kanuri"
+msgstr "Kurdsko"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2468,19 +3206,11 @@ msgstr "Darwin"
 msgid "Kazakh"
 msgstr "Kazaški"
 
-# Shouldn't this be "Kazakhstan"?
-# KZ
-# fuzzy
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazahstan"
-
-# KE
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenija"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+#, fuzzy
+msgid "Kabardian"
+msgstr "Kanada"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
@@ -2488,16 +3218,16 @@ msgstr "Kenija"
 msgid "Khasi"
 msgstr "Tajski"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr ""
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 #, fuzzy
@@ -2509,12 +3239,6 @@ msgstr "Kitajščina"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-#, fuzzy
-msgid "Kimbundu"
-msgstr "Vrsta"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2525,17 +3249,17 @@ msgstr ""
 msgid "Kirghiz"
 msgstr "Kirghiz"
 
-# KI
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+#, fuzzy
+msgid "Kimbundu"
+msgstr "Vrsta"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
+#. language code: kok
+#: zypp/LanguageCode.cc:629
 #, fuzzy
-msgid "Klingon"
-msgstr "Saigon"
+msgid "Konkani"
+msgstr "Korejščina"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2549,12 +3273,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-#, fuzzy
-msgid "Konkani"
-msgstr "Korejščina"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2572,11 +3290,22 @@ msgstr "Korejščina"
 msgid "Kpelle"
 msgstr "Črkovalniki"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr ""
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr ""
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+#, fuzzy
+msgid "Kurukh"
+msgstr "Turška"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2593,12 +3322,6 @@ msgstr "Testni modul"
 msgid "Kurdish"
 msgstr "Kurdsko"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-#, fuzzy
-msgid "Kurukh"
-msgstr "Turška"
-
 # KE
 #. language code: kut
 #: zypp/LanguageCode.cc:653
@@ -2606,18 +3329,6 @@ msgstr "Turška"
 msgid "Kutenai"
 msgstr "Kenija"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuvajt"
-
-# KG
-# fuzzy
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgizstan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 #, fuzzy
@@ -2643,74 +3354,22 @@ msgstr "Samba"
 msgid "Lao"
 msgstr "Laos"
 
-# CD
-# fuzzy
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Lao, ljudska demokratična republika"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 #, fuzzy
 msgid "Latin"
 msgstr "Latvijščina"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latvija"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Latvijščina"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-# LS
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesoto"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
-#. language code: lez
-#: zypp/LanguageCode.cc:667
-#, fuzzy
-msgid "Lezghian"
-msgstr "Belgijska"
-
-# LR
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberija"
-
-# LY
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libija"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
+#. language code: lez
+#: zypp/LanguageCode.cc:667
+#, fuzzy
+msgid "Lezghian"
+msgstr "Belgijska"
 
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
@@ -2725,38 +3384,17 @@ msgstr "Luksemburg"
 msgid "Lingala"
 msgstr "Angola"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litva"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Litvanska"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-#, fuzzy
-msgid "Lojban"
-msgstr "Libanon"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-#, fuzzy
-msgid "Low German"
-msgstr "Nemška"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
+# CG
+#. language code: lol
+#: zypp/LanguageCode.cc:675
 #, fuzzy
-msgid "Lower Sorbian"
-msgstr "Varčevanje z energijo"
+msgid "Mongo"
+msgstr "Kongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
@@ -2764,28 +3402,35 @@ msgstr "Varčevanje z energijo"
 msgid "Lozi"
 msgstr "Prijava"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr ""
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+#, fuzzy
+msgid "Luxembourgish"
+msgstr "Luksemburg"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr ""
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr ""
+
+# GH
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+#, fuzzy
+msgid "Ganda"
+msgstr "Gana"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 #, fuzzy
 msgid "Luiseno"
 msgstr "Poslušaj na"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-#, fuzzy
-msgid "Lule Sami"
-msgstr "Ime modula"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 #, fuzzy
@@ -2803,37 +3448,11 @@ msgstr ""
 msgid "Lushai"
 msgstr "Tajski"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luksemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-#, fuzzy
-msgid "Luxembourgish"
-msgstr "Luksemburg"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonija"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Makedonščina"
 
-# MG
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 #, fuzzy
@@ -2847,6 +3466,13 @@ msgstr "Faerščina"
 msgid "Magahi"
 msgstr "Malavi"
 
+# MH
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+#, fuzzy
+msgid "Marshallese"
+msgstr "Marshallovi otoki"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 #, fuzzy
@@ -2860,143 +3486,35 @@ msgstr "Matematika"
 msgid "Makasar"
 msgstr "Madagaskar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-#, fuzzy
-msgid "Malagasy"
-msgstr "Managua"
-
-# MW
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malavi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-#, fuzzy
-msgid "Malay"
-msgstr "Malta"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 #, fuzzy
 msgid "Malayalam"
 msgstr "Malezija"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malezija"
-
-# MV
-# fuzzy
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Malta"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-# ML
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-# MV
-# fuzzy
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-#, fuzzy
-msgid "Maltese"
-msgstr "Malta"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-#, fuzzy
-msgid "Manchu"
-msgstr "Ročno"
-
-# MM
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-#, fuzzy
-msgid "Mandar"
-msgstr "Mjanmar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 #, fuzzy
 msgid "Mandingo"
 msgstr "Opozorilo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr ""
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-#, fuzzy
-msgid "Manobo Languages"
-msgstr "Jeziki"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 #, fuzzy
 msgid "Maori"
 msgstr "Glavni"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 #, fuzzy
 msgid "Marathi"
 msgstr "Matematika"
 
-# ML
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-#, fuzzy
-msgid "Mari"
-msgstr "Mali"
-
-# MH
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshallovi otoki"
-
-# MH
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-#, fuzzy
-msgid "Marshallese"
-msgstr "Marshallovi otoki"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-#, fuzzy
-msgid "Marwari"
-msgstr "Strojna oprema"
-
 # MW
 #. language code: mas
 #: zypp/LanguageCode.cc:721
@@ -3004,66 +3522,34 @@ msgstr "Strojna oprema"
 msgid "Masai"
 msgstr "Malavi"
 
-# MR
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mavretanija"
-
-# Shouldn't this be "Mauritius"?
-# MU
-# fuzzy
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mavricij"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
 #, fuzzy
-msgid "Mayan Languages"
-msgstr "Jeziki"
-
-# YT
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
-
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+msgid "Malay"
+msgstr "Malta"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
+# MM
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+#, fuzzy
+msgid "Mandar"
+msgstr "Mjanmar"
+
 #. language code: men
 #: zypp/LanguageCode.cc:731
 #, fuzzy
 msgid "Mende"
 msgstr "Način"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Metropolitan France"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mehika"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr ""
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -3075,63 +3561,58 @@ msgstr ""
 msgid "Minangkabau"
 msgstr ""
 
-# FM
-# fuzzy
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-#, fuzzy
-msgid "Mirandese"
-msgstr "Wisconsin"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 #, fuzzy
 msgid "Miscellaneous Languages"
 msgstr "Razne nastavitve"
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr ""
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+#, fuzzy
+msgid "Malagasy"
+msgstr "Managua"
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
+# MV
+# fuzzy
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
 #, fuzzy
-msgid "Moldavian"
-msgstr "Moldavija"
+msgid "Maltese"
+msgstr "Malta"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldavija"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+#, fuzzy
+msgid "Manchu"
+msgstr "Ročno"
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monako"
-
-# CG
-#. language code: lol
-#: zypp/LanguageCode.cc:675
+#. language code: mno
+#: zypp/LanguageCode.cc:751
 #, fuzzy
-msgid "Mongo"
-msgstr "Kongo"
+msgid "Manobo Languages"
+msgstr "Jeziki"
 
-# MN
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolija"
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
+msgstr ""
+
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+#, fuzzy
+msgid "Moldavian"
+msgstr "Moldavija"
 
 # MN
 #. language code: mon mn
@@ -3140,36 +3621,12 @@ msgstr "Mongolija"
 msgid "Mongolian"
 msgstr "Mongolija"
 
-# CG
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "Kongo"
-
-# MS
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Maroko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 #, fuzzy
 msgid "Mossi"
 msgstr "Morse"
 
-# MZ
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambik"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 #, fuzzy
@@ -3182,11 +3639,36 @@ msgstr "&Več ključev"
 msgid "Munda languages"
 msgstr "Se&kundarni jeziki"
 
-# MM
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Mjanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+#, fuzzy
+msgid "Creek"
+msgstr "Grška"
+
+# FM
+# fuzzy
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+#, fuzzy
+msgid "Mirandese"
+msgstr "Wisconsin"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+#, fuzzy
+msgid "Marwari"
+msgstr "Strojna oprema"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+#, fuzzy
+msgid "Mayan Languages"
+msgstr "Jeziki"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr ""
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
@@ -3194,33 +3676,32 @@ msgstr "Mjanmar"
 msgid "Nahuatl"
 msgstr "Ročno"
 
-# NA
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibija"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+#, fuzzy
+msgid "North American Indian"
+msgstr "Severna Amerika"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr ""
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr ""
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr ""
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr ""
+
 # TO
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
@@ -3228,23 +3709,11 @@ msgstr ""
 msgid "Ndonga"
 msgstr "Tonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr ""
-
-# NP
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-# NP
-#. language code: new
-#: zypp/LanguageCode.cc:795
+#. language code: nds
+#: zypp/LanguageCode.cc:791
 #, fuzzy
-msgid "Nepal Bhasa"
-msgstr "Nepal"
+msgid "Low German"
+msgstr "Nemška"
 
 # NP
 #. language code: nep ne
@@ -3253,71 +3722,24 @@ msgstr "Nepal"
 msgid "Nepali"
 msgstr "Nepal"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Nizozemska"
-
-# AN
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Nizozemski Antili"
-
-# NC
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nova Kaledonija"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nova Zelandija"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
-
-#. language code: nia
-#: zypp/LanguageCode.cc:797
+# NP
+#. language code: new
+#: zypp/LanguageCode.cc:795
 #, fuzzy
-msgid "Nias"
-msgstr "Vzdevek"
-
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nikaragva"
+msgid "Nepal Bhasa"
+msgstr "Nepal"
 
-# NE
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+#, fuzzy
+msgid "Nias"
+msgstr "Vzdevek"
 
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-# NG
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigerija"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-# NU
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 # NU
 #. language code: niu
 #: zypp/LanguageCode.cc:801
@@ -3325,16 +3747,17 @@ msgstr "Niue"
 msgid "Niuean"
 msgstr "Niue"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
 #, fuzzy
-msgid "No Code"
-msgstr "Ko&da"
+msgid "Norwegian Nynorsk"
+msgstr "Norveška"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr ""
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+#, fuzzy
+msgid "Norwegian Bokmal"
+msgstr "Norveška"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
@@ -3342,72 +3765,21 @@ msgstr ""
 msgid "Nogai"
 msgstr "Prijava"
 
-# NF
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolški otok"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-#, fuzzy
-msgid "North American Indian"
-msgstr "Severna Amerika"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Severna Korea"
-
-# MP
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Severni Marianski otoki"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-#, fuzzy
-msgid "Northern Sami"
-msgstr "Severna Irska"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-#, fuzzy
-msgid "Northern Sotho"
-msgstr "Severna Irska"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norveška"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norveška"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-#, fuzzy
-msgid "Norwegian Bokmal"
-msgstr "Norveška"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-#, fuzzy
-msgid "Norwegian Nynorsk"
-msgstr "Norveška"
-
-#: zypp/target/hal/HalContext.cc:851
+#. language code: nso
+#: zypp/LanguageCode.cc:813
 #, fuzzy
-msgid "Not a CDROM drive"
-msgstr "Ni CD-ROM enot."
+msgid "Northern Sotho"
+msgstr "Severna Irska"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
@@ -3415,6 +3787,18 @@ msgstr "Ni CD-ROM enot."
 msgid "Nubian Languages"
 msgstr "Nastavi jezik"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+#, fuzzy
+msgid "Classical Newari"
+msgstr "Ime razreda"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+#, fuzzy
+msgid "Chichewa"
+msgstr "Češki"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 #, fuzzy
@@ -3438,11 +3822,6 @@ msgstr "Sever"
 msgid "Nzima"
 msgstr "Lima"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "Zbriši %1"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3453,20 +3832,6 @@ msgstr ""
 msgid "Ojibwa"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 # SY
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
@@ -3492,72 +3857,40 @@ msgstr "shrani"
 msgid "Ossetian"
 msgstr "Ruska"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr ""
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 #, fuzzy
 msgid "Otomian Languages"
 msgstr "Nastavi jezik"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+#, fuzzy
+msgid "Pangasinan"
+msgstr "Madžarska"
+
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 #, fuzzy
 msgid "Pahlavi"
 msgstr "Palau"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-#, fuzzy
-msgid "Palauan"
-msgstr "Palau"
-
-# IO
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestinskoo ozemlje "
-
-# ML
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-#, fuzzy
-msgid "Pali"
-msgstr "Mali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 #, fuzzy
 msgid "Pampanga"
 msgstr "Paragvaj"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-#, fuzzy
-msgid "Pangasinan"
-msgstr "Madžarska"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 #, fuzzy
@@ -3570,35 +3903,15 @@ msgstr "Punjabi"
 msgid "Papiamento"
 msgstr "Parameter"
 
-# PG
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua Nova Gvineja"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr ""
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paragvaj"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+#, fuzzy
+msgid "Palauan"
+msgstr "Palau"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
 #. language code: per fas fa
@@ -3606,62 +3919,35 @@ msgstr ""
 msgid "Persian"
 msgstr "Perzijski"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr ""
-
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
-
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 #, fuzzy
 msgid "Philippine (Other)"
 msgstr "Filipini"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipini"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 #, fuzzy
 msgid "Phoenician"
-msgstr "Slovenščina"
-
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-#, fuzzy
-msgid "Pohnpeian"
-msgstr "Indonezijščina"
+msgstr "Slovenščina"
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Poljska"
+# ML
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+#, fuzzy
+msgid "Pali"
+msgstr "Mali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Poljska"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugalska"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+#, fuzzy
+msgid "Pohnpeian"
+msgstr "Indonezijščina"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3674,78 +3960,22 @@ msgstr "Portugalska"
 msgid "Prakrit Languages"
 msgstr "Primarni &Jezik"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Priskrbi"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Portoriko"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 #, fuzzy
 msgid "Pushto"
 msgstr "Po meri"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Katar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr ""
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr ""
-
 # Shouldn't this be "Kazakhstan"?
 # KZ
 # fuzzy
@@ -3767,52 +3997,15 @@ msgstr "Japonska"
 msgid "Rarotongan"
 msgstr "Preberi usmerjanje"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr ""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Zahteva"
-
-# RE
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romunija"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Romunščina"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr ""
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
@@ -3820,6 +4013,11 @@ msgstr "Romunščina"
 msgid "Romany"
 msgstr "Romunija"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Romunščina"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 #, fuzzy
@@ -3831,56 +4029,28 @@ msgstr "Deluje"
 msgid "Russian"
 msgstr "Ruska"
 
-# RU
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Ruska federacija"
-
-# RW
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
-
-# SH
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Sveta Helena"
-
-# KN
-# fuzzy
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts in Nevis"
-
-# LC
-# fuzzy
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Sv. Lucija"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+#, fuzzy
+msgid "Sandawe"
+msgstr "Pokrajina"
 
-# SM
-#: zypp/CountryCode.cc:297
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
 #, fuzzy
-msgid "Saint Martin"
-msgstr "San Marino"
+msgid "Sango"
+msgstr "Saigon"
 
-# PM
-# fuzzy
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Sveti Pierre in Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+#, fuzzy
+msgid "Yakut"
+msgstr "Breakout"
 
-# VC
-# fuzzy
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Sv. Vincent in Grenadini"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr ""
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3893,75 +4063,34 @@ msgstr "Nastavi jezik"
 msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-#, fuzzy
-msgid "Sami Languages (Other)"
-msgstr "Jeziki"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-#, fuzzy
-msgid "Samoan"
-msgstr "Samoa"
-
-# SM
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-#, fuzzy
-msgid "Sandawe"
-msgstr "Pokrajina"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-#, fuzzy
-msgid "Sango"
-msgstr "Saigon"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 #, fuzzy
 msgid "Sanskrit"
 msgstr "Začetek"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-#, fuzzy
-msgid "Santali"
-msgstr "Scan postaja"
-
-# ST
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome in Principe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-#, fuzzy
-msgid "Sardinian"
-msgstr "Ukrajinska"
-
 #. language code: sas
 #: zypp/LanguageCode.cc:919
 #, fuzzy
 msgid "Sasak"
 msgstr "Samba"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudova Arabija"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+#, fuzzy
+msgid "Santali"
+msgstr "Scan postaja"
+
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Srbščina"
+
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+#, fuzzy
+msgid "Sicilian"
+msgstr "Michigan"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
@@ -3969,6 +4098,11 @@ msgstr "Saudova Arabija"
 msgid "Scots"
 msgstr "Sekunde"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Hrvaška"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 #, fuzzy
@@ -3980,42 +4114,16 @@ msgstr "Preskoči"
 msgid "Semitic (Other)"
 msgstr ""
 
-# SN
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "Srbščina"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Srbščina"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-#, fuzzy
-msgid "Serer"
-msgstr "Strežnik"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-# SC
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Sejšeli"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+#, fuzzy
+msgid "Sign Languages"
+msgstr "Jeziki"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
@@ -4023,117 +4131,27 @@ msgstr "Sejšeli"
 msgid "Shan"
 msgstr "Shanghai"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-#, fuzzy
-msgid "Shona"
-msgstr "Slovenija"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-#, fuzzy
-msgid "Sichuan Yi"
-msgstr "Litva"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-#, fuzzy
-msgid "Sicilian"
-msgstr "Michigan"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 #, fuzzy
 msgid "Sidamo"
 msgstr "Samoa"
 
-# SL
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-#, fuzzy
-msgid "Sign Languages"
-msgstr "Jeziki"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "KScreensaver-ja ni možno najti."
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "KScreensaver-ja ni možno najti."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "KScreensaver-ja ni možno najti."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "KScreensaver-ja ni možno najti."
-
-# %s is either BOOTP or DHCP
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "Prilagoditev %s ni bila uspešna."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr ""
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-#, fuzzy
-msgid "Sindhi"
-msgstr "Hindi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 #, fuzzy
 msgid "Sinhala"
 msgstr "Zaporedno (serial)"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 #, fuzzy
 msgid "Siouan Languages"
 msgstr "Nastavi jezik"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -4146,169 +4164,143 @@ msgstr ""
 msgid "Slovak"
 msgstr "Slovaška"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovaška"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenija"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Slovenščina"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-#, fuzzy
-msgid "Sogdian"
-msgstr "Prijava"
-
-# SB
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Solomonovi otoki"
-
-# SO
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-#, fuzzy
-msgid "Somali"
-msgstr "Somalija"
-
-# SO
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalija"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr ""
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
 #, fuzzy
-msgid "Songhai"
-msgstr "Shanghai"
+msgid "Northern Sami"
+msgstr "Severna Irska"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
+#. language code: smi
+#: zypp/LanguageCode.cc:965
 #, fuzzy
-msgid "Soninke"
-msgstr "Nadaljuj"
+msgid "Sami Languages (Other)"
+msgstr "Jeziki"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
+#. language code: smj
+#: zypp/LanguageCode.cc:967
 #, fuzzy
-msgid "Sorbian Languages"
-msgstr "Prilagoditev jezika..."
+msgid "Lule Sami"
+msgstr "Ime modula"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+#, fuzzy
+msgid "Samoan"
+msgstr "Samoa"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Južna Afrika"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+#, fuzzy
+msgid "Shona"
+msgstr "Slovenija"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr ""
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+#, fuzzy
+msgid "Sindhi"
+msgstr "Hindi"
 
-# GS
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Južna Georgia in Južni Sandwichevi otoki"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+#, fuzzy
+msgid "Soninke"
+msgstr "Nadaljuj"
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Južna Koreja"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+#, fuzzy
+msgid "Sogdian"
+msgstr "Prijava"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
+# SO
+#. language code: som so
+#: zypp/LanguageCode.cc:983
 #, fuzzy
-msgid "Southern Altai"
-msgstr "Južna Afrika"
+msgid "Somali"
+msgstr "Somalija"
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr ""
+#. language code: son
+#: zypp/LanguageCode.cc:985
+#, fuzzy
+msgid "Songhai"
+msgstr "Shanghai"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Španija"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr ""
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Španska"
 
-# LK
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+#, fuzzy
+msgid "Sardinian"
+msgstr "Ukrajinska"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+#, fuzzy
+msgid "Serer"
+msgstr "Strežnik"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
 msgstr ""
 
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+#, fuzzy
+msgid "Swati"
+msgstr "Začetek"
+
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 #, fuzzy
 msgid "Sukuma"
 msgstr "Povzetek"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-#, fuzzy
-msgid "Sumerian"
-msgstr "Srbščina"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 #, fuzzy
 msgid "Sundanese"
 msgstr "Sudan"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-# SR
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 #, fuzzy
 msgid "Susu"
 msgstr "SMVodilo(SMBus)"
 
-# SJ
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard in Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+#, fuzzy
+msgid "Sumerian"
+msgstr "Srbščina"
 
 # SZ
 #. language code: swa sw
@@ -4317,39 +4309,11 @@ msgstr "Svalbard in Jan Mayen"
 msgid "Swahili"
 msgstr "Svazi"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-#, fuzzy
-msgid "Swati"
-msgstr "Začetek"
-
-# SZ
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Svazi"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Švedska"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Švedska"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Švica"
-
-# SY
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Sirija"
-
 # SY
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
@@ -4357,23 +4321,6 @@ msgstr "Sirija"
 msgid "Syriac"
 msgstr "Sirija"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 #, fuzzy
@@ -4386,40 +4333,12 @@ msgstr "Tahiti"
 msgid "Tai (Other)"
 msgstr "Ostalo"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Tajska"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-#, fuzzy
-msgid "Tajik"
-msgstr "Pogovori"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadžikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-#, fuzzy
-msgid "Tamashek"
-msgstr "Tashkent"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 #, fuzzy
 msgid "Tamil"
 msgstr "Družina"
 
-# TZ
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzanija"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 #, fuzzy
@@ -4432,6 +4351,12 @@ msgstr "Katar"
 msgid "Telugu"
 msgstr "Belgija"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+#, fuzzy
+msgid "Timne"
+msgstr "Čas"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 #, fuzzy
@@ -4444,33 +4369,22 @@ msgstr "Herero"
 msgid "Tetum"
 msgstr "Pentium"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+#, fuzzy
+msgid "Tajik"
+msgstr "Pogovori"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr ""
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Tajski"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tajska"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr ""
-
 # TW
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
@@ -4490,52 +4404,28 @@ msgstr "prezri"
 msgid "Tigrinya"
 msgstr "Nigerija"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-#, fuzzy
-msgid "Timne"
-msgstr "Čas"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+#, fuzzy
+msgid "Klingon"
+msgstr "Saigon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 #, fuzzy
 msgid "Tlingit"
 msgstr "Dopisni seznami"
 
-# TG
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
 #, fuzzy
-msgid "Tok Pisin"
-msgstr "Token Ring"
-
-# TK
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-# TO
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+msgid "Tamashek"
+msgstr "Tashkent"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4546,20 +4436,14 @@ msgstr ""
 #. language code: ton to
 #: zypp/LanguageCode.cc:1055
 #, fuzzy
-msgid "Tonga (Tonga Islands)"
-msgstr "Solomonovi otoki"
-
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
+msgid "Tonga (Tonga Islands)"
+msgstr "Solomonovi otoki"
 
-# TT
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad in Tabago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+#, fuzzy
+msgid "Tok Pisin"
+msgstr "Token Ring"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
@@ -4567,6 +4451,12 @@ msgstr "Trinidad in Tabago"
 msgid "Tsimshian"
 msgstr "Ruska"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+#, fuzzy
+msgid "Tswana"
+msgstr "Botsvana"
+
 # TO
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
@@ -4574,11 +4464,11 @@ msgstr "Ruska"
 msgid "Tsonga"
 msgstr "Tonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
 #, fuzzy
-msgid "Tswana"
-msgstr "Botsvana"
+msgid "Turkmen"
+msgstr "Turčija"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
@@ -4586,58 +4476,26 @@ msgstr "Botsvana"
 msgid "Tumbuka"
 msgstr "Timbuktu"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunizija"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 #, fuzzy
 msgid "Tupi Languages"
 msgstr "Nastavi jezik"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turčija"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turška"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-#, fuzzy
-msgid "Turkmen"
-msgstr "Turčija"
-
-# TM
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-# Perhaps "Turks and Caicos Islands"?
-# TC
-# fuzzy
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "otočji Turks in Caicos"
-
-# TV
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr ""
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
@@ -4645,22 +4503,11 @@ msgstr "Tuvalu"
 msgid "Tuvinian"
 msgstr "Tunizija"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr ""
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-# UG
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 # HT
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
@@ -4673,11 +4520,6 @@ msgstr "Haiti"
 msgid "Uighur"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukrajina"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4688,622 +4530,787 @@ msgstr "Ukrajinska"
 msgid "Umbundu"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+#, fuzzy
+msgid "Undetermined"
+msgstr "Medzejični"
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
 #, fuzzy
-msgid "Unable to create dbus connection"
-msgstr "povazava kanal-kanal"
+msgid "Uzbek"
+msgstr "Uzbekistan"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+#, fuzzy
+msgid "Vai"
+msgstr "Vi"
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+#, fuzzy
+msgid "Venda"
+msgstr "Proizvajalec"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnamski"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+#, fuzzy
+msgid "Votic"
+msgstr "Vatikan"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+#, fuzzy
+msgid "Wakashan Languages"
+msgstr "Nastavi jezik"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+#, fuzzy
+msgid "Walamo"
+msgstr "Palm"
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+#, fuzzy
+msgid "Waray"
+msgstr "Sobota"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+#, fuzzy
+msgid "Washo"
+msgstr "Welški"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Welški"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+#, fuzzy
+msgid "Sorbian Languages"
+msgstr "Prilagoditev jezika..."
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+#, fuzzy
+msgid "Walloon"
+msgstr "vsi"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
 #, fuzzy
-msgid "Undetermined"
-msgstr "Medzejični"
+msgid "Kalmyk"
+msgstr "Pogovori"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr ""
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr ""
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+#, fuzzy
+msgid "Yapese"
+msgstr "Japonska"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+#, fuzzy
+msgid "Yiddish"
+msgstr "Končaj"
+
+# AW
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+#, fuzzy
+msgid "Yoruba"
+msgstr "Aruba"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+#, fuzzy
+msgid "Yupik Languages"
+msgstr "Nastavi jezik"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr ""
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+#, fuzzy
+msgid "Zenaga"
+msgstr "Grenada"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+#, fuzzy
+msgid "Zhuang"
+msgstr "Spremeni"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+#, fuzzy
+msgid "Zande"
+msgstr "Območje"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+#, fuzzy
+msgid "Zuni"
+msgstr "Tunizija"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Združeni arabski emirati"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Velika Britanija"
-
-# US
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Združene države"
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Napaka pri nalaganju modula \"%s\"."
 
-# UM
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "manjši otoki Združenih držav Amerike"
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "KScreensaver-ja ni možno najti."
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Napaka pri branju z disketne enote."
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+# %s is either BOOTP or DHCP
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "Prilagoditev %s ni bila uspešna."
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/solver/detail/SATResolver.cc:975
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "Zagonska arhitektura"
+
+#: zypp/solver/detail/SATResolver.cc:983
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "problem with installed package %s"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-#, fuzzy
-msgid "Upper Sorbian"
-msgstr "Srbščina"
-
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "Nezadoščene odvisnosti:"
+
+#: zypp/solver/detail/SATResolver.cc:992
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "Paketi za obnovitev"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "Ta paket ni nameščen in ne bo nameščen."
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "Namestitev ni uspela."
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Nameščam na:"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Urugvaj"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%1 je v sporu s/z %2"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-#, fuzzy
-msgid "Uzbek"
-msgstr "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%1 je v sporu s/z %2"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-#, fuzzy
-msgid "Vai"
-msgstr "Vi"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%1 je v sporu s/z %2"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
 
-# VU
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "Venda"
-msgstr "Proizvajalec"
+msgid "uninstallable providers: "
+msgstr "Samodejna namestitev"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-# VN
-# fuzzy
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, fuzzy, c-format, boost-format
+msgid "do not install %s"
+msgstr "Nameščam na:"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnamski"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr ""
 
-# VI
-# fuzzy
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Ameriški Deviški otoki"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "Nameščam na:"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-#, fuzzy
-msgid "Votic"
-msgstr "Vatikan"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-#, fuzzy
-msgid "Wakashan Languages"
-msgstr "Nastavi jezik"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "%1 je v sporu s/z %2"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-#, fuzzy
-msgid "Walamo"
-msgstr "Palm"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-# This should be Wallis, not Wallace
-# WF
-# fuzzy
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "otočji Wallis in Futuna"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-#, fuzzy
-msgid "Walloon"
-msgstr "vsi"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-#, fuzzy
-msgid "Waray"
-msgstr "Sobota"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "Zbriši %1"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-#, fuzzy
-msgid "Washo"
-msgstr "Welški"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Welški"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr ""
 
-# EH
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Zahodna Sahara"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-#, fuzzy
-msgid "Yakut"
-msgstr "Breakout"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Namestitev"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr ""
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, fuzzy, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "ima nerešene zahteve..."
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
 #, fuzzy
-msgid "Yapese"
-msgstr "Japonska"
+msgid "generally ignore of some dependencies"
+msgstr "ima nerešene zahteve..."
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-#, fuzzy
-msgid "Yiddish"
-msgstr "Končaj"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-# AW
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-#, fuzzy
-msgid "Yoruba"
-msgstr "Aruba"
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Couldn't open file: %s."
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
 #, fuzzy
-msgid "Yupik Languages"
-msgstr "Nastavi jezik"
+msgid "History:"
+msgstr "Preglejte zgodovino"
 
-# ZM
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambija"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-#, fuzzy
-msgid "Zande"
-msgstr "Območje"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-#, fuzzy
-msgid "Zenaga"
-msgstr "Grenada"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-#, fuzzy
-msgid "Zhuang"
-msgstr "Spremeni"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabve"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/media/MediaException.cc:31
+#, fuzzy, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Napaka pri nalaganju modula \"%s\"."
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-#, fuzzy
-msgid "Zuni"
-msgstr "Tunizija"
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Napaka pri nalaganju modula \"%s\"."
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, fuzzy, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "ima nerešene zahteve..."
-
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:67
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Cannot write file '%s'."
 msgstr "Nameščam na:"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
-#, fuzzy, c-format, boost-format
-msgid "created backup %s"
-msgstr "Ne Kreiraj Varnostnih Kopij"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
-#, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Namestitev"
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "%1 je v sporu s/z %2"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, fuzzy, c-format, boost-format
-msgid "do not install %s"
-msgstr "Nameščam na:"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
-#, c-format, boost-format
-msgid "downgrade of %s to %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "ima nerešene zahteve..."
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr ""
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%1 je v sporu s/z %2"
-
-#: zypp/VendorSupportOptions.cc:31
-#, fuzzy
-msgid "invalid"
-msgstr "Namesti"
-
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep %s"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "Zbriši %1"
+msgid "Cannot eject media '%s'"
+msgstr "Nameščam na:"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:199
+#, c-format, boost-format
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "Paketi za obnovitev"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "Nameščam na:"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%1 je v sporu s/z %2"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
 #, fuzzy
-msgid "some dependency problem"
-msgstr "Nezadoščene odvisnosti:"
+#~ msgid "do not keep %s installed"
+#~ msgstr "Nameščam na:"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "uninstallable providers: "
-msgstr "Samodejna namestitev"
-
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "neznano"
-
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Napaka pri nalaganju modula \"%s\"."
 
-#, fuzzy
-#~ msgid " Error!"
-#~ msgstr "Napaka"
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Srbija in Črna gora"
 
 #, fuzzy
-#~ msgid " Important!"
-#~ msgstr "Uvozi podatke"
+#~ msgid "Unknown Distribution"
+#~ msgstr "Neznan monitor:"
 
 #, fuzzy
-#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgid "ignore some dependencies of %s"
 #~ msgstr "Nezadoščene odvisnosti:"
 
 #, fuzzy
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "%1 je v sporu s/z %2"
+#~ msgid "%s remove failed"
+#~ msgstr "rpm neuspešen."
 
 #, fuzzy
-#~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
-#~ msgstr "%1 je v sporu s/z %2"
+#~ msgid "Invalid user name or password."
+#~ msgstr "Nepravilno ime naprave."
 
 #, fuzzy
-#~ msgid "%s has missing dependencies"
-#~ msgstr "Nezadoščene odvisnosti:"
+#~ msgid "rpm output:"
+#~ msgstr ""
+#~ "\n"
+#~ "Izhod ukaza:"
 
 #, fuzzy
 #~ msgid "%s install failed"
@@ -5314,170 +5321,171 @@ msgstr ""
 #~ msgstr "Nameščena verzija"
 
 #, fuzzy
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "Ta paket ni nameščen in ne bo nameščen."
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "%1 je v sporu s/z %2"
 
 #, fuzzy
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%1 je v sporu s/z %2"
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "Imenik %1 je že na seznamu."
 
 #, fuzzy
-#~ msgid "%s remove failed"
-#~ msgstr "rpm neuspešen."
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "%1 je v sporu s/z %2"
 
 #, fuzzy
-#~ msgid "%s will be installed by the user.\n"
-#~ msgstr "Potrebno je namestiti %s "
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "%1 je v sporu s/z %2"
 
 #, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "Nezadoščene odvisnosti:"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "ima nerešene zahteve..."
 
 #, fuzzy
-#~ msgid ", Action: "
-#~ msgstr "Akcija"
+#~ msgid "Install missing resolvables"
+#~ msgstr "Namesti manjkajoče pakete"
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "Couldn't open file: %s."
+#~ msgid "Keep resolvables"
+#~ msgstr "Namesti manjkajoče pakete"
 
 #, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgid "Unlock these resolvables"
 #~ msgstr "%1 je v sporu s/z %2"
 
-#~ msgid "Default"
-#~ msgstr "Privzeto"
+#, fuzzy
+#~ msgid "install %s"
+#~ msgstr "Namesti %1"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgid "unlock %s"
+#~ msgstr "Ure"
+
+#, fuzzy
+#~ msgid "unlock all resolvables"
 #~ msgstr "%1 je v sporu s/z %2"
 
 #, fuzzy
-#~ msgid "Downloading %s"
-#~ msgstr "Napaka pri nalaganju %1"
+#~ msgid "Can't open solv-file: "
+#~ msgstr "Couldn't open file: %s."
 
 #, fuzzy
 #~ msgid "Error reading solv-file: "
 #~ msgstr "Napaka pri branju odseka %u."
 
 #, fuzzy
-#~ msgid "Establishing %s"
-#~ msgstr "Nameščam na:"
+#~ msgid "Software management is already running."
+#~ msgstr "Storitev za PCMCIA kartice že deluje."
 
 #, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Napaka pri nalaganju modula \"%s\"."
+#~ msgid "%s will be installed by the user.\n"
+#~ msgstr "Potrebno je namestiti %s "
 
 #, fuzzy
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "Imenik %1 je že na seznamu."
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "%1 je v sporu s/z %2"
 
 #, fuzzy
-#~ msgid "Ignore the obsolete %s in %s"
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
 #~ msgstr "%1 je v sporu s/z %2"
 
 #, fuzzy
-#~ msgid "Ignore this conflict of %s"
+#~ msgid "Cannot install %s, because it is conflicting with %s"
 #~ msgstr "%1 je v sporu s/z %2"
 
 #, fuzzy
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "ima nerešene zahteve..."
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "Ta paket ni nameščen in ne bo nameščen."
 
 #, fuzzy
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "ima nerešene zahteve..."
+#~ msgid "%s has missing dependencies"
+#~ msgstr "Nezadoščene odvisnosti:"
 
 #, fuzzy
-#~ msgid "Install missing resolvables"
-#~ msgstr "Namesti manjkajoče pakete"
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "Nezadoščene odvisnosti:"
 
 #, fuzzy
-#~ msgid "Installing %s"
-#~ msgstr "Nameščam na:"
+#~ msgid "No need to install %s"
+#~ msgstr "potrebno je ponovno namestiti"
 
 #, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "Nepravilno ime naprave."
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "Nezadoščene odvisnosti:"
 
 #, fuzzy
-#~ msgid "Keep resolvables"
-#~ msgstr "Namesti manjkajoče pakete"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%1 je v sporu s/z %2"
 
 #, fuzzy
-#~ msgid "No need to install %s"
-#~ msgstr "potrebno je ponovno namestiti"
-
-#~ msgid "Ok"
-#~ msgstr "OK"
+#~ msgid ", Action: "
+#~ msgstr "Akcija"
 
-#, fuzzy
-#~ msgid "Reading patch %s"
-#~ msgstr "Skrivanje popravkov"
+#~ msgid "patch"
+#~ msgstr "popravek"
 
 #, fuzzy
-#~ msgid "Reading selection from %s"
-#~ msgstr "Napaka pri branju odseka %u."
+#~ msgid "Establishing %s"
+#~ msgstr "Nameščam na:"
 
 #, fuzzy
-#~ msgid "Reading translation: %s"
-#~ msgstr "Nalaganje nameščenega sistema"
-
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Srbija in Črna gora"
+#~ msgid "Installing %s"
+#~ msgstr "Nameščam na:"
 
 #, fuzzy
 #~ msgid "Skipping %s: already installed"
 #~ msgstr "Preverjam že nameščene optične bralnike"
 
 #, fuzzy
-#~ msgid "Software management is already running."
-#~ msgstr "Storitev za PCMCIA kartice že deluje."
+#~ msgid " Error!"
+#~ msgstr "Napaka"
 
 #, fuzzy
-#~ msgid "The package archive has incorrect MD5 sum"
-#~ msgstr "Paketi za odstranitev"
+#~ msgid " Important!"
+#~ msgstr "Uvozi podatke"
 
 #, fuzzy
-#~ msgid "The package file has incorrect MD5 sum"
-#~ msgstr "Paketi za odstranitev"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "ima nerešene zahteve..."
 
 #, fuzzy
-#~ msgid "The package has incorrect signature"
-#~ msgstr "Paketi za obnovitev"
+#~ msgid "Reading selection from %s"
+#~ msgstr "Napaka pri branju odseka %u."
 
 #, fuzzy
-#~ msgid "The package has no MD5 sum"
-#~ msgstr "Paketi za odstranitev"
+#~ msgid "Reading patch %s"
+#~ msgstr "Skrivanje popravkov"
 
 #, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "Neznan monitor:"
+#~ msgid "Reading translation: %s"
+#~ msgstr "Nalaganje nameščenega sistema"
 
 #, fuzzy
-#~ msgid "Unlock these resolvables"
-#~ msgstr "%1 je v sporu s/z %2"
+#~ msgid "Downloading %s"
+#~ msgstr "Napaka pri nalaganju %1"
 
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "Nameščam na:"
+#~ msgid "Ok"
+#~ msgstr "OK"
 
 #, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "Nezadoščene odvisnosti:"
+#~ msgid "The package file has incorrect MD5 sum"
+#~ msgstr "Paketi za odstranitev"
 
 #, fuzzy
-#~ msgid "install %s"
-#~ msgstr "Namesti %1"
+#~ msgid "The package has no MD5 sum"
+#~ msgstr "Paketi za odstranitev"
 
-#~ msgid "patch"
-#~ msgstr "popravek"
+#, fuzzy
+#~ msgid "The package has incorrect signature"
+#~ msgstr "Paketi za obnovitev"
 
 #, fuzzy
-#~ msgid "rpm output:"
-#~ msgstr ""
-#~ "\n"
-#~ "Izhod ukaza:"
+#~ msgid "The package archive has incorrect MD5 sum"
+#~ msgstr "Paketi za odstranitev"
+
+#~ msgid "Default"
+#~ msgstr "Privzeto"
 
 #, fuzzy
 #~ msgid "to be installed (soft)"
@@ -5486,11 +5494,3 @@ msgstr ""
 #, fuzzy
 #~ msgid "to be uninstalled"
 #~ msgstr "potrebno je ponovno namestiti"
-
-#, fuzzy
-#~ msgid "unlock %s"
-#~ msgstr "Ure"
-
-#, fuzzy
-#~ msgid "unlock all resolvables"
-#~ msgstr "%1 je v sporu s/z %2"
index 61859af..e6154f2 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -19,16 +19,94 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : (n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr ""
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr ""
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr ""
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr ""
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr ""
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr ""
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr ""
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#  tree node string
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Zahteva"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
+#, fuzzy
+msgid "Obsoletes"
+msgstr "Obriši %1"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -40,10 +118,6 @@ msgstr ""
 msgid " execution failed"
 msgstr "DBI Execution failed: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -52,93 +126,116 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%1 je u konfliktu sa %2"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#  tree node string
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "Boot arhitektura"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "Instalacioni proces nije uspešno završen."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "Ovaj paket nije i neće biti instaliran."
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/target/hal/HalContext.cc:117
+#, fuzzy
+msgid "HalContext not connected"
+msgstr "веза није успостављена"
+
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "абкаски"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "акинески"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "аколи"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "адангме"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#  progress stage
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, fuzzy, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Snimi konfiguracione fajlove"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
 #  TextEntry label
@@ -149,21 +246,1690 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "&Dodatne ipppd opcije"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-#, fuzzy
-msgid "Adyghe"
-msgstr "адангме"
+#  Proposal for backup during update
+#: zypp/target/rpm/RpmDb.cc:2344
+#, fuzzy, c-format, boost-format
+msgid "created backup %s"
+msgstr "Ne pravite sigurnosnu kopiju"
 
-#. language code: aar aa
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Не могу да отворим '%1'."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Не могу да отворим '%1'."
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr ""
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Не могу да отворим '%1'."
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Couldn't open file: %s."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "Наредба која се извршава при повезивању"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#  translators: fallback name for a module at command line
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "nepoznato"
+
+#: zypp/VendorSupportOptions.cc:17
+#, fuzzy
+msgid "unsupported"
+msgstr " - није подржано"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+#, fuzzy
+msgid "invalid"
+msgstr "URL није исправан"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr ""
+
+#  TextEntry label for phone network Areacode (german Vorwahl)
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+#, fuzzy
+msgid "No Code"
+msgstr "Poz&ivni broj"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Андора"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Ujedinjeni arapski emirati"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Авганистан"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Антигва и Барбуда"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Ангила"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albanija"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Јерменија"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Холандски Антили"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Ангола"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Антарктик"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Америчка Самоа"
+
+#  Contry name
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austrija"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australija"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Аруба"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+#, fuzzy
+msgid "Aland Islands"
+msgstr "Оландска острва"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Азербејџан"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Босна и Херцеговина"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Amerika/Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Бангладеш"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgija"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Буркина Фасо"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bugarska"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Azija/Bahrain"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Бурунди"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Бенин"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Султанат Брунеи"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivija"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Бразил"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Бахами"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Бутан"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Буве острво"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Bocvana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Belorusija"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Белизе"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Кокос (Килинг) острва"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Конго"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+#, fuzzy
+msgid "Central African Republic"
+msgstr "Централна Афричка Република"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Švajcarska"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+#, fuzzy
+msgid "Cote D'Ivoire"
+msgstr "Обала Слоноваче"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Кукова острва"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Čile"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Камерун"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Narodi Republike Kine"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolumbija"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Kostarika"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Куба"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Зеленортска острва"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Божићно острво"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Кипар"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Češka Republika"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Nemačka"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Afrika/Djibouti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danska"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Amerika/Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikanska Republika"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Alžir"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ekvador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonija"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egipt"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Западна Сахара"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Еритреја"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Španija"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Етиопија"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finska"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidži"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Фокландска острва (Малвини)"
+
+# official_name for FSM
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Федералне Државе Микронезија"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Farska ostrva"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Francuska"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr ""
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Габон"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Velika Britanija"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Amerika/Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Jordan"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Француска Гвајана"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Nemačka"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Гана"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Evropa/Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grenland"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Гамбија"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Гвинеа"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Amerika/Guadeloupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Екваторијална Гвинеја"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grčka"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Јужна Џорџија и Јужна Сендвич острва"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Gvatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Гвинеа-Бисао"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Гвајана"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Херд острво и Мекдоналд острва"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Hrvatska"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Хаити"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Mađarska"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonezija"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irska"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Izrael"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Indija"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Британска Индијска Океанска Територија"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+#, fuzzy
+msgid "Iran"
+msgstr "Irak"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Island"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italija"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Globalno/Jamajka"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordan"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japan"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Кенија"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Киргизстан"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Камбоџа"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Кирибати"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Комори"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Свети Китс и Невис"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+#, fuzzy
+msgid "North Korea"
+msgstr "Evropa/Severna-Irska"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+#, fuzzy
+msgid "South Korea"
+msgstr "Južni Pol"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuvajt"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Кајманска острва"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Казахстан"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Лаошка Народна Демократска Република"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Liban"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Света Луција"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Evropa/Linhenštajn"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Шри Ланка"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Либерија"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Лесото"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litvanija"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Evropa/Luksemburg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Jermenija"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+#, fuzzy
+msgid "Libya"
+msgstr "Либерија"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Maroko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Evropa/Monako"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Evropa/Moldova"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "монго"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "Сан Марино"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Мадагаскар"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Маршалска острва"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonija"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Мали"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Мјанмар"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Монголија"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Azija/Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Северна Маријанска острва"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Amerika/Marinique"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Мауританија"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Монтсерат"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Маурицијус"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Малдиви"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Малави"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Meksiko"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malazija"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Мозамбик"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Намибија"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Нова Каледонија"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Нигер"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Норфолк острво"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Нигерија"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nikaragva"
+
+#  Contry name
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Europa/Holandija"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norveška"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Непал"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Ниуе"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Novi Zeland"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Француска Полинезија"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Папуа Нова Гвинеја"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipini"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#  Contry name
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Poljska"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Свети Пјер и Микелон"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pacifik/Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Porto Riko"
+
+# official_name for PSE
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+#, fuzzy
+msgid "Palestinian Territory"
+msgstr "Окупирана Палестинска Територија"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugalija"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paragvaj"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Katar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Реунион"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Rumunija"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "српски"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Руска Федерација"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Руанда"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudijska Arabija"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Соломонска острва"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Сејшели"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Švedska"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Света Хелена"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenija"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Свалбард и Јан Мајен"
+
+#  Contry name
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovačka"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Сијера Леоне"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "Сан Марино"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Сенегал"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Сомалија"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Суринам"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Сао Томе и Принсипе"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+#, fuzzy
+msgid "Syria"
+msgstr "сиријски"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Свазиланд"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Туркс и Каикос острва"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Чад"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Француске Јужне Територије"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Того"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tajland"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadžikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "токелау"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Туркменистан"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunis"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Тонга"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr ""
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turska"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Тринидад и Тобаго"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "тувалу"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Тајван"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+#, fuzzy
+msgid "Tanzania"
+msgstr "Australija/Tasmania"
+
+#     "TW" : _("Taiwan R.O.C."),
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukrajina"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Уганда"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Мала Спољашња Острва Сједињених Држава"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Сједињене Државе"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Urugvaj"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Света Столица (Ватикан град-држава)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Свети Винсент и Гренадинци"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venecuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Британска Девичанска Острва"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Девичанска острва, Америчка"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+#, fuzzy
+msgid "Vietnam"
+msgstr "вијетнамски"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Вануату"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Волис и Футуна"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "SAD/Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Мајоте"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Južna Afrika"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Замбија"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zibabve"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr ""
+
+#. language code: aar aa
 #: zypp/LanguageCode.cc:161
 msgid "Afar"
 msgstr "афар"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Авганистан"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "абкаски"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "акинески"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "аколи"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "адангме"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+#, fuzzy
+msgid "Adyghe"
+msgstr "адангме"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "афроазијски (остали)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -175,11 +1941,6 @@ msgstr "африхили"
 msgid "Afrikaans"
 msgstr "африканс"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "афроазијски (остали)"
-
 #  entry of bootloader menu - only a-z, A-Z, 0-9, _ and blank space
 #  are allowed, otherwise translartion won't be used
 #  try to keep short, may be shortened due to bootloader limitations
@@ -202,17 +1963,6 @@ msgstr "акан"
 msgid "Akkadian"
 msgstr "акадски"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-#, fuzzy
-msgid "Aland Islands"
-msgstr "Оландска острва"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albanija"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -223,59 +1973,27 @@ msgstr "албански"
 msgid "Aleut"
 msgstr "алеут"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Alžir"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 #, fuzzy
 msgid "Algonquian Languages"
 msgstr "алгонквијски језици"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "алтајски (остали)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Америчка Самоа"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+#, fuzzy
+msgid "Southern Altai"
+msgstr "јужни сами"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "амхарски"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Андора"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Ангола"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Ангила"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Антарктик"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Антигва и Барбуда"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "енглески, стари (око 450–1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -288,55 +2006,40 @@ msgstr "језици Апача"
 msgid "Arabic"
 msgstr "арапски"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "арагонски"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "арамајски"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "арапахо"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "арагонски"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "јерменски"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "араукански"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "аравак"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Јерменија"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "јерменски"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "арапахо"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "вештачки (остали)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Ð\90Ñ\80Ñ\83ба"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "аÑ\80авак"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -356,34 +2059,12 @@ msgstr "Austrija"
 msgid "Athapascan Languages"
 msgstr "атапаскански језик"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australija"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 #, fuzzy
 msgid "Australian Languages"
 msgstr "аустралијски језици"
 
-#  Contry name
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austrija"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "аустронежански (остали)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -404,44 +2085,26 @@ msgstr "авади"
 msgid "Aymara"
 msgstr "ајмар"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Азербејџан"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "азербејџански"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Бахами"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Azija/Bahrain"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "банда"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "балинезе"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+#, fuzzy
+msgid "Bamileke Languages"
+msgstr "бамилеке језици"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "балтички (остали)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "башкир"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -450,80 +2113,39 @@ msgstr "балучи"
 
 #. language code: bam bm
 #: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "бамбара"
-
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-#, fuzzy
-msgid "Bamileke Languages"
-msgstr "бамилеке језици"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "банда"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Бангладеш"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "банту (остали)"
-
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Amerika/Barbados"
-
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "баса"
+msgid "Bambara"
+msgstr "бамбара"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "башкир"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "балинезе"
 
 #. language code: baq eus eu
 #: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 msgid "Basque"
 msgstr "баскијски"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "батак (Индонезија)"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "баса"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "балтички (остали)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "беџа"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belorusija"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "белоруски"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgija"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Белизе"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -534,31 +2156,16 @@ msgstr "бемба"
 msgid "Bengali"
 msgstr "бенгалски"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Бенин"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "бербер (остали)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "бојупи"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Бутан"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
@@ -569,275 +2176,81 @@ msgstr "бихари"
 msgid "Bikol"
 msgstr "бикол"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "бини"
-
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "бислама"
-
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-#, fuzzy
-msgid "Blin"
-msgstr "бини"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivija"
-
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Босна и Херцеговина"
-
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "бошњачки"
-
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Bocvana"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Буве острво"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "браџ"
-
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Бразил"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "бретањски"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Британска Индијска Океанска Територија"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Британска Девичанска Острва"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Султанат Брунеи"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "бугинезе"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bugarska"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "бугарски"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "буријат"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Буркина Фасо"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "бурмиски"
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Бурунди"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "кадо"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Камбоџа"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Камерун"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr ""
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr ""
-
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Не могу да отворим '%1'."
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr ""
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Не могу да отворим '%1'."
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr ""
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr ""
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Не могу да отворим '%1'."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Couldn't open file: %s."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "бини"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Couldn't open file: %s."
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "бислама"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "сиксика"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr ""
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "банту (остали)"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr ""
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "бошњачки"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr ""
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "браџ"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "бретањски"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "батак (Индонезија)"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Ð\9dе Ð¼Ð¾Ð³Ñ\83 Ð´Ð° Ð¾Ñ\82воÑ\80им '%1'."
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "бÑ\83Ñ\80иÑ\98аÑ\82"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "бугинезе"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "бугарски"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "бурмиски"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Не могу да отворим '%1'."
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+#, fuzzy
+msgid "Blin"
+msgstr "бини"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Зеленортска острва"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "кадо"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "централноамерички индијански (остали)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -854,11 +2267,6 @@ msgstr "каталонски"
 msgid "Caucasian (Other)"
 msgstr "кавкаски (остали)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Кајманска острва"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -869,174 +2277,83 @@ msgstr "цебуано"
 msgid "Celtic (Other)"
 msgstr "келтски (остали)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-#, fuzzy
-msgid "Central African Republic"
-msgstr "Централна Афричка Република"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "централноамерички индијански (остали)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Чад"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "чагатај"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-#, fuzzy
-msgid "Chamic Languages"
-msgstr "чамски језици"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "чаморо"
 
-#  progress stage
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, fuzzy, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Snimi konfiguracione fajlove"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "чеченски"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "чироки"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "чејенски"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "чибча"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-#, fuzzy
-msgid "Chichewa"
-msgstr "чибча"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Čile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "чеченски"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Narodi Republike Kine"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "чагатај"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Kineski"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+#, fuzzy
+msgid "Chuukese"
+msgstr "чукезе"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "мари"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 #, fuzzy
 msgid "Chinook Jargon"
 msgstr "чиноок жаргон"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "чипевјан"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "чоктав"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Божићно острво"
-
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "црквенословенски"
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-#, fuzzy
-msgid "Chuukese"
-msgstr "чукезе"
-
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "чуваш"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-#, fuzzy
-msgid "Classical Newari"
-msgstr "Ime klase"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Кокос (Килинг) острва"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolumbija"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "Наредба која се извршава при повезивању"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "чипевјан"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "чироки"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Комори"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "црквенословенски"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "чуваш"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Конго"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "чејенски"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Кукова острва"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+#, fuzzy
+msgid "Chamic Languages"
+msgstr "чамски језици"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1053,33 +2370,6 @@ msgstr "корнвалски"
 msgid "Corsican"
 msgstr "корзикански"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Kostarika"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-#, fuzzy
-msgid "Cote D'Ivoire"
-msgstr "Обала Слоноваче"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "кри"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "крик"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-#, fuzzy
-msgid "Creoles and Pidgins (Other)"
-msgstr "креолски и пиџински (остали)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 #, fuzzy
@@ -1098,46 +2388,38 @@ msgstr "креолски и пиџински (остали)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "креолски и пиџински (остали)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "кри"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Hrvatska"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Hrvatski"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+#, fuzzy
+msgid "Creoles and Pidgins (Other)"
+msgstr "креолски и пиџински (остали)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Куба"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+#, fuzzy
+msgid "Kashubian"
+msgstr "кабардијански"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "кушитски (остали)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Кипар"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Češka"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Češka Republika"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 #, fuzzy
@@ -1166,10 +2448,15 @@ msgstr "сасак"
 msgid "Delaware"
 msgstr "делавер"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danska"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "славски (атапаскански)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "догриб"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1181,72 +2468,38 @@ msgstr "динка"
 msgid "Divehi"
 msgstr "дивехи"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Afrika/Djibouti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "догри"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "догриб"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Amerika/Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikanska Republika"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "дравижански (остали)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+#, fuzzy
+msgid "Lower Sorbian"
+msgstr "Čuvanje Energije"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "дуала"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
-
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Holandija"
-
 #. language code: dum
 #: zypp/LanguageCode.cc:399
 #, fuzzy
 msgid "Dutch, Middle (ca.1050-1350)"
 msgstr "холандски, средњевековни (око 1050—1350)"
 
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Holandija"
+
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1257,140 +2510,46 @@ msgstr "ђула"
 msgid "Dzongkha"
 msgstr "дзонгка"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr ""
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ekvador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "ефик"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egipt"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
 msgstr "египатски (стари)"
 
 #. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "екаџук"
-
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "еламит"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr ""
-
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "енглески"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "енглески, средњевековни (1100—1500.)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "енглески, стари (око 450–1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Екваторијална Гвинеја"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Еритреја"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "екаџук"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "еламит"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "енглески"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-#, fuzzy
-msgid "Erzya"
-msgstr "орија"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "енглески, средњевековни (1100—1500.)"
 
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "есперанто"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonija"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estonski"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Етиопија"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1401,211 +2560,32 @@ msgstr "еве"
 msgid "Ewondo"
 msgstr "евондо"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Failed to parse: %s."
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Фокландска острва (Малвини)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "фанг"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "фанти"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Farska ostrva"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "фарски"
 
-# official_name for FSM
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Федералне Државе Микронезија"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidži"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "фанти"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "фиџијан"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 #, fuzzy
 msgid "Filipino"
 msgstr "Filipini"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finska"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1616,39 +2596,15 @@ msgstr "Finska"
 msgid "Finno-Ugrian (Other)"
 msgstr "фино-угарски (остали)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "фон"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Francuska"
-
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
-msgstr "Francuska"
-
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Француска Гвајана"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Француска Полинезија"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Француске Јужне Територије"
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
+msgstr "Francuska"
 
 #. language code: frm
 #: zypp/LanguageCode.cc:449
@@ -1665,48 +2621,21 @@ msgstr "француски, стари (842—око 1400.)"
 msgid "Frisian"
 msgstr "фрижански"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "фриулијански"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "фула"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "фриулијански"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "га"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Габон"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-#, fuzzy
-msgid "Gaelic"
-msgstr "Мали"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-#, fuzzy
-msgid "Galician"
-msgstr "гвичин"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Гамбија"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "ганда"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1717,15 +2646,10 @@ msgstr "гајо"
 msgid "Gbaya"
 msgstr "гбаја"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "гиз"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Jordan"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "германски (остали)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1737,6 +2661,38 @@ msgstr "грузијски"
 msgid "German"
 msgstr "Nemačka"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "гиз"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "жибертески"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+#, fuzzy
+msgid "Gaelic"
+msgstr "Мали"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "ирски"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+#, fuzzy
+msgid "Galician"
+msgstr "гвичин"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "са острва Мана"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1747,30 +2703,6 @@ msgstr "немачки, средњевековни горњи (око 1050—150
 msgid "German, Old High (ca.750-1050)"
 msgstr "немачки, стари горњи (око 750—1050.)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "германски (остали)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Nemačka"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Гана"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Evropa/Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "жибертески"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1791,11 +2723,6 @@ msgstr "готски"
 msgid "Grebo"
 msgstr "гребо"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grčka"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1806,62 +2733,16 @@ msgstr "грчки, стари (до 1453.)"
 msgid "Greek, Modern (1453-)"
 msgstr "грчки, савремени (1453.—)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grenland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Amerika/Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Amerika/Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "гуарани"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Gvatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Nemačka"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Гвинеа"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Гвинеа-Бисао"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "гујарати"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Гвајана"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 #, fuzzy
@@ -1873,54 +2754,22 @@ msgstr "гвичин"
 msgid "Haida"
 msgstr "хаида"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Хаити"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 #, fuzzy
 msgid "Haitian"
 msgstr "Хаити"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "веза није успостављена"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "хауса"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "хавајски"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Херд острво и Мекдоналд острва"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1947,18 +2796,6 @@ msgstr "химахали"
 msgid "Hindi"
 msgstr "хинду"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-#, fuzzy
-msgid "Hiri Motu"
-msgstr "хири"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-#, fuzzy
-msgid "History:"
-msgstr "XF86History"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1969,31 +2806,23 @@ msgstr "хетски"
 msgid "Hmong"
 msgstr "хмонг"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Света Столица (Ватикан град-држава)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+#, fuzzy
+msgid "Hiri Motu"
+msgstr "хири"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+#, fuzzy
+msgid "Upper Sorbian"
+msgstr "српски"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Mađarska"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Mađarska"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2004,10 +2833,10 @@ msgstr "хупа"
 msgid "Iban"
 msgstr "ибан"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Island"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "игбо"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2019,252 +2848,107 @@ msgstr "исландски"
 msgid "Ido"
 msgstr "идо"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "игбо"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "сихуан ји"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "иџо"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "инуктитут"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "интерлингве"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "илоко"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "инари сами"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Indija"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "индијски (остали)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "индоевропски (остали)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonezija"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "индонежански"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "индоевропски (остали)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "ингуш"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr ""
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "интерлингве"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "инуктитут"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "инупијак"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr ""
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr ""
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr ""
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-#, fuzzy
-msgid "Iran"
-msgstr "Irak"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "ирански (остали)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irska"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "ирски"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "ирски, средњевековни (900-1200.)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "ирски, стари (до 900.)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 #, fuzzy
 msgid "Iroquoian Languages"
 msgstr "ироквојански језици"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Izrael"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italija"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italija"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Globalno/Jamajka"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "јавански"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japan"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+#, fuzzy
+msgid "Lojban"
+msgstr "Liban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japan"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "јавански"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordan"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "јудо-персијски"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "јудо-арапски"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "јудо-персијски"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "кабардијански"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "кара-калпак"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2282,12 +2966,6 @@ msgstr "качин"
 msgid "Kalaallisut"
 msgstr "гренландски (калалисут)"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-#, fuzzy
-msgid "Kalmyk"
-msgstr "кумик"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2298,22 +2976,6 @@ msgstr "камба"
 msgid "Kannada"
 msgstr "канада"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "канури"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "кара-калпак"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-#, fuzzy
-msgid "Karachay-Balkar"
-msgstr "кара-калпак"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2324,11 +2986,10 @@ msgstr "карен"
 msgid "Kashmiri"
 msgstr "кашмирски"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-#, fuzzy
-msgid "Kashubian"
-msgstr "кабардијански"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "канури"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2338,17 +2999,12 @@ msgstr "кави"
 #. language code: kaz kk
 #: zypp/LanguageCode.cc:609
 msgid "Kazakh"
-msgstr "казахстански"
-
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Казахстан"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Кенија"
+msgstr "казахстански"
+
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "кабардијански"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
@@ -2356,16 +3012,16 @@ msgstr "Кенија"
 msgid "Khasi"
 msgstr "кази"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "кмерски"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "косијански (остали)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "кмерски"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2376,11 +3032,6 @@ msgstr "котанезе"
 msgid "Kikuyu"
 msgstr "кикују"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "кимбунду"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2391,16 +3042,15 @@ msgstr "кинјарванда"
 msgid "Kirghiz"
 msgstr "киргишки"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Ð\9aиÑ\80ибаÑ\82и"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "кимбÑ\83ндÑ\83"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-#, fuzzy
-msgid "Klingon"
-msgstr "конго"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "конкани"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2412,11 +3062,6 @@ msgstr "коми"
 msgid "Kongo"
 msgstr "конго"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "конкани"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2432,11 +3077,22 @@ msgstr "косраенски"
 msgid "Kpelle"
 msgstr "кпеле"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+#, fuzzy
+msgid "Karachay-Balkar"
+msgstr "кара-калпак"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "кру"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "курук"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2452,26 +3108,11 @@ msgstr "кумик"
 msgid "Kurdish"
 msgstr "курдски"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "курук"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "кутенај"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuvajt"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Киргизстан"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2493,69 +3134,21 @@ msgstr "ламбда"
 msgid "Lao"
 msgstr "лао"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Лаошка Народна Демократска Република"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "латински"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Jermenija"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "летонски"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Liban"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Лесото"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "лежгијански"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Либерија"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-#, fuzzy
-msgid "Libya"
-msgstr "Либерија"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Evropa/Linhenštajn"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 #, fuzzy
@@ -2567,64 +3160,46 @@ msgstr "лимбуржански"
 msgid "Lingala"
 msgstr "лингала"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litvanija"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "литвански"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-#, fuzzy
-msgid "Lojban"
-msgstr "Liban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-#, fuzzy
-msgid "Low German"
-msgstr "Nemačka"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-#, fuzzy
-msgid "Lower Sorbian"
-msgstr "Čuvanje Energije"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "монго"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "лози"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "лÑ\83ба-каÑ\82анга"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "лÑ\83кÑ\81ембÑ\83Ñ\80Ñ\88ки"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "луба-лулуа"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "луба-катанга"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "ганда"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Луијсено"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "луле сами"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2641,35 +3216,11 @@ msgstr "луо (Кенија и Танзанија)"
 msgid "Lushai"
 msgstr "лушаји"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Evropa/Luksemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "луксембуршки"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Azija/Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonija"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "македонски"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Мадагаскар"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2680,191 +3231,76 @@ msgstr "мадурезе"
 msgid "Magahi"
 msgstr "магахи"
 
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
-msgstr "маитхили"
-
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr "макасар"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "малагаси"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Малави"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "малајски"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "малајамски"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malazija"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Малдиви"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Мали"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "малтешки"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "маршалски"
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "манÑ\87Ñ\83"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
+msgstr "маиÑ\82Ñ\85или"
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "мандарски"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
+msgstr "макасар"
+
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "малајамски"
 
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "мандинго"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-#, fuzzy
-msgid "Manipuri"
-msgstr "канури"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-#, fuzzy
-msgid "Manobo Languages"
-msgstr "манобо језици"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "са острва Мана"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "маори"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "аустронежански (остали)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "марати"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "мари"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Маршалска острва"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "маршалски"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Amerika/Marinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "марвари"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "масаи"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Мауританија"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Маурицијус"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "малајски"
 
-#. language code: myn
-#: zypp/LanguageCode.cc:771
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
 #, fuzzy
-msgid "Mayan Languages"
-msgstr "језици маја"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Мајоте"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
-
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+msgid "Moksha"
+msgstr "мохавк"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "мандарски"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "менде"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr ""
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Meksiko"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "ирски, средњевековни (900-1200.)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2877,90 +3313,64 @@ msgstr "микмак"
 msgid "Minangkabau"
 msgstr "минангкабау"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-#, fuzzy
-msgid "Mirandese"
-msgstr "мадурезе"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 #, fuzzy
 msgid "Miscellaneous Languages"
 msgstr "разни језици"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "мон-кмер (остали)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "малагаси"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "малтешки"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "манчу"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+#, fuzzy
+msgid "Manipuri"
+msgstr "канури"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+#, fuzzy
+msgid "Manobo Languages"
+msgstr "манобо језици"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "мохавк"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-#, fuzzy
-msgid "Moksha"
-msgstr "мохавк"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "молдавски"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Evropa/Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "мон-кмер (остали)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Evropa/Monako"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "монго"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Монголија"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "монголски"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "монго"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Монтсерат"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Maroko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "моси"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Мозамбик"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 #, fuzzy
@@ -2972,144 +3382,112 @@ msgstr "вишејезички"
 msgid "Munda languages"
 msgstr "мунда језици"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Мјанмар"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "крик"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+#, fuzzy
+msgid "Mirandese"
+msgstr "мадурезе"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "марвари"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+#, fuzzy
+msgid "Mayan Languages"
+msgstr "језици маја"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+#, fuzzy
+msgid "Erzya"
+msgstr "орија"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "нахуатл"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Намибија"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+#, fuzzy
+msgid "North American Indian"
+msgstr "северноамерички индијански (остали)"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "напуљски"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Globalno/Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "ндебеле, северни"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "ндебеле, јужни"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "ндебеле, северни"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "ндонга"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "напуљски"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Непал"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
+#. language code: nds
+#: zypp/LanguageCode.cc:791
 #, fuzzy
-msgid "Nepal Bhasa"
-msgstr "Непал"
+msgid "Low German"
+msgstr "Nemačka"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "непалски"
 
-#  Contry name
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Europa/Holandija"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Холандски Антили"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Нова Каледонија"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Novi Zeland"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: new
+#: zypp/LanguageCode.cc:795
+#, fuzzy
+msgid "Nepal Bhasa"
+msgstr "Непал"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "нијас"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nikaragva"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Нигер"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "нигер-кордофански (остали)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Нигерија"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "нило-сахарски (остали)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Ниуе"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "ниујеан"
 
-#  TextEntry label for phone network Areacode (german Vorwahl)
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
 #, fuzzy
-msgid "No Code"
-msgstr "Poz&ivni broj"
+msgid "Norwegian Nynorsk"
+msgstr "норвешки/модерни правопис"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr ""
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "норвешки/бокмал"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
@@ -3117,68 +3495,21 @@ msgstr ""
 msgid "Nogai"
 msgstr "ндонга"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Норфолк острво"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "нордијски, стари"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-#, fuzzy
-msgid "North American Indian"
-msgstr "северноамерички индијански (остали)"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-#, fuzzy
-msgid "North Korea"
-msgstr "Evropa/Severna-Irska"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Северна Маријанска острва"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "северни сами"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-#, fuzzy
-msgid "Northern Sotho"
-msgstr "северни сами"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norveška"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norveška"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "норвешки/бокмал"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
+#. language code: nso
+#: zypp/LanguageCode.cc:813
 #, fuzzy
-msgid "Norwegian Nynorsk"
-msgstr "норвешки/модерни правопис"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr ""
+msgid "Northern Sotho"
+msgstr "северни сами"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
@@ -3186,6 +3517,18 @@ msgstr ""
 msgid "Nubian Languages"
 msgstr "нубијски језици"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+#, fuzzy
+msgid "Classical Newari"
+msgstr "Ime klase"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+#, fuzzy
+msgid "Chichewa"
+msgstr "чибча"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 #, fuzzy
@@ -3207,11 +3550,6 @@ msgstr "њоро"
 msgid "Nzima"
 msgstr "нзима"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "Obriši %1"
-
 # ???
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
@@ -3223,20 +3561,6 @@ msgstr "окситан (после 1500.)"
 msgid "Ojibwa"
 msgstr "оџибва"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3257,6 +3581,11 @@ msgstr "осаж"
 msgid "Ossetian"
 msgstr "осетијан"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "турски, отомански (1500–1928)"
+
 # ???
 #. language code: oto
 #: zypp/LanguageCode.cc:843
@@ -3264,60 +3593,25 @@ msgstr "осетијан"
 msgid "Otomian Languages"
 msgstr "отомијански језици"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "папуан (остали)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "пангасинан"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "палави"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "палауан"
-
-# official_name for PSE
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-#, fuzzy
-msgid "Palestinian Territory"
-msgstr "Окупирана Палестинска Територија"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "пали"
-
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "пампања"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "пангасинан"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "пампања"
 
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
@@ -3329,95 +3623,45 @@ msgstr "панџаби"
 msgid "Papiamento"
 msgstr "папијаменто"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Папуа Нова Гвинеја"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "папуан (остали)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paragvaj"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr ""
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr ""
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "персијски"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "палауан"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "персијски, стари (око 600–400 п.н.е.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "персијски"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "филипински (остали)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipini"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "феничански"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pacifik/Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "понпејан"
-
-#  Contry name
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Poljska"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "пали"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Poljska"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugalija"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "понпејан"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3430,77 +3674,21 @@ msgstr "Portugalija"
 msgid "Prakrit Languages"
 msgstr "пракрит језици"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "провансалски, стари (до 1500.)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Porto Riko"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "пушто"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Katar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "квечуа"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr ""
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "рето-романски"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3516,140 +3704,37 @@ msgstr "рапануји"
 msgid "Rarotongan"
 msgstr "раротонган"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr ""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#  tree node string
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Zahteva"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Реунион"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "романски (остали)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Rumunija"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-#, fuzzy
-msgid "Romanian"
-msgstr "Rumunija"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "рето-романски"
 
 # овако каже Мортон-Бенсон, или „језик Рома“
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "цигански"
-
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "рунди"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Rusija"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Руска Федерација"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Руанда"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Света Хелена"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Свети Китс и Невис"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Света Луција"
-
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "Сан Марино"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Свети Пјер и Микелон"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Свети Винсент и Гренадинци"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-#, fuzzy
-msgid "Salishan Languages"
-msgstr "салишан језици"
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "самарићански арамајски"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "цигански"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
 #, fuzzy
-msgid "Sami Languages (Other)"
-msgstr "сами језици (остали)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "SAD/Samoa"
+msgid "Romanian"
+msgstr "Rumunija"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Ñ\81амоанÑ\81ки"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Ñ\80Ñ\83нди"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "Сан Марино"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Rusija"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3661,41 +3746,63 @@ msgstr "сандаве"
 msgid "Sango"
 msgstr "санго"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "јакут"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "јужноамерички индијански (остали)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+#, fuzzy
+msgid "Salishan Languages"
+msgstr "салишан језици"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "самарићански арамајски"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "санскрит"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "сасак"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "сантали"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Сао Томе и Принсипе"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "сардинијски"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "сасак"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "српски"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudijska Arabija"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+#, fuzzy
+msgid "Sicilian"
+msgstr "SAD/Michigan"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "шкотски"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Hrvatski"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3706,369 +3813,190 @@ msgstr "селкуп"
 msgid "Semitic (Other)"
 msgstr "семитски (остали)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Сенегал"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "иÑ\80Ñ\81ки, Ñ\81Ñ\82аÑ\80и (до 900.)"
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
 #, fuzzy
-msgid "Serbia"
-msgstr "српски"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "српски"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "серер"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
-
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Сејшели"
+msgid "Sign Languages"
+msgstr "знаковни језици"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "шан"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "шона"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "сихуан ји"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-#, fuzzy
-msgid "Sicilian"
-msgstr "SAD/Michigan"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "сидамо"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Сијера Леоне"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-#, fuzzy
-msgid "Sign Languages"
-msgstr "знаковни језици"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "сиксика"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "синди"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 #, fuzzy
 msgid "Sinhala"
 msgstr "синалезе"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "сино-тибетски (остали)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 #, fuzzy
 msgid "Siouan Languages"
 msgstr "сијуан језици"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "сколт сами"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "славски (атапаскански)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "сино-тибетски (остали)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
 msgid "Slavic (Other)"
 msgstr "словенски (остали)"
 
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "Slovačka"
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "Slovačka"
+
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "словеначки"
+
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "јужни сами"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "северни сами"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+#, fuzzy
+msgid "Sami Languages (Other)"
+msgstr "сами језици (остали)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "луле сами"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "инари сами"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "самоански"
 
-#  Contry name
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovačka"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "сколт сами"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenija"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "шона"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "словеначки"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "синди"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "сонинке"
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "согдијан"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Соломонска острва"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "сомалски"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Сомалија"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "сонгхај"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "сонинке"
-
-# моравско српски?
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-#, fuzzy
-msgid "Sorbian Languages"
-msgstr "сорбски језици"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "сото, јужни"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Južna Afrika"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "јужноамерички индијански (остали)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Јужна Џорџија и Јужна Сендвич острва"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-#, fuzzy
-msgid "South Korea"
-msgstr "Južni Pol"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-#, fuzzy
-msgid "Southern Altai"
-msgstr "јужни сами"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "јужни сами"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Španija"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Španija"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Шри Ланка"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "сардинијски"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "серер"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr ""
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "нило-сахарски (остали)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "свати"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "сукума"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "сумерски"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "сунданежански"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Суринам"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "сузу"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Свалбард и Јан Мајен"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "сумерски"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "свахили"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "свати"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Свазиланд"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Švedska"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Švedska"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Švajcarska"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-#, fuzzy
-msgid "Syria"
-msgstr "сиријски"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "сиријски"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "тагалог"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4079,37 +4007,11 @@ msgstr "тахићански"
 msgid "Tai (Other)"
 msgstr "тајландски (остали)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Тајван"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "таџик"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadžikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "тамашек"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "тамил"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-#, fuzzy
-msgid "Tanzania"
-msgstr "Australija/Tasmania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4120,6 +4022,11 @@ msgstr "Татарски"
 msgid "Telugu"
 msgstr "телугу"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "тимне"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4130,32 +4037,20 @@ msgstr "терено"
 msgid "Tetum"
 msgstr "тетум"
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr "тајландски"
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tajland"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "таџик"
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr ""
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "тагалог"
+
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
+msgstr "тајландски"
 
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
@@ -4172,47 +4067,27 @@ msgstr "тигар"
 msgid "Tigrinya"
 msgstr "тигрињски"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "тимне"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "тив"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+#, fuzzy
+msgid "Klingon"
+msgstr "конго"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 #, fuzzy
 msgid "Tlingit"
 msgstr "тлинклит"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Того"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "ток писин"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "токелау"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Тонга"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "тамашек"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4224,105 +4099,68 @@ msgstr "тонга (Нијаса)"
 msgid "Tonga (Tonga Islands)"
 msgstr "тонга (Тонга острва)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Тринидад и Тобаго"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "ток писин"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "цимшиан"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "цвана"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "цонга"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Ñ\86вана"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Ñ\82Ñ\83Ñ\80кмениÑ\81Ñ\82анÑ\81ки"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "тумбука"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunis"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 #, fuzzy
 msgid "Tupi Languages"
 msgstr "тупи језици"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turska"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turska"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "турски, отомански (1500–1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "туркменистански"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Туркменистан"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Туркс и Каикос острва"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "алтајски (остали)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "тувалу"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "тви"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "тувинијански"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "тви"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 #, fuzzy
 msgid "Udmurt"
 msgstr "урду"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Уганда"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4333,12 +4171,6 @@ msgstr "угарски"
 msgid "Uighur"
 msgstr "ујгур"
 
-#     "TW" : _("Taiwan R.O.C."),
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukrajina"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4349,714 +4181,905 @@ msgstr "украјински"
 msgid "Umbundu"
 msgstr "умбунду"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr ""
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "неодређен"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr ""
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "урду"
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "узбекистански"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "ваи"
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "венда"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "вијетнамски"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "волапук"
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "вотик"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+#, fuzzy
+msgid "Wakashan Languages"
+msgstr "вакашан језици"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "валамо"
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "варај"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "вашо"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "велшки"
+
+# моравско српски?
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+#, fuzzy
+msgid "Sorbian Languages"
+msgstr "сорбски језици"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "валун"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "волоф"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+#, fuzzy
+msgid "Kalmyk"
+msgstr "кумик"
+
+# не ваља
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "гзоза"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "јао"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "јапески"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "јидишки"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "јоруба"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+#, fuzzy
+msgid "Yupik Languages"
+msgstr "јупик језици"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Ujedinjeni arapski emirati"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "запотек"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Velika Britanija"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "зенага"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Сједињене Државе"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+#, fuzzy
+msgid "Zhuang"
+msgstr "Бутан"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Ð\9cала Ð¡Ð¿Ð¾Ñ\99аÑ\88Ñ\9aа Ð\9eÑ\81Ñ\82Ñ\80ва Ð¡Ñ\98едиÑ\9aениÑ\85 Ð\94Ñ\80жава"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "занде"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr ""
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Itd/Zulu"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "зуни"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr ""
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
+msgid "Signature file %s not found"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr ""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-#, fuzzy
-msgid "Upper Sorbian"
-msgstr "српски"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "урду"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr ""
+#  tree node string
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "Boot arhitektura"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "Proveravam međuzavisnost..."
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Urugvaj"
+#  summary text heading
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "Paketi za obnavljanje"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "узбекистански"
+#: zypp/solver/detail/SATResolver.cc:1000
+#, fuzzy
+msgid "unsupported request"
+msgstr " - није подржано"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "Ovaj paket nije i neće biti instaliran."
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "ваи"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "Instalacioni proces nije uspešno završen."
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Вануату"
+#  Frame title for installation target hard disk / partition(s)
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Instaliram na:"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "венда"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%1 je u konfliktu sa %2"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venecuela"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-#, fuzzy
-msgid "Vietnam"
-msgstr "вијетнамски"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%1 je u konfliktu sa %2"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "вијетнамски"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%1 je u konfliktu sa %2"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Девичанска острва, Америчка"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "волапук"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "Automatska Instalacija"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "вотик"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-#, fuzzy
-msgid "Wakashan Languages"
-msgstr "вакашан језици"
+#  Frame title for installation target hard disk / partition(s)
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, fuzzy, c-format, boost-format
+msgid "do not install %s"
+msgstr "Instaliram na:"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "валамо"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Волис и Футуна"
+#  Frame title for installation target hard disk / partition(s)
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "Instaliram na:"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "валун"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "варај"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "вашо"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "велшки"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "%1 je u konfliktu sa %2"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Западна Сахара"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "волоф"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr ""
 
-# не ваља
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "гзоза"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "јакут"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "Obriši %1"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "јао"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "јапески"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "јидишки"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "јоруба"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Инсталација"
+
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, fuzzy, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "ima neispunjene zahteve..."
+
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
 #, fuzzy
-msgid "Yupik Languages"
-msgstr "јупик језици"
+msgid "generally ignore of some dependencies"
+msgstr "ima neispunjene zahteve..."
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Замбија"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "занде"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "запотек"
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Couldn't open file: %s."
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "зенага"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
 #, fuzzy
-msgid "Zhuang"
-msgstr "Бутан"
+msgid "History:"
+msgstr "XF86History"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zibabve"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Itd/Zulu"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "зуни"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "ima neispunjene zahteve..."
+msgid "Failed to mount %s on %s"
+msgstr "Failed to parse: %s."
 
-#  Frame title for installation target hard disk / partition(s)
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:41
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Instaliram na:"
+msgid "Failed to unmount %s"
+msgstr "Failed to parse: %s."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#  Proposal for backup during update
-#: zypp/target/rpm/RpmDb.cc:2344
-#, fuzzy, c-format, boost-format
-msgid "created backup %s"
-msgstr "Ne pravite sigurnosnu kopiju"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:67
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Ð\98нÑ\81Ñ\82алаÑ\86иÑ\98а"
+msgid "Cannot write file '%s'."
+msgstr "Ð\9dе Ð¼Ð¾Ð³Ñ\83 Ð´Ð° Ð¾Ñ\82воÑ\80им '%1'."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "%1 je u konfliktu sa %2"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#  Frame title for installation target hard disk / partition(s)
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, fuzzy, c-format, boost-format
-msgid "do not install %s"
-msgstr "Instaliram na:"
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "ima neispunjene zahteve..."
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%1 je u konfliktu sa %2"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-#, fuzzy
-msgid "invalid"
-msgstr "URL није исправан"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
+
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
+
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "Obriši %1"
+msgid "Cannot eject media '%s'"
+msgstr "Не могу да отворим '%1'."
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:199
+#, c-format, boost-format
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#  summary text heading
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "Paketi za obnavljanje"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#  Frame title for installation target hard disk / partition(s)
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "Instaliram na:"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%1 je u konfliktu sa %2"
-
-#: zypp/solver/detail/SATResolver.cc:989
+#  Frame title for installation target hard disk / partition(s)
 #, fuzzy
-msgid "some dependency problem"
-msgstr "Proveravam međuzavisnost..."
+#~ msgid "do not keep %s installed"
+#~ msgstr "Instaliram na:"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "uninstallable providers: "
-msgstr "Automatska Instalacija"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Failed to parse: %s."
 
-#  translators: fallback name for a module at command line
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "nepoznato"
+# name for SCG
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Србија и Црна Гора"
 
-#: zypp/VendorSupportOptions.cc:17
 #, fuzzy
-msgid "unsupported"
-msgstr " - није подржано"
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "Proveravam međuzavisnost..."
 
-#: zypp/solver/detail/SATResolver.cc:1000
 #, fuzzy
-msgid "unsupported request"
-msgstr " - није подржано"
+#~ msgid "%s remove failed"
+#~ msgstr "rpm greška."
 
 #, fuzzy
-#~ msgid " Error!"
-#~ msgstr "Greška"
+#~ msgid "rpm output:"
+#~ msgstr ""
+#~ "\n"
+#~ "Komandni izlaz:"
 
 #, fuzzy
-#~ msgid " Important!"
-#~ msgstr "Unos podataka"
+#~ msgid "%s install failed"
+#~ msgstr "Instalacioni proces nije uspešno završen."
 
+#  PushButton: Allright, really start installation
+#  PushButton: Allright, really start installation
 #, fuzzy
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "Proveravam međuzavisnost..."
+#~ msgid "%s installed ok"
+#~ msgstr "&Da, instaliraj"
 
 #, fuzzy
-#~ msgid "%s conflicts with other resolvables"
+#~ msgid "Do not install or delete the resolvables concerned"
 #~ msgstr "%1 je u konfliktu sa %2"
 
+#  error popup message
+#, fuzzy
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "Direktorijum %1 je već na listi."
+
 #, fuzzy
-#~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
+#~ msgid "Ignore the obsolete %s in %s"
 #~ msgstr "%1 je u konfliktu sa %2"
 
 #, fuzzy
-#~ msgid "%s has missing dependencies"
-#~ msgstr "Proveravam međuzavisnost..."
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "%1 je u konfliktu sa %2"
 
 #, fuzzy
-#~ msgid "%s install failed"
-#~ msgstr "Instalacioni proces nije uspešno završen."
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "ima neispunjene zahteve..."
 
-#  PushButton: Allright, really start installation
-#  PushButton: Allright, really start installation
+#  summary heder
 #, fuzzy
-#~ msgid "%s installed ok"
-#~ msgstr "&Da, instaliraj"
+#~ msgid "Install missing resolvables"
+#~ msgstr "Instaliranje nedostajućih paketa"
 
+#  summary heder
 #, fuzzy
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "Ovaj paket nije i neće biti instaliran."
+#~ msgid "Keep resolvables"
+#~ msgstr "Instaliranje nedostajućih paketa"
 
 #, fuzzy
-#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgid "Unlock these resolvables"
 #~ msgstr "%1 je u konfliktu sa %2"
 
 #, fuzzy
-#~ msgid "%s remove failed"
-#~ msgstr "rpm greška."
+#~ msgid "install %s"
+#~ msgstr "Instaliraj %1"
 
 #, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "Proveravam međuzavisnost..."
+#~ msgid "unlock %s"
+#~ msgstr "Satovi"
 
 #, fuzzy
-#~ msgid ", Action: "
-#~ msgstr "Akcija"
+#~ msgid "unlock all resolvables"
+#~ msgstr "%1 je u konfliktu sa %2"
 
 #, fuzzy
 #~ msgid "Can't open solv-file: "
 #~ msgstr "Couldn't open file: %s."
 
 #, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgid "%s conflicts with other resolvables"
 #~ msgstr "%1 je u konfliktu sa %2"
 
-#~ msgid "Default"
-#~ msgstr "Podrazumevano"
+#, fuzzy
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr "%1 je u konfliktu sa %2"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgid "Cannot install %s, because it is conflicting with %s"
 #~ msgstr "%1 je u konfliktu sa %2"
 
-#  Frame title for installation target hard disk / partition(s)
 #, fuzzy
-#~ msgid "Establishing %s"
-#~ msgstr "Instaliram na:"
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "Ovaj paket nije i neće biti instaliran."
 
 #, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Failed to parse: %s."
+#~ msgid "%s has missing dependencies"
+#~ msgstr "Proveravam međuzavisnost..."
 
-#  error popup message
 #, fuzzy
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "Direktorijum %1 je već na listi."
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "Proveravam međuzavisnost..."
 
 #, fuzzy
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "%1 je u konfliktu sa %2"
+#~ msgid "No need to install %s"
+#~ msgstr "mora da se reinstalira"
 
 #, fuzzy
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "%1 je u konfliktu sa %2"
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "Proveravam međuzavisnost..."
 
 #, fuzzy
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "ima neispunjene zahteve..."
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%1 je u konfliktu sa %2"
 
 #, fuzzy
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "ima neispunjene zahteve..."
+#~ msgid ", Action: "
+#~ msgstr "Akcija"
 
-#  summary heder
+#  Frame title for installation target hard disk / partition(s)
 #, fuzzy
-#~ msgid "Install missing resolvables"
-#~ msgstr "Instaliranje nedostajućih paketa"
+#~ msgid "Establishing %s"
+#~ msgstr "Instaliram na:"
 
 #  Frame title for installation target hard disk / partition(s)
 #, fuzzy
 #~ msgid "Installing %s"
 #~ msgstr "Instaliram na:"
 
-#  summary heder
 #, fuzzy
-#~ msgid "Keep resolvables"
-#~ msgstr "Instaliranje nedostajućih paketa"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "Ovaj paket je već instaliran. Obrišite ga."
 
 #, fuzzy
-#~ msgid "No need to install %s"
-#~ msgstr "mora da se reinstalira"
-
-#  button for message box with help text
-#~ msgid "Ok"
-#~ msgstr "U redu"
-
-# name for SCG
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Србија и Црна Гора"
+#~ msgid " Error!"
+#~ msgstr "Greška"
 
 #, fuzzy
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "Ovaj paket je već instaliran. Obrišite ga."
+#~ msgid " Important!"
+#~ msgstr "Unos podataka"
 
-#  summary text heading
 #, fuzzy
-#~ msgid "The package archive has incorrect MD5 sum"
-#~ msgstr "Paketi za obnavljanje"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "ima neispunjene zahteve..."
+
+#  button for message box with help text
+#~ msgid "Ok"
+#~ msgstr "U redu"
 
 #  summary text heading
 #, fuzzy
@@ -5068,45 +5091,22 @@ msgstr " - није подржано"
 #~ msgid "The package has incorrect signature"
 #~ msgstr "Paketi za obnavljanje"
 
+#  summary text heading
 #, fuzzy
-#~ msgid "Unlock these resolvables"
-#~ msgstr "%1 je u konfliktu sa %2"
-
-#  Frame title for installation target hard disk / partition(s)
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "Instaliram na:"
-
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "Proveravam međuzavisnost..."
+#~ msgid "The package archive has incorrect MD5 sum"
+#~ msgstr "Paketi za obnavljanje"
 
-#, fuzzy
-#~ msgid "install %s"
-#~ msgstr "Instaliraj %1"
+#~ msgid "Default"
+#~ msgstr "Podrazumevano"
 
 #, fuzzy
 #~ msgid "installed"
 #~ msgstr "Instaliraj"
 
 #, fuzzy
-#~ msgid "rpm output:"
-#~ msgstr ""
-#~ "\n"
-#~ "Komandni izlaz:"
-
-#, fuzzy
 #~ msgid "to be installed (soft)"
 #~ msgstr "mora da se reinstalira"
 
 #, fuzzy
 #~ msgid "to be uninstalled"
 #~ msgstr "mora da se reinstalira"
-
-#, fuzzy
-#~ msgid "unlock %s"
-#~ msgstr "Satovi"
-
-#, fuzzy
-#~ msgid "unlock all resolvables"
-#~ msgstr "%1 je u konfliktu sa %2"
index 44cba73..3a28187 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# translation of zypp.sv.po to Swedish
+# translation of zypp.po to
+# Swedish message file for YaST2 (@memory@).
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002 SuSE Linux AG.
+# Copyright (C) 2001 SuSE GmbH.
 #
+# Mattias Newzella <newzella@linux.nu>, 2001.
+# Gudmund Areskoug <fta@algonet.se>, 2001.
+# Mattias Newzella <newzella@linux.se>, 2007.
+# Jonas Svensson <jks@ekhorva.se>, 2016.
 msgid ""
 msgstr ""
-"Project-Id-Version: zypp\n"
+"Project-Id-Version: zypp.sv\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 17:04\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2016-05-23 07:52+0000\n"
+"Last-Translator: Jonas Svensson <jonas@ekhorva.se>\n"
+"Language-Team: Swedish <http://l10n.opensuse.org/projects/libzypp/master/sv/>"
+"\n"
+"Language: sv\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 2.6\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"leverantörer som inte går att installera: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal-undantag"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Ogiltig LDAP URL-frågesträng"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr " SSL-certifikatproblem, verifiera att CA-certifikatet är ok för %s."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Ogiltig LDAP URL-frågeparameter %s"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Det går inte att klona URL-objektet"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Den tomma URL-objektreferensen är ogiltig"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Det gick inte att analysera URL-komponenterna"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Det går inte att initiera mutex-attribut"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Det går inte att ange rekursiva mutex-attribut"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Det går inte att initiera rekursivt mutex"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Det går inte att hämta mutex-låset"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Det går inte att släppa mutex-låset"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Tillhandahåller"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Förutsätter"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Kräver"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "I konflikt"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Gör inaktuellt"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Rekommenderar"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Föreslår"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Utökar"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Kompletterar"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Den tvivelaktiga typen %s för %u-bytekontrollsumma %s"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
 msgstr " körd"
 
+# %s is either BOOTP or DHCP
 #: zypp/target/TargetImpl.cc:332
 msgid " execution failed"
 msgstr " körningen misslyckades"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " körningen hoppades över vid avbrottet"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -48,92 +130,119 @@ msgstr " körningen hoppades över vid avbrottet"
 msgid "%s already executed as %s)"
 msgstr "%s redan körd som %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s är i konflikt med %s som kommer från %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " körningen hoppades över vid avbrottet"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s tillhör inte ett distupgrade-arkiv"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Ett fel inträffade när ett uppdateringsmeddelande skickades."
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s innehåller en underordnad arkitektur"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Nytt uppdateringsmeddelande"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s går inte att installera"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Installationen har avbrutits enligt instruktionerna."
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s tillhandahålls av systemet och kan inte tas bort"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "Tyvärr är denna version av libzypp byggd utan stöd för HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s gör %s inaktuell som kommer från %s"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext har inte anslutits"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "Till %s behövs %s, men kravet kan inte uppfyllas"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive har inte initierats"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(UPPHÖRD)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume har inte initierats"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(upphör inte)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Det gick inte att skapa dbus-anslutningen"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(upphör inom 24 tim)"
-msgstr[1] "(upphör inom 24 tim)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: Det gick inte att skapa libhal-kontext"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(upphör inom 24 tim)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: Det gick inte att ange dbus-anslutningen"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abchaziska"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Det gick inte att initiera HAL-kontext - hald körs inte?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achinesiska"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Inte en cd-rom-enhet"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM misslyckades: "
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "Det gick inte att importera den offentliga nyckeln från filen %s: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Arkivet %s läggs till"
+msgid "Failed to remove public key %s: %s"
+msgstr "Det gick inte att ta bort den offentliga nyckeln %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Ytterligare kundavtal behövs"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Inställningsfiler har ändrats för %s:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm sparade %s som %s, men det gick inte att avgöra skillnaden"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm sparade %s som %s.\n"
+"Här visas de första 25 raderna med skillnader:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm skapade %s som %s, men det gick inte att avgöra skillnaden"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm skapade %s som %s.\n"
+"Här visas de första 25 raderna med skillnader:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -141,20 +250,1774 @@ msgstr "Ytterligare kundavtal behövs"
 msgid "Additional rpm output"
 msgstr "Ytterligare RPM-utdata"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adygeiska"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "skapade säkerhetskopian %s"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "Signaturen är OK"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Okänd signaturtyp"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "Signaturen kan inte verifieras"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "Signaturen är OK, men nyckeln är inte betrodd"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "Signaturens offentliga nyckel är inte tillgänglig"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "Filen existerar inte eller dess signatur kan inte kontrolleras"
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Följande åtgärder kommer att vidtas:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "Kan inte läsa lagringsplatskatalog '%1%': Åtkomst nekad"
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Det gick inte att läsa katalogen '%s'"
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "Kan inte läsa förrådsfilen (repo file) '%1%': Åtkomst nekad"
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Förrådets (repots) alias får inte inledas med en punkt."
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Ett alias för en service kan inte inledas med en punkt."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Kan inte skriva till filen '%s'."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr "Okänd tjänst '%1%':  Tar bort den föräldrarlösa tjänstens förråd '%2%'"
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Giltig metadata hittades inte på specificerad URL"
+msgstr[1] "Giltig metadata hittades inte på specificerade URL:er"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Kan inte skapa %s"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Kan inte skapa metadata och katalog för cache."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Bygger cache för förrådet '%s'"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Kan inte skapa cache i %s - inga skrivrättigheter."
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Misslyckades att cachlagra förråd (repo) %d."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Kan inte hantera förrådstypen"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Fel vid försök att läsa från '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Obekant fel vid läsning från '%s'"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Lägger till förrådet '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Ogiltigt namn på förråd (repo) '%s'"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Tar bort förrådet '%s'"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Kan inte identifiera var förrådet (repo) är sparat."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Kan inte radera '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Det gick inte att identifiera var tjänsten är lagrad."
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "URL-schemat tillåter inte %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "%s-komponenten '%s' är ogiltig"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Ogiltig %s-komponent"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Analysering av frågesträng stöds inte för den här URL-adressen"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "URL-schemat är en obligatorisk komponent"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "URL-schemat '%s' är ogiltigt"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "URL-schemat tillåter inte något användarnamn"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "URL-schemat tillåter inte något lösenord"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Det måste finnas en värdkomponent i URL-schemat"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Det får inte finnas någon värdkomponent i URL-schemat"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Värdkomponenten '%s' är ogiltig"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "URL-schemat tillåter inte någon port"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Portkomponenten '%s' är ogiltig"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Det måste finnas ett sökvägsnamn för URL-schemat"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Relativa sökvägar tillåts inte om det finns behörighet"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Den kodade strängen innehåller ett NULL-byte"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Ogiltigt avgränsningstecken för delning av parametermatris"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Ogiltigt avgränsningstecken för delning av parametermappning"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Ogiltigt avgränsningstecken för koppling av parametermatris"
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Kan inte öppna pty (%s)."
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Det går inte att öppna röret (%s)."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Kan inte ändra roten (chroot) till '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "Kan inte ändra katalogen (chdir) till '%s' i en chroot '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Kan inte ändra katalogen (chdir) till '%s' (%s)."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Kan inte köra '%s' (%s)."
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Kan inte dela upp (%s)."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Kommandot avslutades med status %d."
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Kommandot dödades med signal %d (%s)."
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Kommandot avslutades med ett okänt fel."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(upphör inte)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(UTGÅNGEN)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(upphör inom 24 timmar)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(går ut om %d dag)"
+msgstr[1] "(går ut om %d dagar)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "okänd"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "stöds inte"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Nivå 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Nivå 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Nivå 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Ytterligare kundavtal behövs"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "ogiltig"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Supportnivån har inte angetts"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Leverantören tillhandahåller inte support."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Problembestämning – innebär teknisk support som ska kunna ge "
+"kompatibilitetsinformation, installationshjälp, användningssupport, "
+"underhåll och grundläggande felsökning. Support på nivå 1 är inte avsedd att "
+"korrigera produktfel."
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Problemisolering – innebär teknisk support som ska kunna återskapa "
+"kundproblemen, isolera problemområdet och ge lösningar på problem som inte "
+"åtgärdas av supporten på nivå 1."
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Problemlösning – innebär teknisk support som ska kunna lösa komplexa problem "
+"som har identifierats i supporten på nivå 2 med hjälp av tekniker."
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "Ytterligare ett kundavtal behövs för att kunna ge support."
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Okänt supportalternativ. Beskrivningen är inte tillgänglig"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Okänt land: "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Ingen kod"
+
+# AD
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Förenade Arabemiraten"
+
+# AF
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistan"
+
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua och Barbuda"
+
+# AI
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albanien"
+
+# AM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenien"
+
+# AN
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Nederländska Antillerna"
+
+# AO
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+# AQ
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarktis"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+# AS
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Amerikanska Samoa"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Österrike"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australien"
+
+# AW
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+# KY
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Alandöarna"
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbajdzjan"
+
+# BA
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnien-Hercegovina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgien"
+
+# BF
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgarien"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
+
+# BI
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+# BJ
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
+
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brasilien"
+
+# BS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
+
+# BT
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvetön"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Vitryssland"
+
+# BZ
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Kokosöarna"
+
+# CG
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
+
+# CF
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Centralafrikanska republiken"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Schweiz"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Elfenbenskusten"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cooköarna"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
+
+# CM
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Kina"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Kuba"
+
+# CV
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Kap Verde"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Julön"
+
+# CY
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Cypern"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Tjeckien"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Tyskland"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danmark"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominikanska republiken"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algeriet"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estland"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egypten"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Västsahara"
+
+# ER
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spanien"
+
+# ET
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopien"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finland"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+# FK
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falklandsöarna (Malvinas)"
+
+# official_name for FSM
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Federala staterna Mikronesien"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Färöarna"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Frankrike"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Franska metropolitan"
+
+# GA
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Storbritannien"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgien"
+
+# GF
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Franska Guiana"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+# GH
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grönland"
+
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+# GN
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+# GQ
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Ekvatorialguinea"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grekland"
+
+# GS
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Sydgeorgien och södra Sandwichöarna"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+# GW
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
+
+# GY
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+# HM
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heardön och McDonaldöarna"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Kroatien"
+
+# HT
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Ungern"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesien"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irland"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Isle of Man"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Indien"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Brittiskt territorium i Indiska Oceanen"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Island"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italien"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordanien"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japan"
+
+# KE
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
+
+# KG
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirgisistan"
+
+# KH
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kambodja"
+
+# KI
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+# KM
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comorerna"
+
+# KN
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Sankt Kitts och Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Nordkorea"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Sydkorea"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+# KY
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Caymanöarna"
+
+# KZ
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazakstan"
+
+# CD
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Demokratiska folkrepubliken Lao"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Libanon"
+
+# LC
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Sankt Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+# LK
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+# LS
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litauen"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxemburg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Lettland"
+
+# LR
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libyen"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marocko"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldavien"
+
+# Libris vill ha det så.
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
+
+# SM
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Saint Martin"
+
+# MG
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+# MH
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshallöarna"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonien"
+
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+# MM
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
+
+# MN
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongoliet"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+# MP
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Nordmarianerna"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+# MR
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauretanien"
+
+# MS
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+# MU
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
+
+# MV
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldiverna"
+
+# MW
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexiko"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaysia"
+
+# MZ
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Moçambique"
+
+# NA
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+# NC
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nya Kaledonien"
+
+# NE
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolköarna"
+
+# NG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Nederländerna"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norge"
+
+# NP
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+# NU
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nya Zeeland"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+# PF
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Franska Polynesien"
+
+# PG
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Nya Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filippinerna"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polen"
+
+# PM
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Sankt Pierre och Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+# official_name for PSE
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Ockuperade palestinska territoriet"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Réunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Rumänien"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbien"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Ryska federationen"
+
+# RW
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudiarabien"
+
+# SB
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Salomonöarna"
+
+# SC
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychellerna"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Sverige"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapore"
+
+# SH
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Sankt Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenien"
+
+# SJ
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard och Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovakien"
+
+# SL
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+# SM
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+# SN
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+# SO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
+
+# SR
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+# ST
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "São Tomé och Príncipe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+# Libris vill ha det så.
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Syrien"
+
+# SZ
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swaziland"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks- och Caicosöarna"
+
+# TD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Tchad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Franska sydterritorierna"
+
+# TG
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thailand"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadzjikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+# TM
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisien"
+
+# TO
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Östtimor"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turkiet"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad och Tobago"
+
+# Libris vill ha det så.
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvaluan"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzania"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraina"
+
+# UG
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "USA:s avlägsna mindre öar"
+
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "USA"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+# VA
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Vatikanstaten"
+
+# VC
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Sankt Vincent och Grenadinerna"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Brittiska Jungfruöarna"
+
+# VI
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Jungfruöarna, amerikanska"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+# VU
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+# WF
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis och Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Jemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Sydafrika"
+
+# ZM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Okänt språk: "
 
 #. language code: aar aa
 #: zypp/LanguageCode.cc:161
 msgid "Afar"
 msgstr "Afar"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistan"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abchaziska"
+
+# Libris vill ha achinese här.
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achinesiska"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adygeiska"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-asiatiska språk (övriga)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -166,11 +2029,6 @@ msgstr "Afrihili"
 msgid "Afrikaans"
 msgstr "Afrikaans"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-asiatiska språk (övriga)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -186,16 +2044,6 @@ msgstr "Akan"
 msgid "Akkadian"
 msgstr "Akkadiska"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Alandöarna"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albanien"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -204,60 +2052,27 @@ msgstr "Albanska"
 #. language code: ale
 #: zypp/LanguageCode.cc:189
 msgid "Aleut"
-msgstr "Aleutiska"
-
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algeriet"
-
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Algonkinska språk"
-
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altaiska språk (övriga)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Amerikanska Samoa"
-
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amhariska"
-
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Ytterligare ett kundavtal behövs för att kunna ge support."
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+msgstr "Aleutiska"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Algonkinska språk"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarktis"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Sydaltaiska"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua och Barbuda"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amhariska"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Fornengelska (ca 450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -269,55 +2084,41 @@ msgstr "Apachiska språk"
 msgid "Arabic"
 msgstr "Arabiska"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonska"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "Arameiska"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+# Libris vill ha "aragonsk spanska"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonska"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Armeniska"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "Araukanska"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawakiska"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenien"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Armeniska"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "Konstgjorda språk (övriga)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawakiska"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -334,32 +2135,11 @@ msgstr "Asturiska"
 msgid "Athapascan Languages"
 msgstr "Athapaskiska språk"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australien"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "Australiska språk"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Österrike"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Austronesiska språk (övriga)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Autentisering krävs för %s"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -380,44 +2160,25 @@ msgstr "Awadhi"
 msgid "Aymara"
 msgstr "Aymara"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbajdzjan"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Azerbajdzjanska"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Ogiltigt filnamn: %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Felaktig anslutningspunkt för media"
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinesiska"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Bamilekespråk"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltiska språk (övriga)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Basjkiriska"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -429,76 +2190,37 @@ msgstr "Baluchi"
 msgid "Bambara"
 msgstr "Bambara"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Bamilekespråk"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantuspråk (övriga)"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinesiska"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Baskiska"
 
+# Libris har med den där parentesen
 #. language code: bas
 #: zypp/LanguageCode.cc:253
 msgid "Basa"
 msgstr "Basa (bantuspråk)"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Basjkiriska"
-
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Baskiska"
-
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonesien)"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltiska språk (övriga)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "Beyja"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Vitryssland"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "Vitryska"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgien"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -509,31 +2231,16 @@ msgstr "Bemba"
 msgid "Bengali"
 msgstr "Bengaliska"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "Berberspråk (övriga)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "Bhojpuri"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
@@ -544,6 +2251,7 @@ msgstr "Bihari"
 msgid "Bikol"
 msgstr "Bikol"
 
+# Libris har med parentesen
 #. language code: bin
 #: zypp/LanguageCode.cc:273
 msgid "Bini"
@@ -554,266 +2262,73 @@ msgstr "Edo (bini)"
 msgid "Bislama"
 msgstr "Bislama"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
+# Länge leve Libris!
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Svartfotindianernas språk (siksika)"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnien-Hercegovina"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantuspråk (övriga)"
 
 #. language code: bos bs
 #: zypp/LanguageCode.cc:281
 msgid "Bosnian"
 msgstr "Bosniska"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvetön"
-
 #. language code: bra
 #: zypp/LanguageCode.cc:283
 msgid "Braj"
 msgstr "Braj"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brasilien"
-
 #. language code: bre br
 #: zypp/LanguageCode.cc:285
 msgid "Breton"
 msgstr "Bretonska"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Brittiskt territorium i Indiska Oceanen"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Brittiska Jungfruöarna"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonesien)"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Burjatiska"
 
 #. language code: bug
 #: zypp/LanguageCode.cc:291
 msgid "Buginese"
 msgstr "Buginesiska"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Cache för arkivet %s byggs"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgarien"
-
 #. language code: bul bg
 #: zypp/LanguageCode.cc:293
 msgid "Bulgarian"
 msgstr "Bulgariska"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Burjatiska"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
+# Libris vill ha det så.
 #. language code: bur mya my
 #: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
 msgid "Burmese"
 msgstr "Burmanska"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
+# Libris har med parentesen
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
 
 #. language code: cad
 #: zypp/LanguageCode.cc:301
 msgid "Caddo"
 msgstr "Caddo"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kambodja"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Det gick inte att skapa sat-pool."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Det går inte att hämta mutex-låset"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Det går inte att ändra katalogen (chdir) till %s (%s)."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "Det går inte att ändra katalogen (chdir) till %s i chroot %s (%s)."
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Det går inte att ändra roten (chroot) till %s (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Kan inte skapa %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Det går inte att skapa cache på %s - ingen skrivrättighet."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Det går inte att skapa cachekatalog för metadata."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Det gick inte att ta bort %s"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Det går inte att köra %s (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Det gick inte att identifiera var arkivet är lagrat."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Det gick inte att identifiera var tjänsten är lagrad."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Det går inte att dela filen (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Det går inte att initiera mutex-attribut"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Det går inte att initiera rekursivt mutex"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Det gick inte att öppna den temporära filen %s för skrivning."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Det gick inte att öppna låsfilen: %s."
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Det går inte att öppna röret (%s)."
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Det går inte att öppna pty (%s)."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Det går inte att hämta filen %s från arkivet %s"
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Det går inte att släppa mutex-låset"
-
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Det går inte att ange rekursiva mutex-attribut"
-
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
-
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Det gick inte att mata ut något medium"
-
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Det gick inte att mata ut mediet %s"
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Det gick inte att hitta en tillgänglig loop-enhet för montering av bildfilen "
-"från %s"
-
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "Kan inte läsa lagringsplatskatalog '%1%': Åtkomst nekad"
-
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "Kan inte läsa lagringsplatsfil '%1%': Åtkomst nekad"
-
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Det gick inte att skriva filen %s."
-
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Kap Verde"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Centralamerikanska indianspråk (övriga)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -830,11 +2345,6 @@ msgstr "Katalanska"
 msgid "Caucasian (Other)"
 msgstr "Kaukasiska språk (övriga)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Caymanöarna"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -845,166 +2355,83 @@ msgstr "Cebuano"
 msgid "Celtic (Other)"
 msgstr "Keltiska språk (övriga)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Centralafrikanska republiken"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Centralamerikanska indianspråk (övriga)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Tchad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Chagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Chamicspråk"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Inställningsfiler har ändrats för %s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Tjetjenska"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Cherokesiska"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Cheyenne"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Chibcha"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Chichewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Tjetjenska"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Kina"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Chagatai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Kinesiska"
 
+# Libris vill ha det så.
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Tjuktjiska"
+
+# Alternativt tjeremissiska enligt Libris.
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mariska"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Chinook"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Chopi"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Choctaw"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Julön"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Chopi"
+
+# Libris vill ha det så.
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Cherokesiska"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "Fornkyrkoslaviska"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Tjuktjiska"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "Tjuvasjiska"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Klassisk newariska"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokosöarna"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Kommandot avslutades med statusen %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Kommandot avslutades med ett okänt fel."
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Kommandot avbröts av signalen %d (%s)."
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comorerna"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "I konflikt"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Cheyenne"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cooköarna"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Chamicspråk"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1021,31 +2448,6 @@ msgstr "Korniska"
 msgid "Corsican"
 msgstr "Korsikanska"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Elfenbenskusten"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Muskogee"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Kreol- och pidginspråk (övriga)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1061,46 +2463,38 @@ msgstr "Kreol- och pidginspråk, baserade på franska (övriga)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Kreol- och pidginspråk, baserade på portugisiska (övriga)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Cree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Krimtatariska"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Kroatien"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Kroatiska"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Kreol- och pidginspråk (övriga)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Kuba"
+# Osäker
+# Ej verifierat
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kasjubianska"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Kusjitiska språk (övriga)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Cypern"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Tjeckiska"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Tjeckien"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1111,6 +2505,7 @@ msgstr "Dakota"
 msgid "Danish"
 msgstr "Danska"
 
+# Libris vill ha "Darginska (Dargwa)". Jag antar att Dargwa är vanligare.
 #. language code: dar
 #: zypp/LanguageCode.cc:377
 msgid "Dargwa"
@@ -1126,10 +2521,15 @@ msgstr "Dajakiska"
 msgid "Delaware"
 msgstr "Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danmark"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slave"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1141,104 +2541,52 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Divehi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominikanska republiken"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Ett hämtningsfel (curl) uppstod för %s.\n"
-"Felkod: %s\n"
-"Felmeddelande: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Initieringen av hämtningen (curl) misslyckades för %s"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Dravidiska språk (övriga)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Lågsorbiska"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Den tvivelaktiga typen %s för %u-bytekontrollsumma %s"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Medelnederländska (ca 1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Nederländska"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Medelnederländska (ca 1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
 msgstr "Dyula"
 
+# Libris vill ha med parentesen.
 #. language code: dzo dz
 #: zypp/LanguageCode.cc:407
 msgid "Dzongkha"
 msgstr "Bhutanesiska (Dzongkha)"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Östtimor"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egypten"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1249,32 +2597,11 @@ msgstr "Fornegyptiska"
 msgid "Ekajuk"
 msgstr "Ekajuk"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Elamitiska"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Tomt mål i URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Tomt filsystem i URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Tomt värdnamn i URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Den kodade strängen innehåller ett NULL-byte"
-
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Elamitiska"
+
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1285,74 +2612,16 @@ msgstr "Engelska"
 msgid "English, Middle (1100-1500)"
 msgstr "Medelengelska (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Fornengelska (ca 450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Utökar"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Ekvatorialguinea"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"Ett fel uppstod när alternativ för hämtning (curl) skulle anges för %s."
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Ett fel inträffade när ett uppdateringsmeddelande skickades."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Det gick inte att läsa från %s"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estland"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Estniska"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopien"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1363,258 +2632,32 @@ msgstr "Ewe"
 msgid "Ewondo"
 msgstr "Ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Det gick inte att cachelagra arkivet (%d)."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Det gick inte att ta bort nyckeln."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Det gick inte att importera den offentliga nyckeln från filen %s: %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Det gick inte att montera %s på %s"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"Det gick inte att tillhandahålla paketet %s. Vill du försöka hämta det på "
-"nytt?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Det gick inte att läsa katalogen %s"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Det gick inte att ta bort den offentliga nyckeln %s: %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Det gick inte att avmontera %s"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandsöarna (Malvinas)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Fang"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Färöarna"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Färöiska"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Federala staterna Mikronesien"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fijianska"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Fil %1%\n"
-"  från installationen av\n"
-"     %2%\n"
-"  står i konflikt med fil\n"
-"     %3%\n"
-"  från installationen av\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Fil %1%\n"
-"  från installationen av\n"
-"     %2%\n"
-"  står i konflikt med fil\n"
-"     %3%\n"
-"  från paketet\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Fil %1%\n"
-"  från installationen av\n"
-"     %2%\n"
-"  står i konflikt med fil från installationen av\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Fil %1%\n"
-"  från installationen av\n"
-"     %2%\n"
-"  står i konflikt med fil från paketet\n"
-"     %3%"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Fil %1%\n"
-"  från paketet\n"
-"     %2%\n"
-"  står i konflikt med fil\n"
-"     %3%\n"
-"  från installationen av\n"
-"     %4%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Fil %1%\n"
-"  från paketet\n"
-"     %2%\n"
-"  står i konflikt med fil\n"
-"     %3%\n"
-"  från paketet\n"
-"     %4%"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Fil %1%\n"
-"  från paketet\n"
-"     %2%\n"
-"  står i konflikt med fil från installationen av\n"
-"     %3%"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Fil %1%\n"
-"  från paketet\n"
-"     %2%\n"
-"  står i konflikt med fil från paketet\n"
-"     %3%"
+msgid "Faroese"
+msgstr "Färöiska"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Det gick inte att hitta filen %s på mediet %s"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "Filen finns inte eller signaturen kan inte kontrolleras"
+# SAOL vill ha utan d, Libris med d. Jag kör på SAOL:s variant.
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Fijianska"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filippinska"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finland"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1625,40 +2668,16 @@ msgstr "Finska"
 msgid "Finno-Ugrian (Other)"
 msgstr "Finsk-ugriska språk (övriga)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Följande åtgärder utförs:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Frankrike"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Franska"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Franska Guiana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Franska Polynesien"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Franska sydterritorierna"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1674,46 +2693,21 @@ msgstr "Fornfranska (842-ca 1400)"
 msgid "Frisian"
 msgstr "Frisiska"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friuliska"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fulani"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friuliska"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gaeliska"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galiciska"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Luganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1724,15 +2718,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Fornetiopiska (Geez)"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgien"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Germanska språk (övriga)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1744,6 +2733,37 @@ msgstr "Georgiska"
 msgid "German"
 msgstr "Tyska"
 
+# Libris vill ha det så.
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Fornetiopiska (Geez)"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Gilbertesiska"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gaeliska"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Iriska"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galiciska"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1754,30 +2774,6 @@ msgstr "Medelhögtyska (ca 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Fornhögtyska (ca 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Germanska språk (övriga)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Tyskland"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Gilbertesiska"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1798,11 +2794,6 @@ msgstr "Gotiska"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grekland"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1813,61 +2804,16 @@ msgstr "Grekiska, klassisk (-1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Nygrekiska (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grönland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Gujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1878,52 +2824,22 @@ msgstr "Gwichin"
 msgid "Haida"
 msgstr "Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
+# HT
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Haitiska"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal-undantag"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext har inte anslutits"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive har inte initierats"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume har inte initierats"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Haussa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Har du aktiverat alla begärda arkiv?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawaiiska"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heardön och McDonaldöarna"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1939,6 +2855,7 @@ msgstr "Herero"
 msgid "Hiligaynon"
 msgstr "Hiligaynon"
 
+# Libris vill ha det så.
 #. language code: him
 #: zypp/LanguageCode.cc:525
 msgid "Himachali"
@@ -1949,51 +2866,34 @@ msgstr "Pahari (himachali)"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hirimotu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Historik:"
-
+# Libris vill ha det så.
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
 msgstr "Hettitiska språk"
 
+# Libris vill ha det så.
 #. language code: hmn
 #: zypp/LanguageCode.cc:531
 msgid "Hmong"
 msgstr "Hmongspråk"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Vatikanstaten"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+# Libris vill ha det så.
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hirimotu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Högsorbiska"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Ungerska"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Ungern"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2004,10 +2904,11 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Island"
+# Libris vill ha det så.
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Ibo (Igbo)"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2019,250 +2920,106 @@ msgstr "Isländsk"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Ibo (Igbo)"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Enaresamiska"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Indien"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (International Auxiliary Language Association)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Indo-ariska språk (övriga)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indoeuropeiska språk (övriga)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesien"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonesiska"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indoeuropeiska språk (övriga)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Ingusj"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Installationen har avbrutits enligt instruktionerna."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (International Auxiliary Language Association)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Inupiaq"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Ogiltig %s-komponent"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "%s-komponenten %s är ogiltig"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Ogiltig LDAP URL-frågeparameter %s"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Ogiltig LDAP URL-frågesträng"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "URL-schemat %s är ogiltigt"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Den tomma URL-objektreferensen är ogiltig"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Värdkomponenten %s är ogiltig"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Ogiltigt avgränsningstecken för koppling av parametermatris"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Ogiltigt avgränsningstecken för delning av parametermatris"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Ogiltigt avgränsningstecken för delning av parametermappning"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Portkomponenten %s är ogiltig"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Ogiltigt reguljärt uttryck %s"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Ogiltigt reguljärt uttryck %s: regcomp returnerade %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Ogiltigt arkivfilnamn på %s"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Iranska språk (övriga)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irland"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Iriska"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Medeliriska (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Forniriska (-900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Irokesiska språk"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Isle of Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Italienska"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italien"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
+# Libris vill ha det så.
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Javanska"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japan"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Japanska"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Javanska"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordanien"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Judepersiska"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Judearabiska"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Judepersiska"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardinska (östtjerkessiska)"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Karakalpakiska"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2279,36 +3036,17 @@ msgstr "Kachin"
 msgid "Kalaallisut"
 msgstr "Grönländska (Kalaallisut)"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmuckiska"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
 msgstr "Kamba"
 
+# Även kanaresiska (äldre form)
 #. language code: kan kn
 #: zypp/LanguageCode.cc:599
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Karakalpakiska"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karatjaj-balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2317,13 +3055,14 @@ msgstr "Karen"
 #. language code: kas ks
 #: zypp/LanguageCode.cc:603
 msgid "Kashmiri"
-msgstr "Kashmiri"
-
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kasjubianska"
+msgstr "Kashmiri"
+
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
+# Libris vill ha det så.
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
 msgid "Kawi"
@@ -2334,31 +3073,28 @@ msgstr "Fornjavanska (kawi)"
 msgid "Kazakh"
 msgstr "Kazakiska"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazakstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+# Libris vill ha det så.
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardinska (östtjerkessiska)"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Kambodjanska (khmer)"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Khoisanspråk (övriga)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Kambodjanska (khmer)"
+
+# Libris vill ha det så.
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2369,11 +3105,6 @@ msgstr "Sakiska (khotanesiska)"
 msgid "Kikuyu"
 msgstr "Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Mbundu (kimbundu)"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2384,15 +3115,16 @@ msgstr "Rwanda"
 msgid "Kirghiz"
 msgstr "Kirgisiska"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+# Libris vill ha det så.
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Mbundu (kimbundu)"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingonska"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2404,11 +3136,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Kikongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2424,11 +3151,24 @@ msgstr "Kusaie"
 msgid "Kpelle"
 msgstr "Kpelle"
 
+# Osäker
+# Ej verifierat
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karatjaj-balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Kruspråk"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kurukh"
+
+# Libris vill ha det så.
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2444,26 +3184,12 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Kurdiska"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirgisistan"
-
+# Libris vill ha det så.
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2484,68 +3210,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Laotiska"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Demokratiska folkrepubliken Lao"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latin"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Lettland"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Lettiska"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Libanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Nivå 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Nivå 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Nivå 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezginska"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libyen"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2556,61 +3235,47 @@ msgstr "Limburgiska"
 msgid "Lingala"
 msgstr "Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litauen"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Litauiska"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Det går för närvarande inte att nå platsen %s."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Lågtyska"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Lågsorbiska"
+# Libris vill ha det så.
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Lolo (mongo)"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Luxemburgiska"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Luba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Luganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Lulesamiska"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2621,232 +3286,102 @@ msgstr "Lunda"
 msgid "Luo (Kenya and Tanzania)"
 msgstr "Luo (Kenya och Tanzania)"
 
+# Libris vill ha det så.
 #. language code: lus
 #: zypp/LanguageCode.cc:693
 msgid "Lushai"
 msgstr "Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Luxemburgiska"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonien"
-
-#. language code: mac mkd mk
-#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
-msgid "Macedonian"
-msgstr "Makedonska"
-
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
-#. language code: mad
-#: zypp/LanguageCode.cc:699
-msgid "Madurese"
-msgstr "Madurese"
-
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
-msgstr "Magahi"
-
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
-msgstr "Maithili"
-
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr "Makasar"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malagasy"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malajiska"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "Malayalam"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaysia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldiverna"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Felaktigt format för URI"
+#. language code: mac mkd mk
+#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
+msgid "Macedonian"
+msgstr "Makedonska"
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
+# Libris vill ha det så.
+# Även madura.
+#. language code: mad
+#: zypp/LanguageCode.cc:699
+msgid "Madurese"
+msgstr "Madurese"
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
+msgstr "Magahi"
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Maltesiska"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshallesiska"
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Manchu"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
+msgstr "Maithili"
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
+msgstr "Makasar"
+
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "Malayalam"
 
+# Libris vill ha det så.
+# Även malinke.
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mande"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Manobospråk"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Austronesiska språk (övriga)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mariska"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshallöarna"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshallesiska"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Massajiska"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauretanien"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Mayaspråk"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "Mediekällan %s innehåller inte önskat medium"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Mediet %s används av en annan instans"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malajiska"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Mediet har inte anslutits"
+# Osäker
+# Ej verifierat
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Mediet öppnades inte när åtgärden %s skulle utföras."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Franska metropolitan"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexiko"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Medeliriska (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2858,300 +3393,216 @@ msgstr "Mic-mac"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandesiska"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Diverse språk"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-khmerspråk (övriga)"
+
+# Libris vill ha det så.
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malagasy"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Maltesiska"
+
+# Även mandju.
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Manchu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Manobospråk"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldaviska"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldavien"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-khmerspråk (övriga)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Lolo (mongo)"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongoliet"
-
+# Libris vill ha det så.
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongoliska språk"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marocko"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Moçambique"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
 msgstr "Flera språk"
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
-msgstr "Mundaspråk"
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
+msgstr "Mundaspråk"
+
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Muskogee"
+
+# Libris vill ha det så.
+# Även madura.
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandesiska"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Mayaspråk"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+# http://www.geocities.com/forfader/samerna/uraliska.html
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Nordamerikanska indianspråk"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+# Libris vill ha det så.
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Neapolitansk italienska"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele, nord"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele, syd"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele, nord"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Neapolitansk italienska"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Nepalesisk bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Lågtyska"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepali"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Nederländerna"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Nederländska Antillerna"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nya Kaledonien"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nya Zeeland"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Nytt uppdateringsmeddelande"
+# NP
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Nepalesisk bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Niger-/Kongospråk (övriga)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-sahariska språk (övriga)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niuean"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Ingen kod"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Nynorska"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Det finns ingen URL i arkivet."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Nynorska (Bokmal)"
 
+# Libris vill ha det så
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogaiska"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolköarna"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Fornisländska"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Nordamerikanska indianspråk"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Nordkorea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Nordmarianerna"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Nordsamiska"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Nordsotho"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norge"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norska"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Nynorska (Bokmal)"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Nynorska"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Inte en cd-rom-enhet"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Nordsotho"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Nubiska språk"
 
+# Osäker
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Klassisk newariska"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3172,39 +3623,24 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Gör inaktuellt"
-
+# Libris vill ha det så.
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
 msgstr "Langue d'oc (1500-)"
 
+# Libris vill ha det så.
 #. language code: oji oj
 #: zypp/LanguageCode.cc:831
 msgid "Ojibwa"
 msgstr "Odjibwa (chippewa)"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Ett eller båda attributen %s och %s behövs."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Det finns inte stöd för åtgärden för mediet"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
 msgstr "Oriya"
 
+# Libris vill ha det så.
 #. language code: orm om
 #: zypp/LanguageCode.cc:835
 msgid "Oromo"
@@ -3220,66 +3656,38 @@ msgstr "Osage"
 msgid "Ossetian"
 msgstr "Ossetiska"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Ottomanska (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Otomispråk"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Paketet %s verkar ha skadats under överföringen. Vill du försöka överföra "
-"det på nytt?"
-
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr "Pahlavi (medelpersiska)"
-
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palauan"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Ockuperade palestinska territoriet"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pali"
-
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "Pampanga"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papuanska språk (övriga)"
 
 #. language code: pag
 #: zypp/LanguageCode.cc:847
 msgid "Pangasinan"
 msgstr "Pangasinan"
 
+# Libris vill ha det så.
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr "Pahlavi (medelpersiska)"
+
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "Pampanga"
+
+# Även panjabi.
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3290,94 +3698,46 @@ msgstr "Punjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua Nya Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papuanska språk (övriga)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Sökvägen %s på mediet %s är inte en katalog."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Sökvägen %s på mediet %s är inte en fil."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Behörigheten för åtkomst till %s nekades."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Persiska"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palauan"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Fornpersiska (ca 600-400 f.Kr.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Persiska"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Filippinska språk (övriga)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filippinerna"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Feniciska"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Installera paketet lsof först."
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Ponape"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polen"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Polska"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+# Libris vill ha det så.
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Ponape"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3389,86 +3749,21 @@ msgstr "Portugisiska"
 msgid "Prakrit Languages"
 msgstr "Prakritspråk"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Förutsätter"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Problembestämning – innebär teknisk support som ska kunna ge "
-"kompatibilitetsinformation, installationshjälp, användningssupport, "
-"underhåll och grundläggande felsökning. Support på nivå 1 är inte avsedd att "
-"korrigera produktfel."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Problemisolering – innebär teknisk support som ska kunna återskapa "
-"kundproblemen, isolera problemområdet och ge lösningar på problem som inte "
-"åtgärdas av supporten på nivå 1."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Problemlösning – innebär teknisk support som ska kunna lösa komplexa problem "
-"som har identifierats i supporten på nivå 2 med hjälp av tekniker."
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Fornprovensalska (till och med 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Tillhandahåller"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pashto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Analysering av frågesträng stöds inte för den här URL-adressen"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM misslyckades: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Rätoromanska"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3484,134 +3779,35 @@ msgstr "Rapanui"
 msgid "Rarotongan"
 msgstr "Rarotongan"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Rekommenderar"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Relativa sökvägar tillåts inte om det finns behörighet"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Arkivet %s tas bort"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Ett arkivalias kan inte inledas med en punkt."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Det nödvändiga attributet %s saknas."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Kräver"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Réunion"
-
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "Romanska språk (övriga)"
-
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Rumänien"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Rumänska"
-
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "Romani"
-
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "Rundi"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "Ryska"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Ryska federationen"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Sankt Helena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Sankt Kitts och Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Sankt Lucia"
-
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Saint Martin"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Sankt Pierre och Miquelon"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Sankt Vincent och Grenadinerna"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Salisiska språk"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
+msgstr "Romanska språk (övriga)"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Samaritanska"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Rätoromanska"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Samiska språk (övriga)"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "Romani"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Rumänska"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samoanska"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "Rundi"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "Ryska"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3623,41 +3819,61 @@ msgstr "Sandawe"
 msgid "Sango"
 msgstr "Sango"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Jakutiska"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Sydamerikanska indianspråk (övriga)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Salisiska språk"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "Samaritanska"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskrit"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "São Tomé och Príncipe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardiska"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbiska"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudiarabien"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Sicilianska"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Skotska"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Kroatiska"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3668,359 +3884,189 @@ msgstr "Selkup"
 msgid "Semitic (Other)"
 msgstr "Semitiska språk (övriga)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbien"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbiska"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Ett serveralias kan inte inledas med en punkt."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "Insticksprogrammet för tjänsten har inte stöd för ändring av attribut."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Forniriska (-900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychellerna"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Teckenspråk"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Shan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Sichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Sicilianska"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidami"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Teckenspråk"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "Signaturen kan inte verifieras"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Det gick inte att hitta signaturfilen %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "Signaturen är OK"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "Signaturen är OK, men nyckeln är inte betrodd"
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "Signaturen kunde inte verifieras"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "Signaturens offentliga nyckel är inte tillgänglig"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Svartfotindianernas språk (siksika)"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapore"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Singalesiska"
 
+#. language code: sio
+#: zypp/LanguageCode.cc:949
+msgid "Siouan Languages"
+msgstr "Siouxspråk"
+
 #. language code: sit
 #: zypp/LanguageCode.cc:951
 msgid "Sino-Tibetan (Other)"
 msgstr "Sino-tibetanska språk (övriga)"
 
-#. language code: sio
-#: zypp/LanguageCode.cc:949
-msgid "Siouan Languages"
-msgstr "Siouxspråk"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
+msgstr "Slaviska språk (övriga)"
+
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+msgid "Slovak"
+msgstr "Slovakiska"
+
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "Slovenska"
+
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Sydsamiska"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Nordsamiska"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Samiska språk (övriga)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Lulesamiska"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Enaresamiska"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samoanska"
 
 #. language code: sms
 #: zypp/LanguageCode.cc:973
 msgid "Skolt Sami"
 msgstr "Skoltsamiska"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slave"
-
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
-msgstr "Slaviska språk (övriga)"
-
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-msgid "Slovak"
-msgstr "Slovakiska"
-
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovakien"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenien"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindhi"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "Slovenska"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "Sogdiska"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Salomonöarna"
-
+# Libris vill ha det så.
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Somali"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "Songhai"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Sorbiska språk"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Den här versionen av libzypp fungerar inte med HAL."
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Sotho, syd"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Sydafrika"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Sydamerikanska indianspråk (övriga)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Sydgeorgien och södra Sandwichöarna"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Sydkorea"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Sydaltaiska"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Sydsamiska"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spanien"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Spanska"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardiska"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Föreslår"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-sahariska språk (övriga)"
+
+# Libris vill ha det så.
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Swazi"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Sukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Sumeriska"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sundanesiska"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Kompletterar"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard och Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Sumeriska"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Swahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Swazi"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Sverige"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Svenska"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Schweiz"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Syrien"
-
+# Libris vill ha det så.
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Syriska"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Systemundantaget %s uppstod för mediet %s."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Systemhanteringen har låsts av programmet med PID %d (%s).\n"
-"Stäng det här programmet och försök igen."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4031,36 +4077,11 @@ msgstr "Tahitiska"
 msgid "Tai (Other)"
 msgstr "Thaispråk (övriga)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tadzjikiska"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadzjikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamashek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4071,6 +4092,11 @@ msgstr "Tatariska"
 msgid "Telugu"
 msgstr "Telugo"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Temne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4081,32 +4107,20 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tadzjikiska"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
-msgstr "Thailändska"
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thailand"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Supportnivån har inte angetts"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Leverantören tillhandahåller inte support."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Åtgärden körs redan av ett annat program."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Begäran kommer att knäcka systemet!"
+msgstr "Thailändska"
 
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
@@ -4123,46 +4137,25 @@ msgstr "Tigré"
 msgid "Tigrinya"
 msgstr "Tigrinja"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Tidsgränsen överskreds vid försök att nå %s."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Temne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tivi"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingonska"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4174,103 +4167,67 @@ msgstr "Tonga (nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Tongaöarna)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Försökte importera nyckeln %s som inte finns till nyckelringen %s"
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad och Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
+# Libris vill ha det så.
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimshian"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turkmeniska"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Tumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisien"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Tupíspråk"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turkiet"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turkiska"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Ottomanska (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turkmeniska"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks- och Caicosöarna"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altaiska språk (övriga)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvaluan"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "Tuvinska"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Udmurtiska"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4281,11 +4238,6 @@ msgstr "Ugaritiska"
 msgid "Uighur"
 msgstr "Uiguriska"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraina"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4296,210 +4248,36 @@ msgstr "Ukrainska"
 msgid "Umbundu"
 msgstr "Umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Det går inte att klona URL-objektet"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Det gick inte att skapa dbus-anslutningen"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Det gick inte att initiera HAL-kontext - hald körs inte?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Det gick inte att analysera URL-komponenterna"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Odefinierat språk"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Ohanterad arkivtyp"
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Förenade Arabemiraten"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Storbritannien"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "USA"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "USA:s avlägsna mindre öar"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Okänt land: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Ett okänt fel uppstod vid läsning från %s"
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Okänt språk: "
-
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Okänt matchningsläge %s"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Okänt matchningsläge %s för mönstret %s"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr "Okänd tjänst '%1%': Tar bort övergivet tjänstearkiv '%2%'"
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Okänt supportalternativ. Beskrivningen är inte tillgänglig"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Okänd typ av signatur"
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Det finns inte stöd för HTTP-autentiseringsmetoden %s"
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Det finns inte stöd för URI-schemat i %s."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Högsorbiska"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "Urdu"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "URL-schemat tillåter inte %s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Det får inte finnas någon värdkomponent i URL-schemat"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "URL-schemat tillåter inte något lösenord"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "URL-schemat tillåter inte någon port"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "URL-schemat tillåter inte något användarnamn"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "URL-schemat är en obligatorisk komponent"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Det måste finnas en värdkomponent i URL-schemat"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Det måste finnas ett sökvägsnamn för URL-schemat"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
 #. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Uzbekiska"
-
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Uzbekiska"
 
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "Vai"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "Venda"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "Vietnamesiska"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Jungfruöarna, amerikanska"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Besök Novells kundcenter och kontrollera att din registrering är giltig och "
-"fortfarande gäller."
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4520,16 +4298,6 @@ msgstr "Wakusjiska språk"
 msgid "Walamo"
 msgstr "Walamo"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis och Futuna"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Vallonska"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4540,319 +4308,811 @@ msgstr "Waray"
 msgid "Washo"
 msgstr "Washo"
 
+# Libris vill ha det så.
 #. language code: wel cym cy
 #: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
 msgid "Welsh"
 msgstr "Kymriska"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Västsahara"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Sorbiska språk"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Vallonska"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "Wolof"
 
+# Libris vill ha det så.
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmuckiska"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "Xhosa"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Jakutiska"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yao"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yap"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Jiddisch"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Yoruba"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Yupiska språk"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapotek"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
+
+# BT
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zande"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Försökte importera icke existerande nyckel %s till nyckelringen %s"
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Misslyckades att radera nyckel."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Signaturfilen %s hittas inte"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Kan inte tillhandahålla filen %s från förrådet '%s'"
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Det finns Ingen URL i förrådet."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "Insticksprogrammet för tjänsten har inte stöd för ändring av attribut."
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Paketet %s ser ut att ha skadats under överföringen. Vill försöka hämta den "
+"på nytt?"
+
+# %s is either BOOTP or DHCP
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "Signaturen kunde inte verifieras"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Misslyckades att tillhandahålla paket %s. Vill du göra ett nytt försök?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm-kontrollen misslyckades."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm misslyckades."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"Systemhanteringen är låst av programmet med pid %d (%s).\n"
+"Stäng detta program och försök igen."
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s tillhör inte ett \"distupgrade\" förråd (repo)"
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s innehåller en underordnad arkitektur"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problem med det installerade paketet %s"
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "begäranden i konflikt"
+
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "vissa beroendeproblem"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "inget tillhandahåller begärda %s"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Har du aktiverat alla begärda förråd (repos)?"
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "paketet %s finns inte"
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "begäran stöds inte"
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s tillhandahålls av systemet och kan inte tas bort"
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s går inte att installera"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "inget tillhandahåller %s som behövs av %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "kan inte installera både %s och %s"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s är i konflikt med %s som kommer från %s"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s gör %s inaktuell som kommer från %s"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s gör %s tillhandahållen av %s inaktuell"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "lösbara %s är i konflikt med %s tillhandahållen av sig själv"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s behöver %s, men kravet kan inte uppfyllas"
+
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "borttagna leverantörer: "
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yao"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"leverantörer som inte går att installera: "
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Yap"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "oinstallerbara leverantörer: "
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Jemen"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "ta bort lås så att %s kan tas bort"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Jiddisch"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "installera inte %s"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Yoruba"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "behåll %s"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Yupiska språk"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "ta bort lås så att %s kan installeras"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Denna begäran kommer att skada ditt system!"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zande"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ignorera varningen om ett skadat system"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapotek"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "fråga inte om att installera en lösbar med %s"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "fråga inte om att ta bort alla lösbara med %s"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "installera inte den senaste versionen av %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "behåll %s trots underordnad arkitektur"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zulu"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "installera %s trots underordnad arkitektur"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zuni"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "behåll föråldrad version av %s"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm-kontrollen misslyckades."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "installera %s från undantaget förråd (repo)"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm misslyckades."
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "Nedgradera %s till %s"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr "arkitekturändring av %s till %s"
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"installera %s (med byte av leverantör)\n"
+"  %s  -->  %s"
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "ersätt %s med %s"
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "avinstallation av %s"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
-msgstr "bryt %s genom att ignorera vissa beroenden"
+msgstr "bryt '%s' genom att ignorera några av beroendena"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "ignorera generellt vissa beroende"
+
+#: zypp/parser/RepoindexFileReader.cc:197
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "det går inte att installera både %s och %s"
+msgid "Required attribute '%s' is missing."
+msgstr "Det obligatoriska attributet '%s' saknas."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "begäranden i konflikt"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Ett eller båda av attributen '%s' och/eller '%s' är obligatoriska."
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/base/InterProcessMutex.cc:83
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "skapade säkerhetskopian %s"
+msgid "Can't open lock file: %s"
+msgstr "Kan inte öppna låsfilen: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Denna åtgärd körs redan av ett annat program."
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Historik:"
+
+#: zypp/base/StrMatcher.cc:152
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "avinstallation av %s"
+msgid "Unknown match mode '%s'"
+msgstr "Obekant matchningsläge '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "borttagna leverantörer:"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Obekant matchningsläge '%s' för mönstret '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "fråga inte om att ta bort alla lösbara med %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Ogiltigt reguljärt uttryck '%s': regcomp returnerade %d"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "fråga inte om att installera en lösbar med %s"
+msgid "Invalid regular expression '%s'"
+msgstr "Ogiltigt reguljärt uttryck: '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Installera paketet 'lsof' först."
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "installera inte %s"
+msgid "Authentication required for '%s'"
+msgstr "Autentisering krävs för \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "installera inte den senaste versionen av %s"
+msgid "Failed to mount %s on %s"
+msgstr "Misslyckades att notera %s vid %s"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "nedgradera %s till %s"
+msgid "Failed to unmount %s"
+msgstr "Misslyckades att avmontera %s"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "allmänt ignorera några beroenden"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Ogiltigt filnamn: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ignorera varningen om ett trasigt system"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Mediet inte öppet vid försök att utföra åtgärden %s."
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"installera %s (med ändrad leverantör)\n"
-"  %s  -->  %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Filen '%s' kunde inte hittas på mediet '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "installera %s trots underordnad arkitektur"
+msgid "Cannot write file '%s'."
+msgstr "Kan inte skriva till filen '%s'."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Mediet är inte anslutet"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Ogiltigt media på anslutningspunkten"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Initieringen för nedladdningen (curl) misslyckades för '%s'"
+
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr "System exception '%s' på mediet '%s'."
+
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Sökvägen '%s' på mediet '%s' leder inte till en fil."
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "installera %s från undantaget arkiv"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Sökvägen '%s' på mediet '%s' leder inte till en katalog."
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Felaktigt utformad URI"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Inget värdnamn angivet i URI"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Inget filsystem angivet i URI"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Inget mål angiven i URI"
+
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s gör %s tillhandahållen av %s inaktuell"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "URI-schemat i '%s' stöds inte."
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "Ogiltig"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operationen stöds inte av mediet"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "behåll %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Nedladdningsfel (curl) för '%s':\n"
+"Felkod: %s\n"
+"Felmeddelande: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "behåll %s trots underordnad arkitektur"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"Ett fel uppstod vid inställning av alternativ för nedladdning (curl) av '%s':"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "behåll föråldrad version av %s"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Mediakällan '%s' innehåller inte det önskade mediet"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: Det gick inte att skapa libhal-kontext"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "Mediet '%s' används av en annan instans"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: Det gick inte att ange dbus-anslutningen"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Kan inte mata ut media"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "inget tillhandahåller %s som behövs i %s"
+msgid "Cannot eject media '%s'"
+msgstr "Kan inte mata ut media '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "inget tillhandahåller begärda %s"
+msgid "Permission to access '%s' denied."
+msgstr "Åtkomst nekas för '%s '."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "paketet %s finns inte"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Timeout vid åtkomst av '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problem med det installerade paketet %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Platsen '%s' är tillfälligt oåtkomlig."
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "ta bort lås så att %s kan installeras"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+"SSL-certifikatsproblem, kontrollera att CA-certifikatet för '%s' är OK."
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "ta bort lås så att %s kan tas bort"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Kan inte hitta ett tillgängligt loop device att montera image-filen från '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "ersätt %s med %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "HTTP-autentiseringsmetod \"%s\" stöds inte"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm skapade %s som %s, men det gick inte att avgöra skillnaden"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Besök Novell Customer Center för att kontrollera att din reigistering är "
+"giltig och inte löpt ut."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Kan inte skapa sat-pool"
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm skapade %s som %s.\n"
-"Här visas de första 25 raderna med skillnader:\n"
+"Filen %1%\n"
+"  från källpaketet\n"
+"     %2%\n"
+"  står i konflikt med filen från källpaketet\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm sparade %s som %s, men det gick inte att avgöra skillnaden"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Filen %1%\n"
+"  från källpaketet\n"
+"     %2%\n"
+"  står i konflikt med filen från installationen av\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm sparade %s som %s.\n"
-"Här visas de första 25 raderna med skillnader:\n"
+"Filen %1%\n"
+"  från installationen av\n"
+"     %2%\n"
+"  står i konflikt med filen från källpaketet\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "Lösbara %s-konflikter med %s som uppstår automatiskt"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Filen %1%\n"
+"  från installationen av\n"
+"     %2%\n"
+"  står i konflikt med filen från installationen av\n"
+"     %3%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "vissa beroendeproblem"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Filen %1%\n"
+"  från källpaketet\n"
+"     %2%\n"
+"  står i konflikt med filen\n"
+"     %3%\n"
+"  från källpaketet\n"
+"     %4%"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "oinstallerbara leverantörer:"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Filen %1%\n"
+"  från källpaketet\n"
+"     %2%\n"
+"  står i konflikt med filen\n"
+"     %3%\n"
+"  från installationen av\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "Okänd"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Filen %1%\n"
+"  från installationen av\n"
+"     %2%\n"
+"  står i konflikt med filen\n"
+"     %3%\n"
+"  från källpaketet\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "går inte att använda"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Filen %1%\n"
+"  från installationen av\n"
+"     %2%\n"
+"  står i konflikt med filen\n"
+"     %3%\n"
+"  från installationen av\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "begäran stöds inte"
+#, fuzzy
+#~ msgid "do not keep %s installed"
+#~ msgstr "inte installerad."
+
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr "Kan inte skapa publik nyckel %s från %s nyckelring till filen %s"
+
+#, fuzzy
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Kunde inte öppna %s - %s\n"
+
+# name for SCG
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Serbien och Montenegro"
+
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "Okänt alternativ för list"
+
+#, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "det gick inte att lösa beroenden"
+
+#~ msgid ""
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Filen %s har inte någon kontrollsumma.\n"
+#~ "Vill du använda filen ändå?"
+
+#~ msgid ""
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Integritetskontrollen för filen %s misslyckades med följande nyckel:\n"
+#~ "%s|%s|%s\n"
+#~ "Vill du använda filen ändå?"
+
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Filen %s har en ogiltig kontrollsumma.\n"
+#~ "%s förväntades, men %s hittades\n"
+#~ " Vill du använda filen ändå?"
+
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Filen %s har en okänd kontrollsumma.%s.\n"
+#~ "Vill du använda filen ändå?"
+
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "Filen %s har inte signerats.\n"
+#~ "Vill du använda den ändå?"
+
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Filen %s har signerats med en okänd nyckel:\n"
+#~ "%s|%s|%s\n"
+#~ "Vill du använda filen ändå?"
+
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "En osäker nyckel hittades:\n"
+#~ "%s|%s|%s\n"
+#~ "Vill du lita på nyckeln?"
index 0145daa..22175f6 100644 (file)
--- a/po/ta.po
+++ b/po/ta.po
@@ -12,17 +12,93 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "ஹால் விதிவிலக்கு"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "செல்லாத எல்டிஏபி யூஆர்எல் வினா வரிசை"
+
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "செல்லாத எல்டிஏபி யூஆர்எல் வினா அளவீடு '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "யூஆர்எல் பொருளின் போலிகையை உருவாக்க இயலவில்லை"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "செல்லாத காலி யூஆர்எல் பொருள் குறிப்புரை"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "யூஆர்எல் உறுப்புகளை விளக்க இயலவில்லை"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "மியூடெக்ஸ் பண்புகளை துவக்க இயலாது"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "எதிர்ப்புத்தன்மையுள்ள மியூடெக்ஸ் பண்மப அமைக்க இயலாது"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "எதிர்ப்புத்தன்மையுள்ள மியூடெக்ஸை துவக்க இயலாது"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "மியூடெக்ஸ் பூட்டை பெற இயலாது"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "மியூடெக்ஸ் பூட்டை திறக்க இயலாது"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr ""
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr ""
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
 #, fuzzy
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr "%sக்கு நிறுவக்கூடிய அளிப்பவர்கள் இல்லை"
+msgid "Obsoletes"
+msgstr "%s %sஐ வழக்கற்றதாக்குகிறது:"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -35,10 +111,6 @@ msgstr "நிறைவேற்று"
 msgid " execution failed"
 msgstr "DBI Execution failed: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -47,93 +119,121 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s %sஉடன் முரண்படுகிறது"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+#, fuzzy
+msgid "Error sending update message notification."
+msgstr "விசை என்கிரிப்ட் செய்யும்போது பிழை."
+
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s, %sஐ அளிக்கிறது, ஆனால் அதற்கு வேறொரு கட்டமைப்பு உள்ளது."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "குறிப்பிட்டுள்ளபடி நிறுவுதல் இடையில் நிறுத்தப்பட்டது."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "நிறுவப்படவில்லை"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s பூட்டப்பட்டுள்ளது மற்றும் அதன் நிறுவுதலை நீக்க இயலாது."
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "ஹால்கான்டெக்ஸ்ட் இணைக்கப்படவில்லை"
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, fuzzy, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s %sஐ வழக்கற்றதாக்குகிறது"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "ஹால்டிரைவ் துவக்கப்படவில்லை"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "ஹால்வால்யூம் துவக்கப்படவில்லை"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "டிபஸ் இணைப்பை உருவாக்க இயலவில்லை"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: ஆல் லைபால் உள்ளடக்கத்தை உருவாக்க இயலவில்லை"
+
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: ஆல் டிபஸ் இணைப்பை அமைக்க இயலவில்லை"
+
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "HAL உள்ளடக்கத்தை துவக்க இயலவில்லை -- ஹால்ட் இயக்கத்தில் இல்லையா?"
+
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "சிடிரோம் டிரைவ் அல்ல"
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
 #, fuzzy
-msgid "(does not expire)"
-msgstr "'%1' காணப்படவில்லை."
+msgid "RPM failed: "
+msgstr "தோல்வியுற்றது"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "«º÷¨Àº¡ý"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, fuzzy, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "பொது விசையை பெற முடியவில்லை."
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "º£É"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "%s:க்காக உள்ளமைத்தல் கோப்புகள் மாற்றப்பட்டுள்ளன"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "அகோலி"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, fuzzy, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "%s ஆக ஆர்பிஎம் சேமிக்கப்பட்டுள்ளது, ஆனால் வேறுபாட்டை நிர்ணயிக்க முடியவில்லை"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "அடாங்மே"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, fuzzy, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"%s ஆக ஆர்பிஎம் சேமிக்கப்பட்டுள்ளது.\n"
+"வேறுபாடுகளின் முதல் 25 வரிகள் இங்குள்ளன:\n"
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
 #, fuzzy, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "மூலங்கள் சேர்க்கப்படுகின்றன"
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "%s ஆக ஆர்பிஎம் உருவாf;கப்பட்டுள்ளது, ஆனால் வேறுபாட்டை நிர்ணயிக்க முடியவில்லை"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, fuzzy, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"%s ஆக ஆர்பிஎம் உருவாக்கப்பட்டுள்ளது.\n"
+"வேறுபாடுகளின் முதல் 25 வரிகள் இங்குள்ளன:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -142,20 +242,1668 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "கூடுதல் ஆர்பிஎம் அவுட்புட்:"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "அடிகே"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "%s மறுபிரதி உருவாக்கப்பட்டது"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "உள்ளீடு காணப்படவில்லை."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "உள்ளீடு காணப்படவில்லை."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "உள்ளீடு காணப்படவில்லை."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "எழுதுவதற்கு கோப்பைத் திறக்க முடியவில்லை."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "டெஸ்க்டாப் பொருளை '%s' திறக்க முடியவில்லை"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "அடைவு %1 உருவாக்க முடியவில்லை: %2."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "ஃப்ளாப்பி வட்டிலிருந்து படிப்பதில் பிழை"
+
+#: zypp/RepoManager.cc:1611
+#, fuzzy, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "மூலங்கள் சேர்க்கப்படுகின்றன"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "செல்லாத ஏற்றுமதி கோப்புபெயர்."
+
+#: zypp/RepoManager.cc:1740
+#, fuzzy, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "மூலங்கள் சேர்க்கப்படுகின்றன"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "டெஸ்க்டாப் பொருளை '%s' திறக்க முடியவில்லை"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "யூஆர்எல் திட்டம் %sக்கு அனுமதிப்பதில்லை"
+
+#: zypp/url/UrlBase.cc:173
+#, fuzzy, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "'%s' செல்லாத உறுப்பு"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "செல்லாத %s உறுப்பு"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "இந்த யூஆர்எல்லுக்கு வினா வரிசை விளக்கம் ஆதரவளிக்கப்படவில்லை"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "யூஆர்எல் திட்டம் ஒரு தேவைப்படும் உறுப்பாகும்"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "செல்லாத யூஆர்எல் திட்டம் '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "யூஆர்எல் திட்டம் பயனாளர் பெயரை அனுமதிப்பதில்லை"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "யூஆர்எல் திட்டம் கடவுச்சொல்லை அனுமதிப்பதில்லை"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "யூஆர்எல் திட்டத்திற்கு ஓர் ஆதார உறுப்பு தேவைப்படுகிறது"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "யூஆர்எல் திட்டம் ஓர் ஆதார உறுப்பை அனுமதிப்பதில்லை"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "செல்லாத ஆதார உறுப்பு'%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "யூஆர்எல் திட்டம் ஒரு முணையத்தை அனுமதிப்பதில்லை"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "செல்லாத முணைய உறுப்பு'%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "யூஆர்எல் திட்டத்திற்கு ஒரு பாதை பெயர் தேவைப்படுகிறது"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "அதிகாரம் இருக்குமானால் தொடர்புப் பாதை ஆதரவளிக்கப்படுவதில்லை"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "குறியீடு செய்யப்பட்ட வரிசை, என்யூஎல் பைட் கொண்டுள்ளது"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "செல்லாத அளவீட்டு அடுக்கு பிளவை பிரிக்கும் வடிவம்"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "செல்லாத அளவீட்டு வரைவு பிளவை பிரிக்கும் வடிவம்"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "செல்லாத அளவீட்டு அடுக்கு இணைப்பை பிரிக்கும் வடிவம்"
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "கோப்பை %1 திறக்க முடியவில்லை."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "%s கண்பிடிக்க முடியவில்லை."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, fuzzy, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "%s கண்பிடிக்க முடியவில்லை."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "இணைக்கப்படும் பொழுது கட்டளையை செயல்படுத்து"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+#, fuzzy
+msgid "(does not expire)"
+msgstr "'%1' காணப்படவில்லை."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "அறியப்படாதது"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "அறிந்திராத நாடு:"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "குறியீடு இல்லை"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "அன்டோரா"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "³ì¸¢Â «¦Áâ츠¿¡Î¸û"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "ஆப்கானிஸ்தான்"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "¬ýÊÌÅ¡ & À¡÷Ò¼¡"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "அங்வில்லா"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "அல்பேனியா"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "¬÷¦º\83ýÊÉ¡"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "¦¿¾÷Ä¡óÐ"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "அங்கோலா"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "¬ôâ측"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "¬÷¦º\83ýÊÉ¡"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "«¦Áâ측, Å¼"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "¬Íò¾¢Ã¢Â¡"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "¬\8aÍò¾¢§ÃĢ¡"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "¦¸¡ÄõÀ¢Â¡"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "«Â÷Ä¡óÐ"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "«º÷¨Àº¡ý"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "பாஸ்னியா மற்றும் ஹெர்சகோவினா"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "À¡÷§À¼¡Í"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Àí¸Ç¡§¾Í"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "¦Àøº¢Âõ"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "பர்கினா ஃபாஸோ"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Àø§¸Ã¢Â¡"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "À¢§Ãº¢ø"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "புருண்டி"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "பெனின்"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "§º÷Áý"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "புரூனய் தாருசலாம்"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "¦À¡Ä¢Å¢Â¡"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "À¢§Ãº¢ø"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "ÀÉ¡Á¡"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "À¢§Ãº¢ø"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "«Â÷Ä¡óÐ"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "பாட்ஸ்வானா"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "¦ÀÄ¡åÍ"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "¦Àøº¢Âõ"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "¸É¼¡"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "கோகோஸ் (கீலிங்) தீவுகள்"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "காங்கோ"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "¦¼¡Á¢É¢ì¸ý ÌÊÂÃÍ"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "ÍÅ¢ðº÷Ä¡óÐ"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "கோடே த’ஐவரி"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "«Â÷Ä¡óÐ"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "º¢Ä¢"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "கேமரூன்"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "º£É¡"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "¦¸¡ÄõÀ¢Â¡"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "காஸ்டா ரிகா"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "¦¸¡ÄõÀ¢Â¡"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "கேப் வெர்ட்"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "கிறிஸ்துமஸ் தீவு"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "சைப்ரஸ்"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "¦¼¡Á¢É¢ì¸ý ÌÊÂÃÍ"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "§º÷ÁÉ¢"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "ஜிபெளட்டி"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "¦¼ýÁ¡÷ì"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Õ§Áɢ¡"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "¦¼¡Á¢É¢ì¸ý ÌÊÂÃÍ"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Àø§¸Ã¢Â¡"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "®ì¦Å§¼¡÷"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "±Í§¼¡É¢Â¡"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "±¸¢ôÐ"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "மேற்கு சஹாரா"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "எரிட்ரியா"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "ͦÀ¢ý"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "±Í§¼¡É¢Â¡"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "À¢ýÄ¡óÐ"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "ஃபிஜி"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "ஃபால்க்லாந்து தீவுகள் (மால்வினாஸ்)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "மைக்ரோனேசிய நாடுகளின் கூட்டமைப்பு"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "«Â÷Ä¡óÐ"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "À¢Ã¡ýÍ"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "பிரான்ஸ் மாநகர்"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "º£É¡"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "யுனைடெட் கிங்டம்"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "¸¢¦Ãɼ¡"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "¦º÷À¢Â¡"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "À¢¦Ãýî "
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "§º÷ÁÉ¢"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "º£É¡"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "ஜிப்ரால்டர்"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "¸¢¦Ãɼ¡"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "\83º¦Áö측"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "ÌÅ¡ò¾Á¡Ä¡"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "காடேலூப்"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "ஈக்வடோரியல் கினியா"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "¸¢Ã£Í"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "தென் ஜியார்ஜியா மற்றும் தென் சான்ட்விச் தீவுகள்"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "ÌÅ¡ò¾Á¡Ä¡"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "ÌÅ¡ò¾Á¡Ä¡"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "கினியா-பிசாவ்"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "º£É¡"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "ஹாங் காங்"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "ஹேர்ட் தீவு மற்றும் மெக்டொனால்ட் தீவுகள்"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "¬ñÎá\8aÍ"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "̦á§Åº¢Â¡"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "ஹைட்டி"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "¬í§¸Ã¢"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "­ó§¾¡É£º¢Â¡"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "«Â÷Ä¡óÐ"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "­Í§Ãø"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "­ó¾¢Â¡"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "பிரிட்டிஷ் இந்துமாக் கடல் எல்லை"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "®Ã¡ì"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "®Ã¡ì"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "³ÍÄ¡óÐ"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "­ò¾¡Ä¢"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "\83º¦Áö측"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "§Â¡÷¾¡ý"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "ºôÀ¡ý"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "கென்யா"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "¾¡öÅ¡ý"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "¦¸¡ÄõÀ¢Â¡"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "கிரிபாட்டி"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "கோமரோஸ்"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "¦ºÂ¢ý𠸢ðÍ & ¦¿Å¢Í"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "வட கொரியா"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "¦¾ý ¬ôâ측"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "குவைத்"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "«Â÷Ä¡óÐ"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "¾¡öÅ¡ý"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "லாவோ மக்கள் ஜனநாயக குடியரசு"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "லெபனான்"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "¦ºýð æº¢Â¡"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "லிச்சன்ஸ்டெயின்"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "¦º÷À¢Âý"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "¦º÷À¢Â¡"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "லெசோத்தோ"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Ä¢òЧÅɢ¡"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Äìºõ§À¡÷ì"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "ÄðŢ¡"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "¦º÷À¢Â¡"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "மொராக்கோ"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Á¡ø¼¡"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "ͧġšì"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "மாங்கோ"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "சான் மரினோ"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "மடகாஸ்கர்"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "«Â÷Ä¡óÐ"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Á¡º¢§¼¡É¢Â¡"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Á¡ø¼¡"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "ÀÉ¡Á¡"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "மங்கோலியா"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Á¡ø¼¡"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "வட மாரியானா தீவுகள்"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Ä¢òЧÅɢ¡"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Ä¢òЧÅɢ¡"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "மான்ட்செர்ரட்"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Á¡ø¼¡"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Ä¢òЧÅɢ¡"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Á¡ø¼¡"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Á¡ø¼¡"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "¦Á캢§¸¡"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Á¡ø¼¡"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "மொசாம்பிக்"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "\83º¦Áö측"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Á¡º¢§¼¡É¢Â¡"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "¦º÷À¢Â¡"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "«Â÷Ä¡óÐ"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "¦º÷À¢Â¡"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Àá̧Å"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "¦¿¾÷Ä¡óÐ"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "¿¡÷§Å"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "நேபாளம்"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "நவ்ரு"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "நியூ"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "¿¢äº¢Ä¡óÐ"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "§º÷Áý"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "ÀÉ¡Á¡"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "¦ÀÕ"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "பிரெஞ்சு பாலினேசியா"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "பாப்புவா நியூ கினியா"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "ஃபிலிப்பைன்ஸ்"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "¾¡öÅ¡ý"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "§À¡Ä¡óÐ"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "செயின்ட் பியரி மற்றும் மிக்வலான்"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "பிட்கெய்ர்ன்"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "பியூர்டோ ரிகோ"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "பாலஸ்தீனிய எல்லை"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "§À¡÷òиø"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Àá̧Å"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Àá̧Å"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Á¡ø¼¡"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "ரீயூனியன்"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Õ§Áɢ¡"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "¦º÷À¢Âý"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "ரஷ்ய கூட்டரசு"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "¸É¼¡"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "சவூதி அரேபியா"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "«Â÷Ä¡óÐ"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "செய்செலஸ்"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "ݼ¡ý"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "ÍÅ£¼ý"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "சிங்கப்பூர்"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "செயின்ட் ஹெலனா"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "ͧġŢɢ¡"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "ஸ்வால்பார்ட் மற்றும் ஜான் மேயன்"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "ͧġš츢Â"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "ஸியரா லியோன்"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "சான் மரினோ"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "செனகல்"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Õ§Áɢ¡"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "¦º÷À¢Â¡"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "சாவோ டோம் மற்றும் பரின்சிபே"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "±ø º¡øŧ¼¡÷"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "¦º÷À¢Â¡"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "¾¡öÄ¡óÐ"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "டர்க்ஸ் மற்றும் கெய்கோஸ் தீவுகள்"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "º£É¡"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "பிரெஞ்சு தென் எல்லைகள்"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "டோகோ"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "¾¡öÄ¡óÐ"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "¾¡öÅ¡ý"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "டோகேலாவ்"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "¾¡öÅ¡ý"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "ú¢Â¡"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "டோங்கா"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "கிழக்கு தைமூர்"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "ÐÕ츢"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "ðâɢ¼¡ð & ¦¼¡À¡§¸¡"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Ýæ"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "¾¡öÅ¡ý"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "டான்சானியா"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "¯ì¦Ãöý"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "¸É¼¡"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "³ì¸¢Â «¦Áâ츠¿¡Î¸û"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "³ì¸¢Â «¦Áâ츠¿¡Î¸û"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "¯Õ̧Å"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "¾¡öÅ¡ý"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "ஹோலி ஸீ (வாடிகன் நகர மாகாணம்)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "¦ºÂ¢ýð Å¢ý¦ºýð & ¸¢¦ÃÉËý¸û"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "¦ÅÉ¢ÍÅÄ¡"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "À¢ýÄ¡óÐ"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "À¢ýÄ¡óÐ"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "வானுவாடூ"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "வாலிஸ் மற்றும் ஃபுடூனா"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "¦¸¡ÄõÀ¢Â¡"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "யேமன்"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "மயோட்"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "¦¾ý ¬ôâ측"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "\83º¦Áö측"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "ஜிம்பாப்வே"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "அறியப்படாத மொழி: "
 
 #. language code: aar aa
 #: zypp/LanguageCode.cc:161
 msgid "Afar"
 msgstr "தொலைதூரம்"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "ஆப்கானிஸ்தான்"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "«º÷¨Àº¡ý"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "º£É"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "அகோலி"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "அடாங்மே"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "அடிகே"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "ஆப்பிரிக்க-ஆசிய (மற்றவை)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -167,11 +1915,6 @@ msgstr "ஆப்ரிஹிலி"
 msgid "Afrikaans"
 msgstr "¬·À⸡ýÍ"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "ஆப்பிரிக்க-ஆசிய (மற்றவை)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -187,16 +1930,6 @@ msgstr "¬·À⸡ýÍ"
 msgid "Akkadian"
 msgstr "அக்கடியன்"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "«Â÷Ä¡óÐ"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "அல்பேனியா"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -207,58 +1940,25 @@ msgstr "«º÷¨Àº¡ý"
 msgid "Aleut"
 msgstr "அல்யூட்"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Àø§¸Ã¢Â¡"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "¬\8aÍò¾¢§ÃĢ¡"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "அல்டெய்க் (மற்றவை)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "«¦Áâ측, Å¼"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "¦¾ý ¬ôâ측"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "«Ã¡À¢ì"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "அன்டோரா"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "அங்கோலா"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "அங்வில்லா"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "¬ôâ측"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "¬ýÊÌÅ¡ & À¡÷Ò¼¡"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "ஆங்கிலம், புராதன (ca.450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -270,55 +1970,40 @@ msgstr "¬\8aÍò¾¢§ÃĢ¡"
 msgid "Arabic"
 msgstr "«Ã¡À¢ì"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "அரகோனீஸ்"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "«Ã¡À¢ì"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "அரபாஹோ"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "அரகோனீஸ்"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "¬÷¦º\83ýÊÉ¡"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "Ä¢òЧÅɢ¡"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "அரவாக்"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "¬÷¦º\83ýÊÉ¡"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "¬÷¦º\83ýÊÉ¡"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "¬÷¦º\83ýÊÉ¡"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "அரபாஹோ"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "செயற்கை (மற்றவை)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "¦¸¡ÄõÀ¢Â¡"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "அரவாக்"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -335,32 +2020,11 @@ msgstr "¬Íò¾¢Ã¢Â¡"
 msgid "Athapascan Languages"
 msgstr "¬\8aÍò¾¢§ÃĢ¡"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "¬\8aÍò¾¢§ÃĢ¡"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "¬\8aÍò¾¢§ÃĢ¡"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "¬Íò¾¢Ã¢Â¡"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "ஆஸ்ட்ரோனேசியன் (மற்றவை)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -381,44 +2045,25 @@ msgstr "அவதி"
 msgid "Aymara"
 msgstr "ÀÉ¡Á¡"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "«º÷¨Àº¡ý"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "«º÷¨Àº¡É¢"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "ÀÉ¡Á¡"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "À¢§Ãº¢ø"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "¸É¼¡"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "º£É"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "பாமிலேகே மொழிகள்"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "பாலà¯\8dà®\9fிà®\95à¯\8d (மறà¯\8dறவà¯\88)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "பஷà¯\8dà®\95à¯\80à®°à¯\8d"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -430,76 +2075,36 @@ msgstr "பலுச்சி"
 msgid "Bambara"
 msgstr "\83º¦Áö측"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "பாமிலேகே மொழிகள்"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "¸É¼¡"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Àí¸Ç¡§¾Í"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "பன்டு (மற்றவை)"
-
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "À¡÷§À¼¡Í"
-
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "À¡ÍìÌ"
-
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "பஷ்கீர்"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "º£É"
 
 #. language code: baq eus eu
 #: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 msgid "Basque"
 msgstr "À¡ÍìÌ"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "­ó§¾¡É£º¢Â¡"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "À¡ÍìÌ"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "பால்டிக் (மற்றவை)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "பெஜா"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "¦ÀÄ¡åÍ"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "¦ÀÄ¡åÍ"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "¦Àøº¢Âõ"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "¦Àøº¢Âõ"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -510,31 +2115,16 @@ msgstr "பெம்பா"
 msgid "Bengali"
 msgstr "¦Àøº¢Âõ"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "பெனின்"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "பெர்பெர் (மற்றவை)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "§º÷Áý"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "போஜ்புரி"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "À¢§Ãº¢ø"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
@@ -555,266 +2145,70 @@ msgstr "பினி"
 msgid "Bislama"
 msgstr "பிஸ்லாமா"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Àø§¸Ã¢Âý"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "¦À¡Ä¢Å¢Â¡"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "சிக்சிகா"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "பாஸà¯\8dனியா à®®à®±à¯\8dà®±à¯\81à®®à¯\8d à®¹à¯\86à®°à¯\8dà®\9aà®\95à¯\87ாவினா"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "பனà¯\8dà®\9fà¯\81 (மறà¯\8dறவà¯\88)"
 
 #. language code: bos bs
 #: zypp/LanguageCode.cc:281
 msgid "Bosnian"
 msgstr "¯Õ§ÁÉ¢Â"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "பாட்ஸ்வானா"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "«Â÷Ä¡óÐ"
-
 #. language code: bra
 #: zypp/LanguageCode.cc:283
 msgid "Braj"
 msgstr "À¢§Ãº¢ø"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "À¢§Ãº¢ø"
-
 #. language code: bre br
 #: zypp/LanguageCode.cc:285
 msgid "Breton"
-msgstr "À¢Ã¢¼¡ý"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "பிரிட்டிஷ் இந்துமாக் கடல் எல்லை"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "À¢ýÄ¡óÐ"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "புரூனய் தாருசலாம்"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "º£É"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Àø§¸Ã¢Â¡"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Àø§¸Ã¢Âý"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Àø§¸Ã¢Â¡"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "பர்கினா ஃபாஸோ"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "பர்மிய"
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "புருண்டி"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "º£É¡"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "¦¸¡ÄõÀ¢Â¡"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "கேமரூன்"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "கோப்பை உருவாக்க முடியவில்லை."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "மியூடெக்ஸ் பூட்டை பெற இயலாது"
-
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "%s கண்பிடிக்க முடியவில்லை."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "டெஸ்க்டாப் பொருளை '%s' திறக்க முடியவில்லை"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "அடைவு %1 உருவாக்க முடியவில்லை: %2."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "டெஸ்க்டாப் பொருளை '%s' திறக்க முடியவில்லை"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:381
-#, fuzzy, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "%s கண்பிடிக்க முடியவில்லை."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "மியூடெக்ஸ் பண்புகளை துவக்க இயலாது"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "எதிர்ப்புத்தன்மையுள்ள மியூடெக்ஸை துவக்க இயலாது"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "எழுதுவதற்கு கோப்பைத் திறக்க முடியவில்லை."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "கோப்பை %1 திறக்க முடியவில்லை."
-
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "கோப்பை %1 திறக்க முடியவில்லை."
-
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, fuzzy, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "%sலிருந்து %sஐ அளிக்க இயலாது"
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "மியூடெக்ஸ் பூட்டை திறக்க இயலாது"
-
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "எதிர்ப்புத்தன்மையுள்ள மியூடெக்ஸ் பண்மப அமைக்க இயலாது"
+msgstr "À¢Ã¢¼¡ý"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "¸Ã\89¼¡"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "­ó§¾¡Ã\89£º¢Ã\82¡"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Àø§¸Ã¢Â¡"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "டெஸ்க்டாப் பொருளை '%s' திறக்க முடியவில்லை"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "º£É"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Àø§¸Ã¢Âý"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "பர்மிய"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Àø§¸Ã¢Âý"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "%1 கோப்பில் எழுத முடியவில்லை."
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "º£É¡"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "à®\95à¯\87பà¯\8d à®µà¯\86à®°à¯\8dà®\9fà¯\8d"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "மதà¯\8dதிய à®\85à®®à¯\86ரிà®\95à¯\8dà®\95 à®\87நà¯\8dதிய (மறà¯\8dறவà¯\88)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -831,11 +2225,6 @@ msgstr "¦¸¼Ä¡ý"
 msgid "Caucasian (Other)"
 msgstr "காகாசியன் (மற்றவை)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "«Â÷Ä¡óÐ"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -846,167 +2235,80 @@ msgstr "செபுவானோ"
 msgid "Celtic (Other)"
 msgstr "செல்டிக் (மற்றவை)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "¦¼¡Á¢É¢ì¸ý ÌÊÂÃÍ"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "மத்திய அமெரிக்க இந்திய (மற்றவை)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "º£É¡"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "சகடாய்"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "¬\8aÍò¾¢§ÃĢ¡"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "சமாரோ"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "%s:க்காக உள்ளமைத்தல் கோப்புகள் மாற்றப்பட்டுள்ளன"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "¦ºì"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "செரோக்கீ"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "செயன்"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "º£É¡"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "º¢Ä¢"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "º¢Ä¢"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "¦ºì"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "º£É¡"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "சகடாய்"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "º£É"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "º£É"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Á¡µÃ¢"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "சினூக் ஜார்கன்"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "சிப்யூயான்"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "சோக்டாவ்"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "கிறிஸ்துமஸ் தீவு"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "சிப்யூயான்"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "செரோக்கீ"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "சர்ச் ஸ்லாவிக்"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "º£É"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "சுவாஷ்"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "பாரம்பரிய நெவாரி"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "கோகோஸ் (கீலிங்) தீவுகள்"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "¦¸¡ÄõÀ¢Â¡"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "இணைக்கப்படும் பொழுது கட்டளையை செயல்படுத்து"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "கோமரோஸ்"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "காங்கோ"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "செயன்"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "«Ã\82÷Ã\84¡óÃ\90"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "¬Â\8aÃ\8d򾢧Ã\83Ã\84¢Ã\82¡"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1018,36 +2320,11 @@ msgstr "̦á§Åº¢Â¡"
 msgid "Cornish"
 msgstr "³Ã¢Í"
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "̦á§Åº¢Âý"
-
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "காஸ்டா ரிகா"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "கோடே த’ஐவரி"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "¸¢§Ãì¸"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "¸¢§Ãì¸"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "க்ரியோலஸ் மற்றும் பிட்ஜின்ஸ் (மற்றவை)"
-
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "̦á§Åº¢Âý"
+
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1063,46 +2340,36 @@ msgstr "க்ரியோலஸ் மற்றும் பிட்ஜி
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "க்ரியோலஸ் மற்றும் பிட்ஜின்ஸ், போர்த்துக்கீசிய மொழி சார்ந்தது (மற்றவை)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "¸¢§Ãì¸"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "க்ரிமியன் டார்டர்"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "̦á§Åº¢Â¡"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "̦á§Åº¢Âý"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "க்ரியோலஸ் மற்றும் பிட்ஜின்ஸ் (மற்றவை)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "¦¸¡ÄõÀ¢Â¡"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "கசுபியன்"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "குஷிடிக் (மற்றவை)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "சைப்ரஸ்"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "¦ºì"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "¦¼¡Á¢É¢ì¸ý ÌÊÂÃÍ"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1128,10 +2395,15 @@ msgstr "டாயக்"
 msgid "Delaware"
 msgstr "டெலாவேர்"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "¦¼ýÁ¡÷ì"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "ஸ்லேவ் (அதபாஸ்கன்)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "டாக்ரிப்"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1143,71 +2415,36 @@ msgstr "Õ§Áɢ¡"
 msgid "Divehi"
 msgstr "டிவேஹி"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "ஜிபெளட்டி"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Á¡µÃ¢"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "டாக்ரிப்"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Õ§Áɢ¡"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "¦¼¡Á¢É¢ì¸ý ÌÊÂÃÍ"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "திராவிட (மற்றவை)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "¦º÷À¢Âý"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Àá̧Å"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "டச்சு, மத்திய (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "¼îÍ"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "டச்சு, மத்திய (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1218,26 +2455,11 @@ msgstr "டியூலா"
 msgid "Dzongkha"
 msgstr "ஜாங்கா"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "கிழக்கு தைமூர்"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "®ì¦Å§¼¡÷"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "ஈஃபிக்"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "±¸¢ôÐ"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1248,33 +2470,11 @@ msgstr "எகிப்து (புராதன)"
 msgid "Ekajuk"
 msgstr "எகாஜக்"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "±ø º¡øŧ¼¡÷"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "எலாமைட்"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-#, fuzzy
-msgid "Empty host name in URI"
-msgstr "சிஏ பெயா காலி செய்."
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "குறியீடு செய்யப்பட்ட வரிசை, என்யூஎல் பைட் கொண்டுள்ளது"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1285,289 +2485,51 @@ msgstr "§¼É¢Í"
 msgid "English, Middle (1100-1500)"
 msgstr "ஆங்கிலம், மத்திய (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "ஆங்கிலம், புராதன (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "ஈக்வடோரியல் கினியா"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "எரிட்ரியா"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-#, fuzzy
-msgid "Error sending update message notification."
-msgstr "விசை என்கிரிப்ட் செய்யும்போது பிழை."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "எர்சியா"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "±ÍÀáý§¼¡"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "±Í§¼¡É¢Â¡"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "±Í§¼¡É¢Â"
-
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "±Í§¼¡É¢Â¡"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "ஈவ்"
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "இவான்டோ"
-
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "%s - %s திறக்க முடியவில்லை\n"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, fuzzy, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"நேர்மை சோதனையில் %s பேக்கேஜ் தோல்வியுற்றது. அதனை தகவலிறக்கம் செய்வதற்கு நீங்கள் மீண்டும் "
-"முயற்சிக்கப் போகிறீர்களா?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, fuzzy, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "பொது விசையை பெற முடியவில்லை."
+msgid "Estonian"
+msgstr "±Í§¼¡É¢Â"
 
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "à®\95à¯\82à®±à¯\81\"%s\"à®\90 à®\8fà®±à¯\8dà®± à®®à¯\81à®\9fியவிலà¯\8dலà¯\88"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "à®\88வà¯\8d"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "à®\83பாலà¯\8dà®\95à¯\8dலாநà¯\8dதà¯\81 à®¤à¯\80வà¯\81à®\95ளà¯\8d (மாலà¯\8dவினாஸà¯\8d)"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "à®\87வானà¯\8dà®\9fà¯\87ா"
 
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "À¢Ã¡ýÍ"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "ஃபன்டி"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "«Â÷Ä¡óÐ"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "«Â÷Ä¡óÐ"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "மைக்ரோனேசிய நாடுகளின் கூட்டமைப்பு"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "ஃபிஜி"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "ஃபன்டி"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "À¢ýÄ¡óÐ"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "சேமிப்பிடத்தில் கோப்பு %1 காணப்படவில்லை."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "ஃபிலிப்பினோ"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "À¢ýÄ¡óÐ"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1578,40 +2540,16 @@ msgstr "À¢ýÉ¢Í"
 msgid "Finno-Ugrian (Other)"
 msgstr "ஃபின்னோ-உக்ரியன் (மற்றவை)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "ஃபான்"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "À¢Ã¡ýÍ"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "À¢¦Ãýî "
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "À¢¦Ãýî "
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "பிரெஞ்சு பாலினேசியா"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "பிரெஞ்சு தென் எல்லைகள்"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1627,46 +2565,21 @@ msgstr "பிரெஞ்சு, புராதன (842-ca.1400)"
 msgid "Frisian"
 msgstr "À¢Ã¡ýÍ"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "À¢ýÄ¡óÐ"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "ஃப்யூலா"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "À¢ýÄ¡óÐ"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "ÌÅ¡ò¾Á¡Ä¡"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "º£É¡"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Á¡ø¼¡"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "­ò¾¡Ä¢Âý"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "\83º¦Áö측"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "º£É¡"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1677,15 +2590,10 @@ msgstr "கயோ"
 msgid "Gbaya"
 msgstr "º£É¡"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "¸¢§Ãì¸"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "¦º÷À¢Â¡"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "ஜெர்மானிய (மற்றவை)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1697,6 +2605,36 @@ msgstr "¦º÷À¢Â¡"
 msgid "German"
 msgstr "§º÷Áý"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "¸¢§Ãì¸"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Å¢ÂðÉ¡Á¢Â"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Á¡ø¼¡"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "³Ã¢Í"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "­ò¾¡Ä¢Âý"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "மான்க்ஸ்"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1707,30 +2645,6 @@ msgstr "ஜெர்மன், மேல் மத்திய (ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "ஜெர்மன், மேல் புராதன (ca.750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "ஜெர்மானிய (மற்றவை)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "§º÷ÁÉ¢"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "º£É¡"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "ஜிப்ரால்டர்"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Å¢ÂðÉ¡Á¢Â"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1751,11 +2665,6 @@ msgstr "கோத்திக்"
 msgid "Grebo"
 msgstr "¸¢§Ãì¸"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "¸¢Ã£Í"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1766,62 +2675,16 @@ msgstr "கிரேக்கம், புராதன(1453 வரை)"
 msgid "Greek, Modern (1453-)"
 msgstr "கிரேக்கம், நவீன (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "¸¢¦Ãɼ¡"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "¸¢¦Ãɼ¡"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "காடேலூப்"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "ÌÅ¡ò¾Á¡Ä¡"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Àø§¸Ã¢Âý"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "ÌÅ¡ò¾Á¡Ä¡"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "§º÷ÁÉ¢"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "ÌÅ¡ò¾Á¡Ä¡"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "கினியா-பிசாவ்"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "குஜராத்தி"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "º£É¡"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1832,52 +2695,21 @@ msgstr "க்விச் இன்"
 msgid "Haida"
 msgstr "ஹைடா"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "ஹைட்டி"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "ÄðÅ¢Âý"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "ஹால் விதிவிலக்கு"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "ஹால்கான்டெக்ஸ்ட் இணைக்கப்படவில்லை"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "ஹால்டிரைவ் துவக்கப்படவில்லை"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "ஹால்வால்யூம் துவக்கப்படவில்லை"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "ஹெளசா"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "ஹவாயன்"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "ஹேர்ட் தீவு மற்றும் மெக்டொனால்ட் தீவுகள்"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1903,16 +2735,6 @@ msgstr "ஹிமாச்சலி"
 msgid "Hindi"
 msgstr "­ó¾¢Â¡"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "ஹிரி மோட்டு"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1923,31 +2745,21 @@ msgstr "ஹிடைட்"
 msgid "Hmong"
 msgstr "ஹ்மாங்"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "ஹோலி ஸீ (வாடிகன் நகர மாகாணம்)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "¬ñÎá\8aÍ"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "ஹிரி மோட்டு"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "ஹாங் காங்"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "¦º÷À¢Âý"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "«í§¸Ã¢Âý"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "¬í§¸Ã¢"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1958,10 +2770,10 @@ msgstr "ஹ்யூபா"
 msgid "Iban"
 msgstr "®Ã¡ì"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "³ÍÄ¡óÐ"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "இக்போ"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1973,250 +2785,105 @@ msgstr "³ÍÄ¡ó¾¢Â"
 msgid "Ido"
 msgstr "ஐடோ"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "இக்போ"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Ä¢òЧÅɢ¡"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "ஐஜோ"
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr "இலோக்கோ"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "இனாரி சாமி"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "­ó¾¢Â¡"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr "இன்டிக் (மற்றவை)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "இந்தோ-ஐரோப்பிய (மற்றவை)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "­ó§¾¡É£º¢Â¡"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "­ó§¾¡É£º¢Âý"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "இங்குஷ்"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "குறிப்பிட்டுள்ளபடி நிறுவுதல் இடையில் நிறுத்தப்பட்டது."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "இன்டர்லிங்குவா (சர்வதேச துணை மொழி குழுமம்)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "இன்டர்லிங்வே"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "இனக்டிடட்"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "­ó¾¢Â¡"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "செல்லாத %s உறுப்பு"
-
-#: zypp/url/UrlBase.cc:173
-#, fuzzy, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "'%s' செல்லாத உறுப்பு"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "செல்லாத எல்டிஏபி யூஆர்எல் வினா அளவீடு '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "செல்லாத எல்டிஏபி யூஆர்எல் வினா வரிசை"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "செல்லாத யூஆர்எல் திட்டம் '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "செல்லாத காலி யூஆர்எல் பொருள் குறிப்புரை"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "செல்லாத ஆதார உறுப்பு'%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "செல்லாத அளவீட்டு அடுக்கு இணைப்பை பிரிக்கும் வடிவம்"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "இனக்டிடட்"
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "செல்லாத அளவீட்டு அடுக்கு பிளவை பிரிக்கும் வடிவம்"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "இன்டர்லிங்வே"
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "செல்லாத அளவீட்டு வரைவு பிளவை பிரிக்கும் வடிவம்"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr "இலோக்கோ"
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "à®\9aà¯\86லà¯\8dலாத à®®à¯\81ணà¯\88ய à®\89à®±à¯\81பà¯\8dபà¯\81'%s'"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "à®\87னà¯\8dà®\9fà®°à¯\8dலிà®\99à¯\8dà®\95à¯\81வா (à®\9aà®°à¯\8dவதà¯\87à®\9a à®¤à¯\81ணà¯\88 à®®à¯\86ாழி à®\95à¯\81à®´à¯\81மமà¯\8d)"
 
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "à®\9aà¯\86லà¯\8dலாத à®¯à¯\82à®\86à®°à¯\8dà®\8eலà¯\8d à®¤à®¿à®\9fà¯\8dà®\9fà®®à¯\8d '%s'"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr "à®\87னà¯\8dà®\9fிà®\95à¯\8d (மறà¯\8dறவà¯\88)"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "­ó§¾¡É£º¢Âý"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "செல்லாத ஏற்றுமதி கோப்புபெயர்."
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "இந்தோ-ஐரோப்பிய (மற்றவை)"
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "®Ã¡ì"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "இங்குஷ்"
+
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "­ó¾¢Â¡"
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "இரானிய (மற்றவை)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "®Ã¡ì"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "«Â÷Ä¡óÐ"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "³Ã¢Í"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "ஐரிஷ், மத்திய (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "ஐரிஷ், புராதன (900 வரை)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "¬\8aÍò¾¢§ÃĢ¡"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "­Í§Ãø"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "­ò¾¡Ä¢Âý"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "­ò¾¡Ä¢"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "\83º¦Áö측"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "ÂôÀ¡É¢Â"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "ºôÀ¡ý"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "லோஜ்பான்"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "ÂôÀ¡É¢Â"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "ÂôÀ¡É¢Â"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "§Â¡÷¾¡ý"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "­ó§¾¡É£º¢Âý"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "«Ã¡À¢ì"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "­ó§¾¡É£º¢Âý"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "கபர்டியன்"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "கரா-கல்பக்"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2233,11 +2900,6 @@ msgstr "À¢§Ãº¢ø"
 msgid "Kalaallisut"
 msgstr "கலால்லிசட்"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "கால்மிக்"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2248,21 +2910,6 @@ msgstr "\83º¦Áö측"
 msgid "Kannada"
 msgstr "¸É¼¡"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Ì÷¾¢Í"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "கரா-கல்பக்"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "கராச்சய் - பல்கார்"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2273,10 +2920,10 @@ msgstr "¦¸¡Ã¢Âý"
 msgid "Kashmiri"
 msgstr "காஷ்மீரி"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "à®\95à®\9aà¯\81பியனà¯\8d"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Ã\8c÷¾¢Ã\8d"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2288,31 +2935,26 @@ msgstr "Á¡ø¼¡"
 msgid "Kazakh"
 msgstr "¾¡öÅ¡ý"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "¾¡öÅ¡ý"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "கென்யா"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "கபர்டியன்"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "¾¡ö"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "க்மர்"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "கொய்சான் (மற்றவை)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "க்மர்"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2323,11 +2965,6 @@ msgstr "º£É"
 msgid "Kikuyu"
 msgstr "கிகுயு"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "கிம்பன்டு"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2338,15 +2975,15 @@ msgstr "கின்யர்வாண்டா"
 msgid "Kirghiz"
 msgstr "கிர்கிஸ்"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "à®\95ிரிபாà®\9fà¯\8dà®\9fி"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "à®\95ிமà¯\8dபனà¯\8dà®\9fà¯\81"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "க்ளிங்கான்"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "¦¸¡Ã¢Âý"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2358,11 +2995,6 @@ msgstr "கோமி"
 msgid "Kongo"
 msgstr "காங்கோ"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "¦¸¡Ã¢Âý"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2378,11 +3010,21 @@ msgstr "¦¸¡Ã¢Âý"
 msgid "Kpelle"
 msgstr "க்பெல்"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "கராச்சய் - பல்கார்"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "க்ரு"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Ì÷¾¢Í"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2398,25 +3040,10 @@ msgstr "குமிக்"
 msgid "Kurdish"
 msgstr "Ì÷¾¢Í"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Ì÷¾¢Í"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
-msgstr "குடேனய்"
-
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "குவைத்"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "¾¡öÅ¡ý"
+msgstr "குடேனய்"
 
 #. language code: lad
 #: zypp/LanguageCode.cc:655
@@ -2438,68 +3065,21 @@ msgstr "\83º¦Áö측"
 msgid "Lao"
 msgstr "லாவோ"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "லாவோ மக்கள் ஜனநாயக குடியரசு"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "ÄðÅ¢Âý"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "ÄðŢ¡"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "ÄðÅ¢Âý"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "லெபனான்"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "லெசோத்தோ"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "லெஸ்கியன்"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "¦º÷À¢Â¡"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "¦º÷À¢Â¡"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "லிச்சன்ஸ்டெயின்"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2510,61 +3090,46 @@ msgstr "Äìºõ§À¡÷ì"
 msgid "Lingala"
 msgstr "லிங்கலா"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Ä¢òЧÅɢ¡"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "ĢЧÅÉ¢Âý"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "லோஜ்பான்"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "§º÷Áý"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "¦º÷À¢Âý"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "மாங்கோ"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "லோசி"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "லுபா-கடாங்கா"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Äìºõ§À¡÷ì"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "லுபா-லுலுவா"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "லுபா-கடாங்கா"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "º£É¡"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "லூயிசெனோ"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "லூலெ சாமி"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2580,35 +3145,11 @@ msgstr "லுவோ (கென்யா மற்றும் டான்
 msgid "Lushai"
 msgstr "¾¡ö"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Äìºõ§À¡÷ì"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Äìºõ§À¡÷ì"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Á¡ø¼¡"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Á¡º¢§¼¡É¢Â¡"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Á¡º¢§¼¡É¢Â"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "மடகாஸ்கர்"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2619,6 +3160,11 @@ msgstr "Á¡ø˺¢Â"
 msgid "Magahi"
 msgstr "Á¡ø¼¡"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Á¡ø˺¢Â"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2629,178 +3175,60 @@ msgstr "Á¡ø¼¡"
 msgid "Makasar"
 msgstr "Á¡ø¼¡"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Á¡ø¼¡"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Á¡ø¼¡"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Á¡ø¼¡"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Á¡ø¼¡"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Á¡ø¼¡"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Á¡ø¼¡"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Á¡ø¼¡"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Á¡ø¼¡"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Á¡ø˺¢Â"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "மஞ்சு"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "ÀÉ¡Á¡"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "மான்டிங்கோ"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Á¡µÃ¢"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "¬\8aÍò¾¢§ÃĢ¡"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "மான்க்ஸ்"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Á¡µÃ¢"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "ஆஸ்ட்ரோனேசியன் (மற்றவை)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Á¡µÃ¢"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Á¡µÃ¢"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "«Â÷Ä¡óÐ"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Á¡ø˺¢Â"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Ä¢òЧÅɢ¡"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Á¡µÃ¢"
-
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
-msgstr "Á¡ø¼¡"
-
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Ä¢òЧÅɢ¡"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Ä¢òЧÅɢ¡"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "¬\8aÍò¾¢§ÃĢ¡"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "மயோட்"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
+msgstr "Á¡ø¼¡"
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Á¡ø¼¡"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "மோக்ஷா"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "ÀÉ¡Á¡"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "மென்டே"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "பிரான்ஸ் மாநகர்"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "¦Á캢§¸¡"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "ஐரிஷ், மத்திய (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2812,87 +3240,61 @@ msgstr "மிக்மாக்"
 msgid "Minangkabau"
 msgstr "மினாங்கபாவ்"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Á¡º¢§¼¡É¢Â¡"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "¬\8aÍò¾¢§ÃĢ¡"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "மான்-க்மர் (மற்றவை)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Á¡ø¼¡"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Á¡ø˺¢Â"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "மஞ்சு"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Á¡µÃ¢"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "¬\8aÍò¾¢§ÃĢ¡"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "மொஹாக்"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "மோக்ஷா"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "ÄðÅ¢Âý"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "ͧġšì"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "மான்-க்மர் (மற்றவை)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Á¡ø¼¡"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "மாங்கோ"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "மங்கோலியா"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Á¡º¢§¼¡É¢Â"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "மாங்கோ"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "மான்ட்செர்ரட்"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "மொராக்கோ"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Á¡µÃ¢"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "மொசாம்பிக்"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2903,211 +3305,141 @@ msgstr "¬\8aÍò¾¢§ÃĢ¡"
 msgid "Munda languages"
 msgstr "முண்டா மொழிகள்"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "ÀÉ¡Á¡"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "¸¢§Ãì¸"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Á¡º¢§¼¡É¢Â¡"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Á¡µÃ¢"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "¬\8aÍò¾¢§ÃĢ¡"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "எர்சியா"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "நவ்ஹட்ல்"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "\83º¦Áö측"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "வட அமெரிக்க இந்திய"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "நவ்ரு"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "நியபாலிட்டன்"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "நவாஜோ"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "ந்டெபில், வடக்கு"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "ந்டெபில், தெற்கு"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "ந்டெபில், வடக்கு"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "ந்டோங்கா"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "நியபாலிட்டன்"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "நேபாளம்"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "நேபால் பாசா"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "§º÷Áý"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Á¡ø¼¡"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "¦¿¾÷Ä¡óÐ"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "¦¿¾÷Ä¡óÐ"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Á¡º¢§¼¡É¢Â¡"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "¿¢äº¢Ä¡óÐ"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "நேபால் பாசா"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "நியாஸ்"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Àá̧Å"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "¦º÷À¢Â¡"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "நைகர்-கார்டோஃபானியன் (மற்றவை)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "¦º÷À¢Â¡"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "நிலோ-சஹாரன் (மற்றவை)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "நியூ"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "¦º÷À¢Â¡"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "குறியீடு இல்லை"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "நார்வேஜிய நைநார்ஸ்க்"
 
-#: zypp/repo/RepoProvideFile.cc:265
-#, fuzzy
-msgid "No url in repository."
-msgstr "à®\9aà¯\87மிபà¯\8dபிà®\9fதà¯\8dதிலà¯\8d à®\95à¯\87ாபà¯\8dபà¯\81 %1 à®\95ாணபà¯\8dபà®\9fவிலà¯\8dலà¯\88."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "நாரà¯\8dவà¯\87à®\9cிய à®ªà¯\87ாà®\95à¯\8dமாலà¯\8d"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "நோகய்"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "«Â÷Ä¡óÐ"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "நார்ஸ், புராதன"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "வட அமெரிக்க இந்திய"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "வட கொரியா"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "வட மாரியானா தீவுகள்"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "வட சாமி"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "வட சோதோ"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "¿¡÷§Å"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "¿¡÷§Å"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "நார்வேஜிய போக்மால்"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "நார்வேஜிய நைநார்ஸ்க்"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "சிடிரோம் டிரைவ் அல்ல"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "வட சோதோ"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "¬\8aÍò¾¢§ÃĢ¡"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "பாரம்பரிய நெவாரி"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "º¢Ä¢"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3128,11 +3460,6 @@ msgstr "நயோரோ"
 msgid "Nzima"
 msgstr "நஸீமா"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "%s %sஐ வழக்கற்றதாக்குகிறது:"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3143,20 +3470,6 @@ msgstr "ஆக்ஸிடன் (1500க்குப்பின்)"
 msgid "Ojibwa"
 msgstr "‍ஓஜிப்வா"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "§º÷Áý"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3177,66 +3490,36 @@ msgstr "ஓசேஜ்"
 msgid "Ossetian"
 msgstr "¯Õº¢Â"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "துருக்கி, ஓட்டோமன் (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "¬\8aÍò¾¢§ÃĢ¡"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, fuzzy, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"நேர்மை சோதனையில் %s பேக்கேஜ் தோல்வியுற்றது. அதனை தகவலிறக்கம் செய்வதற்கு நீங்கள் மீண்டும் "
-"முயற்சிக்கப் போகிறீர்களா?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "பாப்புவன் (மற்றவை)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "«í§¸Ã¢Âý"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Àá̧Å"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "¾¡öÅ¡ý"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Àá̧Å"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Àá̧Å"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "பாலஸ்தீனிய எல்லை"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Á¡ø¼¡"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "Àá̧Å"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "ÀÉ¡Á¡"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "«í§¸Ã¢Âý"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3247,177 +3530,71 @@ msgstr "ÀÉ¡Á¡"
 msgid "Papiamento"
 msgstr "பாப்பியாமென்டோ"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "பாப்புவா நியூ கினியா"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "பாப்புவன் (மற்றவை)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr "Àá̧Å"
 
-#: zypp/media/MediaException.cc:106
-#, fuzzy, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "%1 ஒரு அடைவல்ல."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
-
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "அனுமதிகள் மறுக்கப்படுகின்றன"
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "¦º÷À¢Âý"
-
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "பாரசீகம், புராதன (ca.600-400 கி.மு.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "¦ÀÕ"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "¦º÷À¢Âý"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "ஃபிலிப்பைன் (மற்றவை)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "ஃபிலிப்பைன்ஸ்"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "ͧġţɢÂý"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "பிட்கெய்ர்ன்"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "­ó§¾¡É£º¢Âý"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "§À¡Ä¡óÐ"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Á¡ø¼¡"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "§À¡Ä¢Í"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "§À¡÷òиø"
-
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
-msgstr "§À¡÷òÐ츣º¢Â"
-
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
-msgstr "¬\8aÍò¾¢§ÃĢ¡"
-
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "­ó§¾¡É£º¢Âý"
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
+msgstr "§À¡÷òÐ츣º¢Â"
+
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
+msgstr "¬\8aÍò¾¢§ÃĢ¡"
 
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "புராவென்கல், புராதன (1500 வரை)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "பியூர்டோ ரிகோ"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "புஷ்டோ"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Á¡ø¼¡"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "க்வெச்சுவா"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "இந்த யூஆர்எல்லுக்கு வினா வரிசை விளக்கம் ஆதரவளிக்கப்படவில்லை"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "தோல்வியுற்றது"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "ரேடோ-ரொமான்ஸ்"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3433,45 +3610,19 @@ msgstr "ºôÀ¡ý"
 msgid "Rarotongan"
 msgstr "ரரோடோங்கன்"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "அதிகாரம் இருக்குமானால் தொடர்புப் பாதை ஆதரவளிக்கப்படுவதில்லை"
-
-#: zypp/RepoManager.cc:1740
-#, fuzzy, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "மூலங்கள் சேர்க்கப்படுகின்றன"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "ரீயூனியன்"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "ரொமான்ஸ் (மற்றவை)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "ரேடோ-ரொமான்ஸ்"
+
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
 msgstr "Õ§Áɢ¡"
 
 #. language code: rum ron ro
@@ -3479,11 +3630,6 @@ msgstr "Õ§Áɢ¡"
 msgid "Romanian"
 msgstr "¯Õ§ÁÉ¢Â"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "Õ§Áɢ¡"
-
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3494,44 +3640,25 @@ msgstr "­ó¾¢Â¡"
 msgid "Russian"
 msgstr "¯Õº¢Â"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "ரஷ்ய கூட்டரசு"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
 msgstr "¸É¼¡"
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "செயின்ட் ஹெலனா"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "¦ºÂ¢ý𠸢ðÍ & ¦¿Å¢Í"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "¦ºýð æº¢Â¡"
-
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "சான் மரினோ"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "ݼ¡ý"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "à®\9aà¯\86யினà¯\8dà®\9fà¯\8d à®ªà®¿à®¯à®°à®¿ à®®à®±à¯\8dà®±à¯\81à®®à¯\8d à®®à®¿à®\95à¯\8dவலான்"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "யாà®\95à¯\81à®\9f்"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "¦ºÂ¢ýð Å¢ý¦ºýð & ¸¢¦ÃÉËý¸û"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "பதென் அமெரிக்க இந்திய (மற்றவை)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3543,223 +3670,85 @@ msgstr "¬\8aÍò¾¢§ÃĢ¡"
 msgid "Samaritan Aramaic"
 msgstr "சமாரிட்டன் அராமைக்"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "சாமி மொழிகள் (மற்றவை)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "¦¸¡ÄõÀ¢Â¡"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "சமோவன்"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "சான் மரினோ"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "¸É¼¡"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "ݼ¡ý"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "சமஸ்கிருதம்"
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
-msgstr "சந்தாலி"
-
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "சாவோ டோம் மற்றும் பரின்சிபே"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Ä¢òЧÅɢ¡"
-
 #. language code: sas
 #: zypp/LanguageCode.cc:919
 msgid "Sasak"
-msgstr "சசாக்"
-
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "சவூதி அரேபியா"
-
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
-msgstr "ஸ்காட்ஸ்"
-
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
-msgstr "செல்கப்"
-
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr "செமிடிக் (மற்றவை)"
-
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "செனகல்"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "¦º÷À¢Âý"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "¦º÷À¢Âý"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "செரர்"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-#, fuzzy
-msgid "Service plugin does not support changing an attribute."
-msgstr "VAR1 மூல வகை காட்சி மாற்றங்கள் அம்சத்திற்கு ஆதரவளிப்பதில்லை"
-
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "செய்செலஸ்"
-
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
-msgstr "ݼ¡ý"
-
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "ͧġŢɢ¡"
+msgstr "சசாக்"
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Ä¢òЧÅɢ¡"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
+msgstr "சந்தாலி"
+
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "¦º÷À¢Âý"
 
 #. language code: scn
 #: zypp/LanguageCode.cc:927
 msgid "Sicilian"
 msgstr "சிசிலியன்"
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "à®\9aà¯\88à®\9fாமà¯\87ா"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
+msgstr "ஸà¯\8dà®\95ாà®\9fà¯\8dஸà¯\8d"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "ஸியரா லியோன்"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "̦á§Åº¢Âý"
+
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
+msgstr "செல்கப்"
+
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
+msgstr "செமிடிக் (மற்றவை)"
+
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "ஐரிஷ், புராதன (900 வரை)"
 
 #. language code: sgn
 #: zypp/LanguageCode.cc:941
 msgid "Sign Languages"
 msgstr "சங்கேத மொழிகள்"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "உள்ளீடு காணப்படவில்லை."
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "உள்ளீடு காணப்படவில்லை."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "உள்ளீடு காணப்படவில்லை."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "உள்ளீடு காணப்படவில்லை."
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "சிக்சிகா"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "சிந்தி"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
+msgstr "ݼ¡ý"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "à®\9aிà®\99à¯\8dà®\95பà¯\8dபà¯\82à®°à¯\8d"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
+msgstr "à®\9aà¯\88à®\9fாமà¯\87ா"
 
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "சிங்களம்"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "சீன-திபெத்திய (மற்றவை)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "¬\8aÍò¾¢§ÃĢ¡"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "ஸ்கோல்ட் சாமி"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "ஸ்லேவ் (அதபாஸ்கன்)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "சீன-திபெத்திய (மற்றவை)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3771,210 +3760,141 @@ msgstr "ஸ்லாவிக் (மற்றவை)"
 msgid "Slovak"
 msgstr "ͧġšì"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "ͧġš츢Â"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "ͧġŢɢ¡"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "ͧġţɢÂý"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "தென் சாமி"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "வட சாமி"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "சாமி மொழிகள் (மற்றவை)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "லூலெ சாமி"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "இனாரி சாமி"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "சமோவன்"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "ஸ்கோல்ட் சாமி"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "ͧġŢɢ¡"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "சிந்தி"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "ͧġţɢÂý"
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "ݼ¡ý"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "«Â÷Ä¡óÐ"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Õ§Áɢ¡"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Õ§Áɢ¡"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "சோங்காய்"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "ͧġţɢÂý"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "¬\8aÍò¾¢§ÃĢ¡"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "சோதோ, தெற்கு"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "¦¾ý ¬ôâ측"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "பதென் அமெரிக்க இந்திய (மற்றவை)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "தென் ஜியார்ஜியா மற்றும் தென் சான்ட்விச் தீவுகள்"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "¦¾ý ¬ôâ측"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "¦¾ý ¬ôâ측"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "தென் சாமி"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "ͦÀ¢ý"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "ÍÀ¡É¢Â"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "¦º÷À¢Âý"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Ä¢òЧÅɢ¡"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "ݼ¡ý"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "செரர்"
+
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "நிலோ-சஹாரன் (மற்றவை)"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr ""
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "ͦÀ¢ý"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "சுகுமா"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "¦º÷À¢Âý"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "ݼ¡ý"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "¦º÷À¢Â¡"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "சுசு"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "ஸ்வால்பார்ட் மற்றும் ஜான் மேயன்"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "¦º÷À¢Âý"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "¾¡öÄ¡óÐ"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "ͦÀ¢ý"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "¾¡öÄ¡óÐ"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "ÍÅ£¼ý"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "ÍÅ£ÊÍ"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "ÍÅ¢ðº÷Ä¡óÐ"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "¦º÷À¢Â¡"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "¦º÷À¢Â¡"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "டகலோக்"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3985,36 +3905,11 @@ msgstr "¾¡öÅ¡ý"
 msgid "Tai (Other)"
 msgstr "தாய் (மற்றவை)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "¾¡öÅ¡ý"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "¾¡öÅ¡ý"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "¾¡öÅ¡ý"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "டமாஷேக்"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "¾Á¢ú"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "டான்சானியா"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4025,6 +3920,11 @@ msgstr "Á¡ø¼¡"
 msgid "Telugu"
 msgstr "¦Àøº¢Âõ"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "டிம்னே"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4035,34 +3935,21 @@ msgstr "டெரனோ"
 msgid "Tetum"
 msgstr "டேடம்"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "¾¡öÅ¡ý"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "டகலோக்"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "¾¡ö"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "¾¡öÄ¡óÐ"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-#, fuzzy
-msgid "This request will break your system!"
-msgstr "கோரிக்கை ஏற்கனவே உள்ளது."
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4078,46 +3965,25 @@ msgstr "டைக்ரே"
 msgid "Tigrinya"
 msgstr "¦º÷À¢Â¡"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "டிம்னே"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "டைவ்"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "க்ளிங்கான்"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "ட்லிங்கிட்"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "டோகோ"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "டோக் பிசின்"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "டோகேலாவ்"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "டோங்கா"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "டமாஷேக்"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4129,102 +3995,65 @@ msgstr "டோங்கா (நியாஸா)"
 msgid "Tonga (Tonga Islands)"
 msgstr "டோங்கா (டோங்கா தீவுகள்)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "ðâɢ¼¡ð & ¦¼¡À¡§¸¡"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "டோக் பிசின்"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "¯Õº¢Â"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "¾¡öÅ¡ý"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "±Í§¼¡É¢Â¡"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "¾¡öÅ¡ý"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "ÐÕ츢"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "டும்புகா"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "ú¢Â¡"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "¬\8aÍò¾¢§ÃĢ¡"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "ÐÕ츢"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "ÐÕ츢Â"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "துருக்கி, ஓட்டோமன் (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "ÐÕ츢"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "¾¡öÅ¡ý"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "டர்க்ஸ் மற்றும் கெய்கோஸ் தீவுகள்"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "அல்டெய்க் (மற்றவை)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Ýæ"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "ட்வி"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "ú¢Â¡"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "ட்வி"
-
 #. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
-msgstr "உட்மர்ட்"
-
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "¸É¼¡"
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr "உட்மர்ட்"
 
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
@@ -4236,11 +4065,6 @@ msgstr "உகாரிடிக்"
 msgid "Uighur"
 msgstr "உய்கூர்"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "¯ì¦Ãöý"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4251,636 +4075,830 @@ msgstr "¯ì¦Ãöý"
 msgid "Umbundu"
 msgstr "உம்பண்டு"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "யூஆர்எல் பொருளின் போலிகையை உருவாக்க இயலவில்லை"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "டிபஸ் இணைப்பை உருவாக்க இயலவில்லை"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "HAL உள்ளடக்கத்தை துவக்க இயலவில்லை -- ஹால்ட் இயக்கத்தில் இல்லையா?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "யூஆர்எல் உறுப்புகளை விளக்க இயலவில்லை"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "தீர்மானிக்க இயலாதவை"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr ""
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "உருது"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "³ì¸¢Â «¦Áâ츠¿¡Î¸û"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "உஸ்பெக்"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "யà¯\81னà¯\88à®\9fà¯\86à®\9fà¯\8d à®\95ிà®\99à¯\8dà®\9fà®®்"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "வாய்"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "³ì¸¢Â «¦Áâ츠¿¡Î¸û"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Vietnam"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "³ì¸¢Â «¦Áâ츠¿¡Î¸û"
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Å¢ÂðÉ¡Á¢Â"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "அறிந்திராத நாடு:"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "வொலாபக்"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "ஃப்ளாப்பி வட்டிலிருந்து படிப்பதில் பிழை"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "வால்டிக்"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "அறியப்படாத மொழி: "
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "¬\8aÍò¾¢§ÃĢ¡"
 
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "தà¯\86ரியாத à®\86ணà¯\88 "
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "வலாமà¯\87ா"
 
-#: zypp/base/StrMatcher.cc:153
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Àá̧Å"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "§ÅøÍ"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "§ÅøÍ"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "¬\8aÍò¾¢§ÃĢ¡"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "வாலூன்"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "வோலாஃப்"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "கால்மிக்"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "§º¡º¡"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "யாவோ"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "ÂôÀ¡É¢Â"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "யிட்டிஷ்"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "¦¸¡ÄõÀ¢Â¡"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "¬\8aÍò¾¢§ÃĢ¡"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "ஸாபோடெக்"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "¸¢¦Ãɼ¡"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "சுவாங்"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "ஸாண்டே"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Ýæ"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "சுனி"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
+
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "உள்ளீடு காணப்படவில்லை."
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, fuzzy, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "%sலிருந்து %sஐ அளிக்க இயலாது"
+
+#: zypp/repo/RepoProvideFile.cc:265
+#, fuzzy
+msgid "No url in repository."
+msgstr "சேமிப்பிடத்தில் கோப்பு %1 காணப்படவில்லை."
+
+#: zypp/repo/RepoException.cc:129
+#, fuzzy
+msgid "Service plugin does not support changing an attribute."
+msgstr "VAR1 மூல வகை காட்சி மாற்றங்கள் அம்சத்திற்கு ஆதரவளிப்பதில்லை"
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, fuzzy, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
+"நேர்மை சோதனையில் %s பேக்கேஜ் தோல்வியுற்றது. அதனை தகவலிறக்கம் செய்வதற்கு நீங்கள் மீண்டும் "
+"முயற்சிக்கப் போகிறீர்களா?"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, fuzzy, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
+"நேர்மை சோதனையில் %s பேக்கேஜ் தோல்வியுற்றது. அதனை தகவலிறக்கம் செய்வதற்கு நீங்கள் மீண்டும் "
+"முயற்சிக்கப் போகிறீர்களா?"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "அப்ளைடெல்டாஆர்பிஎம் சோதனை தோல்வியுற்றது"
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "அப்ளைடெல்டாஆர்பிஎம் தோல்வியுற்றது."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/solver/detail/SATResolver.cc:975
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#: zypp/solver/detail/SATResolver.cc:979
 #, fuzzy, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "செல்லாத URL திட்டம் '%1'."
+msgid "%s has inferior architecture"
+msgstr "%s, %sஐ அளிக்கிறது, ஆனால் அதற்கு வேறொரு கட்டமைப்பு உள்ளது."
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "¦º÷À¢Âý"
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "பேக்கேஜ்களின் நிறுவுதலை நீக்குவதற்கான ஆணை"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "à®\89à®°à¯\81தà¯\81"
+#: zypp/solver/detail/SATResolver.cc:986
+#, fuzzy
+msgid "conflicting requests"
+msgstr "à®\87நà¯\8dத à®\87ணà¯\88பà¯\8dபà¯\81à®\95à¯\8dà®\95ான à®\95à¯\87ாரிà®\95à¯\8dà®\95à¯\88"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "யà¯\82à®\86à®°à¯\8dà®\8eலà¯\8d à®¤à®¿à®\9fà¯\8dà®\9fà®®à¯\8d %sà®\95à¯\8dà®\95à¯\81 à®\85னà¯\81மதிபà¯\8dபதில்லை"
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "à®\9aாரà¯\8dபà¯\81தà¯\8dதனà¯\8dà®®à¯\88 à®ªà®¿à®°à®\9aà¯\8dனà¯\88à®\95ளà¯\8d à®\95ாரணமாà®\95 %s à®\90 à®¨à®¿à®±à¯\81வ à®\87யலவில்லை"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "யூஆர்எல் திட்டம் ஓர் ஆதார உறுப்பை அனுமதிப்பதில்லை"
+#: zypp/solver/detail/SATResolver.cc:992
+#, fuzzy, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "%s யாரும் அளிப்பதில்லை"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "யூஆர்எல் திட்டம் கடவுச்சொல்லை அனுமதிப்பதில்லை"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "யூஆர்எல் திட்டம் ஒரு முணையத்தை அனுமதிப்பதில்லை"
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "சான்றிதழ் %1 இல்லை."
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "யூஆர்எல் திட்டம் பயனாளர் பெயரை அனுமதிப்பதில்லை"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "யூஆர்எல் திட்டம் ஒரு தேவைப்படும் உறுப்பாகும்"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s பூட்டப்பட்டுள்ளது மற்றும் அதன் நிறுவுதலை நீக்க இயலாது."
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "யூஆர்எல் திட்டத்திற்கு ஓர் ஆதார உறுப்பு தேவைப்படுகிறது"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "நிறுவப்படவில்லை"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "யூஆர்எல் திட்டத்திற்கு ஒரு பாதை பெயர் தேவைப்படுகிறது"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, fuzzy, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s, %sக்கு தேவைப்படுகிறது"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "¯Õ̧Å"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "%sஐ நிறுவ முடியவில்லை"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "உஸ்பெக்"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s %sஉடன் முரண்படுகிறது"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "¾¡öÅ¡ý"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, fuzzy, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s %sஐ வழக்கற்றதாக்குகிறது"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "வாய்"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s %sஐ வழக்கற்றதாக்குகிறது"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s %sஉடன் முரண்படுகிறது"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "வானுவாடூ"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1070
+#, fuzzy
+msgid "deleted providers: "
+msgstr "%s யாரும் அளிப்பதில்லை"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "¦ÅÉ¢ÍÅÄ¡"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+#, fuzzy
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr "%sக்கு நிறுவக்கூடிய அளிப்பவர்கள் இல்லை"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "%sக்கு நிறுவக்கூடிய அளிப்பவர்கள் இல்லை"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Å¢ÂðÉ¡Á¢Â"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "À¢ýÄ¡óÐ"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "%sஐ நிறுவ வேண்டாம்"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "%sஐ வைத்துக் கொள்ளவும்"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "வொலாபக்"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "%sஐ நிறுவ வேண்டாம்"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "வால்டிக்"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+#, fuzzy
+msgid "This request will break your system!"
+msgstr "கோரிக்கை ஏற்கனவே உள்ளது."
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "¬\8aÍò¾¢§ÃĢ¡"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "வலாமோ"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, fuzzy, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "%sக்கு நிறுவக்கூடிய அளிப்பவர்கள் இல்லை"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "வாலிஸà¯\8d à®®à®±à¯\8dà®±à¯\81à®®à¯\8d à®\83பà¯\81à®\9fà¯\82னா"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "தà¯\86ாà®\9fà®°à¯\8dபà¯\81ளà¯\8dள à®¤à¯\80à®°à¯\8dவà¯\81à®\95ளà¯\88 à®¨à®¿à®±à¯\81வவà¯\87ா à®\85லà¯\8dலதà¯\81 à®¨à¯\80à®\95à¯\8dà®\95வà¯\87ா à®µà¯\87ணà¯\8dà®\9fாமà¯\8d"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "வாலூன்"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Àá̧Å"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, fuzzy, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s, %sஐ அளிக்கிறது, ஆனால் அதற்கு வேறொரு கட்டமைப்பு உள்ளது."
+
+#: zypp/solver/detail/SATResolver.cc:1284
+#, fuzzy, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "அது கட்டமைப்பை மாற்றக்கூடுமென்றாலும் %sஐ நிறுவவும்"
+
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%s %sஐ வழக்கற்றதாக்குகிறது"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "§ÅøÍ"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "§ÅøÍ"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, fuzzy, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "%sலிருந்து %s தகவலிறக்கம் செய்யப்பட்டது"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "மேற்கு சஹாரா"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "வோலாஃப்"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "§º¡º¡"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "யாà®\95à¯\81à®\9f்"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "நிறà¯\81வà¯\81தல்"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "யாவோ"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, fuzzy, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "இத்தேவையை இங்கேயே புறக்கணிக்கவும்"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "ÂôÀ¡É¢Â"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "இத்தேவையை இங்கேயே புறக்கணிக்கவும்"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "யேமன்"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "யிட்டிஷ்"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "¦¸¡ÄõÀ¢Â¡"
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "கோப்பை %1 திறக்க முடியவில்லை."
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "¬\8aÍò¾¢§ÃĢ¡"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "\83º¦Áö측"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "ஸாணà¯\8dà®\9fà¯\87"
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "தà¯\86ரியாத à®\86ணà¯\88 "
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "ஸாபோடெக்"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "¸¢¦Ãɼ¡"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "à®\9aà¯\81வாà®\99à¯\8d"
+#: zypp/base/StrMatcher.cc:158
+#, fuzzy, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "à®\9aà¯\86லà¯\8dலாத à®¯à¯\82à®\86à®°à¯\8dà®\8eலà¯\8d à®¤à®¿à®\9fà¯\8dà®\9fà®®à¯\8d '%s'"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "ஜிம்பாப்வே"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Ýæ"
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "சுனி"
+#: zypp/media/MediaException.cc:31
+#, fuzzy, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "%s - %s திறக்க முடியவில்லை\n"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "அப்ளைடெல்டாஆர்பிஎம் சோதனை தோல்வியுற்றது"
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "கூறு\"%s\"ஐ ஏற்ற முடியவில்லை"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "அப்ளைடெல்டாஆர்பிஎம் தோல்வியுற்றது."
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:60
 #, fuzzy, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "à®\87தà¯\8dதà¯\87வà¯\88யà¯\88 à®\87à®\99à¯\8dà®\95à¯\87யà¯\87 à®ªà¯\81à®±à®\95à¯\8dà®\95ணிà®\95à¯\8dà®\95வà¯\81à®®à¯\8d"
+msgid "File '%s' not found on medium '%s'"
+msgstr "à®\9aà¯\87மிபà¯\8dபிà®\9fதà¯\8dதிலà¯\8d à®\95à¯\87ாபà¯\8dபà¯\81 %1 à®\95ாணபà¯\8dபà®\9fவிலà¯\8dலà¯\88."
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:67
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "%sஐ நிறுவ முடியவில்லை"
+msgid "Cannot write file '%s'."
+msgstr "%1 கோப்பில் எழுத முடியவில்லை."
 
-#: zypp/solver/detail/SATResolver.cc:986
-#, fuzzy
-msgid "conflicting requests"
-msgstr "இந்த இணைப்புக்கான கோரிக்கை: "
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "%s மறுபிரதி உருவாக்கப்பட்டது"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
-#, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "நிறுவுதல்"
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-#, fuzzy
-msgid "deleted providers: "
-msgstr "%s யாரும் அளிப்பதில்லை"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/media/MediaException.cc:106
 #, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "தொடர்புள்ள தீர்வுகளை நிறுவவோ அல்லது நீக்கவோ வேண்டாம்"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "%1 ஒரு அடைவல்ல."
 
-#: zypp/solver/detail/SATResolver.cc:1223
-#, fuzzy, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "%sக்கு நிறுவக்கூடிய அளிப்பவர்கள் இல்லை"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, c-format, boost-format
-msgid "do not install %s"
-msgstr "%sஐ நிறுவ வேண்டாம்"
+#: zypp/media/MediaException.cc:125
+#, fuzzy
+msgid "Empty host name in URI"
+msgstr "சிஏ பெயா காலி செய்."
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:140
 #, fuzzy, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "%sலிருந்து %s தகவலிறக்கம் செய்யப்பட்டது"
-
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "இத்தேவையை இங்கேயே புறக்கணிக்கவும்"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "செல்லாத URL திட்டம் '%1'."
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, fuzzy, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "அது கட்டமைப்பை மாற்றக்கூடுமென்றாலும் %sஐ நிறுவவும்"
-
-#: zypp/solver/detail/SATResolver.cc:1298
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s %sஐ வழக்கற்றதாக்குகிறது"
-
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "%sஐ வைத்துக் கொள்ளவும்"
-
-#: zypp/solver/detail/SATResolver.cc:1279
-#, fuzzy, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s, %sஐ அளிக்கிறது, ஆனால் அதற்கு வேறொரு கட்டமைப்பு உள்ளது."
-
-#: zypp/solver/detail/SATResolver.cc:1293
-#, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%s %sஐ வழக்கற்றதாக்குகிறது"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: ஆல் லைபால் உள்ளடக்கத்தை உருவாக்க இயலவில்லை"
-
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: ஆல் டிபஸ் இணைப்பை அமைக்க இயலவில்லை"
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, fuzzy, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s, %sக்கு தேவைப்படுகிறது"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "%s யாரும் அளிப்பதில்லை"
+msgid "Cannot eject media '%s'"
+msgstr "டெஸ்க்டாப் பொருளை '%s' திறக்க முடியவில்லை"
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:199
 #, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "à®\9aானà¯\8dறிதழà¯\8d %1 à®\87லà¯\8dலà¯\88."
+msgid "Permission to access '%s' denied."
+msgstr "à®\85னà¯\81மதிà®\95ளà¯\8d à®®à®±à¯\81à®\95à¯\8dà®\95பà¯\8dபà®\9fà¯\81à®\95ினà¯\8dறன"
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "பேக்கேஜ்களின் நிறுவுதலை நீக்குவதற்கான ஆணை"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "%sஐ நிறுவ வேண்டாம்"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, fuzzy, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "%s ஆக ஆர்பிஎம் உருவாf;கப்பட்டுள்ளது, ஆனால் வேறுபாட்டை நிர்ணயிக்க முடியவில்லை"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, fuzzy, c-format, boost-format
+#: zypp/media/MediaCurl.cc:1008
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
-"%s ஆக ஆர்பிஎம் உருவாக்கப்பட்டுள்ளது.\n"
-"வேறுபாடுகளின் முதல் 25 வரிகள் இங்குள்ளன:\n"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, fuzzy, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "%s ஆக ஆர்பிஎம் சேமிக்கப்பட்டுள்ளது, ஆனால் வேறுபாட்டை நிர்ணயிக்க முடியவில்லை"
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "கோப்பை உருவாக்க முடியவில்லை."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, fuzzy, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"%s ஆக ஆர்பிஎம் சேமிக்கப்பட்டுள்ளது.\n"
-"வேறுபாடுகளின் முதல் 25 வரிகள் இங்குள்ளன:\n"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s %sஉடன் முரண்படுகிறது"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-#, fuzzy
-msgid "some dependency problem"
-msgstr "சார்புத்தன்மை பிரச்னைகள் காரணமாக %s ஐ நிறுவ இயலவில்லை"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-#, fuzzy
-msgid "uninstallable providers: "
-msgstr "%sக்கு நிறுவக்கூடிய அளிப்பவர்கள் இல்லை"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "அறியப்படாதது"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
 #, fuzzy
-#~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
-#~ msgstr ""
-#~ "\n"
-#~ "இத்தேவையை பூர்த்தி செய்யும் ஆதாரம் எதுவும் இல்லை"
-
-#~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
-#~ msgstr ""
-#~ "\n"
-#~ "இத்தீர்வுகள் அமைப்பிலிருந்து நீக்கப்படும்"
-
-#~ msgid " Error!"
-#~ msgstr "பிழை!"
+#~ msgid "do not keep %s installed"
+#~ msgstr "நிறுவப்படவில்லை"
 
-#~ msgid " Important!"
-#~ msgstr "முக்கியம்!"
+#, fuzzy
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "%s - %s திறக்க முடியவில்லை\n"
 
-#~ msgid " fails checksum verification."
-#~ msgstr "à®\9aà¯\86à®\95à¯\8dà®\9aà®®à¯\8d à®\9aரிபாரà¯\8dபà¯\8dபிலà¯\8d à®¤à¯\87ாலà¯\8dவியà¯\81à®±à¯\8dறதà¯\81."
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "à®\9aà¯\86à®°à¯\8dபியா à®®à®±à¯\8dà®±à¯\81à®®à¯\8d à®®à®¾à®©à¯\8dà®\9fநà¯\86à®\95à¯\8dà®°à¯\87ா"
 
-#~ msgid " miss checksum."
-#~ msgstr "செக்சம் தவறியது."
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "தெரியாத பட்டியல் விருப்பத்தேர்வு"
 
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "காணப்படாத சார்புத்தன்மைகள் %sஐ காரணமாக நிறுவ இயலாது"
+#, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "சார்புத்தன்மைகளை தீர்க்க முடியவில்லை"
 
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "%s மற்ற தீர்வுகளுடன் முரண்படுகிறது"
+#~ msgid ""
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "%s கோப்பிற்கு செக்சம் இல்லை.\n"
+#~ "அவ்வாறிருந்தும் அக்கோப்பை பயன்படுத்தலாமா?"
 
 #~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%sஉடன் முரண்படுவது:\n"
-#~ "%s"
+#~ "%s கோப்பு, பின்வரும் கீயுடன் நேர்மை சோதனையில் தோல்வியுற்றது:\n"
+#~ "%s|%s|%s\n"
+#~ "அவ்வாறிருந்தும் அக்கோப்பை பயன்படுத்தலாமா?"
 
-#~ msgid "%s depended on %s"
-#~ msgstr "%s, %sஐ சார்ந்துள்ளது"
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "%s கோப்பிற்கு செல்லாத ஒரு செக்சம் உள்ளது.\n"
+#~ "எதிர்பார்த்தது %s, கண்டது %s\n"
+#~ "அவ்வாறிருந்தும் அக்கோப்பை பயன்படுத்தலாமா?"
 
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s, %sஐ சார்ந்துள்ளது"
+#, fuzzy
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "%s கோப்பிற்கு அறியப்படாத ஒரு செக்சம் உள்ளது.\n"
+#~ "அவ்வாறிருந்தும் அக்கோப்பை பயன்படுத்தலாமா?"
 
-#~ msgid "%s depends on %s"
-#~ msgstr "%s %sஐ சார்ந்துள்ளது"
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "%s கோப்பு கையொப்பமிடப்படவில்லை.\n"
+#~ "அவ்வாறிருந்தும் அதனை பயன்படுத்தலாமா?"
 
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s மற்ற தீர்வுகளை சார்ந்துள்ளது"
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "%s கோப்பு அறிந்திராத ஒரு கீயினால் கையொப்பமிடப்பட்டுள்ளது:\n"
+#~ "%s|%s|%s\n"
+#~ "அவ்வாறிருந்தும் அக்கோப்பை பயன்படுத்தலாமா?"
 
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s %sஐ சார்ந்துள்ளது:"
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
+#~ msgstr ""
+#~ "நம்பகத்தன்மையற்ற கீ கண்டுபிடிக்கப்பட்டுள்ளது:\n"
+#~ "%s|%s|%s\n"
+#~ "கீயை நம்பலாமா?"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "%s சார்புத்தன்மைகளை %s பூர்த்தி செய்யும் ஆனால் உங்கள் அமைப்பில் வைக்கப்படும்"
+#~ msgid "%s remove failed"
+#~ msgstr "%s நீக்குதல் தோல்வியுற்றது"
 
 #, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "%s சார்புத்தன்மைகளை %s பூர்த்தி செய்யும் ஆனால் நிறுவுதல் நீக்கப்பட்டுவிடும்"
-
-#~ msgid "%s has missing dependencies"
-#~ msgstr "%s காணப்படாத சார்புத்தன்மைகளைக் கொண்டுள்ளது"
+#~ msgid "Invalid user name or password."
+#~ msgstr "கணத்தை மாற்று"
 
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "%s தீர்க்கப்படாத தேவைகளைக் கொண்டுள்ளது"
+#~ msgid "rpm output:"
+#~ msgstr "ஆர்பிஎம் அவுட்புட்:"
 
 #~ msgid "%s install failed"
 #~ msgstr "%s நிறுவுதல் தோல்வியுற்றது"
@@ -4888,134 +4906,85 @@ msgstr ""
 #~ msgid "%s installed ok"
 #~ msgstr "%s நிறுவுதல் சரியானது"
 
-#, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s %sஆல் மாற்றியமைக்கப்பட்டது"
-
-#, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s, %sக்கு தேவைப்படுகிறது"
+#~ msgid "%s remove ok"
+#~ msgstr "%s நீக்குதல் சரியானது"
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s க்கான தேவையை %s இழந்துள்ளது"
-
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "மற்ற தீர்வுகளுக்கு %s தேவைப்படுகிறது"
-
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
 #~ msgstr ""
-#~ "%sக்கு தேவைப்படுவது:\n"
-#~ "%s"
-
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "%s நிறுவப்படவில்லை மற்றும் அது நிறுவ இயலாததாக குறிக்கப்பட்டுள்ளது"
-
-#, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s, %sக்கு தேவைப்படுகிறது"
-
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s %sஆல் மாற்றியமைக்கப்பட்டது"
+#~ "இச்சார்புத்தன்மையை %s அளிக்கிறது ஆனால், நிறுவப்பட்டுள்ள பொருளின் கட்டமைப்பை "
+#~ "மாற்றிவிடும்"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
 #~ msgstr ""
-#~ "மறà¯\8dà®±à¯\86ாரà¯\81 à®¨à®¿à®±à¯\81வபà¯\8dபà®\9fà¯\8dà®\9fà¯\81ளà¯\8dள à®¤à¯\80à®°à¯\8dவà¯\81à®\95à¯\8dà®\95à¯\81 %s à®¤à¯\87வà¯\88பà¯\8dபà®\9fà¯\81à®\95ிறதà¯\81, à®\8eனவà¯\87 à®\85தன à®\87ணà¯\88பà¯\8dபà¯\81 à®¨à¯\80à®\95à¯\8dà®\95பà¯\8dபà®\9f "
-#~ "மாà®\9fà¯\8dà®\9fாதà¯\81."
+#~ "à®\87à®\9aà¯\8dà®\9aாரà¯\8dபà¯\81தà¯\8dதனà¯\8dà®®à¯\88யà¯\88 %s à®\85ளிà®\95à¯\8dà®\95ிறதà¯\81 à®\86னாலà¯\8d, à®¨à®¿à®±à¯\81வபà¯\8dபà®\9fà¯\8dà®\9fà¯\81ளà¯\8dள à®ªà¯\86ாரà¯\81ளினà¯\8d à®\95à®\9fà¯\8dà®\9fà®®à¯\88பà¯\8dபà¯\88 "
+#~ "மாறà¯\8dறிவிà®\9fà¯\81à®®à¯\8d"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
-#~ msgstr ""
-#~ "மற்றொரு நிறுவப்பட்டுள்ள தீர்வுக்கு %s தேவைப்படுகிறது, எனவே அதன இணைப்பு நீக்கப்பட "
-#~ "மாட்டாது."
-
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
-#~ msgstr ""
-#~ "மற்றொரு நிறுவப்படப்போகும் தீர்வுக்கு %s தேவைப்படுகிறது, எனவே அதன் இணைப்பு நீக்கப்பட "
-#~ "மாட்டாது."
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "தொடர்புள்ள தீர்வுகளை நிறுவவோ அல்லது நீக்கவோ வேண்டாம்"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr ""
-#~ "%s நிறுவப்படுவதற்காக திட்டமிடப்பட்டுள்ளது, ஆனால் சார்புத்தன்மை பிரச்னைகள் காரணமாக இது "
-#~ "சாத்தியமில்லை."
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "‍‍ஏற்கனவே நிறுவுவதற்காக அமைக்கப்பட்டுள்ள %sஐ புறக்கணிக்கவும்"
 
-#, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s, %sக்கு தேவைப்படுகிறது"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "%sல் உள்ள வழக்கில் இல்லாத %sஐ புறக்கணிக்கவும்"
 
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s, %sக்கு தேவைப்படுகிறது"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "%sன் முரண்பாட்டை புறக்கணிக்கவும்"
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s உடன் உள்ள முரண்பாடு காரணமாக %sன் நிறுவுதலை நீக்க முடியாது"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "இத்தேவையை இங்கேயே புறக்கணிக்கவும்"
 
 #, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr ""
-#~ "%sஐ %s வழக்கற்றதாக்கிவிடும். ஆனால் %sஐ நீக்க முடியாது ஏனெனில் அது பூட்டப்பட்டுள்ளது."
-
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s மற்ற தீர்வுகளை வழக்கற்றதாக்குகிறது"
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "அது கட்டமைப்பை மாற்றக்கூடுமென்றாலும் %sஐ நிறுவவும்"
 
-#~ msgid "%s part of %s"
-#~ msgstr "%s, %sன் ஒரு பகுதியாகும்"
+#~ msgid "Install missing resolvables"
+#~ msgstr "­ò¾¡Ä¢Âý"
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s, %sஐ அளிக்கிறது, ஆனால் அது வைக்கப்படுவதற்கு திட்டமிடப்பட்டுள்ளது."
+#~ msgid "Keep resolvables"
+#~ msgstr "தீர்வுகளை வைத்துக் கொள்ளவும்"
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr "%s, %sஐ அளிக்கிறது, ஆனால், %sன் மற்றொரு வடிவம் ஏற்கனவே நிறுவப்பட்டுவிட்டது"
+#~ msgid "Unlock these resolvables"
+#~ msgstr "இத்தீர்வுகளைத் திறக்கவும்"
 
-#, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s, %sஐ அளிக்கிறது, ஆனால் அதற்கு வேறொரு கட்டமைப்பு உள்ளது."
+#~ msgid "delete %s"
+#~ msgstr "%s ஐ நீக்கவும்"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s, %sஐ அளிக்கிறது, ஆனால் அது நிறுவுதல் நீக்கப்படுவதற்கு திட்டமிடப்பட்டுள்ளது"
+#~ msgid "install %s"
+#~ msgstr "%sஐ நிறுவவும்"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s, %sஐ அளிக்கிறது, ஆனால் அது பூட்டப்பட்டுள்ளது."
+#~ msgid "unlock %s"
+#~ msgstr "%sஐ திறக்கவும்"
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s, %sஐ அளிக்கிறது, ஆனால், அதன் நிறுவுதலை நீக்க இயலாது. கூடுதல் விவரங்களுக்கு, "
-#~ "அதனைத் தானாகவே நிறுவம முயற்சிக்கவும்."
+#~ msgid "unlock all resolvables"
+#~ msgstr "­ò¾¡Ä¢Âý"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr ""
-#~ "இச்சார்புத்தன்மையை %s அளிக்கிறது ஆனால், நிறுவப்பட்டுள்ள பொருளின் கட்டமைப்பை "
-#~ "மாற்றிவிடும்"
+#~ msgid "Can't open solv-file: "
+#~ msgstr "கோப்பை %1 திறக்க முடியவில்லை."
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr ""
-#~ "இச்சார்புத்தன்மையை %s அளிக்கிறது ஆனால், நிறுவப்பட்டுள்ள பொருளின் கட்டமைப்பை "
-#~ "மாற்றிவிடும்"
+#~ msgid "Error reading solv-file: "
+#~ msgstr "%u பிரிவை படிப்பதில் பிழை."
+
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "இந்த யூஆர்எல்லுக்கு பாதை அளவீடு விளக்கம் ஆதரவளிக்கப்படவில்லை"
 
-#~ msgid "%s remove failed"
-#~ msgstr "%s நீக்குதல் தோல்வியுற்றது"
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "இந்த யூஆர்எல்லுக்கு பாதை அளவீடு விளக்கம் ஆதரவளிக்கப்படவில்லை"
 
-#~ msgid "%s remove ok"
-#~ msgstr "%s நீக்குதல் சரியானது"
+#~ msgid "Software management is already running."
+#~ msgstr "மென்பொருள் நிர்வாகம் ஏற்கனவே இயக்கத்திலுள்ளது."
+
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s %sஆல் மாற்றியமைக்கப்பட்டது"
 
 #~ msgid "%s replaced by %s"
 #~ msgstr "%s %sஆல் மாற்றியமைக்கப்பட்டது"
@@ -5030,353 +4999,384 @@ msgstr ""
 #~ msgid "%s will be installed by the user.\n"
 #~ msgstr "அது இன்னமும் தேவைப்படுவதால், %s நீக்கப்பட மாட்டாது"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "அது இன்னமும் தேவைப்படுவதால், %s நீக்கப்பட மாட்டாது"
+#~ msgid "Invalid information"
+#~ msgstr "செல்லாத தகவல்"
 
-#~ msgid ", Action: "
-#~ msgstr ", செயல்பாடு:"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "மற்ற தீர்வுகளுக்கு %s தேவைப்படுகிறது"
 
-#~ msgid ", Trigger: "
-#~ msgstr ", தூண்டுதல்:"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%sக்கு தேவைப்படுவது:\n"
+#~ "%s"
+
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "%s மற்ற தீர்வுகளுடன் முரண்படுகிறது"
 
-#, fuzzy
 #~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
+#~ "%s conflicts with:\n"
+#~ "%s"
 #~ msgstr ""
-#~ "%s (%s) மீதான ஒரு முரண்பாட்டிற்கு, நிறுவப்படப்போகும் %sன் நீக்கம் தேவைப்படுகிறது."
+#~ "%sஉடன் முரண்படுவது:\n"
+#~ "%s"
+
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s மற்ற தீர்வுகளை வழக்கற்றதாக்குகிறது"
 
 #~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
 #~ msgstr ""
-#~ "ஒரு ஆதாரமேனும் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது, சேமிக்கப்பட்ட ஆதாரங்களைமீட்க இயலாது."
+#~ "\n"
+#~ "இத்தீர்வுகள் அமைப்பிலிருந்து நீக்கப்படும்"
+
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s மற்ற தீர்வுகளை சார்ந்துள்ளது"
+
+#~ msgid "%s depends on %s"
+#~ msgstr "%s %sஐ சார்ந்துள்ளது"
+
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s %sஐ சார்ந்துள்ளது:"
+
+#~ msgid "Child of"
+#~ msgstr "இதன் உருவாக்கம்"
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
 #~ msgstr ""
-#~ "நிறுவுதல் நீக்கப்பட வேண்டியது என்று ஏற்கனவே குறிக்கப்பட்டிருப்பதால், %sஐ நிறுவஇயலவில்லை"
+#~ "\n"
+#~ "இத்தேவையை பூர்த்தி செய்யும் ஆதாரம் எதுவும் இல்லை"
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
 #~ msgstr ""
-#~ "நிறà¯\81வà¯\81பà¯\8dபà®\9f à®µà¯\87ணà¯\8dà®\9fியதà¯\81 à®\8eனà¯\8dà®±à¯\81 à®\8fà®±à¯\8dà®\95னவà¯\87 à®\95à¯\81றிà®\95à¯\8dà®\95பà¯\8dபà®\9fà¯\8dà®\9fிரà¯\81பà¯\8dபதாலà¯\8d, %s à®\90 à®¨à®¿à®±à¯\81வ \n"
-#~ "à®\87யலவிலà¯\8dலà¯\88"
+#~ "à®\87தà¯\8dதà¯\80à®°à¯\8dவினà¯\8d à®®à¯\87லà¯\87 à®®à®±à¯\8dà®±à¯\81à®®à¯\8d à®\95à¯\80à®´à¯\87 à®µà®¿à®³à®\95à¯\8dà®\95பà¯\8dபà®\9fà¯\8dà®\9fà¯\81ளà¯\8dள à®ªà®¿à®°à®\9aà¯\8dனà¯\88à®\95ளà¯\8d, à®\85னà¯\88தà¯\8dதà¯\81 à®\9aாரà¯\8dபà¯\81தà¯\8dதனà¯\8dà®®à¯\88à®\95ளà¯\88யà¯\81à®®à¯\8d "
+#~ "தà¯\80à®°à¯\8dà®\95à¯\8dà®\95à®\95à¯\8dà®\95à¯\82à®\9fியவà¯\88 à®\85லà¯\8dல"
 
 #, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "இந்த சாதனத்திற்கு பொருந்தாமல் இருப்பதால், %sஐ நிறுவ இயலவில்லை"
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "%s ஐ நிறுவ இயலவில்லை ஏனெனில் அது %s உடன் முரண்படுகிறது"
+
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "%s நிறுவப்படவில்லை மற்றும் அது நிறுவ இயலாததாக குறிக்கப்பட்டுள்ளது"
+
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "%s தீர்க்கப்படாத தேவைகளைக் கொண்டுள்ளது"
+
+#~ msgid "%s has missing dependencies"
+#~ msgstr "%s காணப்படாத சார்புத்தன்மைகளைக் கொண்டுள்ளது"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "காணப்படாத சார்புத்தன்மைகள் %sஐ காரணமாக நிறுவ இயலாது"
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "கோப்பை %1 திறக்க முடியவில்லை."
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "%s சார்புத்தன்மைகளை %s பூர்த்தி செய்யும் ஆனால் நிறுவுதல் நீக்கப்பட்டுவிடும்"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "%s க்கான %sன் தேவையைப் பூர்த்தி செய்ய இயலாது"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "%s சார்புத்தன்மைகளை %s பூர்த்தி செய்யும் ஆனால் உங்கள் அமைப்பில் வைக்கப்படும்"
 
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
-#~ msgstr "%sனà¯\8d à®\9aாரà¯\8dபà¯\81தà¯\8dதனà¯\8dà®®à¯\88à®\95ளà¯\88 à®ªà¯\82à®°à¯\8dதà¯\8dதி à®\9aà¯\86யà¯\8dவதறà¯\8dà®\95à¯\81 %s à®¨à®¿à®±à¯\81வபà¯\8dபà®\9fà¯\81வதறà¯\8dà®\95à¯\81 à®\87யலவில்லை"
+#~ msgid "No need to install %s"
+#~ msgstr "%sà®\90 à®¨à®¿à®±à¯\81வதà¯\8d à®¤à¯\87வà¯\88யில்லை"
 
-#~ msgid "Cannot create a file needed to perform update installation."
-#~ msgstr ""
-#~ " புதுப்பிக்கப்பட்ட நிறுவுதலை மேற்கொள்வதற்கு தேவைப்படும் கோப்பை உருவாக்க இயலவில்லை."
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "%sன் சார்புத்தன்மைகளை பூர்த்தி செய்வதற்கு %sஐ நிறுவ இயலவில்லை"
 
 #~ msgid "Cannot install %s to fulfil the dependencies of %s"
 #~ msgstr "%sன் சார்புத்தன்மைகளை பூர்த்தி செய்வதற்கு %sஐ நிறுவ இயலவில்லை"
 
 #, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "%sன் சார்புத்தன்மைகளை பூர்த்தி செய்வதற்கு %sஐ நிறுவ இயலவில்லை"
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "அது இன்னமும் தேவைப்படுவதால், %s நீக்கப்பட மாட்டாது"
+
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr ""
+#~ "%sஐ %s வழக்கற்றதாக்கிவிடும். ஆனால் %sஐ நீக்க முடியாது ஏனெனில் அது பூட்டப்பட்டுள்ளது."
 
 #, fuzzy
 #~ msgid "Cannot install %s, because it is conflicting"
 #~ msgstr "%sஐ நிறுவ முடியாது ஏனெனில் அது முரணானது"
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "%s ஐ நிறுவ இயலவில்லை ஏனெனில் அது %s உடன் முரண்படுகிறது"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s உடன் உள்ள முரண்பாடு காரணமாக %sன் நிறுவுதலை நீக்க முடியாது"
 
-#~ msgid "Child of"
-#~ msgstr "இதன் உருவாக்கம்"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "%sஐ புதுப்பிக்கும்போது %sக்காக %s தேவைப்‍படும்போது"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "தொடர்புள்ள தீர்வுகளை நிறுவவோ அல்லது நீக்கவோ வேண்டாம்"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s க்கான தேவையை %s இழந்துள்ளது"
 
-#~ msgid "Downloading %s"
-#~ msgstr "%s தகவலிறக்கம் செய்யப்படுகிறது"
+#~ msgid ", Action: "
+#~ msgstr ", செயல்பாடு:"
 
-#, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "இத்தீர்வின் மேலே மற்றும் கீழே விளக்கப்பட்டுள்ள பிரச்னைகள், அனைத்து சார்புத்தன்மைகளையும் "
-#~ "தீர்க்கக்கூடியவை அல்ல"
+#~ msgid ", Trigger: "
+#~ msgstr ", தூண்டுதல்:"
 
-#, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "%u பிரிவை படிப்பதில் பிழை."
+#~ msgid "package"
+#~ msgstr "பேக்கேஜ்"
 
-#~ msgid "Establishing %s"
-#~ msgstr "%s அமைக்கப்படுகிறது"
+#~ msgid "selection"
+#~ msgstr "தேர்வு"
 
-#, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "%s - %s திறக்க முடியவில்லை\n"
+#~ msgid "pattern"
+#~ msgstr "வடிவம்"
 
-#~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "%s கோப்பிற்கு செக்சம் இல்லை.\n"
-#~ "அவ்வாறிருந்தும் அக்கோப்பை பயன்படுத்தலாமா?"
+#~ msgid "product"
+#~ msgstr "பொருள்"
 
-#~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "%s கோப்பு, பின்வரும் கீயுடன் நேர்மை சோதனையில் தோல்வியுற்றது:\n"
-#~ "%s|%s|%s\n"
-#~ "அவ்வாறிருந்தும் அக்கோப்பை பயன்படுத்தலாமா?"
+#~ msgid "patch"
+#~ msgstr "பாட்ச்"
 
-#~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "%s கோப்பிற்கு செல்லாத ஒரு செக்சம் உள்ளது.\n"
-#~ "எதிர்பார்த்தது %s, கண்டது %s\n"
-#~ "அவ்வாறிருந்தும் அக்கோப்பை பயன்படுத்தலாமா?"
+#~ msgid "script"
+#~ msgstr "உரை"
+
+#~ msgid "message"
+#~ msgstr "தகவல்"
+
+#~ msgid "atom"
+#~ msgstr "அணு"
+
+#~ msgid "system"
+#~ msgstr "சாதனம்"
+
+#~ msgid "Resolvable"
+#~ msgstr "தீர்வு"
+
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "இத்தீர்வு முயற்சி செல்லாததாக குறிக்கப்படுகிறது"
+
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "இத்தீர்வு %s நிறுவக்கூடியதல்ல என்று குறிக்கப்படுகிறது"
 
 #, fuzzy
 #~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
 #~ msgstr ""
-#~ "%s à®\95à¯\87ாபà¯\8dபிறà¯\8dà®\95à¯\81 à®\85றியபà¯\8dபà®\9fாத à®\92à®°à¯\81 à®\9aà¯\86à®\95à¯\8dà®\9aà®®à¯\8d à®\89ளà¯\8dளதà¯\81.\n"
-#~ "à®\85வà¯\8dவாறிரà¯\81நà¯\8dதà¯\81à®®à¯\8d à®\85à®\95à¯\8dà®\95à¯\87ாபà¯\8dபà¯\88 à®ªà®¯à®©à¯\8dபà®\9fà¯\81தà¯\8dதலாமா?"
+#~ "%s à®¨à®¿à®±à¯\81வபà¯\8dபà®\9fà¯\81வதறà¯\8dà®\95ாà®\95 à®¤à®¿à®\9fà¯\8dà®\9fமிà®\9fபà¯\8dபà®\9fà¯\8dà®\9fà¯\81ளà¯\8dளதà¯\81, à®\86னாலà¯\8d à®\9aாரà¯\8dபà¯\81தà¯\8dதனà¯\8dà®®à¯\88 à®ªà®¿à®°à®\9aà¯\8dனà¯\88à®\95ளà¯\8d à®\95ாரணமாà®\95 à®\87தà¯\81 "
+#~ "à®\9aாதà¯\8dதியமிலà¯\8dலà¯\88."
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
 #~ msgstr ""
-#~ "%s கோப்பு கையொப்பமிடப்படவில்லை.\n"
-#~ "அவ்வாறிருந்தும் அதனை பயன்படுத்தலாமா?"
+#~ "நிறுவுதல் நீக்கப்பட வேண்டியது என்று ஏற்கனவே குறிக்கப்பட்டிருப்பதால், %sஐ நிறுவஇயலவில்லை"
+
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "இந்த சாதனத்திற்கு பொருந்தாமல் இருப்பதால், %sஐ நிறுவ இயலவில்லை"
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
 #~ msgstr ""
-#~ "%s கோப்பு அறிந்திராத ஒரு கீயினால் கையொப்பமிடப்பட்டுள்ளது:\n"
-#~ "%s|%s|%s\n"
-#~ "அவ்வாறிருந்தும் அக்கோப்பை பயன்படுத்தலாமா?"
-
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "‍‍ஏற்கனவே நிறுவுவதற்காக அமைக்கப்பட்டுள்ள %sஐ புறக்கணிக்கவும்"
-
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "%sல் உள்ள வழக்கில் இல்லாத %sஐ புறக்கணிக்கவும்"
-
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "%sன் முரண்பாட்டை புறக்கணிக்கவும்"
-
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "இத்தேவையை பொதுவாக புறக்கணிக்கவும்"
-
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "இத்தேவையை இங்கேயே புறக்கணிக்கவும்"
+#~ "நிறுவுப்பட வேண்டியது என்று ஏற்கனவே குறிக்கப்பட்டிருப்பதால், %s ஐ நிறுவ \n"
+#~ "இயலவில்லை"
 
-#, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "அது கட்டமைப்பை மாற்றக்கூடுமென்றாலும் %sஐ நிறுவவும்"
+#~ msgid "This would invalidate %s."
+#~ msgstr "இது, %sஐ செல்லாததாக்கிவிடும்."
 
-#~ msgid "Install missing resolvables"
-#~ msgstr "­ò¾¡Ä¢Âý"
+#~ msgid "Establishing %s"
+#~ msgstr "%s அமைக்கப்படுகிறது"
 
 #~ msgid "Installing %s"
 #~ msgstr "%s நிறுவப்படுகிறது"
 
-#~ msgid "Invalid information"
-#~ msgstr "செல்லாத தகவல்"
+#~ msgid "Updating %s to %s"
+#~ msgstr "%s லிருந்து %sக்கு புதுப்பித்தல்"
 
-#, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "கணத்தை மாற்று"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "%s விடப்படுகிறது: ஏற்கவே நிறுவப்பட்டுவிட்டது"
 
-#~ msgid "Keep resolvables"
-#~ msgstr "தீர்வுகளை வைத்துக் கொள்ளவும்"
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "%sக்கான நிறுவப்பட்ட மாற்று அளிப்பவர்கள் இல்லை"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "%s மீதான ஒரு முரண்பாடு காரணமாக %s நிறுவப்பட முடியாததாக குறிக்கப்பட்டுள்ளது"
+#~ msgid "for %s"
+#~ msgstr "%sக்காக"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "இத்தீர்வு %s நிறுவக்கூடியதல்ல என்று குறிக்கப்படுகிறது"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "%sக்கு மேம்படுத்திக் கொள்ளவும், %sஐ நீக்குதல் இயலாது"
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "இத்தீர்வு முயற்சி செல்லாததாக குறிக்கப்படுகிறது"
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s, %sஐ அளிக்கிறது, ஆனால் அது நிறுவுதல் நீக்கப்படுவதற்கு திட்டமிடப்பட்டுள்ளது"
 
-#~ msgid "No need to install %s"
-#~ msgstr "%sஐ நிறுவத் தேவையில்லை"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s, %sஐ அளிக்கிறது, ஆனால், %sன் மற்றொரு வடிவம் ஏற்கனவே நிறுவப்பட்டுவிட்டது"
 
-#, fuzzy
 #~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "நேர்மை சோதனையில் %s பேக்கேஜ் தோல்வியுற்றது. அதனை தகவலிறக்கம் செய்வதற்குநீங்கள் மீண்டும் "
-#~ "முயற்சிக்கப் போகிறீர்களா அல்லது நிறுவுதலை நிறுத்திவிடப் போகிறீர்களா?"
-
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "இந்த யூஆர்எல்லுக்கு பாதை அளவீடு விளக்கம் ஆதரவளிக்கப்படவில்லை"
+#~ "%s, %sஐ அளிக்கிறது, ஆனால், அதன் நிறுவுதலை நீக்க இயலாது. கூடுதல் விவரங்களுக்கு, "
+#~ "அதனைத் தானாகவே நிறுவம முயற்சிக்கவும்."
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "இந்த யூஆர்எல்லுக்கு பாதை அளவீடு விளக்கம் ஆதரவளிக்கப்படவில்லை"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s, %sஐ அளிக்கிறது, ஆனால் அது பூட்டப்பட்டுள்ளது."
 
-#~ msgid "Reading filelist from %s"
-#~ msgstr "%sலிருந்து கோப்புப்பட்டியல் படிக்கப்படுகிறது"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s, %sஐ அளிக்கிறது, ஆனால் அது வைக்கப்படுவதற்கு திட்டமிடப்பட்டுள்ளது."
 
-#~ msgid "Reading index files"
-#~ msgstr "உள்ளடக்க கோப்புகள் படிக்கப்படுகின்றன"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s, %sஐ அளிக்கிறது, ஆனால் அதற்கு வேறொரு கட்டமைப்பு உள்ளது."
 
-#~ msgid "Reading packages file"
-#~ msgstr "பேக்கேஜ்கள் கோப்பு படிக்கப்படுகிறது"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "%s க்கான %sன் தேவையைப் பூர்த்தி செய்ய இயலாது"
 
-#~ msgid "Reading packages from %s"
-#~ msgstr "%sலிருந்து பேக்கேஜ்கள் படிக்கப்படுகின்றன"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "மற்றொரு நிறுவப்பட்டுள்ள தீர்வுக்கு %s தேவைப்படுகிறது, எனவே அதன இணைப்பு நீக்கப்பட "
+#~ "மாட்டாது."
 
-#~ msgid "Reading patch %s"
-#~ msgstr "பாட்ச் %s படிக்கப்படுகிறது"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "மற்றொரு நிறுவப்பட்டுள்ள தீர்வுக்கு %s தேவைப்படுகிறது, எனவே அதன இணைப்பு நீக்கப்பட "
+#~ "மாட்டாது."
 
-#~ msgid "Reading patches index %s"
-#~ msgstr "பாட்ச்களின் உள்ளடக்கம் %s படிக்கப்படுகிறது"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr ""
+#~ "%s (%s) மீதான ஒரு முரண்பாட்டிற்கு, நிறுவப்படப்போகும் %sன் நீக்கம் தேவைப்படுகிறது."
 
-#~ msgid "Reading pattern from %s"
-#~ msgstr "%sலிருந்து வடிவம் படிக்கப்படுகிறது"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "%s மீதான ஒரு முரண்பாடு காரணமாக %s நிறுவப்பட முடியாததாக குறிக்கப்பட்டுள்ளது"
 
-#~ msgid "Reading product from %s"
-#~ msgstr "%sலிருந்து பொருள் படிக்கப்படுகிறது"
+#~ msgid "from %s"
+#~ msgstr "%sலிருந்து"
 
-#~ msgid "Reading selection from %s"
-#~ msgstr "%sலிருந்து தேர்வுகள் படிக்கப்படுகின்றன"
+#~ msgid " Error!"
+#~ msgstr "பிழை!"
 
-#~ msgid "Reading translation: %s"
-#~ msgstr "à®®à¯\86ாழிபà¯\86யரà¯\8dபà¯\8dபà¯\81 à®ªà®\9fிà®\95à¯\8dà®\95பà¯\8dபà®\9fà¯\81à®\95ிறதà¯\81: %s"
+#~ msgid " Important!"
+#~ msgstr "à®®à¯\81à®\95à¯\8dà®\95ியமà¯\8d!"
 
-#~ msgid "Resolvable"
-#~ msgstr "தீர்வு"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s, %sஐ சார்ந்துள்ளது"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "செர்பியா மற்றும் மான்டநெக்ரோ"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s, %sக்கு தேவைப்படுகிறது"
 
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "%s விடப்படுகிறது: ஏற்கவே நிறுவப்பட்டுவிட்டது"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s, %sக்கு தேவைப்படுகிறது"
 
-#~ msgid "Software management is already running."
-#~ msgstr "மென்பொருள் நிர்வாகம் ஏற்கனவே இயக்கத்திலுள்ளது."
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s %sஆல் மாற்றியமைக்கப்பட்டது"
 
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "சோதனைத் தேர்வில் உரை கோப்பு தோல்வியுற்றது"
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s, %sக்கு தேவைப்படுகிறது"
 
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr "கையாப்பமிடப்பட்ட repomd.xml கோப்பு, கையொப்ப சோதனையில் தோல்வியுற்றது."
+#~ msgid "%s part of %s"
+#~ msgstr "%s, %sன் ஒரு பகுதியாகும்"
 
 #, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "%sக்கான நிறுவப்பட்ட மாற்று அளிப்பவர்கள் இல்லை"
-
-#~ msgid "This would invalidate %s."
-#~ msgstr "இது, %sஐ செல்லாததாக்கிவிடும்."
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s, %sக்கு தேவைப்படுகிறது"
 
 #~ msgid "Unable to parse Url authority"
 #~ msgstr "யூஆர்எல் அதிகாரத்தை விளக்க இயலவில்லை"
 
-#~ msgid "Unable to restore all sources."
-#~ msgstr "அனைத்து ஆதாரங்களையும் மீட்க முடியவில்லை"
-
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "தெரியாத பட்டியல் விருப்பத்தேர்வு"
-
-#~ msgid "Unlock these resolvables"
-#~ msgstr "இத்தீர்வுகளைத் திறக்கவும்"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "இத்தேவையை பொதுவாக புறக்கணிக்கவும்"
 
 #~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
 #~ msgstr ""
-#~ "நம்பகத்தன்மையற்ற கீ கண்டுபிடிக்கப்பட்டுள்ளது:\n"
-#~ "%s|%s|%s\n"
-#~ "கீயை நம்பலாமா?"
+#~ "மற்றொரு நிறுவப்படப்போகும் தீர்வுக்கு %s தேவைப்படுகிறது, எனவே அதன் இணைப்பு நீக்கப்பட "
+#~ "மாட்டாது."
 
-#~ msgid "Updating %s to %s"
-#~ msgstr "%s லிருந்து %sக்கு புதுப்பித்தல்"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr ""
+#~ " புதுப்பிக்கப்பட்ட நிறுவுதலை மேற்கொள்வதற்கு தேவைப்படும் கோப்பை உருவாக்க இயலவில்லை."
 
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "%sக்கு மேம்படுத்திக் கொள்ளவும், %sஐ நீக்குதல் இயலாது"
+#~ msgid "Unable to restore all sources."
+#~ msgstr "அனைத்து ஆதாரங்களையும் மீட்க முடியவில்லை"
 
-#~ msgid "atom"
-#~ msgstr "அணு"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr ""
+#~ "ஒரு ஆதாரமேனும் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது, சேமிக்கப்பட்ட ஆதாரங்களைமீட்க இயலாது."
 
-#~ msgid "delete %s"
-#~ msgstr "%s ஐ நீக்கவும்"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "%sன் சார்புத்தன்மைகளை பூர்த்தி செய்வதற்கு %s நிறுவப்படுவதற்கு இயலவில்லை"
 
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "நிறுவப்படவில்லை"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s, %sஐ சார்ந்துள்ளது"
 
-#~ msgid "for %s"
-#~ msgstr "%sக்காக"
+#~ msgid "Reading index files"
+#~ msgstr "உள்ளடக்க கோப்புகள் படிக்கப்படுகின்றன"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "%sஐ புதுப்பிக்கும்போது %sக்காக %s தேவைப்‍படும்போது"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "கையாப்பமிடப்பட்ட repomd.xml கோப்பு, கையொப்ப சோதனையில் தோல்வியுற்றது."
 
-#~ msgid "from %s"
-#~ msgstr "%sலிருந்து"
+#~ msgid "Reading product from %s"
+#~ msgstr "%sலிருந்து பொருள் படிக்கப்படுகிறது"
 
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "சார்புத்தன்மைகளை தீர்க்க முடியவில்லை"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "%sலிருந்து கோப்புப்பட்டியல் படிக்கப்படுகிறது"
 
-#~ msgid "install %s"
-#~ msgstr "%sà®\90 à®¨à®¿à®±à¯\81வவà¯\81à®®à¯\8d"
+#~ msgid "Reading packages from %s"
+#~ msgstr "%sலிரà¯\81நà¯\8dதà¯\81 à®ªà¯\87à®\95à¯\8dà®\95à¯\87à®\9cà¯\8dà®\95ளà¯\8d à®ªà®\9fிà®\95à¯\8dà®\95பà¯\8dபà®\9fà¯\81à®\95ினà¯\8dறன"
 
-#~ msgid "message"
-#~ msgstr "தகவல்"
+#~ msgid "Reading selection from %s"
+#~ msgstr "%sலிருந்து தேர்வுகள் படிக்கப்படுகின்றன"
 
-#~ msgid "package"
-#~ msgstr "பேக்கேஜ்"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "%sலிருந்து வடிவம் படிக்கப்படுகிறது"
 
-#~ msgid "patch"
-#~ msgstr "பாட்ச்"
+#~ msgid "Reading patches index %s"
+#~ msgstr "பாட்ச்களின் உள்ளடக்கம் %s படிக்கப்படுகிறது"
 
-#~ msgid "pattern"
-#~ msgstr "வà®\9fிவமà¯\8d"
+#~ msgid "Reading patch %s"
+#~ msgstr "பாà®\9fà¯\8dà®\9aà¯\8d %s à®ªà®\9fிà®\95à¯\8dà®\95பà¯\8dபà®\9fà¯\81à®\95ிறதà¯\81"
 
-#~ msgid "product"
-#~ msgstr "பà¯\86ாரà¯\81ளà¯\8d"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "à®\9aà¯\87ாதனà¯\88தà¯\8d à®¤à¯\87à®°à¯\8dவிலà¯\8d à®\89à®°à¯\88 à®\95à¯\87ாபà¯\8dபà¯\81 à®¤à¯\87ாலà¯\8dவியà¯\81à®±à¯\8dறதà¯\81"
 
-#~ msgid "rpm output:"
-#~ msgstr "à®\86à®°à¯\8dபிà®\8eà®®à¯\8d à®\85வà¯\81à®\9fà¯\8dபà¯\81à®\9fà¯\8d:"
+#~ msgid "Reading packages file"
+#~ msgstr "பà¯\87à®\95à¯\8dà®\95à¯\87à®\9cà¯\8dà®\95ளà¯\8d à®\95à¯\87ாபà¯\8dபà¯\81 à®ªà®\9fிà®\95à¯\8dà®\95பà¯\8dபà®\9fà¯\81à®\95ிறதà¯\81"
 
-#~ msgid "script"
-#~ msgstr "à®\89à®°à¯\88"
+#~ msgid "Reading translation: %s"
+#~ msgstr "à®®à¯\86ாழிபà¯\86யரà¯\8dபà¯\8dபà¯\81 à®ªà®\9fிà®\95à¯\8dà®\95பà¯\8dபà®\9fà¯\81à®\95ிறதà¯\81: %s"
 
-#~ msgid "selection"
-#~ msgstr "தேர்வு"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "நேர்மை சோதனையில் %s பேக்கேஜ் தோல்வியுற்றது. அதனை தகவலிறக்கம் செய்வதற்குநீங்கள் மீண்டும் "
+#~ "முயற்சிக்கப் போகிறீர்களா அல்லது நிறுவுதலை நிறுத்திவிடப் போகிறீர்களா?"
 
-#~ msgid "system"
-#~ msgstr "à®\9aாதனமà¯\8d"
+#~ msgid " miss checksum."
+#~ msgstr "à®\9aà¯\86à®\95à¯\8dà®\9aà®®à¯\8d à®¤à®µà®±à®¿à®¯à®¤à¯\81."
 
-#~ msgid "unlock %s"
-#~ msgstr "%sஐ திறக்கவும்"
+#~ msgid " fails checksum verification."
+#~ msgstr "செக்சம் சரிபார்ப்பில் தோல்வியுற்றது."
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "­ò¾¡Ä¢Âý"
+#~ msgid "Downloading %s"
+#~ msgstr "%s தகவலிறக்கம் செய்யப்படுகிறது"
index b9fbf79..c7df59a 100644 (file)
--- a/po/tg.po
+++ b/po/tg.po
@@ -11,1059 +11,845 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-msgid " execution failed"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:99
+msgid "Conflicts"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-#, fuzzy
-msgid "Achinese"
-msgstr "Хитой"
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
+#: zypp/target/TargetImpl.cc:332
+msgid " execution failed"
 msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-#, fuzzy
-msgid "Afghanistan"
-msgstr "Афғонистон"
-
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-#, fuzzy
-msgid "Afrihili"
-msgstr "Майтифил"
-
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-#, fuzzy
-msgid "Afrikaans"
-msgstr "Африкоӣ"
-
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-#, fuzzy
-msgid "Aland Islands"
-msgstr "Минтақаи Худмухтори Ҷазираҳои Балеар"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-#, fuzzy
-msgid "Albania"
-msgstr "Албания"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-#, fuzzy
-msgid "Albanian"
-msgstr "Албания"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-#, fuzzy
-msgid "Algeria"
-msgstr "Алҷазоир"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-#, fuzzy
-msgid "Algonquian Languages"
-msgstr "Забонҳои система"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-#, fuzzy
-msgid "American Samoa"
-msgstr "Самоаи Амрико"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-#, fuzzy
-msgid "Andorra"
-msgstr "Андора"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-#, fuzzy
-msgid "Angola"
-msgstr "Ангола"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-#, fuzzy
-msgid "Anguilla"
-msgstr "Ангилла"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-#, fuzzy
-msgid "Antigua and Barbuda"
-msgstr "Антигуа ва Барбуда"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-#, fuzzy
-msgid "Arabic"
-msgstr "Арабӣ"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-#, fuzzy
-msgid "Aramaic"
-msgstr "Ямайка"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-#, fuzzy
-msgid "Araucanian"
-msgstr "Украинӣ"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-#, fuzzy
-msgid "Argentina"
-msgstr "Аргентина"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-#, fuzzy
-msgid "Armenia"
-msgstr "Арманистон"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-#, fuzzy
-msgid "Armenian"
-msgstr "Арманистон"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-#, fuzzy
-msgid "Aruba"
-msgstr "Аруба"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
 msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
 msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
 msgstr ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-#, fuzzy
-msgid "Australia"
-msgstr "Австралия"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Проводник"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-#, fuzzy
-msgid "Australian Languages"
-msgstr "Забонҳои системаи KDE"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-#, fuzzy
-msgid "Austria"
-msgstr "Австрия"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
+msgid "Can't open file '%s' for writing."
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr ""
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-#, fuzzy
-msgid "Azerbaijan"
-msgstr "Озарбойҷон"
-
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-#, fuzzy
-msgid "Azerbaijani"
-msgstr "Озорбойҷонӣ"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
 
-#: zypp/media/MediaException.cc:47
+#: zypp/RepoManager.cc:1302
 #, c-format, boost-format
-msgid "Bad file name: %s"
+msgid "Can't create cache at %s - no writing permissions."
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
 msgstr ""
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-#, fuzzy
-msgid "Bahamas"
-msgstr "Ҷазираҳои Багам"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-#, fuzzy
-msgid "Bahrain"
-msgstr "Баҳрайн"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-#, fuzzy
-msgid "Balinese"
-msgstr "Хитой"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-#, fuzzy
-msgid "Banda"
-msgstr "Руанда"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr ""
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
 #, fuzzy
-msgid "Bangladesh"
-msgstr "Ð\91англадеÑ\88"
+msgid "Can't figure out where the service is stored."
+msgstr "ТанзимоÑ\82и Ñ\85идмаÑ\82ҳои proxy Ð¸Ñ\81Ñ\82иÑ\84одаÑ\88Ñ\83да"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-#, fuzzy
-msgid "Barbados"
-msgstr "Барбадос"
-
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-#, fuzzy
-msgid "Basque"
-msgstr "Баскӣ"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-#, fuzzy
-msgid "Batak (Indonesia)"
-msgstr "Индонезия"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-#, fuzzy
-msgid "Belarus"
-msgstr "Белоруссия"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-#, fuzzy
-msgid "Belarusian"
-msgstr "Белорусӣ"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-#, fuzzy
-msgid "Belgium"
-msgstr "Белгия"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-#, fuzzy
-msgid "Belize"
-msgstr "Белиз"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-#, fuzzy
-msgid "Bengali"
-msgstr "Бенгалӣ"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-#, fuzzy
-msgid "Benin"
-msgstr "Бенин"
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-#, fuzzy
-msgid "Bermuda"
-msgstr "Бермуда"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-#, fuzzy
-msgid "Bhutan"
-msgstr "Бутон"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-#, fuzzy
-msgid "Bihari"
-msgstr "Дастрасӣ"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-#, fuzzy
-msgid "Blin"
-msgstr "Кӯрачаҳои манъшуда"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-#, fuzzy
-msgid "Bolivia"
-msgstr "Боливия"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-#, fuzzy
-msgid "Bosnia and Herzegovina"
-msgstr "Босния ва Гертсеговина"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr ""
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-#, fuzzy
-msgid "Bosnian"
-msgstr "Босниявӣ"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-#, fuzzy
-msgid "Botswana"
-msgstr "Ботсвана"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-#, fuzzy
-msgid "Bouvet Island"
-msgstr "Ҷазираҳои Фарер"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr ""
-
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-#, fuzzy
-msgid "Brazil"
-msgstr "Бразилия"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-#, fuzzy
-msgid "Breton"
-msgstr "Бритонӣ"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-#, fuzzy
-msgid "British Indian Ocean Territory"
-msgstr "Минтақаи Президентӣ"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-#, fuzzy
-msgid "British Virgin Islands"
-msgstr "Ҷазираҳои Виргин(ШМА)"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-#, fuzzy
-msgid "Brunei Darussalam"
-msgstr "Бруней Доруссалом"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-#, fuzzy
-msgid "Buginese"
-msgstr "Хитой"
-
-#: zypp/RepoManager.cc:1282
+#: zypp/ExternalProgram.cc:381
 #, c-format, boost-format
-msgid "Building repository '%s' cache"
+msgid "Can't fork (%s)."
 msgstr ""
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-#, fuzzy
-msgid "Bulgaria"
-msgstr "Булғория"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-#, fuzzy
-msgid "Bulgarian"
-msgstr "Булғорӣ"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-#, fuzzy
-msgid "Burkina Faso"
-msgstr "Буркина-Фасо"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-#, fuzzy
-msgid "Burundi"
-msgstr "Бурунди"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
 msgstr ""
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-#, fuzzy
-msgid "Cambodia"
-msgstr "Камбоҷия"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-#, fuzzy
-msgid "Cameroon"
-msgstr "Камерун"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:360
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
 #, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#: zypp/VendorSupportOptions.cc:14
+#, fuzzy
+msgid "unknown"
+msgstr "Номуайян"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
 msgstr ""
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
 msgstr ""
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-#, fuzzy
-msgid "Can't figure out where the service is stored."
-msgstr "Танзимоти хидматҳои proxy истифодашуда"
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
 msgstr ""
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
 msgstr ""
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr ""
+#: zypp/CountryCode.cc:158
+#, fuzzy
+msgid "Andorra"
+msgstr "Андора"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
+#. :AND:020:
+#: zypp/CountryCode.cc:159
 #, fuzzy
-msgid "Canada"
-msgstr "Ð\9aанада"
+msgid "United Arab Emirates"
+msgstr "Ð\90моÑ\80аÑ\82ҳои Ð\9cÑ\83Ñ\82Ñ\82аҳидаи Ð\90Ñ\80аб"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+#, fuzzy
+msgid "Afghanistan"
+msgstr "Афғонистон"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr ""
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+#, fuzzy
+msgid "Antigua and Barbuda"
+msgstr "Антигуа ва Барбуда"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+#, fuzzy
+msgid "Anguilla"
+msgstr "Ангилла"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr ""
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+#, fuzzy
+msgid "Albania"
+msgstr "Албания"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
 #, fuzzy
-msgid "Cape Verde"
-msgstr "Ð\9aабо-Ð\92еÑ\80де"
+msgid "Armenia"
+msgstr "Ð\90Ñ\80маниÑ\81Ñ\82он"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
 #, fuzzy
-msgid "Carib"
-msgstr "Ҷазираҳои Кариб"
+msgid "Netherlands Antilles"
+msgstr "Нидерландаи Ҷазираҳои Антил"
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
 #, fuzzy
-msgid "Catalan"
-msgstr "Ð\9aаÑ\82аланӣ"
+msgid "Angola"
+msgstr "Ð\90нгола"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
 msgstr ""
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
 #, fuzzy
-msgid "Cayman Islands"
-msgstr "Ҷазираҳои Кайман"
-
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr ""
+msgid "Argentina"
+msgstr "Аргентина"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr ""
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+#, fuzzy
+msgid "American Samoa"
+msgstr "Самоаи Амрико"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
 #, fuzzy
-msgid "Central African Republic"
-msgstr "Ҷумҳурии Африкаи Марказӣ"
+msgid "Austria"
+msgstr "Австрия"
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr ""
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+#, fuzzy
+msgid "Australia"
+msgstr "Австралия"
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
 #, fuzzy
-msgid "Chad"
-msgstr "Чад"
+msgid "Aruba"
+msgstr "Ð\90Ñ\80Ñ\83ба"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr ""
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+#, fuzzy
+msgid "Aland Islands"
+msgstr "Минтақаи Худмухтори Ҷазираҳои Балеар"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr ""
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+#, fuzzy
+msgid "Azerbaijan"
+msgstr "Озарбойҷон"
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr ""
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+#, fuzzy
+msgid "Bosnia and Herzegovina"
+msgstr "Босния ва Гертсеговина"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr ""
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+#, fuzzy
+msgid "Barbados"
+msgstr "Барбадос"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr ""
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+#, fuzzy
+msgid "Bangladesh"
+msgstr "Бангладеш"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr ""
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+#, fuzzy
+msgid "Belgium"
+msgstr "Белгия"
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr ""
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+#, fuzzy
+msgid "Burkina Faso"
+msgstr "Буркина-Фасо"
 
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr ""
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+#, fuzzy
+msgid "Bulgaria"
+msgstr "Булғория"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr ""
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+#, fuzzy
+msgid "Bahrain"
+msgstr "Баҳрайн"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
 #, fuzzy
-msgid "Chile"
-msgstr "Чили"
+msgid "Burundi"
+msgstr "Ð\91Ñ\83Ñ\80Ñ\83нди"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
 #, fuzzy
-msgid "China"
-msgstr "ХиÑ\82ой"
+msgid "Benin"
+msgstr "Ð\91енин"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
 #, fuzzy
-msgid "Chinese"
-msgstr "ХиÑ\82ой"
+msgid "Bermuda"
+msgstr "Ð\91еÑ\80мÑ\83да"
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr ""
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+#, fuzzy
+msgid "Brunei Darussalam"
+msgstr "Бруней Доруссалом"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr ""
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+#, fuzzy
+msgid "Bolivia"
+msgstr "Боливия"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr ""
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+#, fuzzy
+msgid "Brazil"
+msgstr "Бразилия"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
 #, fuzzy
-msgid "Christmas Island"
-msgstr "Ҷазираи Кристмас"
+msgid "Bahamas"
+msgstr "Ҷазираҳои Багам"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr ""
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr ""
-
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr ""
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
 #, fuzzy
-msgid "Classical Newari"
-msgstr "СÑ\83Ñ\80Ñ\85и Ð\9aлаÑ\81Ñ\81икӣ"
+msgid "Bhutan"
+msgstr "Ð\91Ñ\83Ñ\82он"
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
 #, fuzzy
-msgid "Cocos (Keeling) Islands"
-msgstr "ҶазиÑ\80аҳои Ð\9aокоÑ\81 (Ð\9aилинг)"
+msgid "Bouvet Island"
+msgstr "ҶазиÑ\80аҳои Ð¤Ð°Ñ\80еÑ\80"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
 #, fuzzy
-msgid "Colombia"
-msgstr "Колумбия"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
+msgid "Botswana"
+msgstr "Ботсвана"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr ""
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+#, fuzzy
+msgid "Belarus"
+msgstr "Белоруссия"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+#, fuzzy
+msgid "Belize"
+msgstr "Белиз"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
 #, fuzzy
-msgid "Comoros"
-msgstr "Ҷазираҳои Комор"
+msgid "Canada"
+msgstr "Канада"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+#, fuzzy
+msgid "Cocos (Keeling) Islands"
+msgstr "Ҷазираҳои Кокос (Килинг)"
 
 #. :CCK:166:
 #. :CAF:140:
@@ -1072,33 +858,17 @@ msgstr ""
 msgid "Congo"
 msgstr "Конго"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-#, fuzzy
-msgid "Cook Islands"
-msgstr "Ҷазираҳои Кук"
-
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr ""
-
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
+#. :COD:180:
+#: zypp/CountryCode.cc:197
 #, fuzzy
-msgid "Cornish"
-msgstr "Даниягӣ"
-
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr ""
+msgid "Central African Republic"
+msgstr "Ҷумҳурии Африкаи Марказӣ"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
+#. :COG:178:
+#: zypp/CountryCode.cc:199
 #, fuzzy
-msgid "Costa Rica"
-msgstr "Ð\9aоÑ\81Ñ\82а-Рика"
+msgid "Switzerland"
+msgstr "ШвейÑ\81аÑ\80иÑ\8f"
 
 #. :CHE:756:
 #: zypp/CountryCode.cc:200
@@ -1106,53 +876,41 @@ msgstr "Коста-Рика"
 msgid "Cote D'Ivoire"
 msgstr "Кот д'Ивуар"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr ""
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
 #, fuzzy
-msgid "Creek"
-msgstr "Юнонӣ"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr ""
-
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr ""
+msgid "Cook Islands"
+msgstr "Ҷазираҳои Кук"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr ""
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+#, fuzzy
+msgid "Chile"
+msgstr "Чили"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr ""
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+#, fuzzy
+msgid "Cameroon"
+msgstr "Камерун"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr ""
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+#, fuzzy
+msgid "China"
+msgstr "Хитой"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
 #, fuzzy
-msgid "Croatia"
-msgstr "ХоÑ\80ваÑ\82ия"
+msgid "Colombia"
+msgstr "Ð\9aолÑ\83мбия"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+#. :COL:170:
+#: zypp/CountryCode.cc:206
 #, fuzzy
-msgid "Croatian"
-msgstr "ХоÑ\80ваÑ\82Ó£"
+msgid "Costa Rica"
+msgstr "Ð\9aоÑ\81Ñ\82а-Рика"
 
 #. :CRI:188:
 #: zypp/CountryCode.cc:207
@@ -1160,10 +918,17 @@ msgstr "Хорватӣ"
 msgid "Cuba"
 msgstr "Куба"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr ""
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+#, fuzzy
+msgid "Cape Verde"
+msgstr "Кабо-Верде"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+#, fuzzy
+msgid "Christmas Island"
+msgstr "Ҷазираи Кристмас"
 
 #. :CXR:162:
 #: zypp/CountryCode.cc:210
@@ -1171,44 +936,23 @@ msgstr ""
 msgid "Cyprus"
 msgstr "Кипр"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-#, fuzzy
-msgid "Czech"
-msgstr "Чехӣ"
-
 #. :CYP:196:
 #: zypp/CountryCode.cc:211
 #, fuzzy
 msgid "Czech Republic"
 msgstr "Ҷумҳурии Чехия"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr ""
-
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
 #, fuzzy
-msgid "Danish"
-msgstr "Даниягӣ"
-
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr ""
-
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr ""
+msgid "Germany"
+msgstr "Германия"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
 #, fuzzy
-msgid "Delaware"
-msgstr "Сахтафзор"
+msgid "Djibouti"
+msgstr "Ҷибути"
 
 #. :DJI:262:
 #: zypp/CountryCode.cc:214
@@ -1216,32 +960,6 @@ msgstr "Сахтафзор"
 msgid "Denmark"
 msgstr "Дания"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr ""
-
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr ""
-
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-#, fuzzy
-msgid "Djibouti"
-msgstr "Ҷибути"
-
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr ""
-
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr ""
-
 #. :DNK:208:
 #: zypp/CountryCode.cc:215
 #, fuzzy
@@ -1254,62 +972,11 @@ msgstr "Доминика"
 msgid "Dominican Republic"
 msgstr "Ҷумҳурии Доминикана"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr ""
-
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr ""
-
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
-
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-#, fuzzy
-msgid "Dutch"
-msgstr "Олмонӣ"
-
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr ""
-
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr ""
-
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr ""
-
-#. :TON:776:
-#: zypp/CountryCode.cc:378
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
 #, fuzzy
-msgid "East Timor"
-msgstr "ТимоÑ\80и Ð¨Ð°Ñ\80Ò\9bÓ£"
+msgid "Algeria"
+msgstr "Ð\90лҷазоиÑ\80"
 
 #. :DZA:012:
 #: zypp/CountryCode.cc:218
@@ -1317,10 +984,11 @@ msgstr "Тимори Шарқӣ"
 msgid "Ecuador"
 msgstr "Эквадор"
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr ""
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+#, fuzzy
+msgid "Estonia"
+msgstr "Эстония"
 
 #. :EST:233:
 #: zypp/CountryCode.cc:220
@@ -1328,68 +996,11 @@ msgstr ""
 msgid "Egypt"
 msgstr "Миср"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr ""
-
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr ""
-
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-#, fuzzy
-msgid "El Salvador"
-msgstr "Салвадор"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr ""
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr ""
-
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-#, fuzzy
-msgid "English"
-msgstr "Англисӣ"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr ""
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr ""
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
 #, fuzzy
-msgid "Equatorial Guinea"
-msgstr "Ð\93винеÑ\8fи Ð­ÐºÐ²Ð°Ñ\82оÑ\80ӣ"
+msgid "Western Sahara"
+msgstr "СаҳÑ\80ои Ò\92аÑ\80бӣ"
 
 #. :ESH:732:
 #: zypp/CountryCode.cc:222
@@ -1397,51 +1008,11 @@ msgstr "Гвинеяи Экваторӣ"
 msgid "Eritrea"
 msgstr "Эритрея"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr ""
-
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-#, fuzzy
-msgid "Esperanto"
-msgstr "Эсперанто"
-
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-#, fuzzy
-msgid "Estonia"
-msgstr "Эстония"
-
-#. language code: est et
-#: zypp/LanguageCode.cc:423
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
 #, fuzzy
-msgid "Estonian"
-msgstr "ЭÑ\81Ñ\82онӣ"
+msgid "Spain"
+msgstr "Ð\98Ñ\81паниÑ\8f"
 
 #. :ESP:724:
 #: zypp/CountryCode.cc:224
@@ -1449,60 +1020,17 @@ msgstr "Эстонӣ"
 msgid "Ethiopia"
 msgstr "Эфиопия"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr ""
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
 #, fuzzy
-msgid "Ewondo"
-msgstr "Дондорф"
-
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr ""
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr ""
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr ""
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Проводник"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr ""
+msgid "Finland"
+msgstr "Финляндия"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr ""
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+#, fuzzy
+msgid "Fiji"
+msgstr "Фиҷи"
 
 #. :FJI:242:
 #: zypp/CountryCode.cc:227
@@ -1510,15 +1038,11 @@ msgstr ""
 msgid "Falkland Islands (Malvinas)"
 msgstr "Ҷазираҳои Фолкленд (Ҷазираҳои Малвин)"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr ""
-
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr ""
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+#, fuzzy
+msgid "Federated States of Micronesia"
+msgstr "Штатҳои Муттаҳидаи Амрикоӣ"
 
 #. :FSM:583:
 #: zypp/CountryCode.cc:229
@@ -1526,187 +1050,599 @@ msgstr ""
 msgid "Faroe Islands"
 msgstr "Ҷазираҳои Фарер"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr ""
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+#, fuzzy
+msgid "France"
+msgstr "Фаронса"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr ""
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
 #, fuzzy
-msgid "Federated States of Micronesia"
-msgstr "ШÑ\82аÑ\82ҳои Ð\9cÑ\83Ñ\82Ñ\82аҳидаи Ð\90мÑ\80икоӣ"
+msgid "Gabon"
+msgstr "Ð\93абон"
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
 #, fuzzy
-msgid "Fiji"
-msgstr "Фиҷи"
+msgid "United Kingdom"
+msgstr "Ð\91Ñ\80иÑ\82аниÑ\8fи Ð\9aабиÑ\80"
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
 #, fuzzy
-msgid "Fijian"
-msgstr "Фиҷи"
+msgid "Grenada"
+msgstr "Ð\93Ñ\80енада"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+#, fuzzy
+msgid "Georgia"
+msgstr "Гурҷистон"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+#, fuzzy
+msgid "French Guiana"
+msgstr "Фаронсавӣ"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+#: zypp/CountryCode.cc:238
+#, fuzzy
+msgid "Ghana"
+msgstr "Гана"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+#, fuzzy
+msgid "Gibraltar"
+msgstr "Гибралтар"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+#, fuzzy
+msgid "Greenland"
+msgstr "Гренландия"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+#, fuzzy
+msgid "Gambia"
+msgstr "Гамбия"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+#, fuzzy
+msgid "Guinea"
+msgstr "Гвинея"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr ""
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+#, fuzzy
+msgid "Guadeloupe"
+msgstr "Гваделупа"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+#, fuzzy
+msgid "Equatorial Guinea"
+msgstr "Гвинеяи Экваторӣ"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+#, fuzzy
+msgid "Greece"
+msgstr "Юнон"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
 msgstr ""
 
-#. language code: fil
-#: zypp/LanguageCode.cc:437
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
 #, fuzzy
-msgid "Filipino"
-msgstr "Филиппин"
+msgid "Guatemala"
+msgstr "Ð\93ваÑ\82емала"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
 #, fuzzy
-msgid "Finland"
-msgstr "ФинлÑ\8fндиÑ\8f"
+msgid "Guam"
+msgstr "Ð\93Ñ\83ам"
 
-#. language code: fin fi
-#: zypp/LanguageCode.cc:439
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
 #, fuzzy
-msgid "Finnish"
-msgstr "Финӣ"
+msgid "Guinea-Bissau"
+msgstr "Ð\93винеÑ\8f\91иÑ\81аÑ\83"
 
-#. language code: fiu
-#: zypp/LanguageCode.cc:441
-msgid "Finno-Ugrian (Other)"
-msgstr ""
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+#, fuzzy
+msgid "Guyana"
+msgstr "Гайана"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+#, fuzzy
+msgid "Hong Kong"
+msgstr "Гонконг (Хитоӣ)"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
 msgstr ""
 
-#. language code: fon
-#: zypp/LanguageCode.cc:443
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
 #, fuzzy
-msgid "Fon"
-msgstr "Ҳарфҳо"
+msgid "Honduras"
+msgstr "Гондурас"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+#, fuzzy
+msgid "Croatia"
+msgstr "Хорватия"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+#, fuzzy
+msgid "Haiti"
+msgstr "Гаити"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+#, fuzzy
+msgid "Hungary"
+msgstr "Венгрия"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+#, fuzzy
+msgid "Indonesia"
+msgstr "Индонезия"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+#, fuzzy
+msgid "Ireland"
+msgstr "Ирландия"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+#, fuzzy
+msgid "Israel"
+msgstr "Исроил"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+#, fuzzy
+msgid "India"
+msgstr "Ҳиндустон"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+#, fuzzy
+msgid "British Indian Ocean Territory"
+msgstr "Минтақаи Президентӣ"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+#, fuzzy
+msgid "Iraq"
+msgstr "Ироқ"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+#, fuzzy
+msgid "Iran"
+msgstr "Эрон"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+#, fuzzy
+msgid "Iceland"
+msgstr "Исландия"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+#, fuzzy
+msgid "Italy"
+msgstr "Италия"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+#, fuzzy
+msgid "Jamaica"
+msgstr "Ямайка"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+#, fuzzy
+msgid "Jordan"
+msgstr "Ӯрдун"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+#, fuzzy
+msgid "Japan"
+msgstr "Ҷопон"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+#, fuzzy
+msgid "Kenya"
+msgstr "Кения"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+#, fuzzy
+msgid "Kyrgyzstan"
+msgstr "Қирғизистон"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+#, fuzzy
+msgid "Cambodia"
+msgstr "Камбоҷия"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+#, fuzzy
+msgid "Kiribati"
+msgstr "Кирибатӣ"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+#, fuzzy
+msgid "Comoros"
+msgstr "Ҷазираҳои Комор"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+#, fuzzy
+msgid "Saint Kitts and Nevis"
+msgstr "Сент-Китс и Невис"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+#, fuzzy
+msgid "North Korea"
+msgstr "Кореяи Шимолӣ"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+#, fuzzy
+msgid "South Korea"
+msgstr "Кореяи Ҷанубӣ"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+#, fuzzy
+msgid "Kuwait"
+msgstr "Қувайт"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+#, fuzzy
+msgid "Cayman Islands"
+msgstr "Ҷазираҳои Кайман"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+#, fuzzy
+msgid "Kazakhstan"
+msgstr "Қазоқистон"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+#, fuzzy
+msgid "Lao People's Democratic Republic"
+msgstr "Ҷумҳурии Демократии Конго"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+#, fuzzy
+msgid "Lebanon"
+msgstr "Лубнон"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+#, fuzzy
+msgid "Saint Lucia"
+msgstr "Сент-Лусия"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+#, fuzzy
+msgid "Liechtenstein"
+msgstr "Лихтенштейн"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+#, fuzzy
+msgid "Sri Lanka"
+msgstr "Шри-Ланка"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+#, fuzzy
+msgid "Liberia"
+msgstr "Либерия"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+#, fuzzy
+msgid "Lesotho"
+msgstr "Лесото"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+#, fuzzy
+msgid "Lithuania"
+msgstr "Литва"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+#, fuzzy
+msgid "Luxembourg"
+msgstr "Люксембург"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+#, fuzzy
+msgid "Latvia"
+msgstr "Латвия"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+#, fuzzy
+msgid "Libya"
+msgstr "Либия"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+#, fuzzy
+msgid "Morocco"
+msgstr "Марокаш"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+#, fuzzy
+msgid "Monaco"
+msgstr "Монако"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+#, fuzzy
+msgid "Moldova"
+msgstr "Молдавия"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "Монтенегро"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "Сан-Марино"
+
+#: zypp/CountryCode.cc:298
+#, fuzzy
+msgid "Madagascar"
+msgstr "Мадагаскар"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+#, fuzzy
+msgid "Marshall Islands"
+msgstr "Ҷазираҳои Маршал"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+#, fuzzy
+msgid "Macedonia"
+msgstr "Мақдуния"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+#, fuzzy
+msgid "Mali"
+msgstr "Малӣ"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+#, fuzzy
+msgid "Myanmar"
+msgstr "Мянма"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+#, fuzzy
+msgid "Mongolia"
+msgstr "Муғулистон"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr ""
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr ""
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+#, fuzzy
+msgid "Martinique"
+msgstr "Мартиника"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+#, fuzzy
+msgid "Mauritania"
+msgstr "Мавритания"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+#, fuzzy
+msgid "Montserrat"
+msgstr "Монтсеррат"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+#, fuzzy
+msgid "Malta"
+msgstr "Малта"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+#, fuzzy
+msgid "Mauritius"
+msgstr "Маврикия"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+#, fuzzy
+msgid "Maldives"
+msgstr "Ҷазираҳои Малдив"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+#, fuzzy
+msgid "Malawi"
+msgstr "Малавӣ"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+#, fuzzy
+msgid "Mexico"
+msgstr "Мексика"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+#, fuzzy
+msgid "Malaysia"
+msgstr "Малайзия"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+#, fuzzy
+msgid "Mozambique"
+msgstr "Мозамбик"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+#, fuzzy
+msgid "Namibia"
+msgstr "Намибия"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+#, fuzzy
+msgid "New Caledonia"
+msgstr "Каледонияи Нав"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+#, fuzzy
+msgid "Niger"
+msgstr "Нигер"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+#, fuzzy
+msgid "Norfolk Island"
+msgstr "Ҷазираи Норфолк"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+#, fuzzy
+msgid "Nigeria"
+msgstr "Нигерия"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+#, fuzzy
+msgid "Nicaragua"
+msgstr "Никарагуа"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+#, fuzzy
+msgid "Netherlands"
+msgstr "Нидерланд"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+#, fuzzy
+msgid "Norway"
+msgstr "Норвегия"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+#, fuzzy
+msgid "Nepal"
+msgstr "Непал"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+#, fuzzy
+msgid "Nauru"
+msgstr "Науру"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+#, fuzzy
+msgid "Niue"
+msgstr "Ниуе"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+#, fuzzy
+msgid "New Zealand"
+msgstr "Зеландияи Нав"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
 #, fuzzy
-msgid "France"
-msgstr "ФаÑ\80онÑ\81а"
+msgid "Oman"
+msgstr "Уммон"
 
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
 #, fuzzy
-msgid "French"
-msgstr "ФаÑ\80онÑ\81авӣ"
+msgid "Panama"
+msgstr "Ð\9fанама"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
 #, fuzzy
-msgid "French Guiana"
-msgstr "ФаÑ\80онÑ\81авӣ"
+msgid "Peru"
+msgstr "Ð\9fеÑ\80Ñ\83"
 
 #. :PER:604:
 #: zypp/CountryCode.cc:331
@@ -1714,2131 +1650,2321 @@ msgstr "Фаронсавӣ"
 msgid "French Polynesia"
 msgstr "Полинезияи Франсузӣ"
 
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr ""
-
-#. language code: frm
-#: zypp/LanguageCode.cc:449
-msgid "French, Middle (ca.1400-1600)"
-msgstr ""
-
-#. language code: fro
-#: zypp/LanguageCode.cc:451
-msgid "French, Old (842-ca.1400)"
-msgstr ""
-
-#. language code: fry fy
-#: zypp/LanguageCode.cc:453
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
 #, fuzzy
-msgid "Frisian"
-msgstr "ФÑ\80иÑ\81ианӣ"
+msgid "Papua New Guinea"
+msgstr "Ð\9fапÑ\83а Ð\93винеÑ\8fи Ð\9dав"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
 #, fuzzy
-msgid "Friulian"
-msgstr "Джулия"
-
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
-msgstr ""
+msgid "Philippines"
+msgstr "Филиппин"
 
-#. language code: gaa
-#: zypp/LanguageCode.cc:459
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
 #, fuzzy
-msgid "Ga"
-msgstr "Ð\93Ñ\83ам"
+msgid "Pakistan"
+msgstr "Ð\9fокиÑ\81Ñ\82он"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
 #, fuzzy
-msgid "Gabon"
-msgstr "Габон"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr ""
+msgid "Poland"
+msgstr "Полша"
 
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
+#. :POL:616:
+#: zypp/CountryCode.cc:336
 #, fuzzy
-msgid "Galician"
-msgstr "Ð\93аллӣ"
+msgid "Saint Pierre and Miquelon"
+msgstr "Сен-Ð\9fÑ\8cеÑ\80 Ð¸ Ð\9cикелон"
 
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
 #, fuzzy
-msgid "Gambia"
-msgstr "Ð\93амбиÑ\8f"
+msgid "Pitcairn"
+msgstr "Ð\9fиÑ\82каиÑ\80н"
 
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
 #, fuzzy
-msgid "Ganda"
-msgstr "Руанда"
-
-#. language code: gay
-#: zypp/LanguageCode.cc:461
-msgid "Gayo"
-msgstr ""
+msgid "Puerto Rico"
+msgstr "Пуэрто Рико"
 
-#. language code: gba
-#: zypp/LanguageCode.cc:463
-msgid "Gbaya"
-msgstr ""
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+#, fuzzy
+msgid "Palestinian Territory"
+msgstr "Минтақаи Президентӣ"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr ""
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+#, fuzzy
+msgid "Portugal"
+msgstr "Португалия"
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
 #, fuzzy
-msgid "Georgia"
-msgstr "Ð\93Ñ\83Ñ\80ҷиÑ\81Ñ\82он"
+msgid "Palau"
+msgstr "Ð\9fалоÑ\81"
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
 #, fuzzy
-msgid "Georgian"
-msgstr "Ð\93Ñ\83Ñ\80ҷиÑ\81Ñ\82он"
+msgid "Paraguay"
+msgstr "Ð\9fаÑ\80агвай"
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
 #, fuzzy
-msgid "German"
-msgstr "Олмонӣ"
+msgid "Qatar"
+msgstr "Қатар"
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
 msgstr ""
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
-msgstr ""
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+#, fuzzy
+msgid "Romania"
+msgstr "Руминия"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "Сербӣ"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
 msgstr ""
 
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
 #, fuzzy
-msgid "Germany"
-msgstr "Ð\93еÑ\80маниÑ\8f"
+msgid "Rwanda"
+msgstr "РÑ\83анда"
 
-#: zypp/CountryCode.cc:238
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
 #, fuzzy
-msgid "Ghana"
-msgstr "Ð\93ана"
+msgid "Saudi Arabia"
+msgstr "Ð\90Ñ\80абиÑ\81Ñ\82они Ð¡Ð°Ñ\83дӣ"
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
 #, fuzzy
-msgid "Gibraltar"
-msgstr "Гибралтар"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr ""
-
-#. language code: gon
-#: zypp/LanguageCode.cc:491
-msgid "Gondi"
-msgstr ""
+msgid "Solomon Islands"
+msgstr "Ҷазираҳои Соломон"
 
-#. language code: gor
-#: zypp/LanguageCode.cc:493
-msgid "Gorontalo"
-msgstr ""
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+#, fuzzy
+msgid "Seychelles"
+msgstr "Ҷазираҳои Сейшелӣ"
 
-#. language code: got
-#: zypp/LanguageCode.cc:495
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
 #, fuzzy
-msgid "Gothic"
-msgstr "ickle"
+msgid "Sudan"
+msgstr "Судон"
 
-#. language code: grb
-#: zypp/LanguageCode.cc:497
-msgid "Grebo"
-msgstr ""
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+#, fuzzy
+msgid "Sweden"
+msgstr "Шветсия"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
 #, fuzzy
-msgid "Greece"
-msgstr "Юнон"
+msgid "Singapore"
+msgstr "СингапÑ\83Ñ\80"
 
-#. language code: grc
-#: zypp/LanguageCode.cc:499
-msgid "Greek, Ancient (to 1453)"
-msgstr ""
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+#, fuzzy
+msgid "Saint Helena"
+msgstr "Ҷазираи Ҳазрати Елена"
 
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+#, fuzzy
+msgid "Slovenia"
+msgstr "Словения"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
 #, fuzzy
-msgid "Greenland"
-msgstr "Ð\93Ñ\80енландия"
+msgid "Slovakia"
+msgstr "Словакия"
 
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
 #, fuzzy
-msgid "Grenada"
-msgstr "Ð\93Ñ\80енада"
+msgid "Sierra Leone"
+msgstr "СиеÑ\80а-Ð\9bеоне"
 
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
 #, fuzzy
-msgid "Guadeloupe"
-msgstr "Ð\93ваделÑ\83па"
+msgid "San Marino"
+msgstr "Сан-Ð\9cаÑ\80ино"
 
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
 #, fuzzy
-msgid "Guam"
-msgstr "Ð\93Ñ\83ам"
+msgid "Senegal"
+msgstr "Сенегал"
 
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
-msgstr ""
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+#, fuzzy
+msgid "Somalia"
+msgstr "Сомалӣ"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
 #, fuzzy
-msgid "Guatemala"
-msgstr "Ð\93ваÑ\82емала"
+msgid "Suriname"
+msgstr "СÑ\83Ñ\80инам"
 
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr ""
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+#, fuzzy
+msgid "Sao Tome and Principe"
+msgstr "Сан-Томе и Принсипи"
 
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
+#. :STP:678:
+#: zypp/CountryCode.cc:365
 #, fuzzy
-msgid "Guinea"
-msgstr "Ð\93винеÑ\8f"
+msgid "El Salvador"
+msgstr "СалвадоÑ\80"
 
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
 #, fuzzy
-msgid "Guinea-Bissau"
-msgstr "Ð\93винеÑ\8f\91иÑ\81аÑ\83"
+msgid "Syria"
+msgstr "СÑ\83Ñ\80иÑ\8f"
 
-#. language code: guj gu
-#: zypp/LanguageCode.cc:507
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
 #, fuzzy
-msgid "Gujarati"
-msgstr "Ð\93Ñ\83ҷаÑ\80аÑ\82Ó£"
+msgid "Swaziland"
+msgstr "Свазиленд"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
 #, fuzzy
-msgid "Guyana"
-msgstr "Гайана"
+msgid "Turks and Caicos Islands"
+msgstr "Ҷазираҳои Теркс ва Кайкос"
 
-#. language code: gwi
-#: zypp/LanguageCode.cc:509
-msgid "Gwich'in"
-msgstr ""
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+#, fuzzy
+msgid "Chad"
+msgstr "Чад"
 
-#. language code: hai
-#: zypp/LanguageCode.cc:511
-msgid "Haida"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
 #, fuzzy
-msgid "Haiti"
-msgstr "Ð\93аиÑ\82и"
+msgid "Togo"
+msgstr "Того"
 
-#. language code: hat ht
-#: zypp/LanguageCode.cc:513
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
 #, fuzzy
-msgid "Haitian"
-msgstr "Ð\93аиÑ\82и"
+msgid "Thailand"
+msgstr "Таиланд"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr ""
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+#, fuzzy
+msgid "Tajikistan"
+msgstr "Тоҷикистон"
 
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr ""
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+#, fuzzy
+msgid "Tokelau"
+msgstr "Токелау"
 
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+#, fuzzy
+msgid "Turkmenistan"
+msgstr "Туркманистон"
 
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+#, fuzzy
+msgid "Tunisia"
+msgstr "Тунис"
 
-#. language code: hau ha
-#: zypp/LanguageCode.cc:515
-msgid "Hausa"
-msgstr ""
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+#, fuzzy
+msgid "Tonga"
+msgstr "Тонга"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+#, fuzzy
+msgid "East Timor"
+msgstr "Тимори Шарқӣ"
 
-#. language code: haw
-#: zypp/LanguageCode.cc:517
-msgid "Hawaiian"
-msgstr ""
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+#, fuzzy
+msgid "Turkey"
+msgstr "Туркия"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr ""
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+#, fuzzy
+msgid "Trinidad and Tobago"
+msgstr "Тринидад ва Тобаго"
 
-#. language code: heb he
-#: zypp/LanguageCode.cc:519
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
 #, fuzzy
-msgid "Hebrew"
-msgstr "ЯҳÑ\83дӣ"
+msgid "Tuvalu"
+msgstr "ТÑ\83валÑ\83"
 
-#. language code: her hz
-#: zypp/LanguageCode.cc:521
-msgid "Herero"
-msgstr ""
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+#, fuzzy
+msgid "Taiwan"
+msgstr "Тайван"
 
-#. language code: hil
-#: zypp/LanguageCode.cc:523
-msgid "Hiligaynon"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
 msgstr ""
 
-#. language code: him
-#: zypp/LanguageCode.cc:525
-msgid "Himachali"
-msgstr ""
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+#, fuzzy
+msgid "Ukraine"
+msgstr "Украина"
 
-#. language code: hin hi
-#: zypp/LanguageCode.cc:527
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
 #, fuzzy
-msgid "Hindi"
-msgstr "Ҳиндӣ"
+msgid "Uganda"
+msgstr "Уганда"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
 msgstr ""
 
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
 #, fuzzy
-msgid "History:"
-msgstr "ТаÑ\8aÑ\80иÑ\85"
+msgid "United States"
+msgstr "ШÑ\82аÑ\82ҳои Ð\9cÑ\83Ñ\82Ñ\82аҳидаи Ð\90мÑ\80икоӣ"
 
-#. language code: hit
-#: zypp/LanguageCode.cc:529
-msgid "Hittite"
-msgstr ""
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+#, fuzzy
+msgid "Uruguay"
+msgstr "Уругвай"
 
-#. language code: hmn
-#: zypp/LanguageCode.cc:531
-msgid "Hmong"
-msgstr ""
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+#, fuzzy
+msgid "Uzbekistan"
+msgstr "Ӯзбекистон"
 
 #. :UZB:860:
 #: zypp/CountryCode.cc:390
 msgid "Holy See (Vatican City State)"
 msgstr ""
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
 #, fuzzy
-msgid "Honduras"
-msgstr "Ð\93ондÑ\83Ñ\80аÑ\81"
+msgid "Saint Vincent and the Grenadines"
+msgstr "СенÑ\82\92инÑ\81енÑ\82 Ð²Ð° Ð\93Ñ\80енадин"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
 #, fuzzy
-msgid "Hong Kong"
-msgstr "Ð\93онконг (ХиÑ\82оӣ)"
+msgid "Venezuela"
+msgstr "Ð\92енеÑ\81Ñ\83Ñ\8dла"
 
-#. language code: hun hu
-#: zypp/LanguageCode.cc:537
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
 #, fuzzy
-msgid "Hungarian"
-msgstr "Венгерӣ"
+msgid "British Virgin Islands"
+msgstr "Ҷазираҳои Виргин(ШМА)"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
 #, fuzzy
-msgid "Hungary"
-msgstr "Венгрия"
-
-#. language code: hup
-#: zypp/LanguageCode.cc:539
-msgid "Hupa"
-msgstr ""
-
-#. language code: iba
-#: zypp/LanguageCode.cc:541
-msgid "Iban"
-msgstr ""
+msgid "Virgin Islands, U.S."
+msgstr "Ҷазираҳои Виргин(ШМА)"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
 #, fuzzy
-msgid "Iceland"
-msgstr "Ð\98Ñ\81ландиÑ\8f"
+msgid "Vietnam"
+msgstr "Ð\92еÑ\82нам"
 
-#. language code: ice isl is
-#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
 #, fuzzy
-msgid "Icelandic"
-msgstr "Исландӣ"
-
-#. language code: ido io
-#: zypp/LanguageCode.cc:549
-msgid "Ido"
-msgstr ""
-
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr ""
-
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
-msgstr ""
+msgid "Vanuatu"
+msgstr "Вануату"
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr ""
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+#, fuzzy
+msgid "Wallis and Futuna"
+msgstr "Острова Уоллис и Футуна"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr ""
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+#, fuzzy
+msgid "Samoa"
+msgstr "Самоа"
 
-#: zypp/CountryCode.cc:261
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
 #, fuzzy
-msgid "India"
-msgstr "Ҳиндустон"
+msgid "Yemen"
+msgstr "Яман"
 
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr ""
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+#, fuzzy
+msgid "South Africa"
+msgstr "Ҷумҳурии Африкаи Ҷанубӣ"
 
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
 #, fuzzy
-msgid "Indonesia"
-msgstr "Ð\98ндонезия"
+msgid "Zambia"
+msgstr "Ð\97амбия"
 
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
 #, fuzzy
-msgid "Indonesian"
-msgstr "Ð\98ндонезиÑ\8f"
+msgid "Zimbabwe"
+msgstr "Ð\97имбабве"
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
+#. language code: ace
+#: zypp/LanguageCode.cc:165
 #, fuzzy
-msgid "Interlingue"
-msgstr "Ð\98нÑ\82еÑ\80Ñ\84еÑ\80енÑ\86иÑ\8f"
+msgid "Achinese"
+msgstr "ХиÑ\82ой"
 
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+#, fuzzy
+msgid "Afrihili"
+msgstr "Майтифил"
 
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+#, fuzzy
+msgid "Afrikaans"
+msgstr "Африкоӣ"
 
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
 msgstr ""
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+#, fuzzy
+msgid "Albanian"
+msgstr "Албания"
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+#, fuzzy
+msgid "Algonquian Languages"
+msgstr "Забонҳои система"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+#, fuzzy
+msgid "Southern Altai"
+msgstr "Ирландӣ (Самӣ)"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Вычисление выражений"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr ""
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+#, fuzzy
+msgid "Arabic"
+msgstr "Арабӣ"
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
+#. language code: arc
+#: zypp/LanguageCode.cc:203
 #, fuzzy
-msgid "Iran"
-msgstr "ЭÑ\80он"
+msgid "Aramaic"
+msgstr "Ямайка"
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
 #, fuzzy
-msgid "Iraq"
-msgstr "Ð\98Ñ\80оÒ\9b"
+msgid "Armenian"
+msgstr "Ð\90Ñ\80маниÑ\81Ñ\82он"
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
+#. language code: arn
+#: zypp/LanguageCode.cc:211
 #, fuzzy
-msgid "Ireland"
-msgstr "Ð\98Ñ\80ландиÑ\8f"
+msgid "Araucanian"
+msgstr "УкÑ\80аинӣ"
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-#, fuzzy
-msgid "Irish"
-msgstr "Ирландӣ"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr ""
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#. language code: iro
-#: zypp/LanguageCode.cc:575
-msgid "Iroquoian Languages"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
 msgstr ""
 
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-#, fuzzy
-msgid "Israel"
-msgstr "Исроил"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr ""
 
-#. language code: ita it
-#: zypp/LanguageCode.cc:577
+#. language code: aus
+#: zypp/LanguageCode.cc:225
 #, fuzzy
-msgid "Italian"
-msgstr "Ð\98Ñ\82олиÑ\91Ó£"
+msgid "Australian Languages"
+msgstr "Ð\97абонҳои Ñ\81иÑ\81Ñ\82емаи KDE"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-#, fuzzy
-msgid "Italy"
-msgstr "Италия"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr ""
 
-#: zypp/CountryCode.cc:268
-#, fuzzy
-msgid "Jamaica"
-msgstr "Ямайка"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr ""
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-#, fuzzy
-msgid "Japan"
-msgstr "Ҷопон"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr ""
 
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr ""
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
 #, fuzzy
-msgid "Japanese"
-msgstr "Ҷопонӣ"
+msgid "Azerbaijani"
+msgstr "Озорбойҷонӣ"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
+#. language code: bad
+#: zypp/LanguageCode.cc:237
 #, fuzzy
-msgid "Javanese"
-msgstr "Ҷопонӣ"
+msgid "Banda"
+msgstr "Руанда"
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr ""
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr ""
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr ""
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
 #, fuzzy
-msgid "Jordan"
-msgstr "Ӯрдун"
+msgid "Balinese"
+msgstr "Хитой"
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 #, fuzzy
-msgid "Judeo-Arabic"
-msgstr "Ð\90Ñ\80абӣ"
+msgid "Basque"
+msgstr "Ð\91аÑ\81кӣ"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
 msgstr ""
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#. language code: kab
-#: zypp/LanguageCode.cc:591
-msgid "Kabyle"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
 msgstr ""
 
-#. language code: kac
-#: zypp/LanguageCode.cc:593
-msgid "Kachin"
-msgstr ""
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+#, fuzzy
+msgid "Belarusian"
+msgstr "Белорусӣ"
 
-#. language code: kal kl
-#: zypp/LanguageCode.cc:595
-msgid "Kalaallisut"
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+#, fuzzy
+msgid "Bengali"
+msgstr "Бенгалӣ"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#. language code: kam
-#: zypp/LanguageCode.cc:597
-msgid "Kamba"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#. language code: kan kn
-#: zypp/LanguageCode.cc:599
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
 #, fuzzy
-msgid "Kannada"
-msgstr "Ð\9aанада"
+msgid "Bihari"
+msgstr "Ð\94аÑ\81Ñ\82Ñ\80аÑ\81Ó£"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
 msgstr ""
 
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#. language code: kar
-#: zypp/LanguageCode.cc:601
-msgid "Karen"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. language code: kas ks
-#: zypp/LanguageCode.cc:603
-msgid "Kashmiri"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
 #, fuzzy
-msgid "Kashubian"
-msgstr "Ð\9aоÑ\88ӯбиявӣ"
+msgid "Bosnian"
+msgstr "Ð\91оÑ\81ниявӣ"
 
-#. language code: kaw
-#: zypp/LanguageCode.cc:607
-msgid "Kawi"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#. language code: kaz kk
-#: zypp/LanguageCode.cc:609
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
 #, fuzzy
-msgid "Kazakh"
-msgstr "Қазоқӣ"
+msgid "Breton"
+msgstr "Бритонӣ"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
+#. language code: btk
+#: zypp/LanguageCode.cc:287
 #, fuzzy
-msgid "Kazakhstan"
-msgstr "Қазоқистон"
+msgid "Batak (Indonesia)"
+msgstr "Индонезия"
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr ""
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
 #, fuzzy
-msgid "Kenya"
-msgstr "Ð\9aениÑ\8f"
+msgid "Buginese"
+msgstr "ХиÑ\82ой"
 
-#. language code: kha
-#: zypp/LanguageCode.cc:613
-msgid "Khasi"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+#, fuzzy
+msgid "Bulgarian"
+msgstr "Булғорӣ"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
+#. language code: byn
+#: zypp/LanguageCode.cc:299
 #, fuzzy
-msgid "Khmer"
-msgstr "ХмеÑ\80Ó£"
+msgid "Blin"
+msgstr "Ð\9aÓ¯Ñ\80аÑ\87аҳои Ð¼Ð°Ð½Ñ\8aÑ\88Ñ\83да"
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
 msgstr ""
 
-#. language code: kho
-#: zypp/LanguageCode.cc:619
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr ""
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
 #, fuzzy
-msgid "Khotanese"
-msgstr "Хитой"
+msgid "Carib"
+msgstr "Ҷазираҳои Кариб"
 
-#. language code: kik ki
-#: zypp/LanguageCode.cc:621
-msgid "Kikuyu"
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+#, fuzzy
+msgid "Catalan"
+msgstr "Каталанӣ"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
 msgstr ""
 
-#. language code: kin rw
-#: zypp/LanguageCode.cc:623
-#, fuzzy
-msgid "Kinyarwanda"
-msgstr "Кинярвандӣ"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr ""
 
-#. language code: kir ky
-#: zypp/LanguageCode.cc:625
-msgid "Kirghiz"
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-#, fuzzy
-msgid "Kiribati"
-msgstr "Кирибатӣ"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
 msgstr ""
 
-#. language code: kom kv
-#: zypp/LanguageCode.cc:631
-msgid "Komi"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. language code: kon kg
-#: zypp/LanguageCode.cc:633
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 #, fuzzy
-msgid "Kongo"
-msgstr "Ð\9aонго"
+msgid "Chinese"
+msgstr "ХиÑ\82ой"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
 msgstr ""
 
-#. language code: kor ko
-#: zypp/LanguageCode.cc:635
-#, fuzzy
-msgid "Korean"
-msgstr "Кореягӣ"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr ""
 
-#. language code: kos
-#: zypp/LanguageCode.cc:637
-msgid "Kosraean"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. language code: kpe
-#: zypp/LanguageCode.cc:639
-#, fuzzy
-msgid "Kpelle"
-msgstr "psselect"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr ""
 
-#. language code: kro
-#: zypp/LanguageCode.cc:643
-msgid "Kru"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#. language code: kua kj
-#: zypp/LanguageCode.cc:647
-msgid "Kuanyama"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. language code: kum
-#: zypp/LanguageCode.cc:649
-msgid "Kumyk"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
 msgstr ""
 
-#. language code: kur ku
-#: zypp/LanguageCode.cc:651
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr ""
+
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr ""
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr ""
+
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr ""
+
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
 #, fuzzy
-msgid "Kurdish"
-msgstr "Ð\9aÑ\83Ñ\80дӣ"
+msgid "Cornish"
+msgstr "Ð\94аниÑ\8fгӣ"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
 msgstr ""
 
-#. language code: kut
-#: zypp/LanguageCode.cc:653
-msgid "Kutenai"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-#, fuzzy
-msgid "Kuwait"
-msgstr "Қувайт"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr ""
 
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-#, fuzzy
-msgid "Kyrgyzstan"
-msgstr "Қирғизистон"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr ""
 
-#. language code: lad
-#: zypp/LanguageCode.cc:655
-msgid "Ladino"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
 
-#. language code: lah
-#: zypp/LanguageCode.cc:657
-msgid "Lahnda"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
 msgstr ""
 
-#. language code: lam
-#: zypp/LanguageCode.cc:659
-msgid "Lamba"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-#. language code: lao lo
-#: zypp/LanguageCode.cc:661
+#. language code: csb
+#: zypp/LanguageCode.cc:365
 #, fuzzy
-msgid "Lao"
-msgstr "Ð\9bаоÑ\81"
+msgid "Kashubian"
+msgstr "Ð\9aоÑ\88ӯбиÑ\8fвӣ"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr ""
+
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 #, fuzzy
-msgid "Lao People's Democratic Republic"
-msgstr "Ҷумҳурии Демократии Конго"
+msgid "Czech"
+msgstr "Чехӣ"
 
-#. language code: lat la
-#: zypp/LanguageCode.cc:663
-msgid "Latin"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
 msgstr ""
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
 #, fuzzy
-msgid "Latvia"
-msgstr "Ð\9bаÑ\82виÑ\8f"
+msgid "Danish"
+msgstr "Ð\94аниÑ\8fгӣ"
 
-#. language code: lav lv
-#: zypp/LanguageCode.cc:665
-#, fuzzy
-msgid "Latvian"
-msgstr "Латвиягӣ"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr ""
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-#, fuzzy
-msgid "Lebanon"
-msgstr "Лубнон"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr ""
 
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
+#. language code: del
+#: zypp/LanguageCode.cc:381
 #, fuzzy
-msgid "Lesotho"
-msgstr "Ð\9bеÑ\81оÑ\82о"
+msgid "Delaware"
+msgstr "СаÑ\85Ñ\82аÑ\84зоÑ\80"
 
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
 msgstr ""
 
-#. language code: lez
-#: zypp/LanguageCode.cc:667
-msgid "Lezghian"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-#, fuzzy
-msgid "Liberia"
-msgstr "Либерия"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-#, fuzzy
-msgid "Libya"
-msgstr "Либия"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr ""
 
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-#, fuzzy
-msgid "Liechtenstein"
-msgstr "Лихтенштейн"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr ""
 
-#. language code: lim li
-#: zypp/LanguageCode.cc:669
-msgid "Limburgan"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
 msgstr ""
 
-#. language code: lin ln
-#: zypp/LanguageCode.cc:671
-msgid "Lingala"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-#, fuzzy
-msgid "Lithuania"
-msgstr "Литва"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr ""
 
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 #, fuzzy
-msgid "Lithuanian"
-msgstr "Ð\9bиÑ\82виÑ\8fгӣ"
+msgid "Dutch"
+msgstr "Ð\9eлмонӣ"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
 
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-#, fuzzy
-msgid "Low German"
-msgstr "Олмонӣ"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr ""
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#. language code: loz
-#: zypp/LanguageCode.cc:677
-msgid "Lozi"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+#, fuzzy
+msgid "English"
+msgstr "Англисӣ"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. language code: lui
-#: zypp/LanguageCode.cc:687
-msgid "Luiseno"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+#, fuzzy
+msgid "Esperanto"
+msgstr "Эсперанто"
+
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+#, fuzzy
+msgid "Estonian"
+msgstr "Эстонӣ"
+
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+#, fuzzy
+msgid "Ewondo"
+msgstr "Дондорф"
+
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
 
-#. language code: lun
-#: zypp/LanguageCode.cc:689
-msgid "Lunda"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
 msgstr ""
 
-#. language code: luo
-#: zypp/LanguageCode.cc:691
-msgid "Luo (Kenya and Tanzania)"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#. language code: lus
-#: zypp/LanguageCode.cc:693
-msgid "Lushai"
-msgstr ""
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+#, fuzzy
+msgid "Fijian"
+msgstr "Фиҷи"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
+#. language code: fil
+#: zypp/LanguageCode.cc:437
 #, fuzzy
-msgid "Luxembourg"
-msgstr "Ð\9bÑ\8eкÑ\81ембÑ\83Ñ\80г"
+msgid "Filipino"
+msgstr "Филиппин"
 
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
+#. language code: fin fi
+#: zypp/LanguageCode.cc:439
 #, fuzzy
-msgid "Luxembourgish"
-msgstr "Ð\9bÑ\8eкÑ\81ембÑ\83Ñ\80г"
+msgid "Finnish"
+msgstr "Финӣ"
 
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
+#. language code: fiu
+#: zypp/LanguageCode.cc:441
+msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-#, fuzzy
-msgid "Macedonia"
-msgstr "Мақдуния"
-
-#. language code: mac mkd mk
-#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
+#. language code: fon
+#: zypp/LanguageCode.cc:443
 #, fuzzy
-msgid "Macedonian"
-msgstr "Мақдунӣ"
+msgid "Fon"
+msgstr "Ҳарфҳо"
 
-#: zypp/CountryCode.cc:298
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 #, fuzzy
-msgid "Madagascar"
-msgstr "Ð\9cадагаÑ\81каÑ\80"
+msgid "French"
+msgstr "ФаÑ\80онÑ\81авӣ"
 
-#. language code: mad
-#: zypp/LanguageCode.cc:699
-msgid "Madurese"
+#. language code: frm
+#: zypp/LanguageCode.cc:449
+msgid "French, Middle (ca.1400-1600)"
 msgstr ""
 
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
+#. language code: fro
+#: zypp/LanguageCode.cc:451
+msgid "French, Old (842-ca.1400)"
 msgstr ""
 
-#. language code: mai
-#: zypp/LanguageCode.cc:705
+#. language code: fry fy
+#: zypp/LanguageCode.cc:453
 #, fuzzy
-msgid "Maithili"
-msgstr "Ð\9cайÑ\82иÑ\84ил"
+msgid "Frisian"
+msgstr "ФÑ\80иÑ\81ианӣ"
 
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
+#. language code: fur
+#: zypp/LanguageCode.cc:457
 #, fuzzy
-msgid "Malagasy"
-msgstr "Ð\9cалаӣ"
+msgid "Friulian"
+msgstr "Ð\94жÑ\83лиÑ\8f"
 
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
+#. language code: gaa
+#: zypp/LanguageCode.cc:459
 #, fuzzy
-msgid "Malawi"
-msgstr "Ð\9cалавӣ"
+msgid "Ga"
+msgstr "Ð\93Ñ\83ам"
 
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-#, fuzzy
-msgid "Malay"
-msgstr "Малаӣ"
+#. language code: gay
+#: zypp/LanguageCode.cc:461
+msgid "Gayo"
+msgstr ""
 
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-#, fuzzy
-msgid "Malayalam"
-msgstr "Малаямӣ"
+#. language code: gba
+#: zypp/LanguageCode.cc:463
+msgid "Gbaya"
+msgstr ""
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr ""
+
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
 #, fuzzy
-msgid "Malaysia"
-msgstr "Ð\9cалайзиÑ\8f"
+msgid "Georgian"
+msgstr "Ð\93Ñ\83Ñ\80ҷиÑ\81Ñ\82он"
 
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
 #, fuzzy
-msgid "Maldives"
-msgstr "Ҷазираҳои Малдив"
+msgid "German"
+msgstr "Олмонӣ"
 
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
 msgstr ""
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-#, fuzzy
-msgid "Mali"
-msgstr "Малӣ"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr ""
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr ""
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
 #, fuzzy
-msgid "Malta"
-msgstr "Ð\9cалÑ\82а"
+msgid "Irish"
+msgstr "Ð\98Ñ\80ландӣ"
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
 #, fuzzy
-msgid "Maltese"
-msgstr "Ð\9cалÑ\82а"
+msgid "Galician"
+msgstr "Ð\93аллӣ"
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
 msgstr ""
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
+msgstr ""
+
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
+msgstr ""
+
+#. language code: gon
+#: zypp/LanguageCode.cc:491
+msgid "Gondi"
+msgstr ""
+
+#. language code: gor
+#: zypp/LanguageCode.cc:493
+msgid "Gorontalo"
+msgstr ""
+
+#. language code: got
+#: zypp/LanguageCode.cc:495
 #, fuzzy
-msgid "Mandar"
-msgstr "Тақвим"
+msgid "Gothic"
+msgstr "ickle"
 
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
+#. language code: grb
+#: zypp/LanguageCode.cc:497
+msgid "Grebo"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
+#. language code: grc
+#: zypp/LanguageCode.cc:499
+msgid "Greek, Ancient (to 1453)"
 msgstr ""
 
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
 msgstr ""
 
-#. language code: mao mri mi
-#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
-msgid "Maori"
+#. language code: guj gu
+#: zypp/LanguageCode.cc:507
+#, fuzzy
+msgid "Gujarati"
+msgstr "Гуҷаратӣ"
+
+#. language code: gwi
+#: zypp/LanguageCode.cc:509
+msgid "Gwich'in"
+msgstr ""
+
+#. language code: hai
+#: zypp/LanguageCode.cc:511
+msgid "Haida"
 msgstr ""
 
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
+#. language code: hat ht
+#: zypp/LanguageCode.cc:513
 #, fuzzy
-msgid "Marathi"
-msgstr "Ð\9cаÑ\80авӣ"
+msgid "Haitian"
+msgstr "Ð\93аиÑ\82и"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
+#. language code: hau ha
+#: zypp/LanguageCode.cc:515
+msgid "Hausa"
 msgstr ""
 
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-#, fuzzy
-msgid "Marshall Islands"
-msgstr "Ҷазираҳои Маршал"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-#, fuzzy
-msgid "Marshallese"
-msgstr "Ҷазираҳои Маршал"
+#. language code: haw
+#: zypp/LanguageCode.cc:517
+msgid "Hawaiian"
+msgstr ""
 
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
+#. language code: heb he
+#: zypp/LanguageCode.cc:519
 #, fuzzy
-msgid "Martinique"
-msgstr "Ð\9cаÑ\80Ñ\82иника"
+msgid "Hebrew"
+msgstr "ЯҳÑ\83дӣ"
 
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
+#. language code: her hz
+#: zypp/LanguageCode.cc:521
+msgid "Herero"
 msgstr ""
 
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
+#. language code: hil
+#: zypp/LanguageCode.cc:523
+msgid "Hiligaynon"
 msgstr ""
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-#, fuzzy
-msgid "Mauritania"
-msgstr "Мавритания"
+#. language code: him
+#: zypp/LanguageCode.cc:525
+msgid "Himachali"
+msgstr ""
 
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
+#. language code: hin hi
+#: zypp/LanguageCode.cc:527
 #, fuzzy
-msgid "Mauritius"
-msgstr "Маврикия"
+msgid "Hindi"
+msgstr "Ҳиндӣ"
 
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
+#. language code: hit
+#: zypp/LanguageCode.cc:529
+msgid "Hittite"
 msgstr ""
 
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
+#. language code: hmn
+#: zypp/LanguageCode.cc:531
+msgid "Hmong"
 msgstr ""
 
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
 msgstr ""
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: hun hu
+#: zypp/LanguageCode.cc:537
+#, fuzzy
+msgid "Hungarian"
+msgstr "Венгерӣ"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: hup
+#: zypp/LanguageCode.cc:539
+msgid "Hupa"
 msgstr ""
 
-#. language code: men
-#: zypp/LanguageCode.cc:731
-msgid "Mende"
+#. language code: iba
+#: zypp/LanguageCode.cc:541
+msgid "Iban"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
+#. language code: ice isl is
+#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
 #, fuzzy
-msgid "Mexico"
-msgstr "Ð\9cекÑ\81ика"
+msgid "Icelandic"
+msgstr "Ð\98Ñ\81ландӣ"
 
-#. language code: mic
-#: zypp/LanguageCode.cc:735
-msgid "Mi'kmaq"
+#. language code: ido io
+#: zypp/LanguageCode.cc:549
+msgid "Ido"
 msgstr ""
 
-#. language code: min
-#: zypp/LanguageCode.cc:737
-msgid "Minangkabau"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+#, fuzzy
+msgid "Sichuan Yi"
+msgstr "Литва"
+
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
 msgstr ""
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
 #, fuzzy
-msgid "Miscellaneous Languages"
-msgstr "(7) Барномаҳои гуногун"
+msgid "Interlingue"
+msgstr "Интерференция"
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-#, fuzzy
-msgid "Moldavian"
-msgstr "Молдавия"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr ""
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
 #, fuzzy
-msgid "Moldova"
-msgstr "Ð\9cолдавия"
+msgid "Indonesian"
+msgstr "Ð\98ндонезия"
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-#, fuzzy
-msgid "Monaco"
-msgstr "Монако"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr ""
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-#, fuzzy
-msgid "Mongo"
-msgstr "Конго"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr ""
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-#, fuzzy
-msgid "Mongolia"
-msgstr "Муғулистон"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
+msgstr ""
 
-#. language code: mon mn
-#: zypp/LanguageCode.cc:757
-#, fuzzy
-msgid "Mongolian"
-msgstr "Mуғулӣ"
+#. language code: iro
+#: zypp/LanguageCode.cc:575
+msgid "Iroquoian Languages"
+msgstr ""
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
+#. language code: ita it
+#: zypp/LanguageCode.cc:577
 #, fuzzy
-msgid "Montenegro"
-msgstr "Ð\9cонÑ\82енегÑ\80о"
+msgid "Italian"
+msgstr "Ð\98Ñ\82олиÑ\91Ó£"
 
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
 #, fuzzy
-msgid "Montserrat"
-msgstr "Монтсеррат"
+msgid "Javanese"
+msgstr "Ҷопонӣ"
 
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr ""
+
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
 #, fuzzy
-msgid "Morocco"
-msgstr "Марокаш"
+msgid "Japanese"
+msgstr "Ҷопонӣ"
 
-#. language code: mos
-#: zypp/LanguageCode.cc:759
-msgid "Mossi"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
 #, fuzzy
-msgid "Mozambique"
-msgstr "Ð\9cозамбик"
+msgid "Judeo-Arabic"
+msgstr "Ð\90Ñ\80абӣ"
 
-#. language code: mul
-#: zypp/LanguageCode.cc:761
-#, fuzzy
-msgid "Multiple Languages"
-msgstr "Маҷмӯйи экранҳо"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr ""
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
+#. language code: kab
+#: zypp/LanguageCode.cc:591
+msgid "Kabyle"
 msgstr ""
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-#, fuzzy
-msgid "Myanmar"
-msgstr "Мянма"
+#. language code: kac
+#: zypp/LanguageCode.cc:593
+msgid "Kachin"
+msgstr ""
 
-#. language code: nah
-#: zypp/LanguageCode.cc:775
-msgid "Nahuatl"
+#. language code: kal kl
+#: zypp/LanguageCode.cc:595
+msgid "Kalaallisut"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-#, fuzzy
-msgid "Namibia"
-msgstr "Намибия"
+#. language code: kam
+#: zypp/LanguageCode.cc:597
+msgid "Kamba"
+msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+#. language code: kan kn
+#: zypp/LanguageCode.cc:599
 #, fuzzy
-msgid "Nauru"
-msgstr "Ð\9dаÑ\83Ñ\80Ñ\83"
+msgid "Kannada"
+msgstr "Ð\9aанада"
 
-#. language code: nav nv
-#: zypp/LanguageCode.cc:783
-msgid "Navajo"
+#. language code: kar
+#: zypp/LanguageCode.cc:601
+msgid "Karen"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
+#. language code: kas ks
+#: zypp/LanguageCode.cc:603
+msgid "Kashmiri"
 msgstr ""
 
-#. language code: nbl nr
-#: zypp/LanguageCode.cc:785
-msgid "Ndebele, South"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
+#. language code: kaw
+#: zypp/LanguageCode.cc:607
+msgid "Kawi"
+msgstr ""
+
+#. language code: kaz kk
+#: zypp/LanguageCode.cc:609
 #, fuzzy
-msgid "Ndonga"
-msgstr "Тонга"
+msgid "Kazakh"
+msgstr "Қазоқӣ"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-#, fuzzy
-msgid "Nepal"
-msgstr "Непал"
+#. language code: kha
+#: zypp/LanguageCode.cc:613
+msgid "Khasi"
+msgstr ""
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-#, fuzzy
-msgid "Nepal Bhasa"
-msgstr "Непал"
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
+msgstr ""
 
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
 #, fuzzy
-msgid "Nepali"
-msgstr "Ð\9dепал"
+msgid "Khmer"
+msgstr "ХмеÑ\80Ó£"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
+#. language code: kho
+#: zypp/LanguageCode.cc:619
 #, fuzzy
-msgid "Netherlands"
-msgstr "Ð\9dидеÑ\80ланд"
+msgid "Khotanese"
+msgstr "ХиÑ\82ой"
 
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-#, fuzzy
-msgid "Netherlands Antilles"
-msgstr "Нидерландаи Ҷазираҳои Антил"
+#. language code: kik ki
+#: zypp/LanguageCode.cc:621
+msgid "Kikuyu"
+msgstr ""
 
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
+#. language code: kin rw
+#: zypp/LanguageCode.cc:623
 #, fuzzy
-msgid "New Caledonia"
-msgstr "Ð\9aаледониÑ\8fи Ð\9dав"
+msgid "Kinyarwanda"
+msgstr "Ð\9aинÑ\8fÑ\80вандӣ"
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-#, fuzzy
-msgid "New Zealand"
-msgstr "Зеландияи Нав"
+#. language code: kir ky
+#: zypp/LanguageCode.cc:625
+msgid "Kirghiz"
+msgstr ""
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
-#. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
+#. language code: kom kv
+#: zypp/LanguageCode.cc:631
+msgid "Komi"
+msgstr ""
+
+#. language code: kon kg
+#: zypp/LanguageCode.cc:633
 #, fuzzy
-msgid "Nicaragua"
-msgstr "Ð\9dикаÑ\80агÑ\83а"
+msgid "Kongo"
+msgstr "Ð\9aонго"
 
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
+#. language code: kor ko
+#: zypp/LanguageCode.cc:635
 #, fuzzy
-msgid "Niger"
-msgstr "Ð\9dигеÑ\80"
+msgid "Korean"
+msgstr "Ð\9aоÑ\80еÑ\8fгӣ"
 
-#. language code: nic
-#: zypp/LanguageCode.cc:799
-msgid "Niger-Kordofanian (Other)"
+#. language code: kos
+#: zypp/LanguageCode.cc:637
+msgid "Kosraean"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
+#. language code: kpe
+#: zypp/LanguageCode.cc:639
 #, fuzzy
-msgid "Nigeria"
-msgstr "Нигерия"
+msgid "Kpelle"
+msgstr "psselect"
 
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
 msgstr ""
 
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-#, fuzzy
-msgid "Niue"
-msgstr "Ниуе"
+#. language code: kro
+#: zypp/LanguageCode.cc:643
+msgid "Kru"
+msgstr ""
 
-#. language code: niu
-#: zypp/LanguageCode.cc:801
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr ""
+
+#. language code: kua kj
+#: zypp/LanguageCode.cc:647
+msgid "Kuanyama"
+msgstr ""
+
+#. language code: kum
+#: zypp/LanguageCode.cc:649
+msgid "Kumyk"
+msgstr ""
+
+#. language code: kur ku
+#: zypp/LanguageCode.cc:651
 #, fuzzy
-msgid "Niuean"
-msgstr "Ð\9dиÑ\83е"
+msgid "Kurdish"
+msgstr "Ð\9aÑ\83Ñ\80дӣ"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
+#. language code: kut
+#: zypp/LanguageCode.cc:653
+msgid "Kutenai"
+msgstr ""
+
+#. language code: lad
+#: zypp/LanguageCode.cc:655
+msgid "Ladino"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: lah
+#: zypp/LanguageCode.cc:657
+msgid "Lahnda"
 msgstr ""
 
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
+#. language code: lam
+#: zypp/LanguageCode.cc:659
+msgid "Lamba"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
+#. language code: lao lo
+#: zypp/LanguageCode.cc:661
 #, fuzzy
-msgid "Norfolk Island"
-msgstr "Ҷазираи Норфолк"
-
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
-msgstr ""
+msgid "Lao"
+msgstr "Лаос"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
+#. language code: lat la
+#: zypp/LanguageCode.cc:663
+msgid "Latin"
 msgstr ""
 
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
+#. language code: lav lv
+#: zypp/LanguageCode.cc:665
 #, fuzzy
-msgid "North Korea"
-msgstr "Ð\9aоÑ\80еÑ\8fи Ð¨Ð¸Ð¼Ð¾Ð»ӣ"
+msgid "Latvian"
+msgstr "Ð\9bаÑ\82виÑ\8fгӣ"
 
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
+#. language code: lez
+#: zypp/LanguageCode.cc:667
+msgid "Lezghian"
 msgstr ""
 
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-#, fuzzy
-msgid "Northern Sami"
-msgstr "Ирландӣ (Самӣ)"
+#. language code: lim li
+#: zypp/LanguageCode.cc:669
+msgid "Limburgan"
+msgstr ""
 
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-#, fuzzy
-msgid "Northern Sotho"
-msgstr "Ирландӣ (Самӣ)"
+#. language code: lin ln
+#: zypp/LanguageCode.cc:671
+msgid "Lingala"
+msgstr ""
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
 #, fuzzy
-msgid "Norway"
-msgstr "Ð\9dоÑ\80вегиÑ\8f"
+msgid "Lithuanian"
+msgstr "Ð\9bиÑ\82виÑ\8fгӣ"
 
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
+#. language code: lol
+#: zypp/LanguageCode.cc:675
 #, fuzzy
-msgid "Norwegian"
-msgstr "Ð\9dоÑ\80вегиÑ\8fгӣ (Ð\91окмалӣ)"
+msgid "Mongo"
+msgstr "Ð\9aонго"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-#, fuzzy
-msgid "Norwegian Bokmal"
-msgstr "Норвегиягӣ (Бокмалӣ)"
+#. language code: loz
+#: zypp/LanguageCode.cc:677
+msgid "Lozi"
+msgstr ""
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
 #, fuzzy
-msgid "Norwegian Nynorsk"
-msgstr "Ð\9dоÑ\80вегиÑ\8fгӣ (Ð\9dÑ\8eноÑ\80Ñ\81Ó£)"
+msgid "Luxembourgish"
+msgstr "Ð\9bÑ\8eкÑ\81ембÑ\83Ñ\80г"
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
 msgstr ""
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr ""
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
 #, fuzzy
-msgid "Nubian Languages"
-msgstr "Ð\97абонҳои Ñ\81иÑ\81Ñ\82ема"
+msgid "Ganda"
+msgstr "РÑ\83анда"
 
-#. language code: nym
-#: zypp/LanguageCode.cc:821
-msgid "Nyamwezi"
+#. language code: lui
+#: zypp/LanguageCode.cc:687
+msgid "Luiseno"
 msgstr ""
 
-#. language code: nyn
-#: zypp/LanguageCode.cc:823
-msgid "Nyankole"
+#. language code: lun
+#: zypp/LanguageCode.cc:689
+msgid "Lunda"
 msgstr ""
 
-#. language code: nyo
-#: zypp/LanguageCode.cc:825
-msgid "Nyoro"
+#. language code: luo
+#: zypp/LanguageCode.cc:691
+msgid "Luo (Kenya and Tanzania)"
 msgstr ""
 
-#. language code: nzi
-#: zypp/LanguageCode.cc:827
-msgid "Nzima"
+#. language code: lus
+#: zypp/LanguageCode.cc:693
+msgid "Lushai"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
+#. language code: mac mkd mk
+#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
+#, fuzzy
+msgid "Macedonian"
+msgstr "Мақдунӣ"
+
+#. language code: mad
+#: zypp/LanguageCode.cc:699
+msgid "Madurese"
 msgstr ""
 
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
 msgstr ""
 
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+#, fuzzy
+msgid "Marshallese"
+msgstr "Ҷазираҳои Маршал"
+
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+#, fuzzy
+msgid "Maithili"
+msgstr "Майтифил"
+
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
 #, fuzzy
-msgid "Oman"
-msgstr "Уммон"
+msgid "Malayalam"
+msgstr "Ð\9cалаÑ\8fмӣ"
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
+#. language code: mao mri mi
+#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
+msgid "Maori"
 msgstr ""
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
 msgstr ""
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+#, fuzzy
+msgid "Marathi"
+msgstr "Маравӣ"
+
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
 msgstr ""
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
 #, fuzzy
-msgid "Osage"
-msgstr "Ð\98Ñ\81Ñ\82иÑ\84одабаÑ\80ӣ"
+msgid "Malay"
+msgstr "Ð\9cалаӣ"
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
 #, fuzzy
-msgid "Otomian Languages"
-msgstr "Ð\97абонҳои Ñ\81иÑ\81Ñ\82ема"
+msgid "Mandar"
+msgstr "ТаÒ\9bвим"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: men
+#: zypp/LanguageCode.cc:731
+msgid "Mende"
 msgstr ""
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr ""
+
+#. language code: mic
+#: zypp/LanguageCode.cc:735
+msgid "Mi'kmaq"
+msgstr ""
+
+#. language code: min
+#: zypp/LanguageCode.cc:737
+msgid "Minangkabau"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
+#. language code: mis
+#: zypp/LanguageCode.cc:739
 #, fuzzy
-msgid "Pakistan"
-msgstr "Покистон"
+msgid "Miscellaneous Languages"
+msgstr "(7) Барномаҳои гуногун"
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-#, fuzzy
-msgid "Palau"
-msgstr "Палос"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr ""
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
 #, fuzzy
-msgid "Palauan"
-msgstr "Ð\9fалоÑ\81"
+msgid "Malagasy"
+msgstr "Ð\9cалаӣ"
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
 #, fuzzy
-msgid "Palestinian Territory"
-msgstr "Ð\9cинÑ\82аÒ\9bаи Ð\9fÑ\80езиденÑ\82Ó£"
+msgid "Maltese"
+msgstr "Ð\9cалÑ\82а"
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-#, fuzzy
-msgid "Panama"
-msgstr "Панама"
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr ""
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
 msgstr ""
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
 #, fuzzy
-msgid "Panjabi"
-msgstr "Ð\9fанҷобӣ"
+msgid "Moldavian"
+msgstr "Ð\9cолдавиÑ\8f"
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
+#. language code: mon mn
+#: zypp/LanguageCode.cc:757
 #, fuzzy
-msgid "Papiamento"
-msgstr "Мостовая"
+msgid "Mongolian"
+msgstr "Mуғулӣ"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
+#. language code: mos
+#: zypp/LanguageCode.cc:759
+msgid "Mossi"
+msgstr ""
+
+#. language code: mul
+#: zypp/LanguageCode.cc:761
 #, fuzzy
-msgid "Papua New Guinea"
-msgstr "Ð\9fапÑ\83а Ð\93винеÑ\8fи Ð\9dав"
+msgid "Multiple Languages"
+msgstr "Ð\9cаҷмӯйи Ñ\8dкÑ\80анҳо"
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
 msgstr ""
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
+#. language code: mus
+#: zypp/LanguageCode.cc:765
 #, fuzzy
-msgid "Paraguay"
-msgstr "Ð\9fаÑ\80агвай"
+msgid "Creek"
+msgstr "Юнонӣ"
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
 msgstr ""
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
 msgstr ""
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-#, fuzzy
-msgid "Persian"
-msgstr "Фрисианӣ"
-
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
 msgstr ""
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-#, fuzzy
-msgid "Peru"
-msgstr "Перу"
-
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-#, fuzzy
-msgid "Philippine (Other)"
-msgstr "Филиппин"
+#. language code: nah
+#: zypp/LanguageCode.cc:775
+msgid "Nahuatl"
+msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-#, fuzzy
-msgid "Philippines"
-msgstr "Филиппин"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr ""
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-#, fuzzy
-msgid "Pitcairn"
-msgstr "Питкаирн"
+#. language code: nav nv
+#: zypp/LanguageCode.cc:783
+msgid "Navajo"
+msgstr ""
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
+#. language code: nbl nr
+#: zypp/LanguageCode.cc:785
+msgid "Ndebele, South"
 msgstr ""
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
 #, fuzzy
-msgid "Poland"
-msgstr "Ð\9fолÑ\88а"
+msgid "Ndonga"
+msgstr "Тонга"
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
+#. language code: nds
+#: zypp/LanguageCode.cc:791
 #, fuzzy
-msgid "Polish"
-msgstr "Ð\9fолÑ\8fкӣ"
+msgid "Low German"
+msgstr "Ð\9eлмонӣ"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
 #, fuzzy
-msgid "Portugal"
-msgstr "Ð\9fоÑ\80Ñ\82Ñ\83галиÑ\8f"
+msgid "Nepali"
+msgstr "Ð\9dепал"
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
+#. language code: new
+#: zypp/LanguageCode.cc:795
 #, fuzzy
-msgid "Portuguese"
-msgstr "Ð\9fоÑ\80Ñ\82Ñ\83галӣ"
+msgid "Nepal Bhasa"
+msgstr "Ð\9dепал"
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
 msgstr ""
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
+#. language code: nic
+#: zypp/LanguageCode.cc:799
+msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+#, fuzzy
+msgid "Niuean"
+msgstr "Ниуе"
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+#, fuzzy
+msgid "Norwegian Nynorsk"
+msgstr "Норвегиягӣ (Нюнорсӣ)"
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+#, fuzzy
+msgid "Norwegian Bokmal"
+msgstr "Норвегиягӣ (Бокмалӣ)"
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
 msgstr ""
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
 #, fuzzy
-msgid "Puerto Rico"
-msgstr "Ð\9fÑ\83Ñ\8dÑ\80Ñ\82о Ð Ð¸ÐºÐ¾"
+msgid "Norwegian"
+msgstr "Ð\9dоÑ\80вегиÑ\8fгӣ (Ð\91окмалӣ)"
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
-msgstr ""
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+#, fuzzy
+msgid "Northern Sotho"
+msgstr "Ирландӣ (Самӣ)"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
+#. language code: nub
+#: zypp/LanguageCode.cc:815
 #, fuzzy
-msgid "Qatar"
-msgstr "Қатар"
+msgid "Nubian Languages"
+msgstr "Забонҳои система"
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+#, fuzzy
+msgid "Classical Newari"
+msgstr "Сурхи Классикӣ"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
+#. language code: nym
+#: zypp/LanguageCode.cc:821
+msgid "Nyamwezi"
 msgstr ""
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
+#. language code: nyn
+#: zypp/LanguageCode.cc:823
+msgid "Nyankole"
 msgstr ""
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
+#. language code: nyo
+#: zypp/LanguageCode.cc:825
+msgid "Nyoro"
 msgstr ""
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
+#. language code: nzi
+#: zypp/LanguageCode.cc:827
+msgid "Nzima"
 msgstr ""
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-#, fuzzy
-msgid "Rapanui"
-msgstr "Ҷопон"
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
+msgstr ""
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
 msgstr ""
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+#, fuzzy
+msgid "Osage"
+msgstr "Истифодабарӣ"
+
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
 msgstr ""
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+#, fuzzy
+msgid "Otomian Languages"
+msgstr "Забонҳои система"
+
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
-#: zypp/Dep.cc:98
-msgid "Requires"
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
 msgstr ""
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
 #, fuzzy
-msgid "Romania"
-msgstr "РÑ\83миниÑ\8f"
+msgid "Panjabi"
+msgstr "Ð\9fанҷобӣ"
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+#. language code: pap
+#: zypp/LanguageCode.cc:855
 #, fuzzy
-msgid "Romanian"
-msgstr "РÑ\83минӣ"
+msgid "Papiamento"
+msgstr "Ð\9cоÑ\81Ñ\82оваÑ\8f"
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
+#. language code: pau
+#: zypp/LanguageCode.cc:857
 #, fuzzy
-msgid "Romany"
-msgstr "РÑ\83миниÑ\8f"
+msgid "Palauan"
+msgstr "Ð\9fалоÑ\81"
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
+msgstr ""
+
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
 #, fuzzy
-msgid "Rundi"
-msgstr "Ð\91Ñ\83Ñ\80Ñ\83нди"
+msgid "Persian"
+msgstr "ФÑ\80иÑ\81ианӣ"
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
+#. language code: phi
+#: zypp/LanguageCode.cc:865
 #, fuzzy
-msgid "Russian"
-msgstr "РÑ\83Ñ\81Ó£"
+msgid "Philippine (Other)"
+msgstr "Филиппин"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
 msgstr ""
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-#, fuzzy
-msgid "Rwanda"
-msgstr "Руанда"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr ""
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
 #, fuzzy
-msgid "Saint Helena"
-msgstr "Ҷазираи Ҳазрати Елена"
+msgid "Polish"
+msgstr "Полякӣ"
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-#, fuzzy
-msgid "Saint Kitts and Nevis"
-msgstr "Сент-Китс и Невис"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr ""
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
 #, fuzzy
-msgid "Saint Lucia"
-msgstr "СенÑ\82\9bÑ\83Ñ\81иÑ\8f"
+msgid "Portuguese"
+msgstr "Ð\9fоÑ\80Ñ\82Ñ\83галӣ"
 
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "Сан-Марино"
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
+msgstr ""
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-#, fuzzy
-msgid "Saint Pierre and Miquelon"
-msgstr "Сен-Пьер и Микелон"
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
+msgstr ""
+
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
+msgstr ""
+
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
+msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
+msgstr ""
+
+#. language code: rap
+#: zypp/LanguageCode.cc:887
 #, fuzzy
-msgid "Saint Vincent and the Grenadines"
-msgstr "Сент-Винсент ва Гренадин"
+msgid "Rapanui"
+msgstr "Ҷопон"
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
 msgstr ""
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
 msgstr ""
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
+#. language code: rom
+#: zypp/LanguageCode.cc:895
 #, fuzzy
-msgid "Samoa"
-msgstr "Самоа"
+msgid "Romany"
+msgstr "РÑ\83миниÑ\8f"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
 #, fuzzy
-msgid "Samoan"
-msgstr "Самоа"
+msgid "Romanian"
+msgstr "РÑ\83минӣ"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
 #, fuzzy
-msgid "San Marino"
-msgstr "Сан-Марино"
+msgid "Rundi"
+msgstr "Бурунди"
+
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+#, fuzzy
+msgid "Russian"
+msgstr "Русӣ"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3851,44 +3977,63 @@ msgstr "Руанда"
 msgid "Sango"
 msgstr ""
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr ""
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr ""
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr ""
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr ""
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr ""
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr ""
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-#, fuzzy
-msgid "Sao Tome and Principe"
-msgstr "Сан-Томе и Принсипи"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
 #, fuzzy
-msgid "Sardinian"
-msgstr "УкÑ\80аинӣ"
+msgid "Serbian"
+msgstr "СеÑ\80бӣ"
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-#, fuzzy
-msgid "Saudi Arabia"
-msgstr "Арабистони Саудӣ"
-
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr ""
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+#, fuzzy
+msgid "Croatian"
+msgstr "Хорватӣ"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3899,141 +4044,92 @@ msgstr ""
 msgid "Semitic (Other)"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-#, fuzzy
-msgid "Senegal"
-msgstr "Сенегал"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "Сербӣ"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-#, fuzzy
-msgid "Serbian"
-msgstr "Сербӣ"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr ""
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
 #, fuzzy
-msgid "Seychelles"
-msgstr "Ҷазираҳои Сейшелӣ"
+msgid "Sign Languages"
+msgstr "Забонҳои система"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr ""
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr ""
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-#, fuzzy
-msgid "Sichuan Yi"
-msgstr "Литва"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr ""
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-#, fuzzy
-msgid "Sierra Leone"
-msgstr "Сиера-Леоне"
+#. language code: sin si
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr ""
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
+#. language code: sio
+#: zypp/LanguageCode.cc:949
 #, fuzzy
-msgid "Sign Languages"
+msgid "Siouan Languages"
 msgstr "Забонҳои система"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
+#. language code: sla
+#: zypp/LanguageCode.cc:953
+msgid "Slavic (Other)"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
+#. language code: slo slk sk
+#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
+#, fuzzy
+msgid "Slovak"
+msgstr "Словакӣ"
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr ""
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+#, fuzzy
+msgid "Slovenian"
+msgstr "Словенӣ"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+#, fuzzy
+msgid "Southern Sami"
+msgstr "Ирландӣ (Самӣ)"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr ""
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+#, fuzzy
+msgid "Northern Sami"
+msgstr "Ирландӣ (Самӣ)"
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-#, fuzzy
-msgid "Singapore"
-msgstr "Сингапур"
-
-#. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#. language code: sio
-#: zypp/LanguageCode.cc:949
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
 #, fuzzy
-msgid "Siouan Languages"
-msgstr "Ð\97абонҳои Ñ\81иÑ\81Ñ\82ема"
+msgid "Samoan"
+msgstr "Самоа"
 
 #. language code: sms
 #: zypp/LanguageCode.cc:973
@@ -4041,184 +4137,89 @@ msgstr "Забонҳои система"
 msgid "Skolt Sami"
 msgstr "Ирландӣ (Самӣ)"
 
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
 msgstr ""
 
-#. language code: sla
-#: zypp/LanguageCode.cc:953
-msgid "Slavic (Other)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. language code: slo slk sk
-#: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
-#, fuzzy
-msgid "Slovak"
-msgstr "Словакӣ"
-
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-#, fuzzy
-msgid "Slovakia"
-msgstr "Словакия"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-#, fuzzy
-msgid "Slovenia"
-msgstr "Словения"
-
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-#, fuzzy
-msgid "Slovenian"
-msgstr "Словенӣ"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr ""
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr ""
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-#, fuzzy
-msgid "Solomon Islands"
-msgstr "Ҷазираҳои Соломон"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 #, fuzzy
 msgid "Somali"
 msgstr "Сомалӣ"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-#, fuzzy
-msgid "Somalia"
-msgstr "Сомалӣ"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr ""
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-#, fuzzy
-msgid "Sorbian Languages"
-msgstr "Сербияи Лотинӣ"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 #, fuzzy
 msgid "Sotho, Southern"
 msgstr "Аврупои Ҷанубӣ"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-#, fuzzy
-msgid "South Africa"
-msgstr "Ҷумҳурии Африкаи Ҷанубӣ"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr ""
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr ""
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-#, fuzzy
-msgid "South Korea"
-msgstr "Кореяи Ҷанубӣ"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-#, fuzzy
-msgid "Southern Altai"
-msgstr "Ирландӣ (Самӣ)"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-#, fuzzy
-msgid "Southern Sami"
-msgstr "Ирландӣ (Самӣ)"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-#, fuzzy
-msgid "Spain"
-msgstr "Испания"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 #, fuzzy
 msgid "Spanish"
 msgstr "Испанӣ"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
 #, fuzzy
-msgid "Sri Lanka"
-msgstr "ШÑ\80и-Ð\9bанка"
+msgid "Sardinian"
+msgstr "УкÑ\80аинӣ"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-#, fuzzy
-msgid "Sudan"
-msgstr "Судон"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
 msgstr ""
 
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+#, fuzzy
+msgid "Swati"
+msgstr "Сватӣ"
+
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr ""
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr ""
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-#, fuzzy
-msgid "Suriname"
-msgstr "Суринам"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
 #. language code: swa sw
@@ -4227,66 +4228,18 @@ msgstr ""
 msgid "Swahili"
 msgstr "Майтифил"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-#, fuzzy
-msgid "Swati"
-msgstr "Сватӣ"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-#, fuzzy
-msgid "Swaziland"
-msgstr "Свазиленд"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-#, fuzzy
-msgid "Sweden"
-msgstr "Шветсия"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 #, fuzzy
 msgid "Swedish"
 msgstr "Шведӣ"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-#, fuzzy
-msgid "Switzerland"
-msgstr "Швейсария"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-#, fuzzy
-msgid "Syria"
-msgstr "Сурия"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 #, fuzzy
 msgid "Syriac"
 msgstr "Сурия"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-#, fuzzy
-msgid "Tagalog"
-msgstr "Каталоги CTAN"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 #, fuzzy
@@ -4298,40 +4251,12 @@ msgstr "Хорватӣ"
 msgid "Tai (Other)"
 msgstr ""
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-#, fuzzy
-msgid "Taiwan"
-msgstr "Тайван"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-#, fuzzy
-msgid "Tajik"
-msgstr "Тоҷикӣ"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-#, fuzzy
-msgid "Tajikistan"
-msgstr "Тоҷикистон"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 #, fuzzy
 msgid "Tamil"
 msgstr "Тамилӣ"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 #, fuzzy
@@ -4344,6 +4269,11 @@ msgstr "Қатар"
 msgid "Telugu"
 msgstr "Телугӣ"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4354,35 +4284,24 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+#, fuzzy
+msgid "Tajik"
+msgstr "Тоҷикӣ"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+#, fuzzy
+msgid "Tagalog"
+msgstr "Каталоги CTAN"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 #, fuzzy
 msgid "Thai"
 msgstr "Тайландӣ"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-#, fuzzy
-msgid "Thailand"
-msgstr "Таиланд"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr ""
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4398,50 +4317,26 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-#, fuzzy
-msgid "Togo"
-msgstr "Того"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-#, fuzzy
-msgid "Tokelau"
-msgstr "Токелау"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-#, fuzzy
-msgid "Tonga"
-msgstr "Тонга"
-
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
 msgid "Tonga (Nyasa)"
@@ -4453,115 +4348,71 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr "Ҷазираҳои Соломон"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-#, fuzzy
-msgid "Trinidad and Tobago"
-msgstr "Тринидад ва Тобаго"
-
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+#, fuzzy
+msgid "Tswana"
+msgstr "Ботсвана"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 #, fuzzy
 msgid "Tsonga"
 msgstr "Тонга"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
 #, fuzzy
-msgid "Tswana"
-msgstr "Ð\91оÑ\82Ñ\81вана"
+msgid "Turkmen"
+msgstr "ТÑ\83Ñ\80киÑ\8f"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-#, fuzzy
-msgid "Tunisia"
-msgstr "Тунис"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 #, fuzzy
 msgid "Tupi Languages"
 msgstr "Забонҳои система"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-#, fuzzy
-msgid "Turkey"
-msgstr "Туркия"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 #, fuzzy
 msgid "Turkish"
 msgstr "Туркӣ"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-#, fuzzy
-msgid "Turkmen"
-msgstr "Туркия"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-#, fuzzy
-msgid "Turkmenistan"
-msgstr "Туркманистон"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-#, fuzzy
-msgid "Turks and Caicos Islands"
-msgstr "Ҷазираҳои Теркс ва Кайкос"
-
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-#, fuzzy
-msgid "Tuvalu"
-msgstr "Тувалу"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr ""
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr ""
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-#, fuzzy
-msgid "Uganda"
-msgstr "Уганда"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 #, fuzzy
@@ -4573,596 +4424,745 @@ msgstr "Шикаста"
 msgid "Uighur"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-#, fuzzy
-msgid "Ukraine"
-msgstr "Украина"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 #, fuzzy
 msgid "Ukrainian"
 msgstr "Украинӣ"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr ""
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+#, fuzzy
+msgid "Uzbek"
+msgstr "Ӯзбекӣ"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+#, fuzzy
+msgid "Venda"
+msgstr "Тақвим"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+#, fuzzy
+msgid "Vietnamese"
+msgstr "Виетнамӣ"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr ""
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr ""
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr ""
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr ""
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr ""
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr ""
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+#, fuzzy
+msgid "Welsh"
+msgstr "Уэлсиявӣ"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+#, fuzzy
+msgid "Sorbian Languages"
+msgstr "Сербияи Лотинӣ"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+#, fuzzy
+msgid "Walloon"
+msgstr "Валунӣ"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr ""
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+#, fuzzy
+msgid "Yoruba"
+msgstr "Аруба"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-#, fuzzy
-msgid "United Arab Emirates"
-msgstr "Аморатҳои Муттаҳидаи Араб"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-#, fuzzy
-msgid "United Kingdom"
-msgstr "Британияи Кабир"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
 #, fuzzy
-msgid "United States"
-msgstr "ШÑ\82аÑ\82ҳои Ð\9cÑ\83Ñ\82Ñ\82аҳидаи Ð\90мÑ\80икоӣ"
+msgid "Zande"
+msgstr "Роҳ Ð³Ñ\83м ÐºÐ°Ñ\80дан"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
+msgid "Signature file %s not found"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-#, fuzzy
-msgid "Uruguay"
-msgstr "Уругвай"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-#, fuzzy
-msgid "Uzbek"
-msgstr "Ӯзбекӣ"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-#, fuzzy
-msgid "Uzbekistan"
-msgstr "Ӯзбекистон"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-#, fuzzy
-msgid "Vanuatu"
-msgstr "Вануату"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-#, fuzzy
-msgid "Venda"
-msgstr "Тақвим"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-#, fuzzy
-msgid "Venezuela"
-msgstr "Венесуэла"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-#, fuzzy
-msgid "Vietnam"
-msgstr "Ветнам"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-#, fuzzy
-msgid "Vietnamese"
-msgstr "Виетнамӣ"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-#, fuzzy
-msgid "Virgin Islands, U.S."
-msgstr "Ҷазираҳои Виргин(ШМА)"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, fuzzy, c-format, boost-format
+msgid "do not install %s"
+msgstr "Коргузории ҳарф"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-#, fuzzy
-msgid "Wallis and Futuna"
-msgstr "Острова Уоллис и Футуна"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-#, fuzzy
-msgid "Walloon"
-msgstr "Валунӣ"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-#, fuzzy
-msgid "Welsh"
-msgstr "Уэлсиявӣ"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-#, fuzzy
-msgid "Western Sahara"
-msgstr "Саҳрои Ғарбӣ"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-#, fuzzy
-msgid "Yemen"
-msgstr "Яман"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-#, fuzzy
-msgid "Yoruba"
-msgstr "Аруба"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-#, fuzzy
-msgid "Zambia"
-msgstr "Замбия"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-#, fuzzy
-msgid "Zande"
-msgstr "Роҳ гум кардан"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
 #, fuzzy
-msgid "Zimbabwe"
-msgstr "Ð\97имбабве"
+msgid "History:"
+msgstr "ТаÑ\8aÑ\80иÑ\85"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/base/StrMatcher.cc:158
+#, fuzzy, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Вычисление выражений"
+
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr ""
+
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr ""
+
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Cannot write file '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
-#, c-format, boost-format
-msgid "deinstallation of %s"
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, fuzzy, c-format, boost-format
-msgid "do not install %s"
-msgstr "Коргузории ҳарф"
-
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep obsolete %s"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-#, fuzzy
-msgid "unknown"
-msgstr "Номуайян"
-
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
 #, fuzzy
index 064e2e3..1fcd6a7 100644 (file)
--- a/po/th.po
+++ b/po/th.po
@@ -15,253 +15,1956 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-#, fuzzy
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr "เขียนค่าของผู้ให้บริการ"
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-#, fuzzy
-msgid " execution failed"
-msgstr "การสร้างแฟ้มสำรองข้อมูลล้มเหลว"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr ""
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, fuzzy, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "กำลังเรียกใช้คลังแพกเกจสำหรับปรับรุ่นให้ทันสมัย..."
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "สถาปัตยกรรมพื้นฐาน"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "ไฟร์วอลล์ยังไม่ถูกติดตั้ง"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "ต้องการ"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
+#: zypp/Dep.cc:100
 #, fuzzy
-msgid "(does not expire)"
-msgstr "ยังไม่มีผู้ใช้"
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
+msgid "Obsoletes"
+msgstr "ลบอัตโนมัติ"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
-#, fuzzy, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "กำลังเพิ่มคลังแพกเกจ %1"
-
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+#: zypp/target/TargetImpl.cc:332
 #, fuzzy
-msgid "Additional rpm output"
-msgstr "à¸\82à¹\89อมูลà¹\80à¸\9eิà¹\88มà¹\80à¸\95ิม"
+msgid " execution failed"
+msgstr "à¸\81ารสรà¹\89าà¸\87à¹\81à¸\9fà¹\89มสำรอà¸\87à¸\82à¹\89อมูลลà¹\89มà¹\80หลว"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "อัฟกานิสถาน"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "ภาษาแอฟริคานส์"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+#, fuzzy
+msgid "Installation has been aborted as directed."
+msgstr "การติดตั้งเสร็จสมบูรณ์เพียงบางส่วนเท่านั้น"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:117
+#, fuzzy
+msgid "HalContext not connected"
+msgstr "ไม่ได้เชื่อมต่อ"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "หมู่เกาะเอแลนด์"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "แอลเบเนีย"
-
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+#: zypp/target/hal/HalContext.cc:229
 #, fuzzy
-msgid "Albanian"
-msgstr "à¹\81อลà¹\80à¸\9aà¹\80à¸\99ีย"
+msgid "Unable to create dbus connection"
+msgstr "à¸\97à¸\94สอà¸\9aà¸\81ารà¹\80à¸\8aืà¹\88อมà¸\95à¹\88ออิà¸\99à¹\80à¸\97อรà¹\8cà¹\80à¸\99à¹\87à¸\95"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "แอลจีเรีย"
-
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-#, fuzzy
-msgid "Algonquian Languages"
-msgstr "เป็นก_ลุ่มภาษา"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "อเมริกัน ซามัว"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr ""
+
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr ""
+
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr ""
+
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, fuzzy, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "จัดเก็บแฟ้มการปรับแต่งค่า"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+#, fuzzy
+msgid "Additional rpm output"
+msgstr "ข้อมูลเพิ่มเติม"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "ไม่พบแฟ้มควบคุม %1 บนสื่อการติดตั้ง"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "ไม่พบแฟ้มควบคุม %1 บนสื่อการติดตั้ง"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "ไม่พบแฟ้มควบคุม %1 บนสื่อการติดตั้ง"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+#, fuzzy
+msgid "Following actions will be done:"
+msgstr "จะมีการดำเนินการตามขั้นตอนต่อไปนี้:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "ไม่สามารถสร้างไดเรกทอรี '%1' ได้"
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+#, fuzzy
+msgid "Repository alias cannot start with dot."
+msgstr "คลังแพกเกจใช้งานไม่ได้"
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "ไม่สามารถเปิดแฟ้ม %1 ได้"
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "ไม่สามารถเปิดใช้งานบริการ '%1' ได้"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "ไม่สามารถสร้างไดเรกทอรี "
+
+#: zypp/RepoManager.cc:1282
+#, fuzzy, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "การเพิ่มคลังแพกเกจ %1 ล้มเหลว"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "ล้มเหลวในการคืนค่าส่วน MBR ของฮาร์ดดิสก์"
+
+#: zypp/RepoManager.cc:1377
+#, fuzzy
+msgid "Unhandled repository type"
+msgstr "ชื่อของคลังแพกเกจใช้งานไม่ได้"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "ไม่รู้จักตัวเลือกสำหรับคำสั่ง '%1': %2"
+
+#: zypp/RepoManager.cc:1611
+#, fuzzy, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "กำลังเพิ่มคลังแพกเกจ %1"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "ค่าสำหรับตัวเลือก '%1' ไม่ถูกต้อง: %2"
+
+#: zypp/RepoManager.cc:1740
+#, fuzzy, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "กำลังตรวจคลังแพกเกจ "
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "ไม่สามารถเปิดใช้งานบริการ '%1' ได้"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+#, fuzzy
+msgid "Can't figure out where the service is stored."
+msgstr "ไม่สามารถลบบริการได้ เนื่องจากมันยังไม่ถูกติดตั้ง"
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1049
+#, fuzzy, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "ค่าสำหรับตัวเลือก '%1' ไม่ถูกต้อง: %2"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1081
+#, fuzzy, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "ค่าสำหรับตัวเลือก '%1' ไม่ถูกต้อง: %2"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "ไม่สามารถเปิดแฟ้ม %1 ได้"
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "ไม่สามารถเปิดแฟ้ม %1 ได้"
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "ไม่สามารถเปิดแฟ้ม %1 ได้"
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:507
+#, fuzzy, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "หมดเวลาของคำสั่งหลังจาก %1 วินาที"
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+#, fuzzy
+msgid "(does not expire)"
+msgstr "ยังไม่มีผู้ใช้"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "ไม่ทราบ"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+#, fuzzy
+msgid "invalid"
+msgstr "ค่าเวลาใช้งานไม่ได้"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+#, fuzzy
+msgid "Unknown support option. Description not available"
+msgstr "ไม่มีรายละเอียด"
+
+#: zypp/CountryCode.cc:50
+#, fuzzy
+msgid "Unknown country: "
+msgstr "ไม่ทราบประเภทของระเบียน: %1"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+#, fuzzy
+msgid "No Code"
+msgstr "โค้ดภาษา"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "แอนโดรา"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "สหรัฐอาหรับเอมิเรตส์"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "อัฟกานิสถาน"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "แอนติกาและบาร์บูดา"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "แองกีลา"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "แอลเบเนีย"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "อาร์เมเนีย"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "เนเธอร์แลนด์ แอนทิลีส"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "แองโกลา"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "แอนตาร์กติกา"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "อาร์เจนตินา"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "อเมริกัน ซามัว"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "ออสเตรีย"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "ออสเตรเลีย"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "อรูบา"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "หมู่เกาะเอแลนด์"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "อาเซอร์ไบจาน"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "บอสเนียและเฮอร์เซโกวินา"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "บาร์บาดอส"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "บังคลาเทศ"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "เบลเยียม"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "บูร์กินาฟาโซ"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "บัลแกเรีย"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "บาห์เรน"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "บุรุนดี"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "เบนิน"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "เบอร์มิวดา"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "บรูไนดารุสซาลาม"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "โบลิเวีย"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "บราซิล"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "บาฮามา"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "ภูฏาน"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "หมู่เกาะบูเวท์นอร์ฟอล์ค"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "บอตสวานา"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "เบลารุส"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "เบลีซ"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "แคนาดา"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "หมู่เกาะโคคอส (Keeling)"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "คองโก"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+#, fuzzy
+msgid "Central African Republic"
+msgstr "สาธารณรัฐแอฟริกากลาง"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "สวิตเซอร์แลนด์"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "โกตดิวัวร์"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "หมู่เกาะคุ้ก"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "ชิลี"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "คาเมรูน"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "จีน"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "โคลัมเบีย"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "คอสตาริกา"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "คิวบา"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "แหลมเวอร์ดี"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "เกาะคริสต์มาส"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "ไซปรัส"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "สาธารณรัฐเช็ก"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "เยอรมันนี"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "จิบูติ"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "เดนมาร์ก"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "โดมินิกา"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "สาธารณรัฐโดมินิกัน"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "แอลจีเรีย"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "เอกวาดอร์"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "เอสโตเนีย"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "อียิปต์"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "ซาฮาร่าตะวันตก"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "เอริเทรีย"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "สเปน"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "เอธิโอเปีย"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "ฟินแลนด์"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "ฟิจิ"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "หมู่เกาะฟอล์คแลนด์ (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "สหพันธรัฐไมโครนีเซียสหพันธรัฐไมโครนีเซีย"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "หมู่เกาะแฟโร"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "ฝรั่งเศส"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "เมืองหลวงฝรั่งเศส"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "กาบอน"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "สหราชอาณาจักร"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "เกรนาดา"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "จอร์เจีย"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "เฟรนช์เกียนา"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "เกิร์นซีย์"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "กานา"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "ยิบรอลตา"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "กรีนแลนด์"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "แกมเบีย"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "กินี"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "กวาเดอลูป"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "อิเควทอเรียลกินี"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "กรีซ"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "เกาะเซาท์จอร์เจียและหมู่เกาะเซาท์แซนด์วิช"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "กัวเตมาลา"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "กวม"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "กินี-บิสเซา"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "กายอานา"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "ฮ่องกง"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "เกาะเฮิร์ดและหมู่เกาะแมกดอนัลด์"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "ฮอนดูรัส"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "โครเอเชีย"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "ไฮติ"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "ฮังการี"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "อินโดนีเซีย"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "ไอร์แลนด์"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "อิสราเอล"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "เกาะแมน"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "อินเดีย"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "บริติชอินเดียนโอเชียนเทร์ริทอรี"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "อิรัก"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "อิหร่าน"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "ไอซ์แลนด์"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "อิตาลี"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "เจอร์ซีย์"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "จาไมก้า"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "จอร์แดน"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "ญี่ปุ่น"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "เคนยา"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "คีร์กีซน"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "กัมพูชา"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "คิริบาส"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "คอโมโรส"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "เซนต์คิตส์และเนวิส"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "เกาหลีเหนือ"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "เกาหลีใต้"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "คูเวต"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "หมู่เกาะเคย์แมน"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "คาซัคสถาน"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "สาธารณรัฐประชาธิปไตยประชาชนลาว"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "เลบานอน"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "เซนต์ลูเซีย"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "ลิกเตนสไตน์"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "ศรีลังกา"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "ไลบีเรีย"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "เลโซโทต"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "ลิทัวเนีย"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "ลักเซมเบิร์ก"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "ลัตเวีย"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "ลิเบีย"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "โมร็อกโก"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "โมนาโค"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "มอลโดวา"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "มอนติเนโกร"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "ซานมาริโน"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "มาดากัสการ์"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "หมู่เกาะมาแชลล์"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "มาซิโดเนีย"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "มาลี"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "พม่า"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "มองโกเลีย"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "มาเก๊า"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "หมู่เกาะมาเรียนเหนือ"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "มาทินิค"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "มอริทาเนีย"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "มอนต์เซอร์รัต"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "มอลตา"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "มอริเชียส"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "มัลดิฟ"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "มาลาวี"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "เม็กซิโก"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "มาเลเซีย"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "โมแซมบิก"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "นามิเบีย"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "นิวคาลิโดเนีย"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "ไนเจอร์"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "เกาะนอร์ฟอล์ค"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "ไนจีเรีย"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "นิคารากัว"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "เนเธอร์แลนด์"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "นอร์เวย์"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "เนปาล"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "นาวรู"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "นิอุเอ"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "นิวซีแลนด์"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "โอมาน"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "ปานามา"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "เปรู"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "เฟรนช์โปลินีเซีย"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "ปาปัวนิวกินี"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "ฟิลิปปินส์"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "ปากีสถาน"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "โปแลนด์"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "แซงปีแยร์และมีเกอลง"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "เกาะพิตแคร์น"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "เปอร์โตริโก"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "เขตปกครองปาเลสไตน์"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "โปรตุเกส"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "เกาะพาเลา"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "ปารากวัย"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "กาต้าร์"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "รียูเนียน"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "โรมาเนีย"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "เซอร์เบีย"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "สมาพันธรัฐรัสเซีย"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "รวันด้า"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "ซาอุดิอาระเบีย"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "หมู่เกาะโซโลมอน"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "ซีเชลล์"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "ซูดาน"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "สวีเดน"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "สิงคโปร์"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "เซนต์เฮเลน่า"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "สโลวีเนีย"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "สฟาลบาร์และยานไมเอน"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "สโลวัก"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "เซียร์ราลีโอน"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "ซานมาริโน"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "เซนีกัล"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "โซมาเลีย"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "ซูรินาเม"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "ซาวโทมและพรินซิป"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "เอลซัลวาดอร์"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "ซีเรีย"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "สวาซิแลนด์"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "เกาะเติร์กและเคคอส"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "ชาด"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "เฟรนช์เซาเทิร์น"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "โตโก"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "ราชอาณาจักรไทย"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "ทาจีกิสถาน"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "โทเคเลา"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "เติร์กเมนิสถาน"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "ตูนีเซีย"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "ตองก้า"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "ติมอร์ตะวันออก"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "ตุรกี"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "ตรีนิแดดและโทบาโก"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "ตูวาลู"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "ไต้หวัน"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "แทนซาเนีย"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "ยูเครน"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "ยูกันดา"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "หมู่เกาะยูเอส ไมเนอร์ เอาท์ไลย์อิ้ง"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "สหรัฐอเมริกา"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "อูรุกวัย"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "อุซเบกิสถาน"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "นครรัฐวาติกัน"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "เซนต์วินเซนต์และเกรนาดีนส์"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "เวเนซูเอลา"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "หมู่เกาะบริติชเวอร์จิน"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "หมู่เกาะเวอร์จิน, สหรัฐอเมริกา"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "เวียดนาม"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "วานูอาตู"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "หมู่เกาะวาลลิสและหมู่เกาะฟุตูนา"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "ซามัว"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "เยเมน"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "มายอต"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "แอฟฟริกาใต้"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "แซมเบีย"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "ซิมบับเว"
+
+#: zypp/LanguageCode.cc:49
+#, fuzzy
+msgid "Unknown language: "
+msgstr "ภาษาที่ไม่รู้จัก: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "แอนโดรา"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "แองโกลา"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "แองกีลา"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr ""
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "แอนตาร์กติกา"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr ""
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "แอนติกาและบาร์บูดา"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr ""
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr ""
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "ภาษาแอฟริคานส์"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr ""
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr ""
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr ""
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+#, fuzzy
+msgid "Albanian"
+msgstr "แอลเบเนีย"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr ""
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+#, fuzzy
+msgid "Algonquian Languages"
+msgstr "เป็นก_ลุ่มภาษา"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+#, fuzzy
+msgid "Southern Altai"
+msgstr "แอฟฟริกาใต้"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr ""
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr ""
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -274,58 +1977,43 @@ msgstr "ภาษา"
 msgid "Arabic"
 msgstr "ภาษาอารบิก"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr ""
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 #, fuzzy
 msgid "Aramaic"
 msgstr "จาไมก้า"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+#, fuzzy
+msgid "Armenian"
+msgstr "อาร์เมเนีย"
+
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 #, fuzzy
 msgid "Araucanian"
 msgstr "ภาษายูเครน"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "อาร์เจนตินา"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "อาร์เมเนีย"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-#, fuzzy
-msgid "Armenian"
-msgstr "อาร์เมเนีย"
-
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "อรูบา"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr ""
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -344,33 +2032,12 @@ msgstr ""
 msgid "Athapascan Languages"
 msgstr "ภาษา"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "ออสเตรเลีย"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 #, fuzzy
 msgid "Australian Languages"
 msgstr "เป็นก_ลุ่มภาษา"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "ออสเตรีย"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr ""
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -391,45 +2058,27 @@ msgstr ""
 msgid "Aymara"
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "อาเซอร์ไบจาน"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 #, fuzzy
 msgid "Azerbaijani"
 msgstr "อาเซอร์ไบจาน"
 
-#: zypp/media/MediaException.cc:47
-#, fuzzy, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "ชื่อแฟ้ม: %1"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "บาฮามา"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "บาห์เรน"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+#, fuzzy
+msgid "Banda"
+msgstr "รวันด้า"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
+#. language code: bai
+#: zypp/LanguageCode.cc:239
 #, fuzzy
-msgid "Balinese"
-msgstr "ภาษาญี่ปุ่น"
+msgid "Bamileke Languages"
+msgstr "ภาษา"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
 #. language code: bal
@@ -442,80 +2091,38 @@ msgstr ""
 msgid "Bambara"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-#, fuzzy
-msgid "Bamileke Languages"
-msgstr "ภาษา"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
+#. language code: ban
+#: zypp/LanguageCode.cc:247
 #, fuzzy
-msgid "Banda"
-msgstr "รวันด้า"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "บังคลาเทศ"
+msgid "Balinese"
+msgstr "ภาษาญี่ปุ่น"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "บาร์บาดอส"
-
 #. language code: bas
 #: zypp/LanguageCode.cc:253
 msgid "Basa"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr ""
-
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-#, fuzzy
-msgid "Batak (Indonesia)"
-msgstr "อินโดนีเซีย"
-
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr ""
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "เบลารุส"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 #, fuzzy
 msgid "Belarusian"
 msgstr "เบลารุส"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "เบลเยียม"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "เบลีซ"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 #, fuzzy
@@ -527,31 +2134,16 @@ msgstr "&Membase"
 msgid "Bengali"
 msgstr "ภาษาเบ็งกาลี"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "เบนิน"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "เบอร์มิวดา"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "ภูฏาน"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
@@ -572,267 +2164,71 @@ msgstr ""
 msgid "Bislama"
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "โบลิเวีย"
-
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "บอสเนียและเฮอร์เซโกวินา"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr ""
 
 #. language code: bos bs
 #: zypp/LanguageCode.cc:281
 msgid "Bosnian"
 msgstr "ภาษาบอสเนีย"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "บอตสวานา"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "หมู่เกาะบูเวท์นอร์ฟอล์ค"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr ""
-
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "บราซิล"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr ""
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "บริติชอินเดียนโอเชียนเทร์ริทอรี"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "หมู่เกาะบริติชเวอร์จิน"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "บรูไนดารุสซาลาม"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr ""
-
-#: zypp/RepoManager.cc:1282
-#, fuzzy, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "การเพิ่มคลังแพกเกจ %1 ล้มเหลว"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "บัลแกเรีย"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "ภาษาบัลแกเรีย"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr ""
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "บูร์กินาฟาโซ"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr ""
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "บุรุนดี"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr ""
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "กัมพูชา"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "คาเมรูน"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "ไม่สามารถสร้างไดเร็กทอรี "
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr ""
-
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "ไม่สามารถเปิดแฟ้ม %1 ได้"
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "ไม่สามารถเปิดใช้งานบริการ '%1' ได้"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "ไม่สามารถสร้างไดเรกทอรี "
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "ไม่สามารถเปิดใช้งานบริการ '%1' ได้"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-#, fuzzy
-msgid "Can't figure out where the service is stored."
-msgstr "ไม่สามารถลบบริการได้ เนื่องจากมันยังไม่ถูกติดตั้ง"
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr ""
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr ""
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr ""
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "ไม่สามารถเปิดแฟ้ม %1 ได้"
-
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "ไม่สามารถเปิดแฟ้ม %1 ได้"
-
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "ไม่สามารถเปิดแฟ้ม %1 ได้"
-
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "ไม่สามารถเปิดแฟ้ม %1 ได้"
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr ""
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
 msgstr ""
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "แคนาดา"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+#, fuzzy
+msgid "Batak (Indonesia)"
+msgstr "อินโดนีเซีย"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "ไม่สามารถเปิดใช้งานบริการ '%1' ได้"
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "ภาษาบัลแกเรีย"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "ไม่สามารถเปิดแฟ้ม %1 ได้"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr ""
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "แหลมเวอร์ดี"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr ""
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -849,11 +2245,6 @@ msgstr "ภาษาคาตะลาน"
 msgid "Caucasian (Other)"
 msgstr ""
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "หมู่เกาะเคย์แมน"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -864,44 +2255,15 @@ msgstr ""
 msgid "Celtic (Other)"
 msgstr ""
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-#, fuzzy
-msgid "Central African Republic"
-msgstr "สาธารณรัฐแอฟริกากลาง"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr ""
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "ชาด"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr ""
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-#, fuzzy
-msgid "Chamic Languages"
-msgstr "ภาษา"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr ""
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, fuzzy, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "จัดเก็บแฟ้มการปรับแต่งค่า"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr ""
 
 #. language code: che ce
 #: zypp/LanguageCode.cc:319
@@ -909,126 +2271,68 @@ msgstr "จัดเก็บแฟ้มการปรับแต่งค่
 msgid "Chechen"
 msgstr "ตรวจสอบ"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr ""
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-#, fuzzy
-msgid "Cheyenne"
-msgstr "กาแยน"
-
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr ""
-
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "ชิลี"
-
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "จีน"
-
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 #, fuzzy
 msgid "Chinese"
 msgstr "จีน"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr ""
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr ""
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr ""
 
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr ""
+
 #. language code: chp
 #: zypp/LanguageCode.cc:335
 msgid "Chipewyan"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "เกาะคริสต์มาส"
-
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr ""
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr ""
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr ""
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "หมู่เกาะโคคอส (Keeling)"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "โคลัมเบีย"
-
-#: zypp/ExternalProgram.cc:507
-#, fuzzy, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "หมดเวลาของคำสั่งหลังจาก %1 วินาที"
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "คอโมโรส"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "คองโก"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+#, fuzzy
+msgid "Cheyenne"
+msgstr "กาแยน"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "หมู่เกาะคุ้ก"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+#, fuzzy
+msgid "Chamic Languages"
+msgstr "ภาษา"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1038,38 +2342,12 @@ msgstr ""
 #. language code: cor kw
 #: zypp/LanguageCode.cc:349
 #, fuzzy
-msgid "Cornish"
-msgstr "ภาษาเดนมาร์ก"
-
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr ""
-
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "คอสตาริกา"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "โกตดิวัวร์"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr ""
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-#, fuzzy
-msgid "Creek"
-msgstr "ภาษากรีก"
+msgid "Cornish"
+msgstr "ภาษาเดนมาร์ก"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
 msgstr ""
 
 #. language code: cpe
@@ -1087,46 +2365,36 @@ msgstr ""
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr ""
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "โครเอเชีย"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "ภาษาโครเอเชีย"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "คิวบา"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr ""
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "ไซปรัส"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "ภาษาเช็ก"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "สาธารณรัฐเช็ก"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1153,10 +2421,15 @@ msgstr ""
 msgid "Delaware"
 msgstr "ฮาร์ดแวร์"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "เดนมาร์ก"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr ""
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr ""
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1168,59 +2441,30 @@ msgstr ""
 msgid "Divehi"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "จิบูติ"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr ""
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "โดมินิกา"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "สาธารณรัฐโดมินิกัน"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, fuzzy, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "ดาวน์โหลดแฟ้มอิมเมจการติดตั้ง"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr ""
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+#, fuzzy
+msgid "Lower Sorbian"
+msgstr "ภาษาเซอร์เบียน"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
 #. language code: dut nld nl
@@ -1228,11 +2472,6 @@ msgstr ""
 msgid "Dutch"
 msgstr "ภาษาดัตช์"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr ""
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1243,26 +2482,11 @@ msgstr ""
 msgid "Dzongkha"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "ติมอร์ตะวันออก"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "เอกวาดอร์"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "อียิปต์"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1273,32 +2497,11 @@ msgstr ""
 msgid "Ekajuk"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "เอลซัลวาดอร์"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr ""
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 #, fuzzy
@@ -1310,164 +2513,42 @@ msgstr "ภาษาอังกฤษ (แบบอเมริกา)"
 msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr ""
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "อิเควทอเรียลกินี"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "เอริเทรีย"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, fuzzy, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "เกิดข้อผิดพลาดขึ้นระหว่างทำการสร้างคลังแพกเกจ"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr ""
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr ""
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "เอสโตเนีย"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "ภาษาเอสโตเนีย"
-
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "เอธิโอเปีย"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr ""
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr ""
-
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "ล้มเหลวในการคืนค่าส่วน MBR ของฮาร์ดดิสก์"
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "ล้มเหลวในการคืนค่าส่วน MBR ของฮาร์ดดิสก์"
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr ""
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, fuzzy, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "แพกเกจ %1 เสียหาย การตรวจสอบความถูกต้องล้มเหลว"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "ไม่สามารถสร้างไดเรกทอรี '%1' ได้"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr ""
+msgid "Estonian"
+msgstr "ภาษาเอสโตเนีย"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "หมู่เกาะฟอล์คแลนด์ (Malvinas)"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr ""
 
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-#, fuzzy
-msgid "Fanti"
-msgstr "แอตแลนติก"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "หมู่เกาะแฟโร"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 #, fuzzy
 msgid "Faroese"
 msgstr "หมู่เกาะแฟโร"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "สหพันธรัฐไมโครนีเซียสหพันธรัฐไมโครนีเซีย"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "ฟิจิ"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+#, fuzzy
+msgid "Fanti"
+msgstr "แอตแลนติก"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
@@ -1475,125 +2556,12 @@ msgstr "ฟิจิ"
 msgid "Fijian"
 msgstr "ฟิจิ"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "ไม่พบแฟ้มควบคุม %1 บนสื่อการติดตั้ง"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 #, fuzzy
 msgid "Filipino"
 msgstr "ฟิลิปปินส์"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "ฟินแลนด์"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1604,41 +2572,16 @@ msgstr "ภาษาฟินแลนด์"
 msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-#, fuzzy
-msgid "Following actions will be done:"
-msgstr "จะมีการดำเนินการตามขั้นตอนต่อไปนี้:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "ฝรั่งเศส"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "ภาษาฝรั่งเศส"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "เฟรนช์เกียนา"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "เฟรนช์โปลินีเซีย"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "เฟรนช์เซาเทิร์น"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1654,48 +2597,22 @@ msgstr ""
 msgid "Frisian"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr ""
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr ""
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr ""
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 #, fuzzy
 msgid "Ga"
 msgstr "กวม"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "กาบอน"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr ""
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr ""
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "แกมเบีย"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-#, fuzzy
-msgid "Ganda"
-msgstr "รวันด้า"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1706,15 +2623,11 @@ msgstr ""
 msgid "Gbaya"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr ""
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "จอร์เจีย"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+#, fuzzy
+msgid "Germanic (Other)"
+msgstr "ภาษาเยอรมัน (สวิตเซอร์แลนด์)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1727,6 +2640,36 @@ msgstr "จอร์เจีย"
 msgid "German"
 msgstr "ภาษาเยอรมัน"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr ""
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr ""
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr ""
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr ""
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr ""
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr ""
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1737,31 +2680,6 @@ msgstr ""
 msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-#, fuzzy
-msgid "Germanic (Other)"
-msgstr "ภาษาเยอรมัน (สวิตเซอร์แลนด์)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "เยอรมันนี"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "กานา"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "ยิบรอลตา"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr ""
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1782,11 +2700,6 @@ msgstr ""
 msgid "Grebo"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "กรีซ"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1797,61 +2710,16 @@ msgstr ""
 msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "กรีนแลนด์"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "เกรนาดา"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "กวาเดอลูป"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "กวม"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr ""
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "กัวเตมาลา"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "เกิร์นซีย์"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "กินี"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "กินี-บิสเซา"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "ภาษาคุชราตี"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "กายอานา"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1862,55 +2730,22 @@ msgstr ""
 msgid "Haida"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "ไฮติ"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 #, fuzzy
 msgid "Haitian"
 msgstr "ไฮติ"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "ไม่ได้เชื่อมต่อ"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-#, fuzzy
-msgid "Have you enabled all requested repositories?"
-msgstr "เพิ่มคลังแพกเกจแบบออนไลน์ที่เลือกไว้ทั้งหมด"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "เกาะเฮิร์ดและหมู่เกาะแมกดอนัลด์"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1936,253 +2771,117 @@ msgstr ""
 msgid "Hindi"
 msgstr "ภาษาฮินดี"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr ""
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-#, fuzzy
-msgid "History:"
-msgstr "คลังแพกเกจ: "
-
 #. language code: hit
-#: zypp/LanguageCode.cc:529
-msgid "Hittite"
-msgstr ""
-
-#. language code: hmn
-#: zypp/LanguageCode.cc:531
-msgid "Hmong"
-msgstr ""
-
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "นครรัฐวาติกัน"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "ฮอนดูรัส"
-
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "ฮ่องกง"
-
-#. language code: hun hu
-#: zypp/LanguageCode.cc:537
-msgid "Hungarian"
-msgstr "ภาษาฮังการี"
-
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "ฮังการี"
-
-#. language code: hup
-#: zypp/LanguageCode.cc:539
-msgid "Hupa"
-msgstr ""
-
-#. language code: iba
-#: zypp/LanguageCode.cc:541
-msgid "Iban"
-msgstr ""
-
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "ไอซ์แลนด์"
-
-#. language code: ice isl is
-#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
-msgid "Icelandic"
-msgstr "ภาษาไอซ์แลนด์"
-
-#. language code: ido io
-#: zypp/LanguageCode.cc:549
-msgid "Ido"
-msgstr ""
-
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr ""
-
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
-msgstr ""
-
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr ""
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr ""
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "อินเดีย"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr ""
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr ""
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "อินโดนีเซีย"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "ภาษาอินโดนีเซีย"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-#, fuzzy
-msgid "Installation has been aborted as directed."
-msgstr "การติดตั้งเสร็จสมบูรณ์เพียงบางส่วนเท่านั้น"
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-#, fuzzy
-msgid "Interlingue"
-msgstr "เขตภายในเครือข่าย"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr ""
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
+#: zypp/LanguageCode.cc:529
+msgid "Hittite"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
+#. language code: hmn
+#: zypp/LanguageCode.cc:531
+msgid "Hmong"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+#, fuzzy
+msgid "Upper Sorbian"
+msgstr "ภาษาเซอร์เบียน"
 
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
+#. language code: hun hu
+#: zypp/LanguageCode.cc:537
+msgid "Hungarian"
+msgstr "ภาษาฮังการี"
+
+#. language code: hup
+#: zypp/LanguageCode.cc:539
+msgid "Hupa"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
+#. language code: iba
+#: zypp/LanguageCode.cc:541
+msgid "Iban"
 msgstr ""
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1049
-#, fuzzy, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "à¸\84à¹\88าสำหรัà¸\9aà¸\95ัวà¹\80ลือà¸\81 '%1' à¹\84มà¹\88à¸\96ูà¸\81à¸\95à¹\89อà¸\87: %2"
+#. language code: ice isl is
+#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
+msgid "Icelandic"
+msgstr "ภาษาà¹\84อà¸\8bà¹\8cà¹\81ลà¸\99à¸\94à¹\8c"
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
+#. language code: ido io
+#: zypp/LanguageCode.cc:549
+msgid "Ido"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+#, fuzzy
+msgid "Sichuan Yi"
+msgstr "ลิทัวเนีย"
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1081
-#, fuzzy, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "ค่าสำหรับตัวเลือก '%1' ไม่ถูกต้อง: %2"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr ""
 
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "รูปแบบการค้นหา (RegExp)"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+#, fuzzy
+msgid "Interlingue"
+msgstr "เขตภายในเครือข่าย"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "ค่าสำหรับตัวเลือก '%1' ไม่ถูกต้อง: %2"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "อิหร่าน"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "อิรัà¸\81"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "ภาษาอิà¸\99à¹\82à¸\94à¸\99ีà¹\80à¸\8bีย"
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "ไอร์แลนด์"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr ""
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
 msgstr ""
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
 msgstr ""
 
 #. language code: iro
@@ -2191,55 +2890,32 @@ msgstr ""
 msgid "Iroquoian Languages"
 msgstr "เป็นก_ลุ่มภาษา"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "เกาะแมน"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "อิสราเอล"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "ภาษาอิตาลี"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "อิตาลี"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "จาไมก้า"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+#, fuzzy
+msgid "Javanese"
+msgstr "ภาษาญี่ปุ่น"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "ญี่ปุ่น"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr ""
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "ภาษาญี่ปุ่น"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
 #, fuzzy
-msgid "Javanese"
-msgstr "ภาษาญี่ปุ่น"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "เจอร์ซีย์"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "จอร์แดน"
+msgid "Judeo-Persian"
+msgstr "ภาษาอินโดนีเซีย"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
@@ -2247,15 +2923,9 @@ msgstr "จอร์แดน"
 msgid "Judeo-Arabic"
 msgstr "ภาษาอารบิก"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-#, fuzzy
-msgid "Judeo-Persian"
-msgstr "ภาษาอินโดนีเซีย"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
 #. language code: kab
@@ -2274,11 +2944,6 @@ msgstr "การาจี"
 msgid "Kalaallisut"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr ""
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2290,21 +2955,6 @@ msgstr ""
 msgid "Kannada"
 msgstr "แคนาดา"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr ""
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr ""
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr ""
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2315,9 +2965,9 @@ msgstr ""
 msgid "Kashmiri"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
 #. language code: kaw
@@ -2331,31 +2981,26 @@ msgstr ""
 msgid "Kazakh"
 msgstr "คาซัคสถาน"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "คาซัคสถาน"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "เคนยา"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr ""
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "ภาษาเขมร"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr ""
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "ภาษาเขมร"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2366,11 +3011,6 @@ msgstr ""
 msgid "Kikuyu"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr ""
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2381,14 +3021,14 @@ msgstr ""
 msgid "Kirghiz"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "คิริบาส"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
 #. language code: kom kv
@@ -2402,11 +3042,6 @@ msgstr ""
 msgid "Kongo"
 msgstr "คองโก"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr ""
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2422,11 +3057,21 @@ msgstr ""
 msgid "Kpelle"
 msgstr ""
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr ""
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr ""
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr ""
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2442,26 +3087,11 @@ msgstr ""
 msgid "Kurdish"
 msgstr ""
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr ""
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "คูเวต"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "คีร์กีซน"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2483,69 +3113,22 @@ msgstr ""
 msgid "Lao"
 msgstr "บันทึกการทำงาน"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "สาธารณรัฐประชาธิปไตยประชาชนลาว"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr ""
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "ลัตเวีย"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 #, fuzzy
 msgid "Latvian"
 msgstr "ลัตเวีย"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "เลบานอน"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "เลโซโทต"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "ไลบีเรีย"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "ลิเบีย"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "ลิกเตนสไตน์"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 #, fuzzy
@@ -2557,64 +3140,49 @@ msgstr "ลักซ์เซมเบิร์ก"
 msgid "Lingala"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "ลิทัวเนีย"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "ภาษาลิทัวเนีย"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr ""
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-#, fuzzy
-msgid "Low German"
-msgstr "ภาษาเยอรมัน"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
+#. language code: lol
+#: zypp/LanguageCode.cc:675
 #, fuzzy
-msgid "Lower Sorbian"
-msgstr "ภาษาà¹\80à¸\8bอรà¹\8cà¹\80à¸\9aียà¸\99"
+msgid "Mongo"
+msgstr "à¸\84อà¸\87à¹\82à¸\81"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr ""
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr ""
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+#, fuzzy
+msgid "Luxembourgish"
+msgstr "ลักเซมเบิร์ก"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr ""
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr ""
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+#, fuzzy
+msgid "Ganda"
+msgstr "รวันด้า"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-#, fuzzy
-msgid "Lule Sami"
-msgstr "ชื่อโมดูล"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 #, fuzzy
@@ -2631,36 +3199,11 @@ msgstr ""
 msgid "Lushai"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "ลักเซมเบิร์ก"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-#, fuzzy
-msgid "Luxembourgish"
-msgstr "ลักเซมเบิร์ก"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "มาเก๊า"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "มาซิโดเนีย"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "ภาษามาซิโดเนีย"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "มาดากัสการ์"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2671,99 +3214,31 @@ msgstr ""
 msgid "Magahi"
 msgstr ""
 
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
-msgstr ""
-
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
-msgstr ""
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-#, fuzzy
-msgid "Malagasy"
-msgstr "มาดากัสการ์"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "มาลาวี"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-#, fuzzy
-msgid "Malay"
-msgstr "มาเลเซีย"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-#, fuzzy
-msgid "Malayalam"
-msgstr "มาเลเซีย"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "มาเลเซีย"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "มัลดิฟ"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "มาลี"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "มอลตา"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-#, fuzzy
-msgid "Maltese"
-msgstr "มอลตา"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr ""
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
 #, fuzzy
-msgid "Mandar"
-msgstr "รวัà¸\99à¸\94à¹\89า"
+msgid "Marshallese"
+msgstr "หมูà¹\88à¹\80à¸\81าะมาà¹\81à¸\8aลลà¹\8c"
 
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
 msgstr ""
 
-#. language code: mno
-#: zypp/LanguageCode.cc:751
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
 #, fuzzy
-msgid "Manobo Languages"
-msgstr "ภาษา"
+msgid "Malayalam"
+msgstr "มาà¹\80ลà¹\80à¸\8bีย"
 
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
 msgstr ""
 
 #. language code: mao mri mi
@@ -2771,96 +3246,47 @@ msgstr ""
 msgid "Maori"
 msgstr ""
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr ""
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "ภาษามาราฐี"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr ""
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "หมู่เกาะมาแชลล์"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-#, fuzzy
-msgid "Marshallese"
-msgstr "หมู่เกาะมาแชลล์"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "มาทินิค"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr ""
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr ""
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "มอริทาเนีย"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "มอริเชียส"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
 #, fuzzy
-msgid "Mayan Languages"
-msgstr "ภาษา"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "มายอต"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+msgid "Malay"
+msgstr "มาเลเซีย"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+#, fuzzy
+msgid "Mandar"
+msgstr "รวันด้า"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "เมืองหลวงฝรั่งเศส"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "เม็กซิโก"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr ""
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2872,58 +3298,55 @@ msgstr ""
 msgid "Minangkabau"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr ""
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 #, fuzzy
 msgid "Miscellaneous Languages"
 msgstr "เป็นก_ลุ่มภาษา"
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
-msgstr ""
-
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
 #, fuzzy
-msgid "Moldavian"
-msgstr "มอลà¹\82à¸\94วา"
+msgid "Malagasy"
+msgstr "มาà¸\94าà¸\81ัสà¸\81ารà¹\8c"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "มอลโดวา"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+#, fuzzy
+msgid "Maltese"
+msgstr "มอลตา"
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "โมนาโค"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr ""
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
+#. language code: mno
+#: zypp/LanguageCode.cc:751
 #, fuzzy
-msgid "Mongo"
-msgstr "à¸\84อà¸\87à¹\82à¸\81"
+msgid "Manobo Languages"
+msgstr "ภาษา"
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "มองโกเลีย"
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
+msgstr ""
+
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+#, fuzzy
+msgid "Moldavian"
+msgstr "มอลโดวา"
 
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
@@ -2931,31 +3354,11 @@ msgstr "มองโกเลีย"
 msgid "Mongolian"
 msgstr "มองโกเลีย"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "มอนติเนโกร"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "มอนต์เซอร์รัต"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "โมร็อกโก"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "โมแซมบิก"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 #, fuzzy
@@ -2968,63 +3371,75 @@ msgstr "ภาษา"
 msgid "Munda languages"
 msgstr "เป็นก_ลุ่มภาษา"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "พม่า"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+#, fuzzy
+msgid "Creek"
+msgstr "ภาษากรีก"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr ""
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr ""
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+#, fuzzy
+msgid "Mayan Languages"
+msgstr "ภาษา"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr ""
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "นามิเบีย"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+#, fuzzy
+msgid "North American Indian"
+msgstr "อเมริกาเหนือ"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "นาวรู"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr ""
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr ""
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr ""
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr ""
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 #, fuzzy
 msgid "Ndonga"
 msgstr "ตองก้า"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr ""
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "เนปาล"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
+#. language code: nds
+#: zypp/LanguageCode.cc:791
 #, fuzzy
-msgid "Nepal Bhasa"
-msgstr "à¹\80à¸\99à¸\9bาล"
+msgid "Low German"
+msgstr "ภาษาà¹\80ยอรมัà¸\99"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
@@ -3032,149 +3447,58 @@ msgstr "เนปาล"
 msgid "Nepali"
 msgstr "เนปาล"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "เนเธอร์แลนด์"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "เนเธอร์แลนด์ แอนทิลีส"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "นิวคาลิโดเนีย"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "นิวซีแลนด์"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: new
+#: zypp/LanguageCode.cc:795
+#, fuzzy
+msgid "Nepal Bhasa"
+msgstr "เนปาล"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "นิคารากัว"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "ไนเจอร์"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "ไนจีเรีย"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "นิอุเอ"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 #, fuzzy
 msgid "Niuean"
 msgstr "นิอุเอ"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
 #, fuzzy
-msgid "No Code"
-msgstr "à¹\82à¸\84à¹\89à¸\94ภาษา"
+msgid "Norwegian Nynorsk"
+msgstr "ภาษาà¸\99อรà¹\8cà¹\80วยà¹\8c"
 
-#: zypp/repo/RepoProvideFile.cc:265
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
 #, fuzzy
-msgid "No url in repository."
-msgstr "à¹\80ลือà¸\81à¸\84ลัà¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88"
+msgid "Norwegian Bokmal"
+msgstr "ภาษาà¸\99อรà¹\8cà¹\80วยà¹\8c"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "เกาะนอร์ฟอล์ค"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-#, fuzzy
-msgid "North American Indian"
-msgstr "อเมริกาเหนือ"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "เกาหลีเหนือ"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "หมู่เกาะมาเรียนเหนือ"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-#, fuzzy
-msgid "Northern Sami"
-msgstr "อเมริกาเหนือ"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr ""
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "นอร์เวย์"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "ภาษานอร์เวย์"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-#, fuzzy
-msgid "Norwegian Bokmal"
-msgstr "ภาษานอร์เวย์"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-#, fuzzy
-msgid "Norwegian Nynorsk"
-msgstr "ภาษานอร์เวย์"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
 #. language code: nub
@@ -3183,6 +3507,16 @@ msgstr ""
 msgid "Nubian Languages"
 msgstr "เป็นก_ลุ่มภาษา"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr ""
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr ""
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3203,11 +3537,6 @@ msgstr ""
 msgid "Nzima"
 msgstr ""
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "ลบอัตโนมัติ"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3218,20 +3547,6 @@ msgstr ""
 msgid "Ojibwa"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "โอมาน"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3253,122 +3568,64 @@ msgstr "แถบแสดงการใช้"
 msgid "Ossetian"
 msgstr ""
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr ""
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 #, fuzzy
 msgid "Otomian Languages"
 msgstr "เป็นก_ลุ่มภาษา"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, fuzzy, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr "แพกเกจ %1 เสียหาย การตรวจสอบความถูกต้องล้มเหลว"
-
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr ""
-
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "ปากีสถาน"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "เกาะพาเลา"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-#, fuzzy
-msgid "Palauan"
-msgstr "เกาะพาเลา"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "เขตปกครองปาเลสไตน์"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr ""
-
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "ปานามา"
-
 #. language code: pag
 #: zypp/LanguageCode.cc:847
 msgid "Pangasinan"
 msgstr ""
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-#, fuzzy
-msgid "Panjabi"
-msgstr "ภาษาปัญจาบี"
-
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr ""
-
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "ปาปัวนิวกินี"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr ""
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "ปารากวัย"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
 msgstr ""
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+#, fuzzy
+msgid "Panjabi"
+msgstr "ภาษาปัญจาบี"
+
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
 msgstr ""
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+#. language code: pau
+#: zypp/LanguageCode.cc:857
 #, fuzzy
-msgid "Persian"
-msgstr "รุà¹\88à¸\99"
+msgid "Palauan"
+msgstr "à¹\80à¸\81าะà¸\9eาà¹\80ลา"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "เปรู"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+#, fuzzy
+msgid "Persian"
+msgstr "รุ่น"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
@@ -3376,44 +3633,25 @@ msgstr "เปรู"
 msgid "Philippine (Other)"
 msgstr "ฟิลิปปินส์"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "ฟิลิปปินส์"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "เกาะพิตแคร์น"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "โปแลนด์"
-
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "ภาษาโปแลนด์"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "โปรตุเกส"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr ""
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3426,77 +3664,21 @@ msgstr "ภาษาโปรตุเกส"
 msgid "Prakrit Languages"
 msgstr "ภาษาหลัก"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "เปอร์โตริโก"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr ""
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "กาต้าร์"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr ""
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr ""
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3513,52 +3695,15 @@ msgstr "ญี่ปุ่น"
 msgid "Rarotongan"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, fuzzy, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "กำลังตรวจคลังแพกเกจ "
-
-#: zypp/RepoManager.cc:338
-#, fuzzy
-msgid "Repository alias cannot start with dot."
-msgstr "คลังแพกเกจใช้งานไม่ได้"
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "ต้องการ"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "รียูเนียน"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "โรมาเนีย"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "ภาษาโรมาเนีย"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr ""
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
@@ -3566,6 +3711,11 @@ msgstr "ภาษาโรมาเนีย"
 msgid "Romany"
 msgstr "โรมาเนีย"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "ภาษาโรมาเนีย"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 #, fuzzy
@@ -3577,86 +3727,36 @@ msgstr "บุรุนดี"
 msgid "Russian"
 msgstr "ภาษารัสเซีย"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "สมาพันธรัฐรัสเซีย"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "รวันด้า"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "เซนต์เฮเลน่า"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "เซนต์คิตส์และเนวิส"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "เซนต์ลูเซีย"
-
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "ซานมาริโน"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "แซงปีแยร์และมีเกอลง"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "เซนต์วินเซนต์และเกรนาดีนส์"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
+#. language code: sad
+#: zypp/LanguageCode.cc:905
 #, fuzzy
-msgid "Salishan Languages"
-msgstr "à¹\80à¸\9bà¹\87à¸\99à¸\81_ลุà¹\88มภาษา"
+msgid "Sandawe"
+msgstr "รวัà¸\99à¸\94à¹\89า"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "ซามัว"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-#, fuzzy
-msgid "Samoan"
-msgstr "ซามัว"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "ซานมาริโน"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr ""
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
+#. language code: sal
+#: zypp/LanguageCode.cc:913
 #, fuzzy
-msgid "Sandawe"
-msgstr "รวัà¸\99à¸\94à¹\89า"
+msgid "Salishan Languages"
+msgstr "à¹\80à¸\9bà¹\87à¸\99à¸\81_ลุà¹\88มภาษา"
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
 msgstr ""
 
 #. language code: san sa
@@ -3664,37 +3764,36 @@ msgstr ""
 msgid "Sanskrit"
 msgstr ""
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr ""
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "ซาวโทมและพรินซิป"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-#, fuzzy
-msgid "Sardinian"
-msgstr "ภาษายูเครน"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "ภาษาเซอร์เบียน"
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "ซาอุดิอาระเบีย"
-
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr ""
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "ภาษาโครเอเชีย"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3705,38 +3804,16 @@ msgstr ""
 msgid "Semitic (Other)"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "เซนีกัล"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "เซอร์เบีย"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "ภาษาเซอร์เบียน"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr ""
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr ""
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "ซีเชลล์"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+#, fuzzy
+msgid "Sign Languages"
+msgstr "เป็นก_ลุ่มภาษา"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
@@ -3744,110 +3821,25 @@ msgstr "ซีเชลล์"
 msgid "Shan"
 msgstr "เซี่ยงไฮ้"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr ""
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-#, fuzzy
-msgid "Sichuan Yi"
-msgstr "ลิทัวเนีย"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr ""
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "เซียร์ราลีโอน"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-#, fuzzy
-msgid "Sign Languages"
-msgstr "เป็นก_ลุ่มภาษา"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "ไม่พบแฟ้มควบคุม %1 บนสื่อการติดตั้ง"
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "ไม่พบแฟ้มควบคุม %1 บนสื่อการติดตั้ง"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "ไม่พบแฟ้มควบคุม %1 บนสื่อการติดตั้ง"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "ไม่พบแฟ้มควบคุม %1 บนสื่อการติดตั้ง"
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "การสร้างแฟ้มสำรองข้อมูลล้มเหลว"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr ""
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr ""
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "สิงคโปร์"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "ภาษาอักษรสิงหล"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 #, fuzzy
 msgid "Siouan Languages"
 msgstr "เป็นก_ลุ่มภาษา"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -3860,40 +3852,74 @@ msgstr ""
 msgid "Slovak"
 msgstr "ภาษาสโลวะเกีย"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "สโลวัก"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "สโลวีเนีย"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "ภาษาสโลวีเนีย"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+#, fuzzy
+msgid "Southern Sami"
+msgstr "จอร์เจียใต้"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+#, fuzzy
+msgid "Northern Sami"
+msgstr "อเมริกาเหนือ"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr ""
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+#, fuzzy
+msgid "Lule Sami"
+msgstr "ชื่อโมดูล"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr ""
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+#, fuzzy
+msgid "Samoan"
+msgstr "ซามัว"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr ""
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr ""
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr ""
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr ""
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr ""
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "หมู่เกาะโซโลมอน"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
-#, fuzzy
-msgid "Somali"
-msgstr "โซมาเลีย"
-
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
+#, fuzzy
+msgid "Somali"
 msgstr "โซมาเลีย"
 
 #. language code: son
@@ -3902,80 +3928,35 @@ msgstr "โซมาเลีย"
 msgid "Songhai"
 msgstr "เซี่ยงไฮ้"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr ""
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-#, fuzzy
-msgid "Sorbian Languages"
-msgstr "เป็นก_ลุ่มภาษา"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "แอฟฟริกาใต้"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr ""
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "เกาะเซาท์จอร์เจียและหมู่เกาะเซาท์แซนด์วิช"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "เกาหลีใต้"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-#, fuzzy
-msgid "Southern Altai"
-msgstr "แอฟฟริกาใต้"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-#, fuzzy
-msgid "Southern Sami"
-msgstr "จอร์เจียใต้"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "สเปน"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "ภาษาสเปน"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "ศรีลังกา"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+#, fuzzy
+msgid "Sardinian"
+msgstr "ภาษายูเครน"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "ซูดาน"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
 #. language code: suk
@@ -3983,95 +3964,39 @@ msgstr ""
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-#, fuzzy
-msgid "Sumerian"
-msgstr "ลำดับอนุกรม (Seri&al)"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 #, fuzzy
 msgid "Sundanese"
 msgstr "วันอาทิตย์"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "ซูรินาเม"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "สฟาลบาร์และยานไมเอน"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+#, fuzzy
+msgid "Sumerian"
+msgstr "ลำดับอนุกรม (Seri&al)"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr ""
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr ""
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "สวาซิแลนด์"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "สวีเดน"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "ภาษาสวีเดน"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "สวิตเซอร์แลนด์"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "ซีเรีย"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 #, fuzzy
 msgid "Syriac"
 msgstr "ซีเรีย"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 #, fuzzy
@@ -4084,37 +4009,11 @@ msgstr "ภาษาโครเอเชีย"
 msgid "Tai (Other)"
 msgstr "อื่น ๆ"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "ไต้หวัน"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-#, fuzzy
-msgid "Tajik"
-msgstr "ทาจีกิสถาน"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "ทาจีกิสถาน"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "ภาษาทมิฬ"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "แทนซาเนีย"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 #, fuzzy
@@ -4126,6 +4025,11 @@ msgstr "กาต้าร์"
 msgid "Telugu"
 msgstr ""
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4136,34 +4040,22 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+#, fuzzy
+msgid "Tajik"
+msgstr "ทาจีกิสถาน"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr ""
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "ภาษาไทย"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "ราชอาณาจักรไทย"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr ""
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-#, fuzzy
-msgid "This request will break your system!"
-msgstr "รุ่นนี้ถูกติดตั้งไว้บนระบบของคุณ"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4179,47 +4071,26 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "โตโก"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "โทเคเลา"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "ตองก้า"
-
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
 msgid "Tonga (Nyasa)"
@@ -4229,109 +4100,72 @@ msgstr ""
 #: zypp/LanguageCode.cc:1055
 #, fuzzy
 msgid "Tonga (Tonga Islands)"
-msgstr "หมู่เกาะโซโลมอน"
-
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
+msgstr "หมู่เกาะโซโลมอน"
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "ตรีนิแดดและโทบาโก"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr ""
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+#, fuzzy
+msgid "Tswana"
+msgstr "บอตสวานา"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 #, fuzzy
 msgid "Tsonga"
 msgstr "ตองก้า"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
 #, fuzzy
-msgid "Tswana"
-msgstr "à¸\9aอà¸\95สวาà¸\99า"
+msgid "Turkmen"
+msgstr "à¸\95ุรà¸\81ี"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "ตูนีเซีย"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 #, fuzzy
 msgid "Tupi Languages"
 msgstr "ภาษา"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "ตุรกี"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "ภาษาตุรกี"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-#, fuzzy
-msgid "Turkmen"
-msgstr "ตุรกี"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "เติร์กเมนิสถาน"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "เกาะเติร์กและเคคอส"
-
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "ตูวาลู"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr ""
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr ""
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "ยูกันดา"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4342,11 +4176,6 @@ msgstr ""
 msgid "Uighur"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "ยูเครน"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4357,216 +4186,39 @@ msgstr "ภาษายูเครน"
 msgid "Umbundu"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:229
-#, fuzzy
-msgid "Unable to create dbus connection"
-msgstr "ทดสอบการเชื่อมต่ออินเทอร์เน็ต"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr ""
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-#, fuzzy
-msgid "Unhandled repository type"
-msgstr "ชื่อของคลังแพกเกจใช้งานไม่ได้"
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "สหรัฐอาหรับเอมิเรตส์"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "สหราชอาณาจักร"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "สหรัฐอเมริกา"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "หมู่เกาะยูเอส ไมเนอร์ เอาท์ไลย์อิ้ง"
-
-#: zypp/CountryCode.cc:50
-#, fuzzy
-msgid "Unknown country: "
-msgstr "ไม่ทราบประเภทของระเบียน: %1"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "ไม่รู้จักตัวเลือกสำหรับคำสั่ง '%1': %2"
-
-#: zypp/LanguageCode.cc:49
-#, fuzzy
-msgid "Unknown language: "
-msgstr "ภาษาที่ไม่รู้จัก: "
-
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "โหมดที่ไม่รู้จัก"
-
-#: zypp/base/StrMatcher.cc:153
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "ไม่ทราบค่าของพารามิเตอร์ %1"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-#, fuzzy
-msgid "Unknown support option. Description not available"
-msgstr "ไม่มีรายละเอียด"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr ""
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr ""
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-#, fuzzy
-msgid "Upper Sorbian"
-msgstr "ภาษาเซอร์เบียน"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr ""
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "อูรุกวัย"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 #, fuzzy
 msgid "Uzbek"
 msgstr "อุซเบกิสถาน"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "อุซเบกิสถาน"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 #, fuzzy
 msgid "Vai"
 msgstr "วาติกัน"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "วานูอาตู"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 #, fuzzy
 msgid "Venda"
 msgstr "ผู้ผลิต"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "เวเนซูเอลา"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "เวียดนาม"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "ภาษาเวียดนาม"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "หมู่เกาะเวอร์จิน, สหรัฐอเมริกา"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4588,16 +4240,6 @@ msgstr "ภาษา"
 msgid "Walamo"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "หมู่เกาะวาลลิสและหมู่เกาะฟุตูนา"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "ภาษาวัลลูน"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4613,105 +4255,332 @@ msgstr ""
 msgid "Welsh"
 msgstr "ภาษาเวลช์"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "ซาฮาร่าตะวันตก"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+#, fuzzy
+msgid "Sorbian Languages"
+msgstr "เป็นก_ลุ่มภาษา"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "ภาษาวัลลูน"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr ""
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr ""
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "ภาษาโคซา"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr ""
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr ""
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr ""
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+#, fuzzy
+msgid "Yoruba"
+msgstr "อรูบา"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+#, fuzzy
+msgid "Yupik Languages"
+msgstr "ภาษา"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr ""
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr ""
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr ""
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr ""
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "ภาษาซูลู"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr ""
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "ล้มเหลวในการคืนค่าส่วน MBR ของฮาร์ดดิสก์"
+
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "ไม่พบแฟ้มควบคุม %1 บนสื่อการติดตั้ง"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr ""
+
+#: zypp/repo/RepoProvideFile.cc:265
+#, fuzzy
+msgid "No url in repository."
+msgstr "เลือกคลังแพกเกจ"
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr ""
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, fuzzy, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr "แพกเกจ %1 เสียหาย การตรวจสอบความถูกต้องล้มเหลว"
+
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "การสร้างแฟ้มสำรองข้อมูลล้มเหลว"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, fuzzy, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "แพกเกจ %1 เสียหาย การตรวจสอบความถูกต้องล้มเหลว"
+
+#: zypp/repo/PackageProvider.cc:515
+#, fuzzy
+msgid "applydeltarpm check failed."
+msgstr "การตรวจความถูกต้องล้มเหลว"
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr ""
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, fuzzy, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "กำลังเรียกใช้คลังแพกเกจสำหรับปรับรุ่นให้ทันสมัย..."
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "สถาปัตยกรรมพื้นฐาน"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "ผิดพลาด: ไม่สามารถติดตั้งแพกเกจได้"
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "การตรวจสอบการขึ้นอยู่แก่กันของระบบ ไม่พบปัญหา"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+#, fuzzy
+msgid "Have you enabled all requested repositories?"
+msgstr "เพิ่มคลังแพกเกจแบบออนไลน์ที่เลือกไว้ทั้งหมด"
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "ยังไม่มีบริการ %1 อยู่"
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "ไฟร์วอลล์ยังไม่ถูกติดตั้ง"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "ไม่ต้องติดตั้งตัวจัดการการบูตระบบใด ๆ"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1070
+#, fuzzy
+msgid "deleted providers: "
+msgstr "อ่านค่าของผู้ให้บริการ"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+#, fuzzy
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr "เขียนค่าของผู้ให้บริการ"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "เขียนค่าของผู้ให้บริการ"
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "เยเมน"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, fuzzy, c-format, boost-format
+msgid "do not install %s"
+msgstr "ไม่ต้องติดตั้ง"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-#, fuzzy
-msgid "Yoruba"
-msgstr "อรูบา"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "บันทึกการตั้งค่าการติดตั้ง"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
 #, fuzzy
-msgid "Yupik Languages"
-msgstr "ภาษา"
+msgid "This request will break your system!"
+msgstr "รุà¹\88à¸\99à¸\99ีà¹\89à¸\96ูà¸\81à¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\84วà¹\89à¸\9aà¸\99ระà¸\9aà¸\9aà¸\82อà¸\87à¸\84ุà¸\93"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "แซมเบีย"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "ซิมบับเว"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "ภาษาà¸\8bูลู"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "ลà¸\9aอัà¸\95à¹\82à¸\99มัà¸\95ิ"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-#, fuzzy
-msgid "applydeltarpm check failed."
-msgstr "การตรวจความถูกต้องล้มเหลว"
-
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
 #: zypp/solver/detail/SATResolver.cc:1325
@@ -4719,24 +4588,16 @@ msgstr ""
 msgid "architecture change of %s to %s"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, fuzzy, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "การตรวจสอบการขึ้นอยู่แก่กันของระบบ ไม่พบปัญหา"
-
-#: zypp/solver/detail/SATResolver.cc:1017
-#, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "ไม่ต้องติดตั้งตัวจัดการการบูตระบบใด ๆ"
-
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/solver/detail/SATResolver.cc:1343
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "replacement of %s with %s"
 msgstr ""
 
 #: zypp/solver/detail/SATResolver.cc:1354
@@ -4744,200 +4605,331 @@ msgstr ""
 msgid "deinstallation of %s"
 msgstr "บันทึกการตั้งค่าการติดตั้ง"
 
-#: zypp/solver/detail/SATResolver.cc:1070
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, fuzzy, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "การตรวจสอบการขึ้นอยู่แก่กันของระบบ ไม่พบปัญหา"
+
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
 #, fuzzy
-msgid "deleted providers: "
-msgstr "อà¹\88าà¸\99à¸\84à¹\88าà¸\82อà¸\87à¸\9cูà¹\89à¹\83หà¹\89à¸\9aริà¸\81าร"
+msgid "generally ignore of some dependencies"
+msgstr "à¸\81ารà¸\95รวà¸\88สอà¸\9aà¸\81ารà¸\82ึà¹\89à¸\99อยูà¹\88à¹\81à¸\81à¹\88à¸\81ัà¸\99à¸\82อà¸\87ระà¸\9aà¸\9a à¹\84มà¹\88à¸\9eà¸\9aà¸\9bัà¸\8dหา"
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/parser/RepoindexFileReader.cc:197
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/parser/RepoindexFileReader.cc:209
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/base/InterProcessMutex.cc:83
 #, fuzzy, c-format, boost-format
-msgid "do not install %s"
-msgstr "à¹\84มà¹\88à¸\95à¹\89อà¸\87à¸\95ิà¸\94à¸\95ัà¹\89à¸\87"
+msgid "Can't open lock file: %s"
+msgstr "à¹\84มà¹\88สามารà¸\96à¹\80à¸\9bิà¸\94à¹\81à¸\9fà¹\89ม %1 à¹\84à¸\94à¹\89"
 
-#: zypp/solver/detail/SATResolver.cc:1258
-#, c-format, boost-format
-msgid "do not install most recent version of %s"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+#, fuzzy
+msgid "History:"
+msgstr "คลังแพกเกจ: "
+
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "โหมดที่ไม่รู้จัก"
+
+#: zypp/base/StrMatcher.cc:153
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "ไม่ทราบค่าของพารามิเตอร์ %1"
+
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "à¸\81ารà¸\95รวà¸\88สอà¸\9aà¸\81ารà¸\82ึà¹\89à¸\99อยูà¹\88à¹\81à¸\81à¹\88à¸\81ัà¸\99à¸\82อà¸\87ระà¸\9aà¸\9a à¹\84มà¹\88à¸\9eà¸\9aà¸\9bัà¸\8dหา"
+#: zypp/base/StrMatcher.cc:158
+#, fuzzy, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "รูà¸\9bà¹\81à¸\9aà¸\9aà¸\81ารà¸\84à¹\89à¸\99หา (RegExp)"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+msgid "Failed to mount %s on %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Failed to unmount %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:47
+#, fuzzy, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "ชื่อแฟ้ม: %1"
+
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-#, fuzzy
-msgid "invalid"
-msgstr "à¸\84à¹\88าà¹\80วลาà¹\83à¸\8aà¹\89à¸\87าà¸\99à¹\84มà¹\88à¹\84à¸\94à¹\89"
+#: zypp/media/MediaException.cc:60
+#, fuzzy, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "à¹\84มà¹\88à¸\9eà¸\9aà¹\81à¸\9fà¹\89มà¸\84วà¸\9aà¸\84ุม %1 à¸\9aà¸\99สืà¹\88อà¸\81ารà¸\95ิà¸\94à¸\95ัà¹\89à¸\87"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "ไม่สามารถเปิดแฟ้ม %1 ได้"
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, fuzzy, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "ดาวน์โหลดแฟ้มอิมเมจการติดตั้ง"
+
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
+
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr ""
+
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "keep %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
-#, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "ลบอัตโนมัติ"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr ""
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "ยัà¸\87à¹\84มà¹\88มีà¸\9aริà¸\81าร %1 à¸­à¸¢à¸¹à¹\88"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89อà¸\9cิà¸\94à¸\9eลาà¸\94à¸\82ึà¹\89à¸\99ระหวà¹\88าà¸\87à¸\97ำà¸\81ารสรà¹\89าà¸\87à¸\84ลัà¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88"
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "ผิดพลาด: ไม่สามารถติดตั้งแพกเกจได้"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
+
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
+
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "à¸\9aัà¸\99à¸\97ึà¸\81à¸\81ารà¸\95ัà¹\89à¸\87à¸\84à¹\88าà¸\81ารà¸\95ิà¸\94à¸\95ัà¹\89à¸\87"
+msgid "Cannot eject media '%s'"
+msgstr "à¹\84มà¹\88สามารà¸\96à¹\80à¸\9bิà¸\94à¹\83à¸\8aà¹\89à¸\87าà¸\99à¸\9aริà¸\81าร '%1' à¹\84à¸\94à¹\89"
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "replacement of %s with %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
+#: zypp/sat/detail/PoolImpl.cc:184
 #, fuzzy
-msgid "some dependency problem"
-msgstr "à¸\81ารà¸\95รวà¸\88สอà¸\9aà¸\81ารà¸\82ึà¹\89à¸\99อยูà¹\88à¹\81à¸\81à¹\88à¸\81ัà¸\99à¸\82อà¸\87ระà¸\9aà¸\9a à¹\84มà¹\88à¸\9eà¸\9aà¸\9bัà¸\8dหา"
+msgid "Can not create sat-pool."
+msgstr "à¹\84มà¹\88สามารà¸\96สรà¹\89าà¸\87à¹\84à¸\94à¹\80รà¹\87à¸\81à¸\97อรี "
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-#, fuzzy
-msgid "uninstallable providers: "
-msgstr "เขียนค่าของผู้ให้บริการ"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "ไม่ทราบ"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#, fuzzy
-#~ msgid "%s remove ok"
-#~ msgstr "เพื่อจะลบ:"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "ไม่สามารถเปิดแฟ้ม %1 ได้"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "à¹\84มà¹\88à¸\95à¹\89อà¸\87à¸\97ำà¸\81ารà¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¸\95ัวà¸\88ัà¸\94à¸\81ารà¸\81ารà¸\9aูà¸\95ระà¸\9aà¸\9a à¹\83หà¹\89à¸\97ำà¹\80à¸\9eียà¸\87สรà¹\89าà¸\87à¹\81à¸\9fà¹\89มà¸\81ารà¸\9bรัà¸\9aà¹\81à¸\95à¹\88ง"
+#~ msgid "do not keep %s installed"
+#~ msgstr "à¹\84มà¹\88à¸\95à¹\89อà¸\87à¸\95ิà¸\94à¸\95ัà¹\89ง"
 
 #, fuzzy
 #~ msgid "Download (Metalink curl) initialization failed for '%s'"
@@ -4949,13 +4941,20 @@ msgstr ""
 #~ msgstr "เกิดข้อผิดพลาดขึ้นระหว่างทำการสร้างคลังแพกเกจ"
 
 #, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "เกิดข้อผิดพลาดขึ้นระหว่างเขียนแฟ้ม '%1'"
-
-#, fuzzy
 #~ msgid "Failed to download %s from %s"
 #~ msgstr "ล้มเหลวในการดาวน์โหลดแฟ้ม delta ของแพกเกจ RPM: %1"
 
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "เซอร์เบีย และมอนติเนโกร"
+
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "ผู้รวบรวมเผยแพร่:"
+
+#, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "การตรวจสอบการขึ้นอยู่แก่กันของระบบ ไม่พบปัญหา"
+
 #, fuzzy
 #~ msgid ""
 #~ "File %s does not have a checksum.\n"
@@ -4974,17 +4973,18 @@ msgstr ""
 #~ "ไม่น่าจะเป็นแฟ้มอิมเมจแบบ ISO \n"
 #~ "แน่ใจหรือว่าต้องการจะใช้มันจริง ๆ ? \n"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "เซอร์เบีย และมอนติเนโกร"
+#, fuzzy
+#~ msgid "%s remove ok"
+#~ msgstr "เพื่อจะลบ:"
 
 #, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "à¸\9cูà¹\89รวà¸\9aรวมà¹\80à¸\9cยà¹\81à¸\9eรà¹\88:"
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "à¹\84มà¹\88à¸\95à¹\89อà¸\87à¸\97ำà¸\81ารà¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¸\95ัวà¸\88ัà¸\94à¸\81ารà¸\81ารà¸\9aูà¸\95ระà¸\9aà¸\9a à¹\83หà¹\89à¸\97ำà¹\80à¸\9eียà¸\87สรà¹\89าà¸\87à¹\81à¸\9fà¹\89มà¸\81ารà¸\9bรัà¸\9aà¹\81à¸\95à¹\88à¸\87"
 
 #, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "à¹\84มà¹\88à¸\95à¹\89อà¸\87à¸\95ิà¸\94à¸\95ัà¹\89à¸\87"
+#~ msgid "Can't open solv-file: "
+#~ msgstr "à¹\84มà¹\88สามารà¸\96à¹\80à¸\9bิà¸\94à¹\81à¸\9fà¹\89ม %1 à¹\84à¸\94à¹\89"
 
 #, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "à¸\81ารà¸\95รวà¸\88สอà¸\9aà¸\81ารà¸\82ึà¹\89à¸\99อยูà¹\88à¹\81à¸\81à¹\88à¸\81ัà¸\99à¸\82อà¸\87ระà¸\9aà¸\9a à¹\84มà¹\88à¸\9eà¸\9aà¸\9bัà¸\8dหา"
+#~ msgid "Error reading solv-file: "
+#~ msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89อà¸\9cิà¸\94à¸\9eลาà¸\94à¸\82ึà¹\89à¸\99ระหวà¹\88าà¸\87à¹\80à¸\82ียà¸\99à¹\81à¸\9fà¹\89ม '%1'"
index 145c758..9372af5 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -20,21 +20,96 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
-"\n"
-"Yüklenemez sağlayıcılar:"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr ""
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
-"SSL sertifikası problemi, CA sertifikasının '%s' için geçerli olduğunu "
-"doğrulayın."
+
+#: zypp/Url.cc:300
+#, fuzzy
+msgid "Unable to clone Url object"
+msgstr "çalışma alanı oluşturulamadı\n"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr ""
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+#, fuzzy
+msgid "Unable to parse Url components"
+msgstr "çalışma alanı oluşturulamadı\n"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Mutex nitelikleri başlatılamıyor"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Yinelemeli mutex nitelikleri ayarlanamadı."
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Yinelemeli mutex başlatılamıyor"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Mutex kilidine ulaşılamadı."
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Mutex kilidi açılamıyor"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr ""
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+# clients/hwinfo.ycp:54
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Gerekenler"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Eskitiyor"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Kararsız '%s' türü için %u bayt sğlama toplamı  '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -44,10 +119,6 @@ msgstr "uygulandı"
 msgid " execution failed"
 msgstr "işletme hatası"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr "İptal etme sırasında uygulama es geçildi."
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -56,849 +127,2342 @@ msgstr "İptal etme sırasında uygulama es geçildi."
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s, %s tarafından sağlanan %s ile çakışıyor."
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr "İptal etme sırasında uygulama es geçildi."
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s dağıtım güncelleme deposuna ait değil."
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr ""
+"Güncelleme bilgilendirmesi için mesaj gönderilirken bir hata meydana geldi."
 
-# clients/hwinfo.ycp:66
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s alt mimariye sahip"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr ""
 
-# clients/online_update_start.ycp:171
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s kurulabilir değil"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Yükleme yönlendirildiği şekilde iptal edildi"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "Üzgünüz, libzypp'nin bu versiyonunda HAL desteklenmemektedir."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s %s tarafından sağlanan %s'in süresini bitirdi."
+#: zypp/target/hal/HalContext.cc:117
+#, fuzzy
+msgid "HalContext not connected"
+msgstr "bağlı değil"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s, %s'i gerektiriyor, ama bu gereklilik sağlanamıyor."
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(SÜRESİ DOLDU)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(süresi dolmadı)"
+#: zypp/target/hal/HalContext.cc:229
+#, fuzzy
+msgid "Unable to create dbus connection"
+msgstr "çalışma alanı oluşturulamadı\n"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(24 saat içinde süresi dolacak)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abhazya"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-#, fuzzy
-msgid "Achinese"
-msgstr "Çince"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
+# clients/online_update_load.ycp:380
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
 #, fuzzy
-msgid "Acoli"
-msgstr "Sessiz"
+msgid "RPM failed: "
+msgstr "İndirme işlemi başarısız oldu:"
 
-# clients/support_question.ycp:85
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-#, fuzzy
-msgid "Adangme"
-msgstr "Aralık"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "%s dosyasından genel anahtar alınamadı: %s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "'%s' depoya ekleniyor"
+msgid "Failed to remove public key %s: %s"
+msgstr "'%s' genel anahtarı silinemedi: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Ek Kullanıcı Sözleşmesi Gerekli"
+# clients/sw_single.ycp:310
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, fuzzy, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Yapılandırma dosyalarını kaydet"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "Ek rpm çıktısı"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adigey "
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
 
-# /usr/lib/YaST2/timezone_raw.ycp:31
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr " Afarca"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
 
-# AF
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistan"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Afrihili"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "Ek rpm çıktısı"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Afrikanca"
+# clients/inst_sw_backup.ycp:260
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "%s yedeklemesi oluşturuldu"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-Asyatik(Diğer)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr ""
 
-# clients/inst_resize_ui.ycp:702
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Aynu"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-#, fuzzy
-msgid "Akan"
-msgstr "Afrikanca"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Akatça"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr ""
 
-# KY
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-#, fuzzy
-msgid "Aland Islands"
-msgstr "Seyman Adaları"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Arnavutluk"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Arnavutça"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Aşağıdaki işlemler tamamlanacak:"
 
-# /usr/lib/YaST2/timezone_raw.ycp:472
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Aleutça"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Cezayir"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "'%s' dosyası okunamadı"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-#, fuzzy
-msgid "Algonquian Languages"
-msgstr "Dil yapılandırılıyor..."
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altay(Diğer)"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Depo ismi noktayla başlayamaz."
 
-# AS
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Amerikan Samoası"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Servis ismi noktayla başlayamaz."
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Amharca"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "'%s' dosyası açılamıyor."
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Destek almak için ek kullanıcı sözleşmesi gerekmektedir."
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
 
-# AD
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andora"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
 
-# AO
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "%s oluşturulamıyor"
 
-# AI
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Angula"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Metadata önbellek klasörü oluşturulamadı."
 
-# AQ
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antartika"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "'%s' depo önbelleği oluşturuluyor"
 
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antiga ve Barbuda"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "%s 'de önbellek oluşturulamıyor - yazma izni yok."
 
-# clients/inst_language.ycp:116
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-#, fuzzy
-msgid "Apache Languages"
-msgstr "Dili ayarla"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %d."
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Arapça"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonca"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "'%s' okunmaya çalışılırken bir hata meydana geldi"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Aramice"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr ""
 
-# clients/inst_sw_single.ycp:1462
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "'%s' depoya ekleniyor"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Araukanya"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Geçersiz yetki '{0}'"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "'%s' deposu siliniyor"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Arjantin"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Reponun nerede depolandığı belirlenemedi."
 
-# AM
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Ermenistan"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "'%s' silinemiyor"
 
-# AM
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Ermenice"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Servesin nerede depolandığı belirlenemedi."
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "Yapay dil (Diğer)"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr ""
 
-# AW
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+# include/nfs/routines.ycp:188
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Geçersiz %s bileşeni '%s'"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Assam "
+# include/nfs/routines.ycp:188
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Geçersiz %s bileşeni"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Asturyanca "
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
 
-# clients/inst_language.ycp:116
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Atabask dilleri"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr ""
 
-# /usr/lib/YaST2/keyboard_raw.ycp:230
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Avusturalya"
+#: zypp/url/UrlBase.cc:830
+#, fuzzy, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Geçersiz yetki '{0}'"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:230
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Avusturalya Dilleri"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Avusturya"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Avustranezya (Diğer)"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "'%s' için kimlik doğrulama gerekmektedir"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Avarca"
+# include/nfs/routines.ycp:188
+#: zypp/url/UrlBase.cc:1049
+#, fuzzy, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Geçersiz özellik '{0}'"
 
-# /usr/lib/YaST2/timezone_raw.ycp:472
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Avestaca "
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Abadhi"
+# include/nfs/routines.ycp:188
+#: zypp/url/UrlBase.cc:1081
+#, fuzzy, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Geçersiz özellik '{0}'"
 
-# MM
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-#, fuzzy
-msgid "Aymara"
-msgstr "Miyanmar"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr ""
 
-# AZ
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaycan"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Azerice"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Kodlanmış dizi bir NUL baytı içerir"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Hatalı dosya adı: %s"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Geçersiz dizi karakteri ayırma parametresi"
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Hatalı medya bağlantı noktası"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
 
-# BS
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamalar"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Geçersiz dizi karakteri birleştirme parametresi"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahreyn"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Pty açılamıyor (%s)."
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-#, fuzzy
-msgid "Balinese"
-msgstr "Çince"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Veri yolu açılamıyor (%s)."
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltık (Diğer)"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "'%s' e chroot yapılamıyor (%s)."
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Beluci "
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
 
-# /usr/lib/YaST2/timezone_raw.ycp:481
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-#, fuzzy
-msgid "Bambara"
-msgstr "Samba"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr ""
 
-# clients/inst_language.ycp:116
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-#, fuzzy
-msgid "Bamileke Languages"
-msgstr "Dili ayarla"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "'%s' yürütülemedi (%s)."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Ayrıştırılamadı (%s)."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Komut %d durumuyla çıkış yaptı."
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Komut %d sinyali tarafından durduruldu (%s)."
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "Bağlanıken çalıştırılacak komut"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(süresi dolmadı)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(SÜRESİ DOLDU)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(24 saat içinde süresi dolacak)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+
+# include/cups/ui.ycp:2577 include/cups/ui.ycp:2598
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "bilinmeyen"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "desteklenmeyen"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Seviye 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Seviye 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Seviye 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Ek Kullanıcı Sözleşmesi Gerekli"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "geçersiz"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Destek seviyesi belirtilmemiş"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Sağlayıcı destek sağlamıyor."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "Destek almak için ek kullanıcı sözleşmesi gerekmektedir."
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Bilinmeyen destek seçeneği. Açıklama bulunamadı"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Bilinmeyen ülke:"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+#, fuzzy
+msgid "No Code"
+msgstr "&Kod"
+
+# AD
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andora"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Birleşik Arap Emirlikleri"
+
+# AF
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistan"
+
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antiga ve Barbuda"
+
+# AI
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Angula"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Arnavutluk"
+
+# AM
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Ermenistan"
+
+# AN
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Hollanda Antilleri"
+
+# AO
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+# AQ
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antartika"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Arjantin"
+
+# AS
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Amerikan Samoası"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Avusturya"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:230
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Avusturalya"
+
+# AW
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+# KY
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+#, fuzzy
+msgid "Aland Islands"
+msgstr "Seyman Adaları"
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaycan"
+
+# BA
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosna-Hersek"
+
+# /usr/lib/YaST2/timezone_raw.ycp:58
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+# menuentries/menuentry_language.ycp:13
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladeş"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:410
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belçika"
+
+# BF
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:570
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaristan"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahreyn"
+
+# BI
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+# BJ
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:79
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+# BN
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Bruney Darüsselam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivya"
+
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brezilya"
+
+# BS
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamalar"
+
+# BT
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bütan"
+
+# BV
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvet Adası"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Belarus"
+
+# BZ
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Kanada"
+
+# CC
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Cocos (Keeling) Adaları"
+
+# CG
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Kongo"
+
+# CF
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+#, fuzzy
+msgid "Central African Republic"
+msgstr "Orta Afrika Cumhuriyeti"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:169
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "İsviçre"
+
+# CI
+# fuzzy
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+#, fuzzy
+msgid "Cote D'Ivoire"
+msgstr "Cote d'Ivoire"
+
+# CK
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cook Adaları"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Şili"
+
+# CM
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Kamerun"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Çin"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Kolombiya"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Kosta Rika"
+
+# CU
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Küba"
+
+# CV
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Verde Burnu"
+
+# CX
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Christmas Adası"
+
+# CY
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Kıbrıs"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Çek Cumhuriyeti"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:79
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Almanya"
+
+# /usr/lib/YaST2/timezone_raw.ycp:18
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Cibuti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Danimarka"
+
+# /usr/lib/YaST2/timezone_raw.ycp:76
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominik Cumhuriyeti"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Cezayir"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ekvator"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonya"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Mısır"
+
+# EH
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Batı Sahra"
+
+# ER
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritre"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:200
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "İspanya"
+
+# ET
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiyopya"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finlandiya"
+
+# include/nis_server/ui.ycp:45
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+# FK
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falkland Adaları (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Mikronezya Federal Devletleri"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Faroe Adaları"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:139
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "Fransa"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr ""
+
+# GA
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+# /usr/lib/YaST2/timezone_raw.ycp:390
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "İngiltere"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:410
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Gürcistan"
+
+# GF
+# fuzzy
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Fransız Guyanası"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:79
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Almanya"
+
+# GH
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Gana"
+
+# /usr/lib/YaST2/timezone_raw.ycp:384
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Cebelitarık"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Grönland"
+
+# GM
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambiya"
+
+# GN
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Gine"
+
+# /usr/lib/YaST2/timezone_raw.ycp:85
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+# GQ
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Ekvatoral Gine"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:320
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Yunanistan"
+
+# GS
+# fuzzy
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Güney Gürcistan ve Güney Sandoviç Adası"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+# GW
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Gine-Bissau"
+
+# GY
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+# HM
+# fuzzy
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+#, fuzzy
+msgid "Heard Island and McDonald Islands"
+msgstr "Heard Adası and McDonald Adaları"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Hırvatistan"
+
+# HT
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:570
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Macaristan"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Endonezya"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "İrlanda"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "İsrail"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Man Adası"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Hindistan"
+
+# IO
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Hint Okyanusu İngiliz Sömürgeleri"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+# IR
+# fuzzy
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Irak"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "İzlanda"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:230
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "İtalya"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Jersey"
+
+# /usr/lib/YaST2/timezone_raw.ycp:347
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaika"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Ürdün"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:700
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japonya"
+
+# KE
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
+
+# KG
+# fuzzy
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kırgızistan"
+
+# KH
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Kamboçya"
+
+# KI
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+# KM
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Komoros"
+
+# KN
+# fuzzy
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+#, fuzzy
+msgid "Saint Kitts and Nevis"
+msgstr "Sen Kitts ve Nevis"
+
+# /usr/lib/YaST2/timezone_raw.ycp:374
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+#, fuzzy
+msgid "North Korea"
+msgstr "Kuzey İrlanda"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+#, fuzzy
+msgid "South Korea"
+msgstr "Güney Kutbu"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuveyt"
+
+# KY
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Seyman Adaları"
+
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazakistan"
+
+# CD
+# fuzzy
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+#, fuzzy
+msgid "Lao People's Democratic Republic"
+msgstr "Lao Halk Cumhuriyeti"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Lübnan"
+
+# LC
+# fuzzy
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+#, fuzzy
+msgid "Saint Lucia"
+msgstr "Sen Lusia"
+
+# /usr/lib/YaST2/timezone_raw.ycp:407
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+# LK
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+# LR
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberya"
+
+# LS
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesoto"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litvanya"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Lüksemburg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Letonya"
+
+# LY
+# fuzzy
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Liberya"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Fas"
+
+# /usr/lib/YaST2/timezone_raw.ycp:394
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monako"
+
+# /usr/lib/YaST2/timezone_raw.ycp:381
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
+
+# CG
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "Kongo"
+
+# SM
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "San Marino"
+
+# MG
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagaskar"
+
+# MH
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marşal Adaları"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Makedonya"
+
+# ML
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+# MM
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Miyanmar"
+
+# MN
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Moğolistan"
+
+# /usr/lib/YaST2/timezone_raw.ycp:207
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+# MP
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Kuzey Meryem Adaları"
+
+# /usr/lib/YaST2/timezone_raw.ycp:99
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+# MR
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Moritanya"
+
+# MS
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Monserat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
+
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Mali"
+
+# MW
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malavi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Meksika"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malezya"
+
+# MZ
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambik"
+
+# NA
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibya"
+
+# NC
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Yeni İskoçya"
+
+# NE
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Nijer"
+
+# NF
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolk Adası"
+
+# NG
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nikaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Hollanda"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:410
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norveç"
+
+# NP
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+# NU
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Nie"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Yeni Zelenda"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:79
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Umman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+# PF
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Fransız Polinezyası"
+
+# PG
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua Yeni Gine"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Flipinler"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Polonya"
+
+# PM
+# fuzzy
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+#, fuzzy
+msgid "Saint Pierre and Miquelon"
+msgstr "Sen Piyer ve Miquelon"
+
+# /usr/lib/YaST2/timezone_raw.ycp:456
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Porto Riko"
+
+# IO
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+#, fuzzy
+msgid "Palestinian Territory"
+msgstr "Hint Okyanusu İngiliz Sömürgeleri"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:260
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portekiz"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Katar"
+
+# RE
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romanya"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "Sırpça"
+
+# RU
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Rusya Federasyonu"
+
+# RW
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Ruanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Suudi Arabistan"
+
+# SB
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Solomon Adaları"
+
+# SC
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seyşel Adaları"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:440
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "İsveç"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapur"
+
+# SH
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Sen Helen"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenya"
+
+# SJ
+# fuzzy
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard ve Jan Mayen Adaları"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovakya"
+
+# SL
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+# SM
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+# SN
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+# SO
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somali"
+
+# SR
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Surinam"
+
+# ST
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+# SY
+# fuzzy
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Surinam"
+
+# SZ
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swaziland"
+
+# TC
+# fuzzy
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
 #, fuzzy
-msgid "Banda"
-msgstr "Kanada"
+msgid "Turks and Caicos Islands"
+msgstr "Turks ve Kaykos Adaları"
+
+# TD
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Çad"
+
+# TF
+# fuzzy
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+#, fuzzy
+msgid "French Southern Territories"
+msgstr "Fransa'nın Güney Bölgeleri"
+
+# TG
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Tayland"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tacikistan"
+
+# TK
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+# TM
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Türkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunus"
+
+# TO
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+# clients/online_update.ycp:223
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+#, fuzzy
+msgid "East Timor"
+msgstr "Hat süresi"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:668
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Türkiye"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad ve Tobako"
+
+# TV
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Tuvalu"
+
+# TW
+# fuzzy
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Tayland"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+#, fuzzy
+msgid "Tanzania"
+msgstr "Tazmanya"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukrayna"
+
+# UG
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+# UM
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "United States Minor Outlying Islands"
+
+# US
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Birleşik Devletler"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Özbekistan"
+
+# VA
+# fuzzy
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Vatikan"
+
+# VC
+# fuzzy
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+#, fuzzy
+msgid "Saint Vincent and the Grenadines"
+msgstr "Sen Vinsınt ve Granadalar"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezüella"
+
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Britanya Virjin Adaları"
+
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Virgin Adaları (U.S.)"
+
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
 
-# menuentries/menuentry_language.ycp:13
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladeş"
+# VU
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantu (Diğer)"
+# WF
+# fuzzy
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis ve Futuna Adaları"
 
-# /usr/lib/YaST2/timezone_raw.ycp:58
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+# /usr/lib/YaST2/timezone_raw.ycp:481
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-#, fuzzy
-msgid "Basa"
-msgstr "Temel"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Yemen"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Başkurtça"
+# YT
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Bask Dili"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Güney Afrika"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-#, fuzzy
-msgid "Batak (Indonesia)"
-msgstr "Endonezya"
+# ZM
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambiya"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Beca"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belarus"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Bilinmeyen dil:"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Beyaz Rusça"
+# /usr/lib/YaST2/timezone_raw.ycp:31
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr " Afarca"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:410
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belçika"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abhazya"
 
-# BZ
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+#, fuzzy
+msgid "Achinese"
+msgstr "Çince"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:79
-#. language code: bem
-#: zypp/LanguageCode.cc:261
+#. language code: ach
+#: zypp/LanguageCode.cc:167
 #, fuzzy
-msgid "Bemba"
-msgstr "Bermuda"
+msgid "Acoli"
+msgstr "Sessiz"
 
-# SN
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
+# clients/support_question.ycp:85
+#. language code: ada
+#: zypp/LanguageCode.cc:169
 #, fuzzy
-msgid "Bengali"
-msgstr "Senegal"
+msgid "Adangme"
+msgstr "Aralık"
 
-# BJ
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adigey "
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Berberi (Diğer)"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-Asyatik(Diğer)"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:79
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Afrihili"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Bhojpuri "
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Afrikanca"
 
-# BT
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bütan"
+# clients/inst_resize_ui.ycp:702
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Aynu"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
 #, fuzzy
-msgid "Bihari"
-msgstr "Bahreyn"
+msgid "Akan"
+msgstr "Afrikanca"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Bikol"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Akatça"
 
-# BJ
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-#, fuzzy
-msgid "Bini"
-msgstr "Benin"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Arnavutça"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Bislama"
+# /usr/lib/YaST2/timezone_raw.ycp:472
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Aleutça"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:410
-#. language code: byn
-#: zypp/LanguageCode.cc:299
+#. language code: alg
+#: zypp/LanguageCode.cc:191
 #, fuzzy
-msgid "Blin"
-msgstr "Belçikaca"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivya"
-
-# BA
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosna-Hersek"
+msgid "Algonquian Languages"
+msgstr "Dil yapılandırılıyor..."
 
-# BJ
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Boşnakça"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+#, fuzzy
+msgid "Southern Altai"
+msgstr "Güney Afrika"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Amharca"
 
-# BV
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvet Adası"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "İngilizce, Eski Çağ (ca. 450-1100)"
 
-# BR
-#. language code: bra
-#: zypp/LanguageCode.cc:283
+# clients/inst_language.ycp:116
+#. language code: apa
+#: zypp/LanguageCode.cc:199
 #, fuzzy
-msgid "Braj"
-msgstr "Brezilya"
+msgid "Apache Languages"
+msgstr "Dili ayarla"
 
-# BR
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brezilya"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Arapça"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Britanyaca"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Aramice"
 
-# IO
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Hint Okyanusu İngiliz Sömürgeleri"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonca"
 
-# VI
-# fuzzy
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Britanya Virjin Adaları"
+# AM
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Ermenice"
 
-# BN
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Bruney Darüsselam"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Araukanya"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-#, fuzzy
-msgid "Buginese"
-msgstr "Çince"
+# clients/inst_sw_single.ycp:1462
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "'%s' depo önbelleği oluşturuluyor"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Yapay dil (Diğer)"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:570
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaristan"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Bulgarca"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Assam "
 
-# /usr/lib/YaST2/keyboard_raw.ycp:570
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Buryatça"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Asturyanca "
 
-# BF
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+# clients/inst_language.ycp:116
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Atabask dilleri"
 
-# include/scanner/scanner_functions.ycp:114
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Burmaca"
+# /usr/lib/YaST2/keyboard_raw.ycp:230
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Avusturalya Dilleri"
 
-# BI
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Avarca"
 
-# TD
-#. language code: cad
-#: zypp/LanguageCode.cc:301
+# /usr/lib/YaST2/timezone_raw.ycp:472
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Avestaca "
+
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Abadhi"
+
+# MM
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
 #, fuzzy
-msgid "Caddo"
-msgstr "Çad"
+msgid "Aymara"
+msgstr "Miyanmar"
 
-# KH
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Kamboçya"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Azerice"
 
-# CM
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Kamerun"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+#, fuzzy
+msgid "Banda"
+msgstr "Kanada"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Sat-pool oluşturulamadı."
+# clients/inst_language.ycp:116
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+#, fuzzy
+msgid "Bamileke Languages"
+msgstr "Dili ayarla"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Mutex kilidine ulaşılamadı."
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Başkurtça"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr ""
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Beluci "
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+# /usr/lib/YaST2/timezone_raw.ycp:481
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+#, fuzzy
+msgid "Bambara"
+msgstr "Samba"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "'%s' e chroot yapılamıyor (%s)."
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+#, fuzzy
+msgid "Balinese"
+msgstr "Çince"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "%s oluşturulamıyor"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Bask Dili"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "%s 'de önbellek oluşturulamıyor - yazma izni yok."
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+#, fuzzy
+msgid "Basa"
+msgstr "Temel"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Metadata önbellek klasörü oluşturulamadı."
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltık (Diğer)"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "'%s' silinemiyor"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Beca"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "'%s' yürütülemedi (%s)."
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Beyaz Rusça"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Reponun nerede depolandığı belirlenemedi."
+# /usr/lib/YaST2/keyboard_raw.ycp:79
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+#, fuzzy
+msgid "Bemba"
+msgstr "Bermuda"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Servesin nerede depolandığı belirlenemedi."
+# SN
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+#, fuzzy
+msgid "Bengali"
+msgstr "Senegal"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Ayrıştırılamadı (%s)."
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Berberi (Diğer)"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Mutex nitelikleri başlatılamıyor"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Bhojpuri "
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Yinelemeli mutex başlatılamıyor"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+#, fuzzy
+msgid "Bihari"
+msgstr "Bahreyn"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "'%s' dosyası açılamıyor."
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Bikol"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Kilitlenmiş dosya açılamıyor: %s"
+# BJ
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+#, fuzzy
+msgid "Bini"
+msgstr "Benin"
 
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Veri yolu açılamıyor (%s)."
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Bislama"
 
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Pty açılamıyor (%s)."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "'%s' deposundaki '%s' e ulaşılamıyor"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantu (Diğer)"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Mutex kilidi açılamıyor"
+# BJ
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Boşnakça"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Yinelemeli mutex nitelikleri ayarlanamadı."
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+#, fuzzy
+msgid "Braj"
+msgstr "Brezilya"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Kanada"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Britanyaca"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Hiçbir sürücü çıkartılamıyor"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+#, fuzzy
+msgid "Batak (Indonesia)"
+msgstr "Endonezya"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "'%s' medyası çıkartılamadı"
+# /usr/lib/YaST2/keyboard_raw.ycp:570
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Buryatça"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr " '%s' deki image dosyasını bağlayacak döngü aracı bulunamadı"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+#, fuzzy
+msgid "Buginese"
+msgstr "Çince"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Bulgarca"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+# include/scanner/scanner_functions.ycp:114
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Burmaca"
 
-# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "'%s' dosyası yazılamadı."
+# /usr/lib/YaST2/keyboard_raw.ycp:410
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+#, fuzzy
+msgid "Blin"
+msgstr "Belçikaca"
 
-# CV
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Verde Burnu"
+# TD
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+#, fuzzy
+msgid "Caddo"
+msgstr "Çad"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Merkezi Kızılderili (Diğer)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -916,12 +2480,6 @@ msgstr "Katalanca"
 msgid "Caucasian (Other)"
 msgstr "Kafkas (Diğer)"
 
-# KY
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Seyman Adaları"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 #, fuzzy
@@ -933,38 +2491,6 @@ msgstr "Lübnan"
 msgid "Celtic (Other)"
 msgstr "Kelt (Diğer)"
 
-# CF
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-#, fuzzy
-msgid "Central African Republic"
-msgstr "Orta Afrika Cumhuriyeti"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Merkezi Kızılderili (Diğer)"
-
-# TD
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Çad"
-
-# /usr/lib/YaST2/timezone_raw.ycp:240
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-#, fuzzy
-msgid "Chagatai"
-msgstr "Şangay"
-
-# menuentries/menuentry_language.ycp:13
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-#, fuzzy
-msgid "Chamic Languages"
-msgstr "Diller"
-
 # KM
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
@@ -972,151 +2498,87 @@ msgstr "Diller"
 msgid "Chamorro"
 msgstr "Komoros"
 
-# clients/sw_single.ycp:310
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, fuzzy, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Yapılandırma dosyalarını kaydet"
-
-# clients/hwinfo.ycp:44 clients/hwinfo.ycp:93
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-#, fuzzy
-msgid "Chechen"
-msgstr "Önbellek"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Çeroki"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-#, fuzzy
-msgid "Cheyenne"
-msgstr "Kanal"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 #, fuzzy
 msgid "Chibcha"
 msgstr "Çin"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
+# clients/hwinfo.ycp:44 clients/hwinfo.ycp:93
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
 #, fuzzy
-msgid "Chichewa"
-msgstr "Şili"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Şili"
+msgid "Chechen"
+msgstr "Önbellek"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Çin"
+# /usr/lib/YaST2/timezone_raw.ycp:240
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+#, fuzzy
+msgid "Chagatai"
+msgstr "Şangay"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Çince"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+#, fuzzy
+msgid "Chuukese"
+msgstr "Çince"
+
+# ML
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+#, fuzzy
+msgid "Mari"
+msgstr "Mali"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Çinok Jargon"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Çipevyan"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 #, fuzzy
 msgid "Choctaw"
 msgstr "Chroot"
 
-# CX
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Christmas Adası"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Çipevyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Çeroki"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "Eski Kilise Slavcası"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-#, fuzzy
-msgid "Chuukese"
-msgstr "Çince"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "Çuvaşça"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
+#. language code: chy
+#: zypp/LanguageCode.cc:343
 #, fuzzy
-msgid "Classical Newari"
-msgstr "Sınıf adı"
-
-# CC
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Cocos (Keeling) Adaları"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Kolombiya"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Komut %d durumuyla çıkış yaptı."
+msgid "Cheyenne"
+msgstr "Kanal"
 
-#: zypp/ExternalProgram.cc:532
+# menuentries/menuentry_language.ycp:13
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
 #, fuzzy
-msgid "Command exited with unknown error."
-msgstr "Bağlanıken çalıştırılacak komut"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Komut %d sinyali tarafından durduruldu (%s)."
-
-# KM
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Komoros"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
-
-# CG
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Kongo"
-
-# CK
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cook Adaları"
+msgid "Chamic Languages"
+msgstr "Diller"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1136,38 +2598,6 @@ msgstr "İrlandaca"
 msgid "Corsican"
 msgstr "Kosta Rika"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Kosta Rika"
-
-# CI
-# fuzzy
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-#, fuzzy
-msgid "Cote D'Ivoire"
-msgstr "Cote d'Ivoire"
-
-# clients/lan_inetd_custom.ycp:762
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-#, fuzzy
-msgid "Cree"
-msgstr "Oluştur"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:320
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-#, fuzzy
-msgid "Creek"
-msgstr "Yunanca"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Kreyol ve Pidgin Dilleri (Diğer)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1183,49 +2613,39 @@ msgstr "Kreyol ve Pidgin Dilleri, Fransızca Kökenli (Diğer)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Kreyol ve Pidgin Dilleri, Portekizce Kökenli (Diğer)"
 
+# clients/lan_inetd_custom.ycp:762
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+#, fuzzy
+msgid "Cree"
+msgstr "Oluştur"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Kırım Tatarları"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Hırvatistan"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Hırvatça"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Kreyol ve Pidgin Dilleri (Diğer)"
 
-# CU
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Küba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr ""
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Kusitik (Diğer)"
 
-# CY
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Kıbrıs"
-
 # /usr/lib/YaST2/keyboard_raw.ycp:500
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Çekçe"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Çek Cumhuriyeti"
-
 # clients/online_update_details.ycp:81
 #. language code: dak
 #: zypp/LanguageCode.cc:373
@@ -1259,10 +2679,15 @@ msgstr "Gün:"
 msgid "Delaware"
 msgstr "Donanım"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Danimarka"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr ""
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Tlınçonca"
 
 # classnames.ycp:163 clients/hwinfo.ycp:70
 #. language code: din
@@ -1277,12 +2702,6 @@ msgstr "Disk"
 msgid "Divehi"
 msgstr "Sürücü"
 
-# /usr/lib/YaST2/timezone_raw.ycp:18
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Cibuti"
-
 # include/security/ui.ycp:695
 #. language code: doi
 #: zypp/LanguageCode.cc:391
@@ -1290,66 +2709,34 @@ msgstr "Cibuti"
 msgid "Dogri"
 msgstr "Kullanıcı girişi"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Tlınçonca"
-
-# /usr/lib/YaST2/timezone_raw.ycp:76
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominik Cumhuriyeti"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"'%s' için indirme(curl) hatası:\n"
-"Hata kodu: %s\n"
-"Hata raporu: %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "'%s' için indirme (curl) başlatılamadı"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Dravid (Diğer)"
 
+# classnames.ycp:98
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+#, fuzzy
+msgid "Lower Sorbian"
+msgstr "Güç koruma"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 #, fuzzy
 msgid "Duala"
 msgstr "Palau"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Kararsız '%s' türü için %u bayt sğlama toplamı  '%s'"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Hollanda, Orta Çağ (ca. 1050-1350)"
 
 # /usr/lib/YaST2/keyboard_raw.ycp:350
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
-msgstr "Felemenkçe"
-
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Hollanda, Orta Çağ (ca. 1050-1350)"
+msgstr "Felemenkçe"
 
 # /usr/lib/YaST2/timezone_raw.ycp:191
 #. language code: dyu
@@ -1365,28 +2752,11 @@ msgstr "Dubai"
 msgid "Dzongkha"
 msgstr "Tonga"
 
-# clients/online_update.ycp:223
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-#, fuzzy
-msgid "East Timor"
-msgstr "Hat süresi"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ekvator"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Mısır"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1397,32 +2767,11 @@ msgstr "Mısır (Antik)"
 msgid "Ekajuk"
 msgstr "Ekajuk"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "Elam "
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "URI de içeriksiz hedef"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "URI de boş dosya sistemi"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "URI de boş alan adı"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Kodlanmış dizi bir NUL baytı içerir"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1433,288 +2782,52 @@ msgstr "İngilizce"
 msgid "English, Middle (1100-1500)"
 msgstr "İngilizce, Orta Çağ (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "İngilizce, Eski Çağ (ca. 450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-# GQ
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Ekvatoral Gine"
-
-# ER
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritre"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"'%s' için indirme (curl) ayarları düzenlenirken  bir hata meydana geldi:"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr ""
-"Güncelleme bilgilendirmesi için mesaj gönderilirken bir hata meydana geldi."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "'%s' okunmaya çalışılırken bir hata meydana geldi"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonya"
-
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Estonyaca"
-
-# ET
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiyopya"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Ewe"
-
-# clients/inst_custom_part.ycp:2932
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-#, fuzzy
-msgid "Ewondo"
-msgstr "Bitiş"
-
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %d."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Anahtar silinirken hata meydana geldi."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "%s dosyasından genel anahtar alınamadı: %s"
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "%s açılamadı - %s\n"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "%s Paketi bulunamadı. Tekrar aramak ister misiniz?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "'%s' dosyası okunamadı"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "'%s' genel anahtarı silinemedi: %s"
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Failed to parse: %s."
-
-# FK
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falkland Adaları (Malvinas)"
-
-# clients/support_question.ycp:85
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-#, fuzzy
-msgid "Fang"
-msgstr "Aralık"
-
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-#, fuzzy
-msgid "Fanti"
-msgstr "Atlantik"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Faroe Adaları"
-
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Faroece"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Mikronezya Federal Devletleri"
-
-# include/nis_server/ui.ycp:45
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
-
-# include/nis_server/ui.ycp:45
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-#, fuzzy
-msgid "Fijian"
-msgstr "Fiji"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Estonyaca"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Ewe"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
+# clients/inst_custom_part.ycp:2932
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+#, fuzzy
+msgid "Ewondo"
+msgstr "Bitiş"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
+# clients/support_question.ycp:85
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+#, fuzzy
+msgid "Fang"
+msgstr "Aralık"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Faroece"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "'%s' dosyası '%s' ortamında bulunamadı"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+#, fuzzy
+msgid "Fanti"
+msgstr "Atlantik"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+# include/nis_server/ui.ycp:45
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+#, fuzzy
+msgid "Fijian"
+msgstr "Fiji"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
@@ -1722,11 +2835,6 @@ msgstr ""
 msgid "Filipino"
 msgstr "Flipinler"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finlandiya"
-
 # /usr/lib/YaST2/keyboard_raw.ycp:470
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
@@ -1738,10 +2846,6 @@ msgstr "Fince"
 msgid "Finno-Ugrian (Other)"
 msgstr "Fin-Ugor (Diğer)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Aşağıdaki işlemler tamamlanacak:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 #, fuzzy
@@ -1749,38 +2853,11 @@ msgid "Fon"
 msgstr "Yazı tipleri"
 
 # /usr/lib/YaST2/keyboard_raw.ycp:139
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Fransa"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:139
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Fransızca"
 
-# GF
-# fuzzy
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Fransız Guyanası"
-
-# PF
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Fransız Polinezyası"
-
-# TF
-# fuzzy
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-#, fuzzy
-msgid "French Southern Territories"
-msgstr "Fransa'nın Güney Bölgeleri"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1797,12 +2874,6 @@ msgstr "Fransız, Eski Çağ (842-ca.1400)"
 msgid "Frisian"
 msgstr "Dosya sistemi s&ürümü"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-#, fuzzy
-msgid "Friulian"
-msgstr "Finlandiya"
-
 # clients/lan_inetd_custom.ycp:756
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
@@ -1810,6 +2881,12 @@ msgstr "Finlandiya"
 msgid "Fulah"
 msgstr "İşaretler"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+#, fuzzy
+msgid "Friulian"
+msgstr "Finlandiya"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 #, fuzzy
@@ -1817,39 +2894,6 @@ msgid "Ga"
 msgstr "Guam"
 
 # GA
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-# ML
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-#, fuzzy
-msgid "Gaelic"
-msgstr "Mali"
-
-# /usr/lib/YaST2/timezone_raw.ycp:408
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-#, fuzzy
-msgid "Galician"
-msgstr "Vatikan"
-
-# GM
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambiya"
-
-# GH
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-#, fuzzy
-msgid "Ganda"
-msgstr "Gana"
-
-# GA
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 #, fuzzy
@@ -1862,18 +2906,12 @@ msgstr "Gabon"
 msgid "Gbaya"
 msgstr "Gaza"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:320
-#. language code: gez
-#: zypp/LanguageCode.cc:475
+# /usr/lib/YaST2/keyboard_raw.ycp:109
+#. language code: gem
+#: zypp/LanguageCode.cc:465
 #, fuzzy
-msgid "Geez"
-msgstr "Yunanca"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:410
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Gürcistan"
+msgid "Germanic (Other)"
+msgstr "Almanca (ölü tuşlar ile)"
 
 # /usr/lib/YaST2/keyboard_raw.ycp:410
 #. language code: geo kat ka
@@ -1888,6 +2926,45 @@ msgstr "Gürcistan"
 msgid "German"
 msgstr "Almanca"
 
+# /usr/lib/YaST2/keyboard_raw.ycp:320
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+#, fuzzy
+msgid "Geez"
+msgstr "Yunanca"
+
+# src/mozilla_i18n.c:37
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+#, fuzzy
+msgid "Gilbertese"
+msgstr "Vietnamca"
+
+# ML
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+#, fuzzy
+msgid "Gaelic"
+msgstr "Mali"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "İrlandaca"
+
+# /usr/lib/YaST2/timezone_raw.ycp:408
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+#, fuzzy
+msgid "Galician"
+msgstr "Vatikan"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+#, fuzzy
+msgid "Manx"
+msgstr "Man"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1898,37 +2975,6 @@ msgstr ""
 msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-# /usr/lib/YaST2/keyboard_raw.ycp:109
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-#, fuzzy
-msgid "Germanic (Other)"
-msgstr "Almanca (ölü tuşlar ile)"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:79
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Almanya"
-
-# GH
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Gana"
-
-# /usr/lib/YaST2/timezone_raw.ycp:384
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Cebelitarık"
-
-# src/mozilla_i18n.c:37
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-#, fuzzy
-msgid "Gilbertese"
-msgstr "Vietnamca"
-
 # GA
 #. language code: gon
 #: zypp/LanguageCode.cc:491
@@ -1953,12 +2999,6 @@ msgstr "Gotça"
 msgid "Grebo"
 msgstr "Gabon"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:320
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Yunanistan"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1969,27 +3009,6 @@ msgstr "Yunan, Antik (1453'e kadar)"
 msgid "Greek, Modern (1453-)"
 msgstr "Yunan, Modern (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Grönland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-# /usr/lib/YaST2/timezone_raw.ycp:85
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 # clients/ui_widgets.ycp:156
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
@@ -1997,42 +3016,12 @@ msgstr "Guam"
 msgid "Guarani"
 msgstr "Paranoya"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:79
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Almanya"
-
-# GN
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Gine"
-
-# GW
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Gine-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 #, fuzzy
 msgid "Gujarati"
 msgstr "Süre"
 
-# GY
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 # /usr/lib/YaST2/timezone_raw.ycp:478
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
@@ -2047,46 +3036,18 @@ msgid "Haida"
 msgstr "Donanım"
 
 # HT
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
-# HT
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 #, fuzzy
 msgid "Haitian"
 msgstr "Haiti"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "bağlı değil"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr ""
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr ""
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 #, fuzzy
 msgid "Hausa"
 msgstr "Saat"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "İstenen bütün depoları etkinleştirdiğinizden emin misiniz?"
-
 # /usr/lib/YaST2/timezone_raw.ycp:476
 #. language code: haw
 #: zypp/LanguageCode.cc:517
@@ -2094,14 +3055,6 @@ msgstr "İstenen bütün depoları etkinleştirdiğinizden emin misiniz?"
 msgid "Hawaiian"
 msgstr "Hawaii"
 
-# HM
-# fuzzy
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-#, fuzzy
-msgid "Heard Island and McDonald Islands"
-msgstr "Heard Adası and McDonald Adaları"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -2131,16 +3084,6 @@ msgstr ""
 msgid "Hindi"
 msgstr "Midi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr ""
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Tarih:"
-
 # HT
 #. language code: hit
 #: zypp/LanguageCode.cc:529
@@ -2154,22 +3097,16 @@ msgstr "Haiti"
 msgid "Hmong"
 msgstr "Hong Kong"
 
-# VA
-# fuzzy
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Vatikan"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr ""
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+#, fuzzy
+msgid "Upper Sorbian"
+msgstr "Sırpça"
 
 # /usr/lib/YaST2/keyboard_raw.ycp:570
 #. language code: hun hu
@@ -2177,12 +3114,6 @@ msgstr "Hong Kong"
 msgid "Hungarian"
 msgstr "Macarca"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:570
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Macaristan"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2196,10 +3127,12 @@ msgstr "Hupaca"
 msgid "Iban"
 msgstr "Irak"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "İzlanda"
+# clients/ui_widgets.ycp:85
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+#, fuzzy
+msgid "Igbo"
+msgstr "Görmezden gel"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2213,235 +3146,98 @@ msgstr "İzlandaca"
 msgid "Ido"
 msgstr "Tanıtıcı"
 
-# clients/ui_widgets.ycp:85
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
 #, fuzzy
-msgid "Igbo"
-msgstr "Görmezden gel"
+msgid "Sichuan Yi"
+msgstr "Litvanya"
 
 #. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
-msgstr ""
-
-# /usr/lib/YaST2/timezone_raw.ycp:236
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-#, fuzzy
-msgid "Iloko"
-msgstr "Tokyo"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr ""
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Hindistan"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr "Hint (Diğer)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Hint-Avrupa (Diğer)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Endonezya"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "Endonezyaca"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-#, fuzzy
-msgid "Ingush"
-msgstr "İngilizce"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Yükleme yönlendirildiği şekilde iptal edildi"
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "İnterlingua (Uluslararası Yapay Dil Derneği)"
-
-# clients/online_update.ycp:45
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-#, fuzzy
-msgid "Interlingue"
-msgstr "Devam et"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-#, fuzzy
-msgid "Inuktitut"
-msgstr "Başlangıç"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-#, fuzzy
-msgid "Inupiaq"
-msgstr "Hindistan"
-
-# include/nfs/routines.ycp:188
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Geçersiz %s bileşeni"
-
-# include/nfs/routines.ycp:188
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Geçersiz %s bileşeni '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr ""
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:830
-#, fuzzy, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Geçersiz yetki '{0}'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
 msgstr ""
 
-# include/nfs/routines.ycp:188
-#: zypp/url/UrlBase.cc:1049
-#, fuzzy, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Geçersiz özellik '{0}'"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+#, fuzzy
+msgid "Inuktitut"
+msgstr "Başlangıç"
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Geçersiz dizi karakteri birleştirme parametresi"
+# clients/online_update.ycp:45
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+#, fuzzy
+msgid "Interlingue"
+msgstr "Devam et"
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Geçersiz dizi karakteri ayırma parametresi"
+# /usr/lib/YaST2/timezone_raw.ycp:236
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+#, fuzzy
+msgid "Iloko"
+msgstr "Tokyo"
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "İnterlingua (Uluslararası Yapay Dil Derneği)"
 
-# include/nfs/routines.ycp:188
-#: zypp/url/UrlBase.cc:1081
-#, fuzzy, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Geçersiz özellik '{0}'"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr "Hint (Diğer)"
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Geçersiz düzenli ifade '%s'"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "Endonezyaca"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Geçersiz düzenli ifade '%s': regcomp %d döndürdü"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Hint-Avrupa (Diğer)"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Geçersiz yetki '{0}'"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+#, fuzzy
+msgid "Ingush"
+msgstr "İngilizce"
 
-# IR
-# fuzzy
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Irak"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+#, fuzzy
+msgid "Inupiaq"
+msgstr "Hindistan"
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "İrani (Diğer)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "İrlanda"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "İrlandaca"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "İrlandaca, Orta Çağ (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "İrlandaca, Eski Çağ (900'e kadar)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 #, fuzzy
 msgid "Iroquoian Languages"
 msgstr "Dil yapılandırılıyor..."
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Man Adası"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "İsrail"
-
 # /usr/lib/YaST2/keyboard_raw.ycp:230
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "İtalyanca"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:230
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "İtalya"
-
-# /usr/lib/YaST2/timezone_raw.ycp:347
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaika"
-
 # /usr/lib/YaST2/keyboard_raw.ycp:700
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japonya"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+#, fuzzy
+msgid "Javanese"
+msgstr "Japonca"
+
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+#, fuzzy
+msgid "Lojban"
+msgstr "Lübnan"
 
 # /usr/lib/YaST2/keyboard_raw.ycp:700
 #. language code: jpn ja
@@ -2449,22 +3245,11 @@ msgstr "Japonya"
 msgid "Japanese"
 msgstr "Japonca"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:700
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
 #, fuzzy
-msgid "Javanese"
-msgstr "Japonca"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Jersey"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Ürdün"
+msgid "Judeo-Persian"
+msgstr "Endonezyaca"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
@@ -2472,16 +3257,10 @@ msgstr "Ürdün"
 msgid "Judeo-Arabic"
 msgstr "Arapça"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-#, fuzzy
-msgid "Judeo-Persian"
-msgstr "Endonezyaca"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardeyce"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-kalpaklar"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2500,12 +3279,6 @@ msgstr "Aranacak yer"
 msgid "Kalaallisut"
 msgstr "Grönlandca"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-#, fuzzy
-msgid "Kalmyk"
-msgstr "Konuşma"
-
 # /usr/lib/YaST2/timezone_raw.ycp:481
 #. language code: kam
 #: zypp/LanguageCode.cc:597
@@ -2519,21 +3292,6 @@ msgstr "Samba"
 msgid "Kannada"
 msgstr "Kanada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri "
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-kalpaklar"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karaçay-Balkarca"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 #, fuzzy
@@ -2545,10 +3303,10 @@ msgstr "Kore dili"
 msgid "Kashmiri"
 msgstr "Keşmirce"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr ""
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri "
 
 # MW
 #. language code: kaw
@@ -2565,18 +3323,10 @@ msgstr "Malavi"
 msgid "Kazakh"
 msgstr "Kazakistan"
 
-# KZ
-# fuzzy
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazakistan"
-
-# KE
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardeyce"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
@@ -2584,6 +3334,11 @@ msgstr "Kenya"
 msgid "Khasi"
 msgstr "Taylandça"
 
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
+msgstr ""
+
 # classnames.ycp:73
 #. language code: khm km
 #: zypp/LanguageCode.cc:617
@@ -2591,11 +3346,6 @@ msgstr "Taylandça"
 msgid "Khmer"
 msgstr "Zamanlayıcı"
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
-msgstr ""
-
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 #, fuzzy
@@ -2607,12 +3357,6 @@ msgstr "Çince"
 msgid "Kikuyu"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-#, fuzzy
-msgid "Kimbundu"
-msgstr "Tür"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2625,18 +3369,17 @@ msgstr "Ruandaca"
 msgid "Kirghiz"
 msgstr "Virgin"
 
-# KI
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:200
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
 #, fuzzy
-msgid "Klingon"
-msgstr "Saygon"
+msgid "Kimbundu"
+msgstr "Tür"
+
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+#, fuzzy
+msgid "Konkani"
+msgstr "Kore dili"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2651,12 +3394,6 @@ msgstr "Alan adı"
 msgid "Kongo"
 msgstr "Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-#, fuzzy
-msgid "Konkani"
-msgstr "Kore dili"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2675,11 +3412,23 @@ msgstr "Kore dili"
 msgid "Kpelle"
 msgstr "İmla"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karaçay-Balkarca"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr ""
 
+# /usr/lib/YaST2/keyboard_raw.ycp:668
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+#, fuzzy
+msgid "Kurukh"
+msgstr "Türkçe"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 #, fuzzy
@@ -2699,13 +3448,6 @@ msgstr "Geçersiz"
 msgid "Kurdish"
 msgstr "Türkçe"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:668
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-#, fuzzy
-msgid "Kurukh"
-msgstr "Türkçe"
-
 # KE
 #. language code: kut
 #: zypp/LanguageCode.cc:653
@@ -2713,18 +3455,6 @@ msgstr "Türkçe"
 msgid "Kutenai"
 msgstr "Kenya"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuveyt"
-
-# KG
-# fuzzy
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kırgızistan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 #, fuzzy
@@ -2751,53 +3481,17 @@ msgstr "Samba"
 msgid "Lao"
 msgstr "Kayıt"
 
-# CD
-# fuzzy
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-#, fuzzy
-msgid "Lao People's Democratic Republic"
-msgstr "Lao Halk Cumhuriyeti"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 #, fuzzy
 msgid "Latin"
 msgstr "Letonyaca"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Letonya"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Letonyaca"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Lübnan"
-
-# LS
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesoto"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Seviye 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Seviye 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Seviye 3"
-
 # /usr/lib/YaST2/keyboard_raw.ycp:410
 #. language code: lez
 #: zypp/LanguageCode.cc:667
@@ -2805,25 +3499,6 @@ msgstr "Seviye 3"
 msgid "Lezghian"
 msgstr "Belçikaca"
 
-# LR
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberya"
-
-# LY
-# fuzzy
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Liberya"
-
-# /usr/lib/YaST2/timezone_raw.ycp:407
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 #, fuzzy
@@ -2837,40 +3512,17 @@ msgstr "Lüksemburg"
 msgid "Lingala"
 msgstr "Angola"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litvanya"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Litvanyaca"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "'%s' konumuna şuan ulaşılamaz. "
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-#, fuzzy
-msgid "Lojban"
-msgstr "Lübnan"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:79
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-#, fuzzy
-msgid "Low German"
-msgstr "Almanca"
-
-# classnames.ycp:98
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
+# CG
+#. language code: lol
+#: zypp/LanguageCode.cc:675
 #, fuzzy
-msgid "Lower Sorbian"
-msgstr "Güç koruma"
+msgid "Mongo"
+msgstr "Kongo"
 
 # include/security/ui.ycp:695
 #. language code: loz
@@ -2879,28 +3531,35 @@ msgstr "Güç koruma"
 msgid "Lozi"
 msgstr "Kullanıcı girişi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr ""
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+#, fuzzy
+msgid "Luxembourgish"
+msgstr "Lüksemburg"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr ""
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr ""
+
+# GH
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+#, fuzzy
+msgid "Ganda"
+msgstr "Gana"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 #, fuzzy
 msgid "Luiseno"
 msgstr "Bunları dinle"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-#, fuzzy
-msgid "Lule Sami"
-msgstr "Modül adı"
-
 # menuentries/menuentry_sound.ycp:14
 #. language code: lun
 #: zypp/LanguageCode.cc:689
@@ -2919,38 +3578,11 @@ msgstr ""
 msgid "Lushai"
 msgstr "Taylandça"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Lüksemburg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-#, fuzzy
-msgid "Luxembourgish"
-msgstr "Lüksemburg"
-
-# /usr/lib/YaST2/timezone_raw.ycp:207
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Makedonya"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Makedonyaca"
 
-# MG
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagaskar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 #, fuzzy
@@ -2964,6 +3596,13 @@ msgstr "Faroece"
 msgid "Magahi"
 msgstr "Malavi"
 
+# MH
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+#, fuzzy
+msgid "Marshallese"
+msgstr "Marşal Adaları"
+
 # ML
 #. language code: mai
 #: zypp/LanguageCode.cc:705
@@ -2978,78 +3617,11 @@ msgstr "Mali"
 msgid "Makasar"
 msgstr "Madagaskar"
 
-# MG
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-#, fuzzy
-msgid "Malagasy"
-msgstr "Madagaskar"
-
-# MW
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malavi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-#, fuzzy
-msgid "Malay"
-msgstr "Malta"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 #, fuzzy
-msgid "Malayalam"
-msgstr "Malezya"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malezya"
-
-# MV
-# fuzzy
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Mali"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-# ML
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-# MV
-# fuzzy
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-#, fuzzy
-msgid "Maltese"
-msgstr "Mali"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-#, fuzzy
-msgid "Manchu"
-msgstr "Man"
-
-# MM
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-#, fuzzy
-msgid "Mandar"
-msgstr "Miyanmar"
+msgid "Malayalam"
+msgstr "Malezya"
 
 # include/ui/common_messages.ycp:91
 #. language code: man
@@ -3058,24 +3630,6 @@ msgstr "Miyanmar"
 msgid "Mandingo"
 msgstr "Uyarı"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr ""
-
-# menuentries/menuentry_language.ycp:13
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-#, fuzzy
-msgid "Manobo Languages"
-msgstr "Diller"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-#, fuzzy
-msgid "Manx"
-msgstr "Man"
-
 # /usr/lib/YaST2/timezone_raw.ycp:207
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
@@ -3083,6 +3637,11 @@ msgstr "Man"
 msgid "Maori"
 msgstr "Yüksek"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Avustranezya (Diğer)"
+
 # clients/online_update_details.ycp:88 clients/online_update_select.ycp:112
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
@@ -3090,38 +3649,6 @@ msgstr "Yüksek"
 msgid "Marathi"
 msgstr "Matematik"
 
-# ML
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-#, fuzzy
-msgid "Mari"
-msgstr "Mali"
-
-# MH
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marşal Adaları"
-
-# MH
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-#, fuzzy
-msgid "Marshallese"
-msgstr "Marşal Adaları"
-
-# /usr/lib/YaST2/timezone_raw.ycp:99
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-#, fuzzy
-msgid "Marwari"
-msgstr "Donanım"
-
 # MW
 #. language code: mas
 #: zypp/LanguageCode.cc:721
@@ -3129,50 +3656,23 @@ msgstr "Donanım"
 msgid "Masai"
 msgstr "Malavi"
 
-# MR
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Moritanya"
-
-# MU
-# fuzzy
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-# menuentries/menuentry_language.ycp:13
-#. language code: myn
-#: zypp/LanguageCode.cc:771
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
 #, fuzzy
-msgid "Mayan Languages"
-msgstr "Diller"
-
-# YT
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "'%s' medya kaynağı gerekli ortamı içermiyor."
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "'%s' medyası başka bir oluşum tarafından kullanımda"
+msgid "Malay"
+msgstr "Malta"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Ortam ekli değil"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "'%s' işlemi gerçekleştirilmeye çalışılırken ortam açılamadı."
+# MM
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+#, fuzzy
+msgid "Mandar"
+msgstr "Miyanmar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
@@ -3180,15 +3680,10 @@ msgstr "'%s' işlemi gerçekleştirilmeye çalışılırken ortam açılamadı."
 msgid "Mende"
 msgstr "Mod"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr ""
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Meksika"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "İrlandaca, Orta Çağ (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -3200,14 +3695,6 @@ msgstr ""
 msgid "Minangkabau"
 msgstr ""
 
-# FM
-# fuzzy
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-#, fuzzy
-msgid "Mirandese"
-msgstr "Maine"
-
 # clients/ui_helps.ycp:139 include/security/ui.ycp:624
 #. language code: mis
 #: zypp/LanguageCode.cc:739
@@ -3215,16 +3702,49 @@ msgstr "Maine"
 msgid "Miscellaneous Languages"
 msgstr "Diğer ayarlar"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr ""
+
+# MG
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+#, fuzzy
+msgid "Malagasy"
+msgstr "Madagaskar"
+
+# MV
+# fuzzy
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+#, fuzzy
+msgid "Maltese"
+msgstr "Mali"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+#, fuzzy
+msgid "Manchu"
+msgstr "Man"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr ""
+
+# menuentries/menuentry_language.ycp:13
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+#, fuzzy
+msgid "Manobo Languages"
+msgstr "Diller"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr ""
-
 # /usr/lib/YaST2/timezone_raw.ycp:381
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
@@ -3232,36 +3752,6 @@ msgstr ""
 msgid "Moldavian"
 msgstr "Moldova"
 
-# /usr/lib/YaST2/timezone_raw.ycp:381
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr ""
-
-# /usr/lib/YaST2/timezone_raw.ycp:394
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monako"
-
-# CG
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-#, fuzzy
-msgid "Mongo"
-msgstr "Kongo"
-
-# MN
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Moğolistan"
-
 # MN
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
@@ -3269,54 +3759,57 @@ msgstr "Moğolistan"
 msgid "Mongolian"
 msgstr "Moğolistan"
 
-# CG
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "Kongo"
-
-# MS
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Monserat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Fas"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 #, fuzzy
 msgid "Mossi"
 msgstr "Mors"
 
-# MZ
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambik"
+#. language code: mul
+#: zypp/LanguageCode.cc:761
+#, fuzzy
+msgid "Multiple Languages"
+msgstr "&Çoklu anahtarlar"
+
+# menuentries/menuentry_language.ycp:13
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+#, fuzzy
+msgid "Munda languages"
+msgstr "Diller"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:320
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+#, fuzzy
+msgid "Creek"
+msgstr "Yunanca"
+
+# FM
+# fuzzy
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+#, fuzzy
+msgid "Mirandese"
+msgstr "Maine"
 
-#. language code: mul
-#: zypp/LanguageCode.cc:761
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
 #, fuzzy
-msgid "Multiple Languages"
-msgstr "&Çoklu anahtarlar"
+msgid "Marwari"
+msgstr "Donanım"
 
 # menuentries/menuentry_language.ycp:13
-#. language code: mun
-#: zypp/LanguageCode.cc:763
+#. language code: myn
+#: zypp/LanguageCode.cc:771
 #, fuzzy
-msgid "Munda languages"
+msgid "Mayan Languages"
 msgstr "Diller"
 
-# MM
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Miyanmar"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
@@ -3324,17 +3817,16 @@ msgstr "Miyanmar"
 msgid "Nahuatl"
 msgstr "El ile"
 
-# NA
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibya"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+#, fuzzy
+msgid "North American Indian"
+msgstr "Kuzey Amerika"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr ""
 
 # /usr/lib/YaST2/timezone_raw.ycp:356
 #. language code: nav nv
@@ -3342,16 +3834,16 @@ msgstr "Nauru"
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr ""
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr ""
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr ""
+
 # TO
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
@@ -3359,15 +3851,18 @@ msgstr ""
 msgid "Ndonga"
 msgstr "Tonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr ""
+# /usr/lib/YaST2/keyboard_raw.ycp:79
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+#, fuzzy
+msgid "Low German"
+msgstr "Almanca"
 
 # NP
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+#, fuzzy
+msgid "Nepali"
 msgstr "Nepal"
 
 # NP
@@ -3377,78 +3872,17 @@ msgstr "Nepal"
 msgid "Nepal Bhasa"
 msgstr "Nepal"
 
-# NP
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-#, fuzzy
-msgid "Nepali"
-msgstr "Nepal"
-
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Hollanda"
-
-# AN
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Hollanda Antilleri"
-
-# NC
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Yeni İskoçya"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Yeni Zelenda"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
-
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 #, fuzzy
 msgid "Nias"
 msgstr "Takma ad"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nikaragua"
-
-# NE
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Nijer"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-# NG
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-# NU
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Nie"
-
 # NU
 #. language code: niu
 #: zypp/LanguageCode.cc:801
@@ -3456,16 +3890,19 @@ msgstr "Nie"
 msgid "Niuean"
 msgstr "Nie"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+# /usr/lib/YaST2/keyboard_raw.ycp:410
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
 #, fuzzy
-msgid "No Code"
-msgstr "&Kod"
+msgid "Norwegian Nynorsk"
+msgstr "Norveççe"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr ""
+# /usr/lib/YaST2/keyboard_raw.ycp:410
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+#, fuzzy
+msgid "Norwegian Bokmal"
+msgstr "Norveççe"
 
 # TO
 #. language code: nog
@@ -3474,79 +3911,23 @@ msgstr ""
 msgid "Nogai"
 msgstr "Tonga"
 
-# NF
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolk Adası"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-#, fuzzy
-msgid "North American Indian"
-msgstr "Kuzey Amerika"
-
-# /usr/lib/YaST2/timezone_raw.ycp:374
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-#, fuzzy
-msgid "North Korea"
-msgstr "Kuzey İrlanda"
-
-# MP
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Kuzey Meryem Adaları"
-
-# /usr/lib/YaST2/timezone_raw.ycp:374
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-#, fuzzy
-msgid "Northern Sami"
-msgstr "Kuzey İrlanda"
-
-# /usr/lib/YaST2/timezone_raw.ycp:374
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-#, fuzzy
-msgid "Northern Sotho"
-msgstr "Kuzey İrlanda"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:410
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norveç"
-
 # /usr/lib/YaST2/keyboard_raw.ycp:410
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norveççe"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:410
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-#, fuzzy
-msgid "Norwegian Bokmal"
-msgstr "Norveççe"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:410
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
+# /usr/lib/YaST2/timezone_raw.ycp:374
+#. language code: nso
+#: zypp/LanguageCode.cc:813
 #, fuzzy
-msgid "Norwegian Nynorsk"
-msgstr "Norveççe"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr ""
+msgid "Northern Sotho"
+msgstr "Kuzey İrlanda"
 
 # clients/inst_language.ycp:116
 #. language code: nub
@@ -3555,6 +3936,18 @@ msgstr ""
 msgid "Nubian Languages"
 msgstr "Dili ayarla"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+#, fuzzy
+msgid "Classical Newari"
+msgstr "Sınıf adı"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+#, fuzzy
+msgid "Chichewa"
+msgstr "Şili"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 #, fuzzy
@@ -3578,35 +3971,15 @@ msgstr "Kuzey"
 msgid "Nzima"
 msgstr "Lima"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Eskitiyor"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
-msgstr ""
-
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
-msgstr ""
-
-# /usr/lib/YaST2/keyboard_raw.ycp:79
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Umman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "'%s' ya da '%s' niteliklerinden biri yada ikisi birden gerekli."
-
-#: zypp/media/MediaException.cc:145
-#, fuzzy
-msgid "Operation not supported by medium"
-msgstr "Profil sürümü Apparmor modülü tarafından desteklenmiyor\n"
+msgid "Occitan (post 1500)"
+msgstr ""
+
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
+msgstr ""
 
 # SY
 # fuzzy
@@ -3635,6 +4008,11 @@ msgstr "kaydet"
 msgid "Ossetian"
 msgstr "Rusça"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr ""
+
 # clients/inst_language.ycp:116
 #. language code: oto
 #: zypp/LanguageCode.cc:843
@@ -3642,15 +4020,17 @@ msgstr "Rusça"
 msgid "Otomian Languages"
 msgstr "Dili ayarla"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
-"%s paketi aktarılırken hasar görmüş olabilir. Kurtarmayı denemek istiyor "
-"musunuz?"
+
+# /usr/lib/YaST2/keyboard_raw.ycp:570
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+#, fuzzy
+msgid "Pangasinan"
+msgstr "Macarca"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
@@ -3658,53 +4038,12 @@ msgstr ""
 msgid "Pahlavi"
 msgstr "Palau"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-#, fuzzy
-msgid "Palauan"
-msgstr "Palau"
-
-# IO
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-#, fuzzy
-msgid "Palestinian Territory"
-msgstr "Hint Okyanusu İngiliz Sömürgeleri"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-#, fuzzy
-msgid "Pali"
-msgstr "Palm"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 #, fuzzy
 msgid "Pampanga"
 msgstr "Paraguay"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:570
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-#, fuzzy
-msgid "Pangasinan"
-msgstr "Macarca"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 #, fuzzy
@@ -3717,37 +4056,17 @@ msgstr "Panama"
 msgid "Papiamento"
 msgstr "Parametre"
 
-# PG
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua Yeni Gine"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+#, fuzzy
+msgid "Palauan"
+msgstr "Palau"
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, fuzzy, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Hata: %s temel dizini bir dizin değil, atlanıyor.\n"
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "'%s' ortamındaki '%s' yolu bir dosya değil."
-
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "İzin verilmedi\n"
-
 # clients/inst_sw_single.ycp:1461
 #. language code: per fas fa
 #: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
@@ -3755,53 +4074,23 @@ msgstr "İzin verilmedi\n"
 msgid "Persian"
 msgstr "Sürüm"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr ""
-
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
-
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 #, fuzzy
 msgid "Philippine (Other)"
 msgstr "Flipinler"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Flipinler"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 #, fuzzy
 msgid "Phoenician"
 msgstr "Slovence"
 
-# /usr/lib/YaST2/timezone_raw.ycp:456
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
 #, fuzzy
-msgid "Pohnpeian"
-msgstr "Endonezyaca"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Polonya"
+msgid "Pali"
+msgstr "Palm"
 
 # /usr/lib/YaST2/keyboard_raw.ycp:604
 #. language code: pol pl
@@ -3809,11 +4098,11 @@ msgstr "Polonya"
 msgid "Polish"
 msgstr "Lehçe"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:260
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portekiz"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+#, fuzzy
+msgid "Pohnpeian"
+msgstr "Endonezyaca"
 
 # /usr/lib/YaST2/keyboard_raw.ycp:260
 #. language code: por pt
@@ -3828,46 +4117,11 @@ msgstr "Portekizce"
 msgid "Prakrit Languages"
 msgstr "Dili ayarla"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Porto Riko"
-
 # include/security/ui.ycp:417
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
@@ -3875,34 +4129,11 @@ msgstr "Porto Riko"
 msgid "Pushto"
 msgstr "Özel"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Katar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-# clients/online_update_load.ycp:380
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "İndirme işlemi başarısız oldu:"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr ""
-
 # KZ
 # fuzzy
 #. language code: raj
@@ -3924,60 +4155,27 @@ msgstr "Japonya"
 msgid "Rarotongan"
 msgstr "Yönlendirme oku"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "'%s' deposu siliniyor"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Depo ismi noktayla başlayamaz."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Gerekli '%s' niteliği bulunamadı."
-
-# clients/hwinfo.ycp:54
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Gerekenler"
-
-# RE
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romanya"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Romence"
-
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr ""
+
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 #, fuzzy
 msgid "Romany"
 msgstr "Romanya"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Romence"
+
 # RE
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
@@ -3991,60 +4189,30 @@ msgstr "Reunion"
 msgid "Russian"
 msgstr "Rusça"
 
-# RU
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Rusya Federasyonu"
-
-# RW
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Ruanda"
-
-# SH
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Sen Helen"
-
-# KN
-# fuzzy
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-#, fuzzy
-msgid "Saint Kitts and Nevis"
-msgstr "Sen Kitts ve Nevis"
-
-# LC
-# fuzzy
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
+# include/cups/helps.ycp:578
+#. language code: sad
+#: zypp/LanguageCode.cc:905
 #, fuzzy
-msgid "Saint Lucia"
-msgstr "Sen Lusia"
+msgid "Sandawe"
+msgstr "Yatay"
 
-# SM
-#: zypp/CountryCode.cc:297
+# /usr/lib/YaST2/keyboard_raw.ycp:200
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
 #, fuzzy
-msgid "Saint Martin"
-msgstr "San Marino"
+msgid "Sango"
+msgstr "Saygon"
 
-# PM
-# fuzzy
-#. :POL:616:
-#: zypp/CountryCode.cc:336
+#. language code: sah
+#: zypp/LanguageCode.cc:909
 #, fuzzy
-msgid "Saint Pierre and Miquelon"
-msgstr "Sen Piyer ve Miquelon"
+msgid "Yakut"
+msgstr "Breakout"
 
-# VC
-# fuzzy
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-#, fuzzy
-msgid "Saint Vincent and the Grenadines"
-msgstr "Sen Vinsınt ve Granadalar"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr ""
 
 # clients/inst_language.ycp:116
 #. language code: sal
@@ -4058,46 +4226,6 @@ msgstr "Dili ayarla"
 msgid "Samaritan Aramaic"
 msgstr ""
 
-# menuentries/menuentry_language.ycp:13
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-#, fuzzy
-msgid "Sami Languages (Other)"
-msgstr "Diller"
-
-# /usr/lib/YaST2/timezone_raw.ycp:481
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-# /usr/lib/YaST2/timezone_raw.ycp:481
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-#, fuzzy
-msgid "Samoan"
-msgstr "Samoa"
-
-# SM
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-# include/cups/helps.ycp:578
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-#, fuzzy
-msgid "Sandawe"
-msgstr "Yatay"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:200
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-#, fuzzy
-msgid "Sango"
-msgstr "Saygon"
-
 # clients/inst_custom_part.ycp:2930
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
@@ -4105,26 +4233,6 @@ msgstr "Saygon"
 msgid "Sanskrit"
 msgstr "Başlangıç"
 
-# /usr/lib/YaST2/timezone_raw.ycp:240
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-#, fuzzy
-msgid "Santali"
-msgstr "Şangay"
-
-# ST
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome"
-
-# MR
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-#, fuzzy
-msgid "Sardinian"
-msgstr "Moritanya"
-
 # /usr/lib/YaST2/timezone_raw.ycp:481
 #. language code: sas
 #: zypp/LanguageCode.cc:919
@@ -4132,84 +4240,18 @@ msgstr "Moritanya"
 msgid "Sasak"
 msgstr "Samoa"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Suudi Arabistan"
-
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-#, fuzzy
-msgid "Scots"
-msgstr "Saniye"
-
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-#, fuzzy
-msgid "Selkup"
-msgstr "Atla"
-
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
-msgstr ""
-
-# SN
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
+# /usr/lib/YaST2/timezone_raw.ycp:240
+#. language code: sat
+#: zypp/LanguageCode.cc:921
 #, fuzzy
-msgid "Serbia"
-msgstr "Sırpça"
+msgid "Santali"
+msgstr "Şangay"
 
 #. language code: scc srp sr
 #: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
 msgid "Serbian"
 msgstr "Sırpça"
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-#, fuzzy
-msgid "Serer"
-msgstr "Sunucu"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Servis ismi noktayla başlayamaz."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
-
-# SC
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seyşel Adaları"
-
-# GH
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-#, fuzzy
-msgid "Shan"
-msgstr "Gana"
-
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-#, fuzzy
-msgid "Shona"
-msgstr "Slovenya"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-#, fuzzy
-msgid "Sichuan Yi"
-msgstr "Litvanya"
-
 # /usr/lib/YaST2/timezone_raw.ycp:478
 #. language code: scn
 #: zypp/LanguageCode.cc:927
@@ -4217,71 +4259,53 @@ msgstr "Litvanya"
 msgid "Sicilian"
 msgstr "Michigan"
 
-# /usr/lib/YaST2/timezone_raw.ycp:481
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-#, fuzzy
-msgid "Sidamo"
-msgstr "Samoa"
-
-# SL
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-# menuentries/menuentry_language.ycp:13
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
+#. language code: sco
+#: zypp/LanguageCode.cc:929
 #, fuzzy
-msgid "Sign Languages"
-msgstr "Diller"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr ""
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "%s imza dosyası bulunamadı"
+msgid "Scots"
+msgstr "Saniye"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr ""
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Hırvatça"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr ""
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+#, fuzzy
+msgid "Selkup"
+msgstr "Atla"
 
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "İrlandaca, Eski Çağ (900'e kadar)"
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr ""
+# menuentries/menuentry_language.ycp:13
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+#, fuzzy
+msgid "Sign Languages"
+msgstr "Diller"
 
-# /usr/lib/YaST2/timezone_raw.ycp:450
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
+# GH
+#. language code: shn
+#: zypp/LanguageCode.cc:943
 #, fuzzy
-msgid "Sindhi"
-msgstr "Midi"
+msgid "Shan"
+msgstr "Gana"
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapur"
+# /usr/lib/YaST2/timezone_raw.ycp:481
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+#, fuzzy
+msgid "Sidamo"
+msgstr "Samoa"
 
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
@@ -4289,11 +4313,6 @@ msgstr "Singapur"
 msgid "Sinhala"
 msgstr "Seri numara"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 # clients/inst_language.ycp:116
 #. language code: sio
 #: zypp/LanguageCode.cc:949
@@ -4301,14 +4320,9 @@ msgstr ""
 msgid "Siouan Languages"
 msgstr "Dili ayarla"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -4321,21 +4335,73 @@ msgstr ""
 msgid "Slovak"
 msgstr "Slovakça"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovakya"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenya"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Slovence"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr ""
+
+# /usr/lib/YaST2/timezone_raw.ycp:374
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+#, fuzzy
+msgid "Northern Sami"
+msgstr "Kuzey İrlanda"
+
+# menuentries/menuentry_language.ycp:13
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+#, fuzzy
+msgid "Sami Languages (Other)"
+msgstr "Diller"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+#, fuzzy
+msgid "Lule Sami"
+msgstr "Modül adı"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr ""
+
+# /usr/lib/YaST2/timezone_raw.ycp:481
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+#, fuzzy
+msgid "Samoan"
+msgstr "Samoa"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr ""
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+#, fuzzy
+msgid "Shona"
+msgstr "Slovenya"
+
+# /usr/lib/YaST2/timezone_raw.ycp:450
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+#, fuzzy
+msgid "Sindhi"
+msgstr "Midi"
+
+# clients/online_update.ycp:45
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+#, fuzzy
+msgid "Soninke"
+msgstr "Devam et"
+
 # include/security/ui.ycp:695
 #. language code: sog
 #: zypp/LanguageCode.cc:981
@@ -4343,12 +4409,6 @@ msgstr "Slovence"
 msgid "Sogdian"
 msgstr "Kullanıcı girişi"
 
-# SB
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Solomon Adaları"
-
 # SO
 #. language code: som so
 #: zypp/LanguageCode.cc:983
@@ -4356,12 +4416,6 @@ msgstr "Solomon Adaları"
 msgid "Somali"
 msgstr "Somali"
 
-# SO
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somali"
-
 # /usr/lib/YaST2/timezone_raw.ycp:240
 #. language code: son
 #: zypp/LanguageCode.cc:985
@@ -4369,116 +4423,53 @@ msgstr "Somali"
 msgid "Songhai"
 msgstr "Şangay"
 
-# clients/online_update.ycp:45
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-#, fuzzy
-msgid "Soninke"
-msgstr "Devam et"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-#, fuzzy
-msgid "Sorbian Languages"
-msgstr "Dil yapılandırılıyor..."
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Üzgünüz, libzypp'nin bu versiyonunda HAL desteklenmemektedir."
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Güney Afrika"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr ""
-
-# GS
-# fuzzy
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Güney Gürcistan ve Güney Sandoviç Adası"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-#, fuzzy
-msgid "South Korea"
-msgstr "Güney Kutbu"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-#, fuzzy
-msgid "Southern Altai"
-msgstr "Güney Afrika"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr ""
-
-# /usr/lib/YaST2/keyboard_raw.ycp:200
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "İspanya"
-
 # /usr/lib/YaST2/keyboard_raw.ycp:200
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "İspanyolca"
 
-# LK
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+# MR
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+#, fuzzy
+msgid "Sardinian"
+msgstr "Moritanya"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+#, fuzzy
+msgid "Serer"
+msgstr "Sunucu"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
 msgstr ""
 
+# HT
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+#, fuzzy
+msgid "Swati"
+msgstr "Haiti"
+
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 #, fuzzy
 msgid "Sukuma"
 msgstr "Özet"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-#, fuzzy
-msgid "Sumerian"
-msgstr "Sırpça"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
-#, fuzzy
-msgid "Sundanese"
-msgstr "Sudan"
-
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-# SR
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Surinam"
+#, fuzzy
+msgid "Sundanese"
+msgstr "Sudan"
 
 # clients/hwinfo.ycp:43
 #. language code: sus
@@ -4487,12 +4478,11 @@ msgstr "Surinam"
 msgid "Susu"
 msgstr "SMBus"
 
-# SJ
-# fuzzy
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard ve Jan Mayen Adaları"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+#, fuzzy
+msgid "Sumerian"
+msgstr "Sırpça"
 
 # SZ
 #. language code: swa sw
@@ -4501,44 +4491,12 @@ msgstr "Svalbard ve Jan Mayen Adaları"
 msgid "Swahili"
 msgstr "Swaziland"
 
-# HT
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-#, fuzzy
-msgid "Swati"
-msgstr "Haiti"
-
-# SZ
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:440
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "İsveç"
-
 # /usr/lib/YaST2/keyboard_raw.ycp:440
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "İsveççe"
 
-# /usr/lib/YaST2/keyboard_raw.ycp:169
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "İsviçre"
-
-# SY
-# fuzzy
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Surinam"
-
 # SY
 # fuzzy
 #. language code: syr
@@ -4547,25 +4505,6 @@ msgstr "Surinam"
 msgid "Syriac"
 msgstr "Surinam"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "'%s' ortamındaki '%s' te sistem isnası meydana geldi."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Sistem yönetimi uygulama tarafından pid kullanılarak kilitlendi %d (%s). \n"
-"Tekrar denemeden önce bu uygulamayı kapatın."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 # /usr/lib/YaST2/timezone_raw.ycp:461
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
@@ -4580,31 +4519,6 @@ msgstr "Tahiti"
 msgid "Tai (Other)"
 msgstr "Diğer"
 
-# TW
-# fuzzy
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Tayland"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-#, fuzzy
-msgid "Tajik"
-msgstr "Taylandça"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tacikistan"
-
-# /usr/lib/YaST2/timezone_raw.ycp:221
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-#, fuzzy
-msgid "Tamashek"
-msgstr "Taşkent"
-
 # clients/hwinfo.ycp:51
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
@@ -4612,12 +4526,6 @@ msgstr "Taşkent"
 msgid "Tamil"
 msgstr "Aile"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-#, fuzzy
-msgid "Tanzania"
-msgstr "Tazmanya"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 #, fuzzy
@@ -4631,6 +4539,13 @@ msgstr "Katar"
 msgid "Telugu"
 msgstr "Belçika"
 
+# classnames.ycp:73
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+#, fuzzy
+msgid "Timne"
+msgstr "Süre"
+
 # include/cups/ui.ycp:2582
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
@@ -4645,33 +4560,22 @@ msgstr "Tex bilgisi"
 msgid "Tetum"
 msgstr "Pentium"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+#, fuzzy
+msgid "Tajik"
+msgstr "Taylandça"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr ""
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Taylandça"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Tayland"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Destek seviyesi belirtilmemiş"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Sağlayıcı destek sağlamıyor."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Bu işlem zaten başka bir program tarafından çalıştırıldı."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Bu istek sisteminizi çökertecek!"
-
 # TW
 # fuzzy
 #. language code: tib bod bo
@@ -4694,53 +4598,30 @@ msgstr "görmezden gel"
 msgid "Tigrinya"
 msgstr "Nigeria"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-# classnames.ycp:73
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-#, fuzzy
-msgid "Timne"
-msgstr "Süre"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+# /usr/lib/YaST2/keyboard_raw.ycp:200
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+#, fuzzy
+msgid "Klingon"
+msgstr "Saygon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 #, fuzzy
 msgid "Tlingit"
 msgstr "Posta listeleri"
 
-# TG
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
+# /usr/lib/YaST2/timezone_raw.ycp:221
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
 #, fuzzy
-msgid "Tok Pisin"
-msgstr "Token Ring"
-
-# TK
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-# TO
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+msgid "Tamashek"
+msgstr "Taşkent"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4754,17 +4635,11 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr "Solomon Adaları"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-# TT
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad ve Tobako"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+#, fuzzy
+msgid "Tok Pisin"
+msgstr "Token Ring"
 
 # /usr/lib/YaST2/keyboard_raw.ycp:638
 #. language code: tsi
@@ -4773,54 +4648,18 @@ msgstr "Trinidad ve Tobako"
 msgid "Tsimshian"
 msgstr "Rusça"
 
-# TO
-#. language code: tso ts
-#: zypp/LanguageCode.cc:1063
-#, fuzzy
-msgid "Tsonga"
-msgstr "Tonga"
-
 #. language code: tsn tn
 #: zypp/LanguageCode.cc:1061
 #, fuzzy
 msgid "Tswana"
 msgstr "Botswana"
 
-# /usr/lib/YaST2/timezone_raw.ycp:48
-#. language code: tum
-#: zypp/LanguageCode.cc:1067
-#, fuzzy
-msgid "Tumbuka"
-msgstr "Timbuktu"
-
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunus"
-
-# clients/inst_language.ycp:116
-#. language code: tup
-#: zypp/LanguageCode.cc:1069
+# TO
+#. language code: tso ts
+#: zypp/LanguageCode.cc:1063
 #, fuzzy
-msgid "Tupi Languages"
-msgstr "Dili ayarla"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:668
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Türkiye"
-
-# /usr/lib/YaST2/keyboard_raw.ycp:668
-#. language code: tur tr
-#: zypp/LanguageCode.cc:1071
-msgid "Turkish"
-msgstr "Türkçe"
-
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr ""
+msgid "Tsonga"
+msgstr "Tonga"
 
 # /usr/lib/YaST2/keyboard_raw.ycp:668
 #. language code: tuk tk
@@ -4829,49 +4668,47 @@ msgstr ""
 msgid "Turkmen"
 msgstr "Türkiye"
 
-# TM
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Türkmenistan"
+# /usr/lib/YaST2/timezone_raw.ycp:48
+#. language code: tum
+#: zypp/LanguageCode.cc:1067
+#, fuzzy
+msgid "Tumbuka"
+msgstr "Timbuktu"
 
-# TC
-# fuzzy
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
+# clients/inst_language.ycp:116
+#. language code: tup
+#: zypp/LanguageCode.cc:1069
 #, fuzzy
-msgid "Turks and Caicos Islands"
-msgstr "Turks ve Kaykos Adaları"
+msgid "Tupi Languages"
+msgstr "Dili ayarla"
 
-# TV
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Tuvalu"
+# /usr/lib/YaST2/keyboard_raw.ycp:668
+#. language code: tur tr
+#: zypp/LanguageCode.cc:1071
+msgid "Turkish"
+msgstr "Türkçe"
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-#, fuzzy
-msgid "Tuvinian"
-msgstr "Tunus"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altay(Diğer)"
 
 #. language code: twi tw
 #: zypp/LanguageCode.cc:1077
 msgid "Twi"
 msgstr ""
 
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+#, fuzzy
+msgid "Tuvinian"
+msgstr "Tunus"
+
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr ""
 
-# UG
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 # HT
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
@@ -4884,11 +4721,6 @@ msgstr "Haiti"
 msgid "Uighur"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukrayna"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 #, fuzzy
@@ -4900,225 +4732,40 @@ msgstr "Ukrayna"
 msgid "Umbundu"
 msgstr ""
 
-#: zypp/Url.cc:300
-#, fuzzy
-msgid "Unable to clone Url object"
-msgstr "çalışma alanı oluşturulamadı\n"
-
-#: zypp/target/hal/HalContext.cc:229
-#, fuzzy
-msgid "Unable to create dbus connection"
-msgstr "çalışma alanı oluşturulamadı\n"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr ""
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-#, fuzzy
-msgid "Unable to parse Url components"
-msgstr "çalışma alanı oluşturulamadı\n"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Belirsiz"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr ""
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Birleşik Arap Emirlikleri"
-
-# /usr/lib/YaST2/timezone_raw.ycp:390
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "İngiltere"
-
-# US
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Birleşik Devletler"
-
-# UM
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "United States Minor Outlying Islands"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Bilinmeyen ülke:"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr ""
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Bilinmeyen dil:"
-
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr ""
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr ""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Bilinmeyen destek seçeneği. Açıklama bulunamadı"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr ""
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr ""
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-#, fuzzy
-msgid "Upper Sorbian"
-msgstr "Sırpça"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr ""
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 #, fuzzy
 msgid "Uzbek"
 msgstr "Özbekistan"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Özbekistan"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 #, fuzzy
 msgid "Vai"
 msgstr "Vi"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-
-# VU
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 #, fuzzy
 msgid "Venda"
 msgstr "Üretici"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezüella"
-
-# VN
-# fuzzy
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
-
 # src/mozilla_i18n.c:37
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "Vietnamca"
 
-# VI
-# fuzzy
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Virgin Adaları (U.S.)"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Kaydınızın geçerli olduğundan ve süresinin dolmadığından emin olmak için en "
-"yakın Novell Müşteri Merkezini ziyaret edin."
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -5144,19 +4791,6 @@ msgstr "Dili ayarla"
 msgid "Walamo"
 msgstr "Palm"
 
-# WF
-# fuzzy
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis ve Futuna Adaları"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-#, fuzzy
-msgid "Walloon"
-msgstr "tümü"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 #, fuzzy
@@ -5175,28 +4809,34 @@ msgstr ""
 msgid "Welsh"
 msgstr "Batı"
 
-# EH
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Batı Sahra"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+#, fuzzy
+msgid "Sorbian Languages"
+msgstr "Dil yapılandırılıyor..."
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+#, fuzzy
+msgid "Walloon"
+msgstr "tümü"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr ""
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+#, fuzzy
+msgid "Kalmyk"
+msgstr "Konuşma"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-#, fuzzy
-msgid "Yakut"
-msgstr "Breakout"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -5209,11 +4849,6 @@ msgstr ""
 msgid "Yapese"
 msgstr "Japonca"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Yemen"
-
 # include/nis_server/ui.ycp:45
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
@@ -5235,18 +4870,6 @@ msgstr "Aruba"
 msgid "Yupik Languages"
 msgstr "Dili ayarla"
 
-# ZM
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambiya"
-
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-#, fuzzy
-msgid "Zande"
-msgstr "Bölge"
-
 #. language code: zap
 #: zypp/LanguageCode.cc:1139
 msgid "Zapotec"
@@ -5265,10 +4888,11 @@ msgstr "Grenada"
 msgid "Zhuang"
 msgstr "Bütan"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+#, fuzzy
+msgid "Zande"
+msgstr "Bölge"
 
 # /usr/lib/YaST2/timezone_raw.ycp:326
 #. language code: zul zu
@@ -5282,6 +4906,54 @@ msgstr "Zulu"
 msgid "Zuni"
 msgstr "Tunis"
 
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Anahtar silinirken hata meydana geldi."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "%s imza dosyası bulunamadı"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "'%s' deposundaki '%s' e ulaşılamıyor"
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr ""
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr ""
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"%s paketi aktarılırken hasar görmüş olabilir. Kurtarmayı denemek istiyor "
+"musunuz?"
+
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr ""
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "%s Paketi bulunamadı. Tekrar aramak ister misiniz?"
+
 #: zypp/repo/PackageProvider.cc:515
 msgid "applydeltarpm check failed."
 msgstr ""
@@ -5290,16 +4962,74 @@ msgstr ""
 msgid "applydeltarpm failed."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
+"Sistem yönetimi uygulama tarafından pid kullanılarak kilitlendi %d (%s). \n"
+"Tekrar denemeden önce bu uygulamayı kapatın."
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, fuzzy, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "şu çözülmemiş gereksinimlere sahip:"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s dağıtım güncelleme deposuna ait değil."
+
+# clients/hwinfo.ycp:66
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s alt mimariye sahip"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr ""
+
+# clients/inst_sw_single.ycp:742
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "Yetersiz bağımlılıklar:"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "İstenen bütün depoları etkinleştirdiğinizden emin misiniz?"
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr ""
+
+# clients/online_update_start.ycp:171
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s kurulabilir değil"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr ""
 
 # include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
 #: zypp/solver/detail/SATResolver.cc:1017
@@ -5307,45 +5037,115 @@ msgstr "şu çözülmemiş gereksinimlere sahip:"
 msgid "cannot install both %s and %s"
 msgstr "%s ve %s in ikisi birden yüklenemez"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s, %s tarafından sağlanan %s ile çakışıyor."
 
-# clients/inst_sw_backup.ycp:260
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/solver/detail/SATResolver.cc:1027
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "%s yedeklemesi oluşturuldu"
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s %s tarafından sağlanan %s'in süresini bitirdi."
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/solver/detail/SATResolver.cc:1032
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Kurulum"
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%1, %2 ile çakışıyor"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%1, %2 ile çakışıyor"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s, %s'i gerektiriyor, ama bu gereklilik sağlanamıyor."
 
 #: zypp/solver/detail/SATResolver.cc:1070
 msgid "deleted providers: "
 msgstr ""
 
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"Yüklenemez sağlayıcılar:"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "Yüklenemez sağlayıcılar:"
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
+
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "%s yüklenmedi"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Bu istek sisteminizi çökertecek!"
+
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr ""
+
 #: zypp/solver/detail/SATResolver.cc:1245
 #, fuzzy, c-format, boost-format
 msgid "do not ask to delete all solvables providing %s"
 msgstr "%1, %2 ile çakışıyor"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1284
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
-#, c-format, boost-format
-msgid "do not install %s"
-msgstr "%s yüklenmedi"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%1 paketini sil"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/solver/detail/SATResolver.cc:1298
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "install %s from excluded repository"
 msgstr ""
 
 #: zypp/solver/detail/SATResolver.cc:1318
@@ -5353,13 +5153,9 @@ msgstr ""
 msgid "downgrade of %s to %s"
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
 #: zypp/solver/detail/SATResolver.cc:1334
@@ -5369,337 +5165,431 @@ msgid ""
 "  %s  -->  %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/solver/detail/SATResolver.cc:1343
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+msgid "replacement of %s with %s"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr ""
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Kurulum"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%1, %2 ile çakışıyor"
+msgid "break %s by ignoring some of its dependencies"
+msgstr "şu çözülmemiş gereksinimlere sahip:"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "geçersiz"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/parser/RepoindexFileReader.cc:197
 #, c-format, boost-format
-msgid "keep %s"
-msgstr ""
+msgid "Required attribute '%s' is missing."
+msgstr "Gerekli '%s' niteliği bulunamadı."
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/parser/RepoindexFileReader.cc:209
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr ""
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "'%s' ya da '%s' niteliklerinden biri yada ikisi birden gerekli."
 
-#: zypp/solver/detail/SATResolver.cc:1293
-#, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%1 paketini sil"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Kilitlenmiş dosya açılamıyor: %s"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr ""
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Bu işlem zaten başka bir program tarafından çalıştırıldı."
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr ""
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Tarih:"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/base/StrMatcher.cc:152
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/base/StrMatcher.cc:153
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr ""
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Geçersiz düzenli ifade '%s': regcomp %d döndürdü"
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid "Invalid regular expression '%s'"
+msgstr "Geçersiz düzenli ifade '%s'"
+
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr ""
+msgid "Authentication required for '%s'"
+msgstr "'%s' için kimlik doğrulama gerekmektedir"
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:31
+#, fuzzy, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "%s açılamadı - %s\n"
+
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr ""
+msgid "Bad file name: %s"
+msgstr "Hatalı dosya adı: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr ""
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "'%s' işlemi gerçekleştirilmeye çalışılırken ortam açılamadı."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr ""
+msgid "File '%s' not found on medium '%s'"
+msgstr "'%s' dosyası '%s' ortamında bulunamadı"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
+msgid "Cannot write file '%s'."
+msgstr "'%s' dosyası yazılamadı."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Ortam ekli değil"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Hatalı medya bağlantı noktası"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr ""
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "'%s' için indirme (curl) başlatılamadı"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
-msgstr ""
+msgid "System exception '%s' on medium '%s'."
+msgstr "'%s' ortamındaki '%s' te sistem isnası meydana geldi."
 
-#: zypp/solver/detail/SATResolver.cc:1036
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "'%s' ortamındaki '%s' yolu bir dosya değil."
+
+#: zypp/media/MediaException.cc:106
 #, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%1, %2 ile çakışıyor"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Hata: %s temel dizini bir dizin değil, atlanıyor.\n"
 
-# clients/inst_sw_single.ycp:742
-#: zypp/solver/detail/SATResolver.cc:989
-#, fuzzy
-msgid "some dependency problem"
-msgstr "Yetersiz bağımlılıklar:"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "Yüklenemez sağlayıcılar:"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "URI de boş alan adı"
 
-# include/cups/ui.ycp:2577 include/cups/ui.ycp:2598
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "bilinmeyen"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "URI de boş dosya sistemi"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "desteklenmeyen"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "URI de içeriksiz hedef"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
+#: zypp/media/MediaException.cc:145
 #, fuzzy
-#~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
-#~ msgstr ""
-#~ "\n"
-#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
+msgid "Operation not supported by medium"
+msgstr "Profil sürümü Apparmor modülü tarafından desteklenmiyor\n"
+
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"'%s' için indirme(curl) hatası:\n"
+"Hata kodu: %s\n"
+"Hata raporu: %s\n"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"'%s' için indirme (curl) ayarları düzenlenirken  bir hata meydana geldi:"
+
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "'%s' medya kaynağı gerekli ortamı içermiyor."
 
-#~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
-#~ msgstr ""
-#~ "\n"
-#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "'%s' medyası başka bir oluşum tarafından kullanımda"
 
-# include/ui/common_messages.ycp:95
-#, fuzzy
-#~ msgid " Error!"
-#~ msgstr "Hata"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Hiçbir sürücü çıkartılamıyor"
 
-#, fuzzy
-#~ msgid " Important!"
-#~ msgstr "Dışarıdan veri al"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
+msgstr "'%s' medyası çıkartılamadı"
 
-#~ msgid " fails checksum verification."
-#~ msgstr "فشل التحقق من المجموع الاختباري."
+#: zypp/media/MediaException.cc:199
+#, fuzzy, c-format, boost-format
+msgid "Permission to access '%s' denied."
+msgstr "İzin verilmedi\n"
 
-#~ msgid " miss checksum."
-#~ msgstr "فقد المجموع الاختباري."
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr ""
 
-# clients/inst_sw_single.ycp:742
-#, fuzzy
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "Yetersiz bağımlılıklar:"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "'%s' konumuna şuan ulaşılamaz. "
 
-#, fuzzy
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "%1, %2 ile çakışıyor"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+"SSL sertifikası problemi, CA sertifikasının '%s' için geçerli olduğunu "
+"doğrulayın."
 
-#, fuzzy
-#~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
-#~ msgstr "%1, %2 ile çakışıyor"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr " '%s' deki image dosyasını bağlayacak döngü aracı bulunamadı"
 
-#~ msgid "%s depended on %s"
-#~ msgstr "%s اعتمد على %s"
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
 
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s اعتمد على %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Kaydınızın geçerli olduğundan ve süresinin dolmadığından emin olmak için en "
+"yakın Novell Müşteri Merkezini ziyaret edin."
 
-#~ msgid "%s depends on %s"
-#~ msgstr "%s يعتمد على %s"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Sat-pool oluşturulamadı."
 
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s يعتمد على:%s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
-#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
 
-# clients/inst_sw_single.ycp:742
-#, fuzzy
-#~ msgid "%s has missing dependencies"
-#~ msgstr "Yetersiz bağımlılıklar:"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "لم يتم استيفاء متطلبات %s"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-# clients/online_update_start.ycp:171
-#, fuzzy
-#~ msgid "%s install failed"
-#~ msgstr "Kurulum işlemi başarısız oldu."
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#, fuzzy
-#~ msgid "%s installed ok"
-#~ msgstr "&Evet, kur"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
 #, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
+#~ msgid "generally ignore of some dependecies"
+#~ msgstr "şu çözülmemiş gereksinimlere sahip:"
 
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
 #, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
+#~ msgid "do not forbid installation of %s"
+#~ msgstr "Kurulan disk:"
 
-#, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "Paket gereksinimlerini listele"
+# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
+#~ msgid "do not keep %s installed"
+#~ msgstr "%s i kurulu halde bırakmayın"
 
-#, fuzzy
-#~ msgid "%s is locked and cannot be uninstalled."
-#~ msgstr "Bu paket kurulu değildir ve kurulmayacaktır."
+#~ msgid "Tried to import not existant key %s into keyring %s"
+#~ msgstr "حاول استيراد مفتاح غير موجود %s إلى حلقة مفاتيح %s"
 
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
+#~ msgid "Valid metadata not found at specified URL(s)"
+#~ msgstr "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
+
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "خيار list غير معروف"
 
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s مطلوب بواسطة\n"
-#~ "%s"
-
-#, fuzzy
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "Bu paket kurulu değildir ve kurulmayacaktır."
+#~ "لا يحتوي الملف %s على مجموع اختباري.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
 
-#, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
+#~ msgid ""
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "فشل التحقق من سلامة الملف %s باستخدام المفتاح التالي:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
 
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s تم استبداله بـ %s"
+#~ msgid ""
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "يحتوي الملف %s على مجموع اختباري غير صالح.\n"
+#~ "متوقع %s، تم العثور على %s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
 
-#, fuzzy
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
+#~ "يحتوي الملف %s على مجموع اختباري غير معروف %s.\n"
+#~ "هل تريد استخدام الملف على أي حال؟"
 
-#, fuzzy
 #~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
 #~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
+#~ "لم يتم توقيع الملف %s.\n"
+#~ "هل تريد استخدامه على أي حال؟"
 
 #~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
-#~ "الارتباط."
+#~ "تم توقيع الملف %s باستخدام مفتاح غير معروف:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد استخدام الملف على أي حال؟"
 
-#, fuzzy
 #~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
 #~ msgstr ""
-#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
-
-#, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
-
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s مطلوب بواسطة %s"
-
-#, fuzzy
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%1, %2 ile çakışıyor"
-
-#, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
-
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
-
-#~ msgid "%s obsoletes:%s"
-#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
-
-#~ msgid "%s part of %s"
-#~ msgstr "%s جزء من %s"
-
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
-
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
+#~ "تم العثور على مفتاح غير موثوق:\n"
+#~ "%s|%s|%s\n"
+#~ " هل تريد الوثوق بالمفتاح؟"
 
 #, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
-
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
-
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s يوفر %s، لكنه مقفل."
+#~ msgid "Invalid user name or password."
+#~ msgstr "كلمة السر CA غير صالحة."
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s يوفر %s، لكنه قابل لإلغاء التثبيت.  حاول تثبيته للحصول على مزيد من "
-#~ "التفاصيل."
+#~ msgid "%s remove ok"
+#~ msgstr "تمت إزالة %s بنجاح"
 
 #, fuzzy
 #~ msgid ""
@@ -5714,11 +5604,31 @@ msgstr ""
 #~ msgstr "يوفر %s هذه التبعية، لكنه سيؤدي إلى تغيير هيكل العنصر المثبَّت"
 
 #, fuzzy
-#~ msgid "%s remove failed"
-#~ msgstr "rpm başarısız oldu."
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "قم بتثبيت %s بالرغم من أنه قد يؤدي إلى تغيير الهيكل"
 
-#~ msgid "%s remove ok"
-#~ msgstr "تمت إزالة %s بنجاح"
+#~ msgid "delete %s"
+#~ msgstr "حذف %s"
+
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "تعذر فتح الملف %1."
+
+#, fuzzy
+#~ msgid "Error reading solv-file: "
+#~ msgstr "تعذرت قراءة القطاع %u."
+
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
+
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
+
+#~ msgid "Software management is already running."
+#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
+
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
 #~ msgid "%s replaced by %s"
 #~ msgstr "%s تم استبداله بـ %s"
@@ -5733,246 +5643,296 @@ msgstr ""
 #~ msgid "%s will be installed by the user.\n"
 #~ msgstr "لن يتم إلغاء تثبيت %s لأنه لا يزال مطلوبًا"
 
-# clients/inst_sw_single.ycp:742
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "Yetersiz bağımlılıklar:"
-
-#, fuzzy
-#~ msgid ", Action: "
-#~ msgstr "Hareket"
+#~ msgid "Invalid information"
+#~ msgstr "المعلومات غير صالحة"
 
-#~ msgid ", Trigger: "
-#~ msgstr "، تشغيل:"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s مطلوب بواسطة التبعيات القابلة للتحليل الأخرى"
 
-#, fuzzy
 #~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
-#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s مطلوب بواسطة\n"
+#~ "%s"
+
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s يجعل التبعيات القابلة للتحليل الأخرى قديمة"
+
+#~ msgid "%s obsoletes:%s"
+#~ msgstr "%s يجعل العنصر التالي قديمًا:%s"
 
 #~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
-#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "سيتم حذف هذه التبعيات القابلة للتحليل من النظام."
 
-#~ msgid "Can't chdir to '/' inside chroot (%s)."
-#~ msgstr "Chroot'un içinde '/'  chdir yapılamıyor(%s) ."
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s يعتمد على التبعيات القابلة للتحليل الأخرى"
+
+#~ msgid "%s depends on %s"
+#~ msgstr "%s يعتمد على %s"
+
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s يعتمد على:%s"
+
+#~ msgid "Child of"
+#~ msgstr "عنصر فرعي لـ"
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
-#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr ""
+#~ "\n"
+#~ "لا يتوفر أي مورد يدعم هذا المتطلب."
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
-#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
+#~ msgstr ""
+#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
 
-#, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "لم يتم استيفاء متطلبات %s"
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "تعذر فتح الملف %1."
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم إلغاء تثبيته"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr "يستوفي %s تبعيات %s، لكن سيتم الاحتفاظ به في النظام لديك"
 
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
 #~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#~ msgid "Cannot create a file needed to perform update installation."
-#~ msgstr "تعذر إنشاء الملف المطلوب لتنفيذ عملية تثبيت التحديث."
-
-#~ msgid "Cannot create public key %s from %s keyring to file %s"
-#~ msgstr "%s anahtarlığındaki %s genel anahtarı %s dosyasında oluşturulamadı"
-
 #~ msgid "Cannot install %s to fulfil the dependencies of %s"
 #~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
 #, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s يجعل %s قديمًا. لكن يتعذر حذف %s لأنه مقفل."
 
 #, fuzzy
 #~ msgid "Cannot install %s, because it is conflicting"
 #~ msgstr "تعذر تثبيت %s لأنه متعارض"
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "%1, %2 ile çakışıyor"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "لطلب %s لـ %s عند تحديث %s"
 
-#~ msgid "Child of"
-#~ msgstr "عÙ\86صر Ù\81رعÙ\8a Ù\84Ù\80"
+#~ msgid ", Trigger: "
+#~ msgstr "Ø\8c ØªØ´ØºÙ\8aÙ\84:"
 
-#~ msgid "Default"
-#~ msgstr "Öntanımlı"
+#~ msgid "package"
+#~ msgstr "الحزمة"
+
+#~ msgid "selection"
+#~ msgstr "التحديد"
+
+#~ msgid "pattern"
+#~ msgstr "النمط"
+
+#~ msgid "product"
+#~ msgstr "المنتج"
+
+#~ msgid "script"
+#~ msgstr "البرنامج النصي"
+
+#~ msgid "message"
+#~ msgstr "الرسالة"
+
+#~ msgid "atom"
+#~ msgstr "الذرة"
+
+#~ msgid "system"
+#~ msgstr "النظام"
+
+#~ msgid "Resolvable"
+#~ msgstr "التبعية القابلة للتحليل"
+
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
+
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "%1, %2 ile çakışıyor"
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "تمت جدولة %s لتثبيته، لكن لا يمكن القيام بذلك بسبب وجود مشكلات في التبعية."
+
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "تعذر تثبيت %s لأنه تم تعليمه بالفعل على أنه مطلوب إلغاء تثبيته"
 
 #, fuzzy
-#~ msgid "Double timeout"
-#~ msgstr "موعد الاستحقاق: %1"
-
-#~ msgid "Download (Metalink curl) initialization failed for '%s'"
-#~ msgstr "'%s' için indirme (Metalink curl) başlatılamadı."
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr "تعذر تثبيت %s لأنه لا ينطبق على هذا النظام."
 
+#, fuzzy
 #~ msgid ""
-#~ "Download (metalink curl) error for '%s':\n"
-#~ "Error code: %s\n"
-#~ "Error message: %s\n"
-#~ msgstr ""
-#~ "'%s' için indirme(metalink curl) hatası:\n"
-#~ "Hata kodu: %s\n"
-#~ "Hata raporu: %s\n"
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "تعذر تثبيت %s، لأن %s تم تعليمه بالفعل على أنه مطلوب تثبيته"
 
-#~ msgid "Download interrupted at %d%%"
-#~ msgstr "%d%% 'de indirme kesildi"
+#~ msgid "This would invalidate %s."
+#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
 
-#~ msgid "Download interrupted by user"
-#~ msgstr "İndirme kullanıcı tarafından iptal edildi"
+#~ msgid "Updating %s to %s"
+#~ msgstr "تحديث %s إلى %s"
 
 #, fuzzy
-#~ msgid "Downloading %s"
-#~ msgstr "%1 yüklemesinde bir hata oluştu"
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
+
+#~ msgid "for %s"
+#~ msgstr "لـ %s"
 
 #, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "نتيجة للمشكلات الموضحة أعلاه/أدناه، لن يقوم هذا التحديد بحل كافة التبعيات"
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
+
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته لإلغاء تثبيته."
+
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s يوفر %s، لكن تم تثبيت إصدار آخر لـ %s هذا بالفعل."
 
 #~ msgid ""
-#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "'%s' için indirme (metalink curl) ayarları düzenlenirken  bir hata "
-#~ "meydana geldi:"
+#~ "%s يوفر %s، لكنه قابل لإلغاء التثبيت.  حاول تثبيته للحصول على مزيد من "
+#~ "التفاصيل."
 
-#, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "تعذرت قراءة القطاع %u."
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s يوفر %s، لكنه مقفل."
+
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s يوفر %s، لكن تمت جدولته للاحتفاظ به."
 
-# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
 #, fuzzy
-#~ msgid "Establishing %s"
-#~ msgstr "Kurulan disk:"
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s يوفر %s، لكن له هيكل آخر."
 
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "%s den %s indirilirken hata meydana geldi"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "تعذر استيفاء متطلب %s لـ %s"
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
 #~ msgstr ""
-#~ "لا يحتوي الملف %s على مجموع اختباري.\n"
-#~ "هل تريد استخدام الملف على أي حال؟"
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
 #~ msgstr ""
-#~ "فشل التحقق من سلامة الملف %s باستخدام المفتاح التالي:\n"
-#~ "%s|%s|%s\n"
-#~ " هل تريد استخدام الملف على أي حال؟"
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل مثبَّتة أخرى، لذا لن يتم إلغاء الارتباط."
 
+#, fuzzy
 #~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "يحتوي الملف %s على مجموع اختباري غير صالح.\n"
-#~ "متوقع %s، تم العثور على %s\n"
-#~ " هل تريد استخدام الملف على أي حال؟"
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "يتطلب تعارض %s (%s) إزالة %s المطلوب تثبيته"
 
-#~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "يحتوي الملف %s على مجموع اختباري غير معروف %s.\n"
-#~ "هل تريد استخدام الملف على أي حال؟"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
 
-#~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
-#~ msgstr ""
-#~ "لم يتم توقيع الملف %s.\n"
-#~ "هل تريد استخدامه على أي حال؟"
+#~ msgid "from %s"
+#~ msgstr "من %s"
 
-#~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "تم توقيع الملف %s باستخدام مفتاح غير معروف:\n"
-#~ "%s|%s|%s\n"
-#~ " هل تريد استخدام الملف على أي حال؟"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s اعتمد على %s"
 
 #, fuzzy
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "%1 dizini zaten listede."
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
 #, fuzzy
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "%1, %2 ile çakışıyor"
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
 #, fuzzy
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "%1, %2 ile çakışıyor"
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s تم استبداله بـ %s"
 
 #, fuzzy
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "şu çözülmemiş gereksinimlere sahip:"
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-#, fuzzy
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "şu çözülmemiş gereksinimlere sahip:"
+#~ msgid "%s part of %s"
+#~ msgstr "%s جزء من %s"
 
 #, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "Ù\82Ù\85 Ø¨ØªØ«Ø¨Ù\8aت %s Ø¨Ø§Ù\84رغÙ\85 Ù\85Ù\86 Ø£Ù\86Ù\87 Ù\82د Ù\8aؤدÙ\8a Ø¥Ù\84Ù\89 ØªØºÙ\8aÙ\8aر Ø§Ù\84Ù\87Ù\8aÙ\83Ù\84"
+#~ msgid "Double timeout"
+#~ msgstr "Ù\85Ù\88عد Ø§Ù\84استحÙ\82اÙ\82: %1"
 
 #, fuzzy
-#~ msgid "Install missing resolvables"
-#~ msgstr "Eksik paketleri kur"
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s مطلوب بواسطة %s"
 
-# include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
-#, fuzzy
-#~ msgid "Installing %s"
-#~ msgstr "Kurulan disk:"
+#~ msgid ""
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
+#~ msgstr ""
+#~ "%s مطلوب بواسطة تبعية قابلة للتحليل أخرى مطلوب تثبيتها، لذا لن يتم إلغاء "
+#~ "الارتباط."
 
-#~ msgid "Invalid information"
-#~ msgstr "اÙ\84Ù\85عÙ\84Ù\88Ù\85ات ØºÙ\8aر ØµØ§Ù\84حة"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "تعذر Ø¥Ù\86شاء Ø§Ù\84Ù\85Ù\84Ù\81 Ø§Ù\84Ù\85Ø·Ù\84Ù\88ب Ù\84تÙ\86Ù\81Ù\8aØ° Ø¹Ù\85Ù\84Ù\8aØ© ØªØ«Ø¨Ù\8aت Ø§Ù\84تحدÙ\8aØ«."
 
-#, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "كلمة السر CA غير صالحة."
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr "تم تسجيل مصدر واحد على الأقل، تعذرت استعادة المصادر المخزَّنة."
 
-#, fuzzy
-#~ msgid "Keep resolvables"
-#~ msgstr "Eksik paketleri kur"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "تعذر تثبيت %s لاستيفاء تبعيات %s"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "تعليم %s باعتباره قابل لإلغاء التثبيت بسبب وجود تعارضات على %s"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s اعتمد على %s"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "تعليم التبعية القابلة للتحليل %s باعتبارها قابلة لإلغاء التثبيت"
+#~ msgid "Reading index files"
+#~ msgstr "قراءة ملفات الفهرس"
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "تعليم محاولة التحديد هذه كغير صالحة."
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
 
-# clients/online_update_load.ycp:923
-#, fuzzy
-#~ msgid "No need to install %s"
-#~ msgstr "yeniden kurulmalı"
+#~ msgid "Reading product from %s"
+#~ msgstr "قراءة المنتج من %s"
 
-#~ msgid "Ok"
-#~ msgstr "Tamam"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "قراءة قائمة الملفات من %s"
+
+#~ msgid "Reading packages from %s"
+#~ msgstr "قراءة الحزم من %s"
+
+#~ msgid "Reading selection from %s"
+#~ msgstr "قراءة التحديد من %s"
+
+#~ msgid "Reading pattern from %s"
+#~ msgstr "قراءة النمط من %s"
+
+#~ msgid "Reading patches index %s"
+#~ msgstr "قراءة فهرس التصحيحات %s"
+
+#~ msgid "Reading patch %s"
+#~ msgstr "قراءة التصحيح %s"
+
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
+
+#~ msgid "Reading translation: %s"
+#~ msgstr "قراءة الترجمة: %s"
 
 #, fuzzy
 #~ msgid ""
@@ -5982,192 +5942,241 @@ msgstr ""
 #~ "فشل التحقق من سلامة الحزمة %s. هل تريد إعادة محاولة إنزالها، أو إيقاف "
 #~ "التثبيت؟"
 
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
+#~ msgid " miss checksum."
+#~ msgstr "فقد المجموع الاختباري."
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "تحليل معلمة المسار غير مدعوم لعنوان URL هذا"
+#~ msgid " fails checksum verification."
+#~ msgstr "فشل التحقق من المجموع الاختباري."
+
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr "%s anahtarlığındaki %s genel anahtarı %s dosyasında oluşturulamadı"
+
+#~ msgid "Can't chdir to '/' inside chroot (%s)."
+#~ msgstr "Chroot'un içinde '/'  chdir yapılamıyor(%s) ."
+
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "'%s' için indirme (Metalink curl) başlatılamadı."
+
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "'%s' için indirme(metalink curl) hatası:\n"
+#~ "Hata kodu: %s\n"
+#~ "Hata raporu: %s\n"
+
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "%d%% 'de indirme kesildi"
+
+#~ msgid "Download interrupted by user"
+#~ msgstr "İndirme kullanıcı tarafından iptal edildi"
+
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr ""
+#~ "'%s' için indirme (metalink curl) ayarları düzenlenirken  bir hata "
+#~ "meydana geldi:"
 
-#~ msgid "Reading filelist from %s"
-#~ msgstr "قراءة قائمة الملفات من %s"
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "%s den %s indirilirken hata meydana geldi"
 
-#~ msgid "Reading index files"
-#~ msgstr "قراءة ملفات الفهرس"
+#, fuzzy
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Seri kablo bağlantısı"
 
-#
-# clients/inst_sw_select.ycp:195
+# clients/inst_sw_single.ycp:742
 #, fuzzy
-#~ msgid "Reading packages file"
-#~ msgstr "{0} dosyasını barındıran paket yok"
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "Yetersiz bağımlılıklar:"
 
-#~ msgid "Reading packages from %s"
-#~ msgstr "قراءة الحزم من %s"
+#, fuzzy
+#~ msgid "%s remove failed"
+#~ msgstr "rpm başarısız oldu."
 
-#~ msgid "Reading patch %s"
-#~ msgstr "قراءة التصحيح %s"
+#, fuzzy
+#~ msgid "rpm output:"
+#~ msgstr "Program çıktısı:\n"
 
-#~ msgid "Reading patches index %s"
-#~ msgstr "قراءة فهرس التصحيحات %s"
+# clients/online_update_start.ycp:171
+#, fuzzy
+#~ msgid "%s install failed"
+#~ msgstr "Kurulum işlemi başarısız oldu."
 
-#~ msgid "Reading pattern from %s"
-#~ msgstr "قراءة النمط من %s"
+#, fuzzy
+#~ msgid "%s installed ok"
+#~ msgstr "&Evet, kur"
 
-#~ msgid "Reading product from %s"
-#~ msgstr "قراءة المنتج من %s"
+#, fuzzy
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "%1, %2 ile çakışıyor"
 
-#~ msgid "Reading selection from %s"
-#~ msgstr "قراءة التحديد من %s"
+#, fuzzy
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "%1 dizini zaten listede."
 
-#~ msgid "Reading translation: %s"
-#~ msgstr "قراءة الترجمة: %s"
+#, fuzzy
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "%1, %2 ile çakışıyor"
 
-#~ msgid "Resolvable"
-#~ msgstr "التبعية القابلة للتحليل"
+#, fuzzy
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "%1, %2 ile çakışıyor"
 
 #, fuzzy
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Seri kablo bağlantısı"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "şu çözülmemiş gereksinimlere sahip:"
 
-# include/scanner/scanner_start.ycp:138
 #, fuzzy
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "Önceden kurulu tarayıcılar kontrol ediliyor"
+#~ msgid "Install missing resolvables"
+#~ msgstr "Eksik paketleri kur"
 
-#~ msgid "Software management is already running."
-#~ msgstr "إدارة البرامج قيد التشغيل بالفعل."
+#, fuzzy
+#~ msgid "Keep resolvables"
+#~ msgstr "Eksik paketleri kur"
 
 #, fuzzy
-#~ msgid "The package archive has incorrect MD5 sum"
-#~ msgstr "Geri yüklenecek paketler"
+#~ msgid "Unlock these resolvables"
+#~ msgstr "%1, %2 ile çakışıyor"
 
 #, fuzzy
-#~ msgid "The package file has incorrect MD5 sum"
-#~ msgstr "Geri yüklenecek paketler"
+#~ msgid "install %s"
+#~ msgstr "%1 paketini kur"
 
+# include/security/ui.ycp:774
 #, fuzzy
-#~ msgid "The package has incorrect signature"
-#~ msgstr "Geri yüklenecek paketler"
+#~ msgid "unlock %s"
+#~ msgstr "Saatler"
 
 #, fuzzy
-#~ msgid "The package is not signed"
-#~ msgstr "Geri yüklenecek paketler"
+#~ msgid "unlock all resolvables"
+#~ msgstr "%1, %2 ile çakışıyor"
 
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "فشل ملف البرنامج النصي في اختبار المجموع الاختباري."
+#, fuzzy
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "%1, %2 ile çakışıyor"
 
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr "فشل ملف repomd.xml الموقَّع في التحقق من التوقيع."
+#, fuzzy
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr "%1, %2 ile çakışıyor"
 
 #, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "لا يوجد أي موفرين مثبَّتين بدائل لـ %s"
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "%1, %2 ile çakışıyor"
 
-#~ msgid "This would invalidate %s."
-#~ msgstr "سيؤدي هذا إلى إلغاء صلاحية %s."
+#, fuzzy
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "Bu paket kurulu değildir ve kurulmayacaktır."
 
-#~ msgid "Tried to import not existant key %s into keyring %s"
-#~ msgstr "حاول استيراد مفتاح غير موجود %s إلى حلقة مفاتيح %s"
+# clients/inst_sw_single.ycp:742
+#, fuzzy
+#~ msgid "%s has missing dependencies"
+#~ msgstr "Yetersiz bağımlılıklar:"
 
+# clients/inst_sw_single.ycp:742
 #, fuzzy
-#~ msgid "Unable to parse Url authority"
-#~ msgstr "çalışma alanı oluşturulamadı\n"
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "Yetersiz bağımlılıklar:"
 
+# clients/online_update_load.ycp:923
 #, fuzzy
-#~ msgid "Unable to restore all sources."
-#~ msgstr "çalışma alanı oluşturulamadı\n"
+#~ msgid "No need to install %s"
+#~ msgstr "yeniden kurulmalı"
 
+# clients/inst_sw_single.ycp:742
 #, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "خيار list غير معروف"
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "Yetersiz bağımlılıklar:"
 
 #, fuzzy
-#~ msgid "Unlock these resolvables"
+#~ msgid "%s is uninstallable due to conflicts with %s"
 #~ msgstr "%1, %2 ile çakışıyor"
 
-#~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
-#~ msgstr ""
-#~ "تم العثور على مفتاح غير موثوق:\n"
-#~ "%s|%s|%s\n"
-#~ " هل تريد الوثوق بالمفتاح؟"
-
-#~ msgid "Updating %s to %s"
-#~ msgstr "تحديث %s إلى %s"
-
 #, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "لا يمكن التحديث إلى %s لتجنب إزالة %s."
-
-#~ msgid "Valid metadata not found at specified URL(s)"
-#~ msgstr "بيانات التعريف غير صحيحة لم يتم العثور عليها في المسار(s)"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "Paket gereksinimlerini listele"
 
-#~ msgid "atom"
-#~ msgstr "الذرة"
+#, fuzzy
+#~ msgid ", Action: "
+#~ msgstr "Hareket"
 
-#~ msgid "delete %s"
-#~ msgstr "حذف %s"
+# clients/online_update_details.ycp:88 clients/online_update_select.ycp:112
+#~ msgid "patch"
+#~ msgstr "yama"
 
 # include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
 #, fuzzy
-#~ msgid "do not forbid installation of %s"
+#~ msgid "Establishing %s"
 #~ msgstr "Kurulan disk:"
 
 # include/partitioning/auto_part_ui.ycp:200 include/partitioning/auto_part_ui.ycp:249
-#~ msgid "do not keep %s installed"
-#~ msgstr "%s i kurulu halde bırakmayın"
+#, fuzzy
+#~ msgid "Installing %s"
+#~ msgstr "Kurulan disk:"
 
-#~ msgid "for %s"
-#~ msgstr "لـ %s"
+# include/scanner/scanner_start.ycp:138
+#, fuzzy
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "Önceden kurulu tarayıcılar kontrol ediliyor"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "لطلب %s لـ %s عند تحديث %s"
+#, fuzzy
+#~ msgid "%s is locked and cannot be uninstalled."
+#~ msgstr "Bu paket kurulu değildir ve kurulmayacaktır."
 
-#~ msgid "from %s"
-#~ msgstr "من %s"
+# include/ui/common_messages.ycp:95
+#, fuzzy
+#~ msgid " Error!"
+#~ msgstr "Hata"
 
 #, fuzzy
-#~ msgid "generally ignore of some dependecies"
-#~ msgstr "şu çözülmemiş gereksinimlere sahip:"
+#~ msgid " Important!"
+#~ msgstr "Dışarıdan veri al"
 
-# clients/inst_sw_single.ycp:742
 #, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "Yetersiz bağımlılıklar:"
+#~ msgid "Unable to parse Url authority"
+#~ msgstr "çalışma alanı oluşturulamadı\n"
 
 #, fuzzy
-#~ msgid "install %s"
-#~ msgstr "%1 paketini kur"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "şu çözülmemiş gereksinimlere sahip:"
 
-#~ msgid "message"
-#~ msgstr "الرسالة"
+#, fuzzy
+#~ msgid "Unable to restore all sources."
+#~ msgstr "çalışma alanı oluşturulamadı\n"
 
-#~ msgid "package"
-#~ msgstr "الحزمة"
+#
+# clients/inst_sw_select.ycp:195
+#, fuzzy
+#~ msgid "Reading packages file"
+#~ msgstr "{0} dosyasını barındıran paket yok"
 
-# clients/online_update_details.ycp:88 clients/online_update_select.ycp:112
-#~ msgid "patch"
-#~ msgstr "yama"
+#, fuzzy
+#~ msgid "Downloading %s"
+#~ msgstr "%1 yüklemesinde bir hata oluştu"
 
-#~ msgid "pattern"
-#~ msgstr "النمط"
+#~ msgid "Ok"
+#~ msgstr "Tamam"
 
-#~ msgid "product"
-#~ msgstr "المنتج"
+#, fuzzy
+#~ msgid "The package file has incorrect MD5 sum"
+#~ msgstr "Geri yüklenecek paketler"
 
 #, fuzzy
-#~ msgid "rpm output:"
-#~ msgstr "Program çıktısı:\n"
+#~ msgid "The package is not signed"
+#~ msgstr "Geri yüklenecek paketler"
 
-#~ msgid "script"
-#~ msgstr "البرنامج النصي"
+#, fuzzy
+#~ msgid "The package has incorrect signature"
+#~ msgstr "Geri yüklenecek paketler"
 
-#~ msgid "selection"
-#~ msgstr "التحديد"
+#, fuzzy
+#~ msgid "The package archive has incorrect MD5 sum"
+#~ msgstr "Geri yüklenecek paketler"
 
-#~ msgid "system"
-#~ msgstr "النظام"
+#~ msgid "Default"
+#~ msgstr "Öntanımlı"
 
 # include/scanner/scanner_manual.ycp:82
 #, fuzzy
@@ -6178,12 +6187,3 @@ msgstr ""
 #, fuzzy
 #~ msgid "to be uninstalled"
 #~ msgstr "yeniden kurulmalı"
-
-# include/security/ui.ycp:774
-#, fuzzy
-#~ msgid "unlock %s"
-#~ msgstr "Saatler"
-
-#, fuzzy
-#~ msgid "unlock all resolvables"
-#~ msgstr "%1, %2 ile çakışıyor"
index 5650067..d559bd1 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -25,21 +25,93 @@ msgstr ""
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 "X-Generator: Lokalize 2.0\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"залежності без можливості встановлення: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Виняток Hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Не чинний рядок запиту URL LDAP"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr ""
-" Проблема з сертифікатом SSL, перевірте чи все гаразд з сертифікатом CA для "
-"\"%s\"."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Не чинний параметр запиту \"%s\" URL LDAP"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Не вдається клонувати об'єкт URL"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Не чинне порожнє посилання до об'єкта URL"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Неможливо розібрати компоненти URL"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Неможливо започаткувати атрибути mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Неможливо встановити рекурсивний атрибут mutex"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Неможливо започаткувати рекурсивний mutex"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Неможливо отримати блокування mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Неможливо відпустити блокування mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Надає"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "Вимоги"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Вимагає"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Конфліктує"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "Робить застарілим"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Рекомендує"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Пропонує"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Покращує"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Доповнює"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Сумнівний тип \"%s\" для %u байтової контрольної суми \"%s\""
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -49,10 +121,6 @@ msgstr " виконано"
 msgid " execution failed"
 msgstr " виконання зазнало невдачі"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " виконання пропущено під час переривання"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -61,1619 +129,2549 @@ msgstr " виконання пропущено під час перериван
 msgid "%s already executed as %s)"
 msgstr "%s вже виконаний як %s)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s конфліктує з %s, що надається %s"
-
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s не належить до сховища distupgrade (оновлення дистрибутиву)"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " виконання пропущено під час переривання"
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s має слабшу архітектуру"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Помилка відсилання сповіщення про оновлення."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s не можливо встановити"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Нове повідомлення про оновлення"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s надано системою і його неможливо прибрати."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Встановлення перервано відповідно до вказівки."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s робить застарілим %s, що надається %s"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "Вибачте, цю версію libzypp було складено без підтримки HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s потребує %s, але цю залежність неможливо вдовольнити"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext не приєднано"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(МИНУЛО)"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive не започатковано"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(не минає)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume не започатковано"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(закінчується через %d день)"
-msgstr[1] "(закінчується через %d дні)"
-msgstr[2] "(закінчується через %d днів)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Неможливо створити з'єднання з dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(минуло протягом 24 годин)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: неможливо створити контекст libhal"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Абхазька"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: неможливо встановити з'єднання з dbus"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Ахінська"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Неможливо започаткувати контекст HAL context -- не запущено hald?"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Аколі"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Не привід CD-ROM"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Адангме"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "Помилка RPM: "
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Ð\94одаваннÑ\8f Ñ\81Ñ\85овиÑ\89а \"%s\""
+msgid "Failed to import public key from file %s: %s"
+msgstr "Ð\9dе Ð²Ð´Ð°Ð»Ð¾Ñ\81Ñ\8f Ñ\96мпоÑ\80Ñ\82Ñ\83ваÑ\82и Ð²Ñ\96дкÑ\80иÑ\82ий ÐºÐ»Ñ\8eÑ\87 Ð· Ñ\84айла %s: %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "Потрібний додатковий контракт клієнта"
+# ###############################################################################
+# Old yast2-agents.po
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Не вдалося вилучити відкрити ключ %s: %s"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "Додатковий вивід rpm"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Змінено конфігураційні файли для %s:"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Адиґхе"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm збережено %s як %s, але було неможливо виявити різницю"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Афар"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm збережено %s як %s.\n"
+"Ось перші 25 рядків розбіжностей:\n"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Афганістан"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm створила %s як %s, але було неможливо виявити різницю"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "Афрігілі"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm створили %s як %s.\n"
+"Ось перші 25 рядків розбіжностей:\n"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "Африкаанська"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "Додатковий вивід rpm"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Афро-азіатські (інші)"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "створено резервну копію %s"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "Ð\90Ñ\96нÑ\83"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "Ð\86з Ð¿Ñ\96дпиÑ\81ом Ñ\83Ñ\81е Ð³Ð°Ñ\80азд"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "Ð\90кан"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "Ð\9dевÑ\96домий Ñ\82ип Ð¿Ñ\96дпиÑ\81Ñ\83"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "Ð\90кадÑ\96йÑ\81Ñ\8cка"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "Ð\9fÑ\96дпиÑ\81 Ð½Ðµ Ð¿ÐµÑ\80евÑ\96Ñ\80Ñ\8fÑ\94Ñ\82Ñ\8cÑ\81Ñ\8f"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Ð\90ландÑ\81Ñ\8cкÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "Ð\86з Ð¿Ñ\96дпиÑ\81ом Ñ\83Ñ\81е Ð³Ð°Ñ\80азд, Ð°Ð»Ðµ ÐºÐ»Ñ\8eÑ\87 - Ð½ÐµÐ½Ð°Ð´Ñ\96йний"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Ð\90лбанÑ\96Ñ\8f"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "Ð\9fÑ\83блÑ\96Ñ\87ний ÐºÐ»Ñ\8eÑ\87 Ð¿Ñ\96дпиÑ\81Ñ\96в - Ð½ÐµÐ´Ð¾Ñ\81Ñ\82Ñ\83пний"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "Ð\90лбанÑ\81Ñ\8cка"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "Файл Ð½Ðµ Ñ\96Ñ\81нÑ\83Ñ\94 Ñ\87и Ð¿Ñ\96дпиÑ\81 Ð½Ðµ Ð¼Ð¾Ð¶Ð½Ð° Ð¿ÐµÑ\80евÑ\96Ñ\80иÑ\82и"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "Алеутська"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Буде виконано такі дії:"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Ð\90лжиÑ\80"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "Ð\9dеможливо Ð¿Ñ\80оÑ\87иÑ\82аÑ\82и ÐºÐ°Ñ\82алог Ñ\81Ñ\85овиÑ\89а '%1%': Ð\94оÑ\81Ñ\82Ñ\83п Ð·Ð°Ð±Ð¾Ñ\80онений"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "Алгонкінські мови"
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Не вдалось прочитати каталог «%s»"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Ð\90лÑ\82айÑ\81Ñ\8cкÑ\96 (Ñ\96нÑ\88Ñ\96)"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "Ð\9dеможливо Ð¿Ñ\80оÑ\87иÑ\82аÑ\82и Ñ\84айл Ñ\81Ñ\85овиÑ\89а '%1%': Ð\94оÑ\81Ñ\82Ñ\83п Ð·Ð°Ð±Ð¾Ñ\80онений"
 
-# AS
-# fuzzy
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Африка, північ"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "Псевдонім сховища не може починатися з точки."
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "Амхарська"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "Псевдонім служби не може починатися з точки."
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "Для отримання підтримки потрібний додатковий контракт клієнта."
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Неможливо відкрити файл «%s» для запису."
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Андорра"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr "Невідома служба '%1%': видалення сховища служби '%2%'"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Ангола"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "У вказаній адресі URL не знайдено чинних метаданих"
+msgstr[1] "У вказаних адресах URL не знайдено чинних метаданих"
+msgstr[2] "У вказаних адресах URL не знайдено чинних метаданих"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Ð\90нгÑ\96лÑ\8cÑ\8f"
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Ð\9dеможливо Ñ\81Ñ\82воÑ\80иÑ\82и %s"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Антарктика"
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Неможливо створити каталог кешу метаданих."
 
-# AG
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Тринідад та Тобаго"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Створення кешу сховища \"%s\""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Ð\9cови Ð°Ð¿Ð°Ñ\87Ñ\96"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Ð\9dе Ð²Ð´Ð°Ð»Ð¾Ñ\81Ñ\8f Ñ\81Ñ\82воÑ\80иÑ\82и ÐºÐµÑ\88 %s - Ð½ÐµÐ¼Ð°Ñ\94 Ð¿Ñ\80ав Ð½Ð° Ð·Ð°Ð¿Ð¸Ñ\81."
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "Ð\90Ñ\80абÑ\81Ñ\8cкий"
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Ð\9dе Ð²Ð´Ð°Ð»Ð¾Ñ\81Ñ\8c Ñ\81кеÑ\88Ñ\83ваÑ\82и Ñ\81Ñ\85овиÑ\89е(%d)."
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Арагонська"
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Необроблений тип сховища"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "Арамейська"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Помилка спроби читання з «%s»"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Арапахо"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Невідома помилка читання з «%s»"
 
-# AM
-# fuzzy
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "Арауканська"
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Додавання сховища \"%s\""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Аравак"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Аргентина"
-
-# AM
-# fuzzy
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Аргентина"
-
-# AM
-# fuzzy
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Вірменська"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Не чинна назва файла сховища «%s»"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "ШÑ\82Ñ\83Ñ\87нÑ\96 (Ñ\96нÑ\88Ñ\96)"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Ð\92илÑ\83Ñ\87еннÑ\8f Ñ\81Ñ\85овиÑ\89а \"%s\""
 
-# CU
-# fuzzy
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Аруба"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Неможливо визначити, де знаходиться сховище."
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "Ассамська"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Неможливо вилучити «%s»"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "Астурійська"
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Неможливо визначити, де знаходиться служба."
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Ð\90Ñ\82апаÑ\81Ñ\8cкÑ\96 Ð¼Ð¾Ð²Ð¸"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "СÑ\85ема Url Ð½Ðµ Ð´Ð¾Ð·Ð²Ð¾Ð»Ñ\8fÑ\94 %s"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Ð\90вÑ\81Ñ\82Ñ\80алÑ\96Ñ\8f"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Ð\9dе Ñ\87инний %s ÐºÐ¾Ð¼Ð¿Ð¾Ð½ÐµÐ½Ñ\82 \"%s\""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Ð\90вÑ\81Ñ\82Ñ\80алÑ\96йÑ\81Ñ\8cкÑ\96 Ð¼Ð¾Ð²Ð¸"
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Ð\9dе Ñ\87инний ÐºÐ¾Ð¼Ð¿Ð¾Ð½ÐµÐ½Ñ\82 %s"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Австрія"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Розбір рядка запиту не підтримується для цього URL"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Австронезійські (інші)"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Схема URL - це потрібний компонент"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/url/UrlBase.cc:830
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "Ð\9fоÑ\82Ñ\80Ñ\96бна Ð°Ð²Ñ\82енÑ\82иÑ\84Ñ\96каÑ\86Ñ\96Ñ\8f Ð´Ð»Ñ\8f \"%s\""
+msgid "Invalid Url scheme '%s'"
+msgstr "Ð\9dе Ñ\87инна Ñ\81Ñ\85ема URL \"%s\""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "Аварська"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Схема URL не дозволяє імені користувача"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "Авестан"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Схема URL не дозволяє пароля"
 
-# SZ
-# fuzzy
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "Авадхі"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Схема URL потребує компонент вузла"
 
-# MM
-# fuzzy
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "Аймарська"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Схема URL не дозволяє компонент вузла"
 
-# AZ
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Азербайджан"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Не чинний компонент вузла \"%s\""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "Азербайджанська"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Схема URL не дозволяє порт"
 
-#: zypp/media/MediaException.cc:47
+#: zypp/url/UrlBase.cc:1081
 #, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Некоректна назва файла: %s"
+msgid "Invalid port component '%s'"
+msgstr "Не чинний компонент порту \"%s\""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Ð\9dекоÑ\80екÑ\82на Ñ\82оÑ\87ка Ð·â\80\99Ñ\94днаннÑ\8f Ð½Ð¾Ñ\81Ñ\96Ñ\8f"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "СÑ\85ема URL Ð¿Ð¾Ñ\82Ñ\80ебÑ\83Ñ\94 Ð½Ð°Ð·Ð²Ñ\83 Ñ\88лÑ\8fÑ\85Ñ\83"
 
-# BS
-# fuzzy
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Панама"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Відносний шлях не дозволяється при існуванні повноваження"
 
-# BH
-# fuzzy
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Бразилія"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Закодований рядок містить нульовий байт"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Балійська"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Не чинний символ розділення масиву параметрів"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Балтійські (інші)"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Не чинний символ розділення карти параметрів"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "Балучі"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Не чинний символ сполучення масиву параметрів"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "Ð\91амбаÑ\80а"
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Ð\9dе Ð²Ð´Ð°Ð»Ð¾Ñ\81Ñ\8f Ð²Ñ\96дкÑ\80иÑ\82и pty (%s)."
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Ð\91амÑ\96лекÑ\81Ñ\8cкÑ\96 Ð¼Ð¾Ð²Ð¸"
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Ð\9dеможливо Ð²Ñ\96дкÑ\80иÑ\82и ÐºÐ°Ð½Ð°Ð» (%s)."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Ð\91анда"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Ð\9dе Ð²Ð´Ð°Ð»Ð¾Ñ\81Ñ\8f Ñ\81Ñ\82воÑ\80иÑ\82и chroot Ð´Ð»Ñ\8f \"%s\" (%s)."
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Бангладеш"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+"Неможливо змінити каталог на '%s' всередині середовища chroot '%s' (%s)."
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Ð\91анÑ\82Ñ\83 (Ñ\96нÑ\88Ñ\96)"
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Ð\9dеможливо Ð·Ð¼Ñ\96ниÑ\82и ÐºÐ°Ñ\82алог Ð½Ð° '%s' (%s)."
 
-# BB
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Ð\91аÑ\80бадоÑ\81"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Ð\9dе Ð²Ð´Ð°Ð»Ð¾Ñ\81Ñ\8f Ð²Ð¸ÐºÐ¾Ð½Ð°Ñ\82и \"%s\" (%s)."
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "Ð\91аÑ\81а"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Ð\9dе Ð²Ð´Ð°Ð»Ð¾Ñ\81Ñ\8f Ð²Ñ\96дгалÑ\83зиÑ\82и (%s)."
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Ð\91аÑ\88киÑ\80Ñ\81Ñ\8cка"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Ð\9aоманда Ð·Ð°Ð²ÐµÑ\80Ñ\88ила Ñ\80обоÑ\82Ñ\83 Ð·Ñ\96 Ñ\81Ñ\82аном %d."
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Ð\91аÑ\81кÑ\81Ñ\8cка"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Ð\9aомандÑ\83 Ð±Ñ\83ло Ð·Ñ\83пинено Ð·Ð° Ñ\81игналом %d (%s)."
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Батак (Індонезія)"
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Команда завершила роботу з невідомою помилкою."
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "Бежа"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(не минає)"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Білорусь"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(МИНУЛО)"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "Білоруська"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(минуло протягом 24 годин)"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Бельгія"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(закінчується через %d день)"
+msgstr[1] "(закінчується через %d дні)"
+msgstr[2] "(закінчується через %d днів)"
 
-# BZ
-# fuzzy
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Бельгія"
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "невідомий"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "Бемба"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "не підтримується"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "Бенгальська"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Рівень 1"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Бенін"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Рівень 2"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "Берберські (інші)"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Рівень 3"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Бермуди"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "Потрібний додатковий контракт клієнта"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "Бходжпурі"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "нечинний"
 
-# BH
-# fuzzy
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Бутан"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Не вказано рівень підтримки"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "Біхарі"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Постачальник не надає підтримки."
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "Бікол"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Визначення проблеми, тобто технічна підтримка, при якій надається інформація "
+"про сумісність, допомога при встановленні, підтримка для використання, та "
+"вирішення простих проблем. Підтримка 1-го рівня не займається виправленням "
+"помилками дефектів продуктів."
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "Біні"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"Виокремлення проблеми, тобто технічна підтримка, при якій дублікуються "
+"проблеми клієнтів, виокремлюється проблемна ділянка і надається вирішення "
+"проблем, які не було виправлено 1-ми рівнем підтримки."
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "Біслама"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"Вирішення проблем, тобто технічна підтримка, призначена для вирішення "
+"складних проблем, до яких залучають інженерний персонал для вирішення "
+"дефектів в продуктах, що їх було знайдено підтримкою 2-го рівня."
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Блін"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "Для отримання підтримки потрібний додатковий контракт клієнта."
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Болівія"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Невідомий параметр підтримки. Немає опису."
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Боснія і Герцеговина"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Невідома країна: "
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "Боснійська"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Немає коду"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Ботсвана"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Андорра"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Острів Буве"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Об'єднані Арабські Емірати"
 
-# BR
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "Брай"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Афганістан"
 
-# BR
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Ð\91Ñ\80азилÑ\96Ñ\8f"
+# AG
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "ТÑ\80инÑ\96дад Ñ\82а Ð¢Ð¾Ð±Ð°Ð³Ð¾"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "Ð\91Ñ\80еÑ\82онÑ\81Ñ\8cка"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Ð\90нгÑ\96лÑ\8cÑ\8f"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Ð\91Ñ\80иÑ\82анÑ\81Ñ\8cка Ð¢ÐµÑ\80иÑ\82оÑ\80Ñ\96Ñ\8f Ð² Ð\86ндÑ\96йÑ\81Ñ\8cкомÑ\83 Ð¾ÐºÐµÐ°Ð½Ñ\96"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Ð\90лбанÑ\96Ñ\8f"
 
-# VI
+# AM
 # fuzzy
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Ð\92Ñ\96Ñ\80гÑ\96нÑ\81Ñ\8cкÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови (Ð\91Ñ\80иÑ\82анÑ\96Ñ\8f)"
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Ð\90Ñ\80генÑ\82ина"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Бруней Даруссалам"
+# AN
+# fuzzy
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Голландія"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "Ð\91Ñ\83гÑ\96йÑ\81Ñ\8cка"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Ð\90нгола"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "СÑ\82воÑ\80еннÑ\8f ÐºÐµÑ\88Ñ\83 Ñ\81Ñ\85овиÑ\89а \"%s\""
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Ð\90нÑ\82аÑ\80кÑ\82ика"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Ð\91олгаÑ\80Ñ\96Ñ\8f"
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Ð\90Ñ\80генÑ\82ина"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "Болгарська"
+# AS
+# fuzzy
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Африка, північ"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Бурятська"
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Австрія"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Австралія"
+
+# CU
+# fuzzy
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Аруба"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Аландські острови"
+
+# AZ
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Азербайджан"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Боснія і Герцеговина"
+
+# BB
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Барбадос"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Бангладеш"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Бельгія"
 
 #. :BEL:056:
 #: zypp/CountryCode.cc:179
 msgid "Burkina Faso"
 msgstr "Буркіна Фасо"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "Бірманська"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Болгарія"
+
+# BH
+# fuzzy
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Бразилія"
 
 #. :BHR:048:
 #: zypp/CountryCode.cc:182
 msgid "Burundi"
 msgstr "Бурунді"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "Каддо"
-
-# KH
-# fuzzy
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Колумбія"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Бенін"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Ð\9aамеÑ\80Ñ\83н"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Ð\91еÑ\80мÑ\83ди"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Неможливо створити sat-pool."
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Бруней Даруссалам"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Неможливо отримати блокування mutex"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Болівія"
 
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Неможливо змінити каталог на '%s' (%s)."
+# BR
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Бразилія"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-"Неможливо змінити каталог на '%s' всередині середовища chroot '%s' (%s)."
+# BS
+# fuzzy
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Панама"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Не вдалося створити chroot для \"%s\" (%s)."
+# BH
+# fuzzy
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Бутан"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Ð\9dеможливо Ñ\81Ñ\82воÑ\80иÑ\82и %s"
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Ð\9eÑ\81Ñ\82Ñ\80Ñ\96в Ð\91Ñ\83ве"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Ð\9dе Ð²Ð´Ð°Ð»Ð¾Ñ\81Ñ\8f Ñ\81Ñ\82воÑ\80иÑ\82и ÐºÐµÑ\88 %s - Ð½ÐµÐ¼Ð°Ñ\94 Ð¿Ñ\80ав Ð½Ð° Ð·Ð°Ð¿Ð¸Ñ\81."
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Ð\91оÑ\82Ñ\81вана"
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Неможливо створити каталог кешу метаданих."
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Білорусь"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Неможливо вилучити «%s»"
+# BZ
+# fuzzy
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Бельгія"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Не вдалося виконати \"%s\" (%s)."
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Канада"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Неможливо визначити, де знаходиться сховище."
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Кокосові острови"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Неможливо визначити, де знаходиться служба."
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Конго"
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Не вдалося відгалузити (%s)."
+# CF
+# fuzzy
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Центральноафриканська республіка"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Неможливо започаткувати атрибути mutex"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Неможливо започаткувати рекурсивний mutex"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Неможливо відкрити файл «%s» для запису."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Не вдалося відкрити файл замка: %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Неможливо відкрити канал (%s)."
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Не вдалося відкрити pty (%s)."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Неможливо надати файл \"%s\" зі сховища \"%s\""
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Неможливо відпустити блокування mutex"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Швейцарія"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Неможливо встановити рекурсивний атрибут mutex"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Кот д'Івуар"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Ð\9aанада"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Ð\9eÑ\81Ñ\82Ñ\80ови Ð\9aÑ\83ка"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Не вдається виштовхнути жодного носія"
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Чилі"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Ð\9dе Ð²Ð´Ð°Ñ\94Ñ\82Ñ\8cÑ\81Ñ\8f Ð²Ð¸Ñ\88Ñ\82овÑ\85нÑ\83Ñ\82и Ð½Ð¾Ñ\81Ñ\96Ñ\8f \"%s\""
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Ð\9aамеÑ\80Ñ\83н"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr "Неможливо знайти наявний пристрій для монтування штампа файла з «%s»"
+# CN
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Китай"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "Ð\9dеможливо Ð¿Ñ\80оÑ\87иÑ\82аÑ\82и ÐºÐ°Ñ\82алог Ñ\81Ñ\85овиÑ\89а '%1%': Ð\94оÑ\81Ñ\82Ñ\83п Ð·Ð°Ð±Ð¾Ñ\80онений"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Ð\9aолÑ\83мбÑ\96Ñ\8f"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "Ð\9dеможливо Ð¿Ñ\80оÑ\87иÑ\82аÑ\82и Ñ\84айл Ñ\81Ñ\85овиÑ\89а '%1%': Ð\94оÑ\81Ñ\82Ñ\83п Ð·Ð°Ð±Ð¾Ñ\80онений"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Ð\9aоÑ\81Ñ\82а-Рика"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Неможливо записати у файл \"%s\"."
+# CU
+# fuzzy
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Куба"
 
 #. :CUB:192:
 #: zypp/CountryCode.cc:208
 msgid "Cape Verde"
 msgstr "Капо Верде"
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
-msgstr "Ð\9aаÑ\80ибÑ\81Ñ\8cкÑ\96 Ð¼ови"
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "РÑ\96здвÑ\8fнÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови"
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
-msgstr "Каталанська"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Кіпр"
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
-msgstr "Ð\9aавказÑ\8cкÑ\96 (Ñ\96нÑ\88Ñ\96)"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "ЧеÑ\85Ñ\96Ñ\8f"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Ð\9aаймановÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Ð\9dÑ\96меÑ\87Ñ\87ина"
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
-msgstr "Ð\9aебÑ\83анÑ\81Ñ\8cка"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Ð\94жибÑ\83Ñ\82Ñ\96"
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Ð\9aелÑ\8cÑ\82Ñ\81Ñ\8cкÑ\96 (Ñ\96нÑ\88Ñ\96)"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Ð\94анÑ\96Ñ\8f"
 
-# CF
+# DM
 # fuzzy
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Центральноафриканська республіка"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Індіанські центрально-американські (інші)"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Румунія"
 
-# TD
-# fuzzy
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Китай"
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Домініканська республіка"
 
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "ЧагаÑ\82ай"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Ð\90лжиÑ\80"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "ЧамÑ\81Ñ\8cкÑ\96 Ð¼Ð¾Ð²Ð¸"
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ð\95квадоÑ\80"
 
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr "ЧамоÑ\80о"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Ð\95Ñ\81Ñ\82онÑ\96Ñ\8f"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Змінено конфігураційні файли для %s:"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Єгипет"
 
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "ЧеÑ\87енÑ\81Ñ\8cка"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Ð\97аÑ\85Ñ\96дна Ð¡Ð°Ñ\85аÑ\80а"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "ЧеÑ\80окÑ\96"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Ð\95Ñ\80иÑ\82Ñ\80еÑ\8f"
 
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "ШайÑ\94нÑ\81Ñ\8cка"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Ð\86Ñ\81панÑ\96Ñ\8f"
 
-# CN
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "Чибча"
+# ET
+# fuzzy
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Естонія"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "ЧиÑ\87ева"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "ФÑ\96нлÑ\8fндÑ\96Ñ\8f"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Чилі"
-
-# CN
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Китай"
-
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "Китайська"
-
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
-msgstr "Чинукський жаргон"
-
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Чіпев’ян"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Фіджі"
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
-msgstr "ЧокÑ\82о"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "ФолклендÑ\81Ñ\8cкÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови (Ð\9cалÑ\8cвÑ\96нÑ\81Ñ\8cкÑ\96)"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "РÑ\96здвÑ\8fнÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Ð\9cÑ\96кÑ\80онезÑ\96Ñ\8f (ФедеÑ\80алÑ\8cнÑ\96 Ð¨Ñ\82аÑ\82и)"
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "ЦеÑ\80ковноÑ\81лов'Ñ\8fнÑ\81Ñ\8cка"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "ФаÑ\80еÑ\80Ñ\81Ñ\8cкÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "ЧÑ\83Ñ\83кÑ\96йÑ\81Ñ\8cка"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "ФÑ\80анÑ\86Ñ\96Ñ\8f"
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "ЧÑ\83ваÑ\81Ñ\8cка"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Ð\9cеÑ\82Ñ\80ополÑ\8cна Ð¤Ñ\80анÑ\86Ñ\96Ñ\8f"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Класичне неварі"
+# GH
+# fuzzy
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Габон"
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Ð\9aокоÑ\81овÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Ð\9eб'Ñ\94днане Ð\9aоÑ\80олÑ\96вÑ\81Ñ\82во"
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Колумбія"
+# GD
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Гренада"
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Ð\9aоманда Ð·Ð°Ð²ÐµÑ\80Ñ\88ила Ñ\80обоÑ\82Ñ\83 Ð·Ñ\96 Ñ\81Ñ\82аном %d."
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Ð\93Ñ\80Ñ\83зÑ\96Ñ\8f"
 
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Команда завершила роботу з невідомою помилкою."
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Французька Гвіана"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Ð\9aомандÑ\83 Ð±Ñ\83ло Ð·Ñ\83пинено Ð·Ð° Ñ\81игналом %d (%s)."
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Ð\93еÑ\80нÑ\81Ñ\96"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Комори"
+# GH
+# fuzzy
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Китай"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Конфліктує"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Гібралтар"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Конго"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Гренландія"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Острови Кука"
+# GM
+# fuzzy
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Ямайка"
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "Коптська"
+# GU
+# fuzzy
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Гвінея"
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "Ð\9aоÑ\80нÑ\96йÑ\81Ñ\8cка"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Ð\93ваделÑ\83па"
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "Ð\9aоÑ\80Ñ\81иканÑ\81Ñ\8cка"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Ð\95кваÑ\82оÑ\80Ñ\96алÑ\8cна Ð\93вÑ\96неÑ\8f"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Ð\9aоÑ\81Ñ\82а-Рика"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Ð\93Ñ\80еÑ\86Ñ\96Ñ\8f"
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Ð\9aоÑ\82 Ð´'Ð\86вÑ\83аÑ\80"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Ð\9fÑ\96вденна Ð\94жоÑ\80джÑ\96Ñ\8f Ñ\96 Ð\9fÑ\96вденнÑ\96 Ð¡Ð°Ð½Ð´Ð²Ñ\96Ñ\87евÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Ð\9aÑ\80Ñ\96"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Ð\93ваÑ\82емала"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Крік"
+# GU
+# fuzzy
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Гватемала"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Ð\9aÑ\80еолÑ\8cÑ\81Ñ\8cкÑ\96 Ñ\96 Ð¿Ñ\96джинÑ\81Ñ\8cкÑ\96 (Ñ\96нÑ\88Ñ\96)"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Ð\93вÑ\96неÑ\8f\91Ñ\96Ñ\81аÑ\83"
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "Креольські і піджинські, англійські (інші)"
+# GH
+# fuzzy
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Гвіана"
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "Ð\9aÑ\80еолÑ\8cÑ\81Ñ\8cкÑ\96 Ñ\96 Ð¿Ñ\96джинÑ\81Ñ\8cкÑ\96, Ñ\84Ñ\80анÑ\86Ñ\83зÑ\8cкÑ\96 (Ñ\96нÑ\88Ñ\96)"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Ð\93онг Ð\9aонг"
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "Ð\9aÑ\80еолÑ\8cÑ\81Ñ\8cкÑ\96 Ñ\96 Ð¿Ñ\96джинÑ\81Ñ\8cкÑ\96, Ð¿Ð¾Ñ\80Ñ\82Ñ\83галÑ\8cÑ\81Ñ\8cкÑ\96 (Ñ\96нÑ\88Ñ\96)"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "ХеÑ\80дÑ\81Ñ\8cкÑ\96 Ñ\96 Ð\9cакдоналÑ\8cд Ð¾Ñ\81Ñ\82Ñ\80ови"
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
-msgstr "Ð\9aÑ\80имÑ\81Ñ\8cкоÑ\82аÑ\82аÑ\80Ñ\81Ñ\8cка"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Ð\93ондÑ\83Ñ\80аÑ\81"
 
 #. :HND:340:
 #: zypp/CountryCode.cc:254
 msgid "Croatia"
 msgstr "Хорватія"
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "ХоÑ\80ваÑ\82Ñ\81Ñ\8cка"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Ð\93аÑ\97Ñ\82Ñ\96"
 
-# CU
-# fuzzy
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Куба"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Угорщина"
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
-msgstr "Ð\9aÑ\83Ñ\88иÑ\82Ñ\81Ñ\8cкÑ\96 (Ñ\96нÑ\88Ñ\96)"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Ð\86ндонезÑ\96Ñ\8f"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Ð\9aÑ\96пÑ\80"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Ð\86Ñ\80ландÑ\96Ñ\8f"
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
-msgstr "ЧеÑ\81Ñ\8cка"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Ð\86зÑ\80аÑ\97лÑ\8c"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "ЧеÑ\85Ñ\96Ñ\8f"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Ð\9eÑ\81Ñ\82Ñ\80Ñ\96в Ð\9cен"
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
-msgstr "Дакота"
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Індія"
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
-msgstr "Ð\94анÑ\81Ñ\8cка"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Ð\91Ñ\80иÑ\82анÑ\81Ñ\8cка Ð¢ÐµÑ\80иÑ\82оÑ\80Ñ\96Ñ\8f Ð² Ð\86ндÑ\96йÑ\81Ñ\8cкомÑ\83 Ð¾ÐºÐµÐ°Ð½Ñ\96"
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
-msgstr "Ð\94аÑ\80гва"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Ð\86Ñ\80ак"
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
-msgstr "Даяк"
+# IR
+# fuzzy
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Ізраїль"
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
-msgstr "Ð\94елаваÑ\80"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Ð\86Ñ\81ландÑ\96Ñ\8f"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Ð\94анія"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Ð\86Ñ\82алія"
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "Дінка"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Джерсі"
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "Дайвегі"
+# JM
+# fuzzy
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Ямайка"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Ð\94жибÑ\83Ñ\82Ñ\96"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Ð\99оÑ\80данÑ\96Ñ\8f"
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "Ð\94огÑ\80Ñ\96"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "ЯпонÑ\96Ñ\8f"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Ð\94огÑ\80Ñ\96бÑ\81Ñ\8cка"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Ð\9aенÑ\96Ñ\8f"
 
-# DM
+# KZ
 # fuzzy
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "РÑ\83мÑ\83нÑ\96Ñ\8f"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Ð\9aиÑ\80гизÑ\81Ñ\82ан"
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Домініканська республіка"
+# KH
+# fuzzy
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Колумбія"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Помилка завантаження (curl) для \"%s\":\n"
-"Код помилки: %s\n"
-"Повідомлення про помилку: %s\n"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Кірибаті"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "Започаткування завантаження (curl) зазнало невдачі для \"%s\""
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Комори"
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
-msgstr "Дравідські (інші)"
+# KN
+# fuzzy
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Сент Кітс і Невіс"
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
-msgstr "Ð\94Ñ\83ала"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Ð\9fÑ\96внÑ\96Ñ\87на Ð\9aоÑ\80еÑ\8f"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Сумнівний тип \"%s\" для %u байтової контрольної суми \"%s\""
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Південна Корея"
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
-msgstr "Ð\93олландÑ\81Ñ\8cка"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Ð\9aÑ\83вейÑ\82"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Ð\93олландÑ\81Ñ\8cка, Ñ\81еÑ\80еднÑ\8f (1050-1350)"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Ð\9aаймановÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови"
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
-msgstr "Діула"
+# KZ
+# fuzzy
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Тайвань"
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
-msgstr "Ð\94зонгка"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Ð\9bаоÑ\81Ñ\8cка Ð\9dаÑ\80одно-Ð\94емокÑ\80аÑ\82иÑ\87на Ð ÐµÑ\81пÑ\83блÑ\96ка"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "СÑ\85Ñ\96дний Ð¢Ñ\96моÑ\80"
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Ð\9bÑ\96ван"
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Еквадор"
-
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
-msgstr "Ефік"
-
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Єгипет"
+# LC
+# fuzzy
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Санта Люсія"
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
-msgstr "Ð\84гипеÑ\82Ñ\81Ñ\8cка (дÑ\80евнÑ\8f)"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Ð\9bÑ\96Ñ\85Ñ\82енÑ\88Ñ\82ейн"
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "Ð\95каÑ\8eк"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "ШÑ\80Ñ\96\9bанка"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "Ель Сальвадор"
+# LR
+# fuzzy
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Сербія"
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Ð\95ламÑ\81Ñ\8cка"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Ð\9bеÑ\81оÑ\82о"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Порожнє місце призначення за URI"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Литва"
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Порожня файлова система за URI"
+# LU
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Люксембург"
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Порожня назва вузла у URI"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Латвія"
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Закодований рядок містить нульовий байт"
+# LR
+# fuzzy
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Лівія"
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "Ð\90нглÑ\96йÑ\81Ñ\8cка"
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Ð\9cаÑ\80окко"
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "Англійська, середньовічна (1100-1500)"
+# MO
+# fuzzy
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Монако"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Ð\90нглÑ\96йÑ\81Ñ\8cка, Ñ\81Ñ\82аÑ\80а (450-1100)"
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Ð\9cолдова"
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Покращує"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Чорногорія"
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Екваторіальна Гвінея"
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Сен-Мартен"
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Еритрея"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Мадагаскар"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"Під час встановлення параметрів завантаження (curl) для \"%s\" сталася "
-"помилка:"
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Маршаллові острови"
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Помилка відсилання сповіщення про оновлення."
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Македонія"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Помилка спроби читання з «%s»"
+# ML
+# fuzzy
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Мальта"
 
-# SY
+# MM
 # fuzzy
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Ð\95Ñ\80зÑ\96Ñ\8f"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Ð\9fанама"
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
-msgstr "Ð\95Ñ\81пеÑ\80анÑ\82о"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Ð\9cонголÑ\96Ñ\8f"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Естонія"
+# MO
+# fuzzy
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Мальта"
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Ð\95Ñ\81Ñ\82онÑ\81Ñ\8cка"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Ð\9fÑ\96внÑ\96Ñ\87нÑ\96 Ð\9cаÑ\80ианÑ\81Ñ\8cкÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови"
 
-# ET
+# MU
 # fuzzy
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Ð\95Ñ\81Ñ\82онÑ\96Ñ\8f"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Ð\9cаÑ\80Ñ\82инÑ\96ка"
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Еве"
+# MR
+# fuzzy
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Литва"
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Ð\95вондо"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Ð\9cонÑ\82Ñ\81еÑ\80Ñ\80аÑ\82"
 
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Ð\9dе Ð²Ð´Ð°Ð»Ð¾Ñ\81Ñ\8c Ñ\81кеÑ\88Ñ\83ваÑ\82и Ñ\81Ñ\85овиÑ\89е(%d)."
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Ð\9cалÑ\8cÑ\82а"
 
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Не вдалось вилучити ключ."
+# MU
+# fuzzy
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Литва"
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "Не вдалося імпортувати відкритий ключ з файла %s: %s"
+# MV
+# fuzzy
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Мальта"
 
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Не вдалося змонтувати %s у %s"
+# MW
+# fuzzy
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Мальта"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Мексика"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Малайзія"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Мозамбік"
+
+# GM
+# fuzzy
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Намібія"
+
+# NC
+# fuzzy
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Македонія"
+
+# NG
+# fuzzy
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Нігер"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Острів Норфолк"
+
+# NG
+# fuzzy
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Нігерія"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Нікарагуа"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Нідерланди"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Норвегія"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Непал"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Науру"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Ніуе"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Нова Зеландія"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Оман"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Панама"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Перу"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Французька Полінезія"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Папуа Нова Гвінея"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Філіппіни"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Пакистан"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Польща"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Сен П'єр і Мікелон"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Піткерн"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Пуерто ріко"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Палестинська територія"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Португалія"
+
+# PW
+# fuzzy
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Парагвай"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Парагвай"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Катар"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Реуніон"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Румунія"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Сербія"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Російська Федерація"
+
+# RW
+# fuzzy
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Канада"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Саудівська Аравія"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Соломонові острови"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Сейшели"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Судан"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Швеція"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Сингапур"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Острів Святої Олени"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Словенія"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Свальбард і Ян Маєн"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Словацька"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Сьєра Леон"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "Сан Марино"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Сенегал"
+
+# SO
+# fuzzy
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Румунія"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Суринам"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Сан Томе і Принсипі"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "Ель Сальвадор"
+
+# SY
+# fuzzy
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Сербія"
+
+# SZ
+# fuzzy
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Таїланд"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Острови Теркс і Кайкос"
+
+# TD
+# fuzzy
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Китай"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Французькі Південні Території"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Того"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Таїланд"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Таджикистан"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Токелау"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Туркменістан"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Туніс"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Тонга"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Східний Тімор"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Туреччина"
+
+# TT
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Республіка Тринідад та Тобаго"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Тувалу"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Тайвань"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Танзанія"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Україна"
+
+# UG
+# fuzzy
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Канада"
+
+# UM
+# fuzzy
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "США"
+
+# US
+# fuzzy
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "США"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Уругвай"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Узбекистан"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Святий Престіл (Ватикан, місто-держава)"
+
+# VC
+# fuzzy
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Сент Вікент і Гренадіни"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Венесуела"
+
+# VI
+# fuzzy
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Віргінські острови (Британія)"
+
+# VI
+# fuzzy
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Фінляндія"
+
+# VN
+# fuzzy
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "В'єтнамська"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Вануату"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Валліс і Футунські острови"
+
+# KH
+# fuzzy
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Самоа"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Ємен"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Майотта"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Південна Африка"
+
+# ZM
+# fuzzy
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Ямайка"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Зімбабве"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Невідома мова: "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Афар"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Абхазька"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Ахінська"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Аколі"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Адангме"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Адиґхе"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Афро-азіатські (інші)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "Афрігілі"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "Африкаанська"
+
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "Аіну"
+
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "Акан"
+
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "Акадійська"
+
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "Албанська"
+
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "Алеутська"
+
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "Алгонкінські мови"
+
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Південноалтайська"
+
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "Амхарська"
+
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Англійська, стара (450-1100)"
+
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Мови апачі"
+
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "Арабський"
+
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "Арамейська"
+
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Арагонська"
+
+# AM
+# fuzzy
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Вірменська"
+
+# AM
+# fuzzy
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "Арауканська"
+
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Арапахо"
+
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "Штучні (інші)"
+
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Аравак"
+
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "Ассамська"
+
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "Астурійська"
+
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Атапаські мови"
+
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Австралійські мови"
+
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "Аварська"
+
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "Авестан"
+
+# SZ
+# fuzzy
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "Авадхі"
+
+# MM
+# fuzzy
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "Аймарська"
+
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "Азербайджанська"
+
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Банда"
+
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Бамілекські мови"
+
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Башкирська"
+
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "Балучі"
+
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "Бамбара"
+
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Балійська"
+
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Баскська"
+
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "Баса"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Балтійські (інші)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "Бежа"
+
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "Білоруська"
+
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "Бемба"
+
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "Бенгальська"
+
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "Берберські (інші)"
+
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "Бходжпурі"
+
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "Біхарі"
+
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "Бікол"
+
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "Біні"
+
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "Біслама"
+
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Сіксіка"
+
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Банту (інші)"
+
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "Боснійська"
+
+# BR
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "Брай"
+
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "Бретонська"
+
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Батак (Індонезія)"
+
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Бурятська"
+
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "Бугійська"
+
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "Болгарська"
+
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "Бірманська"
+
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Блін"
+
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "Каддо"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Індіанські центрально-американські (інші)"
+
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
+msgstr "Карибські мови"
+
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
+msgstr "Каталанська"
+
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
+msgstr "Кавказькі (інші)"
+
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
+msgstr "Кебуанська"
+
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Кельтські (інші)"
+
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
+msgstr "Чаморо"
+
+# CN
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "Чибча"
+
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Чеченська"
+
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Чагатай"
+
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "Китайська"
+
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Чуукійська"
+
+# ML
+# fuzzy
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Марі"
+
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
+msgstr "Чинукський жаргон"
+
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
+msgstr "Чокто"
+
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Чіпев’ян"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Черокі"
+
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "Церковнослов'янська"
+
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "Чуваська"
+
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Шайєнська"
+
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Чамські мови"
+
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "Коптська"
+
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "Корнійська"
+
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "Корсиканська"
+
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
+msgstr "Креольські і піджинські, англійські (інші)"
+
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
+msgstr "Креольські і піджинські, французькі (інші)"
+
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+msgstr "Креольські і піджинські, португальські (інші)"
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "Не вдалося надати пакунок %s. Повторити спробу?"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Крі"
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Не вдалось прочитати каталог «%s»"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
+msgstr "Кримськотатарська"
 
-# ###############################################################################
-# Old yast2-agents.po
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Не вдалося вилучити відкрити ключ %s: %s"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Креольські і піджинські (інші)"
 
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Ð\9dе Ð²Ð´Ð°Ð»Ð¾Ñ\81Ñ\8f Ð²Ñ\96дмонÑ\82Ñ\83ваÑ\82и %s"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Ð\9aаÑ\88Ñ\83бÑ\81Ñ\8cка"
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "ФолклендÑ\81Ñ\8cкÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови (Ð\9cалÑ\8cвÑ\96нÑ\81Ñ\8cкі)"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
+msgstr "Ð\9aÑ\83Ñ\88иÑ\82Ñ\81Ñ\8cкÑ\96 (Ñ\96нÑ\88і)"
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "Фанг"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
+msgstr "ЧеÑ\81Ñ\8cка"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "ФанÑ\82Ñ\96"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
+msgstr "Ð\94акоÑ\82а"
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "ФаÑ\80еÑ\80Ñ\81Ñ\8cкÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови"
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
+msgstr "Ð\94анÑ\81Ñ\8cка"
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "ФаÑ\80еÑ\80Ñ\81Ñ\8cка"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
+msgstr "Ð\94аÑ\80гва"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Ð\9cÑ\96кÑ\80онезÑ\96Ñ\8f (ФедеÑ\80алÑ\8cнÑ\96 Ð¨Ñ\82аÑ\82и)"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
+msgstr "Ð\94аÑ\8fк"
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "ФÑ\96джÑ\96"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
+msgstr "Ð\94елаваÑ\80"
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "ФÑ\96джÑ\96йська"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Ð\90Ñ\82апаська"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Файл %1%\n"
-"з пакунку\n"
-"%2%\n"
-"конфліктує з файлом\n"
-"%3%\n"
-"з пакунку\n"
-"%4%"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Догрібська"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Файл %1%\n"
-"з пакунку\n"
-"%2%\n"
-"конфліктує з файлом\n"
-"%3%\n"
-"з пакунку\n"
-"%4%"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "Дінка"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Файл %1%\n"
-"з пакунку\n"
-"%2%\n"
-"конфліктує з файлом пакунку\n"
-"%3%"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "Дайвегі"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Файл %1%\n"
-"з пакунку\n"
-"%2%\n"
-"конфліктує з файлом пакунку\n"
-"%3%"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "Догрі"
+
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
+msgstr "Дравідські (інші)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Нижня лужицька"
+
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
+msgstr "Дуала"
+
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Голландська, середня (1050-1350)"
+
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
+msgstr "Голландська"
+
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
+msgstr "Діула"
+
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
+msgstr "Дзонгка"
+
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
+msgstr "Ефік"
+
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
+msgstr "Єгипетська (древня)"
+
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
+msgstr "Екаюк"
+
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Еламська"
+
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "Англійська"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "Англійська, середньовічна (1100-1500)"
+
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
+msgstr "Есперанто"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"Файл %1%\n"
-"з пакунку\n"
-"%2%\n"
-"конфліктує з файлом\n"
-"%3%\n"
-" пакунку\n"
-"%4%"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "Естонська"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"Файл %1%\n"
-"з пакунку\n"
-"%2%\n"
-"конфліктує з файлом\n"
-"%3%\n"
-" пакунку\n"
-"%4%"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Еве"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"Файл %1%\n"
-"з пакунку\n"
-"%2%\n"
-"конфліктує з файлом пакунку\n"
-"%3%"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Евондо"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"Файл %1%\n"
-"з пакунку\n"
-"%2%\n"
-"конфліктує з файлом пакунку\n"
-"%3%"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "Фанг"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Файл \"%s\" не знайдено на носії \"%s\""
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Фарерська"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "Файл не існує чи підпис не можна перевірити"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Фанті"
+
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Фіджійська"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Філіппінська"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Фінляндія"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1684,40 +2682,16 @@ msgstr "Фінська"
 msgid "Finno-Ugrian (Other)"
 msgstr "Фіно-угорські (інші)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Буде виконано такі дії:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Фон"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "Франція"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Французька"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Французька Гвіана"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Французька Полінезія"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Французькі Південні Території"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1733,16 +2707,16 @@ msgstr "Французька, давня (842 - 1400)"
 msgid "Frisian"
 msgstr "Фризька"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Фріулійська"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Фула"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Фріулійська"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
@@ -1750,39 +2724,6 @@ msgstr "Га"
 
 # GH
 # fuzzy
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Габон"
-
-# ML
-# fuzzy
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Гаельська"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Галісійська"
-
-# GM
-# fuzzy
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Ямайка"
-
-# GH
-# fuzzy
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Ґанда"
-
-# GH
-# fuzzy
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1793,15 +2734,10 @@ msgstr "Гайо"
 msgid "Gbaya"
 msgstr "Ґбая"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Ґіз"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Грузія"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Германські (інші)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1813,6 +2749,38 @@ msgstr "Грузинська"
 msgid "German"
 msgstr "Німецька"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Ґіз"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Гілбертійська"
+
+# ML
+# fuzzy
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Гаельська"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Ірландська"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Галісійська"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Манкс"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1823,32 +2791,6 @@ msgstr "Німецька, середньо-висока (1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Німецька, стара висока (750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Германські (інші)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Німеччина"
-
-# GH
-# fuzzy
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Китай"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Гібралтар"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Гілбертійська"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1867,12 +2809,7 @@ msgstr "Готська"
 #. language code: grb
 #: zypp/LanguageCode.cc:497
 msgid "Grebo"
-msgstr "Гребо"
-
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Греція"
+msgstr "Гребо"
 
 #. language code: grc
 #: zypp/LanguageCode.cc:499
@@ -1884,68 +2821,16 @@ msgstr "Грецька, стародавня (до 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Грецька, сучасна (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Гренландія"
-
-# GD
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Гренада"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Гваделупа"
-
-# GU
-# fuzzy
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Гватемала"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "Гуарані"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Гватемала"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Гернсі"
-
-# GU
-# fuzzy
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Гвінея"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Гвінея-Бісау"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Гуджараті"
 
-# GH
-# fuzzy
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Гвіана"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1956,52 +2841,21 @@ msgstr "Ґвіч’ін"
 msgid "Haida"
 msgstr "Хайда"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Гаїті"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Гаїтянська"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Виняток Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext не приєднано"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive не започатковано"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume не започатковано"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Хауса"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Чи ви увімкнули всі запитані сховища?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Гавайська"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Хердські і Макдональд острови"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -2027,16 +2881,6 @@ msgstr "Гімачалі"
 msgid "Hindi"
 msgstr "Хінді"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Хірі Моту"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Історія:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -2047,31 +2891,21 @@ msgstr "Хетська"
 msgid "Hmong"
 msgstr "Хмонг"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Святий Престіл (Ватикан, місто-держава)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Гондурас"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Хірі Моту"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Ð\93онг Ð\9aонг"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Ð\92еÑ\80Ñ\85нÑ\8f Ð»Ñ\83жиÑ\86Ñ\8cка"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Угорська"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Угорщина"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -2084,10 +2918,10 @@ msgstr "Гупа"
 msgid "Iban"
 msgstr "Ібан"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Ісландія"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Ігбо"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2099,254 +2933,105 @@ msgstr "Ісландська"
 msgid "Ido"
 msgstr "Ідо"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Ð\86гбо"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "СиÑ\87Ñ\83анÑ\8cÑ\81Ñ\8cка Ð\87"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Іжо"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Інуктитут"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Інтерлінгва"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Ілоко"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Інарі самі"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Індія"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Інтерлінгва (Інтернаціональна допоміжна асоціація мови)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Індійські (інші)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Індоєвропейські (інші)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Індонезія"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "Індонезійська"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "Інгуш"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Встановлення перервано відповідно до вказівки."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Інтерлінгва (Інтернаціональна допоміжна асоціація мови)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Інтерлінгва"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Інуктитут"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "Інупіак"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Не чинний компонент %s"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Не чинний %s компонент \"%s\""
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Не чинний параметр запиту \"%s\" URL LDAP"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Не чинний рядок запиту URL LDAP"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Не чинна схема URL \"%s\""
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Не чинне порожнє посилання до об'єкта URL"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Не чинний компонент вузла \"%s\""
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Не чинний символ сполучення масиву параметрів"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Не чинний символ розділення масиву параметрів"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Не чинний символ розділення карти параметрів"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Не чинний компонент порту \"%s\""
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Нечинний формальний вираз «%s»"
+msgid "Indonesian"
+msgstr "Індонезійська"
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Ð\9dекоÑ\80екÑ\82ний Ñ\84оÑ\80малÑ\8cний Ð²Ð¸Ñ\80аз \"%s\": regcomp Ð¿Ð¾Ð²ÐµÑ\80нÑ\83ла %d"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Ð\86ндоÑ\94вÑ\80опейÑ\81Ñ\8cкÑ\96 (Ñ\96нÑ\88Ñ\96)"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Не чинна назва файла сховища «%s»"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "Інгуш"
 
-# IR
-# fuzzy
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Ізраїль"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "Інупіак"
 
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Іранські (інші)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Ірак"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Ірландія"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Ірландська"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Ірландська, середньовічна (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Ірландська, давня (до 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Ірокезькі мови"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Острів Мен"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Ізраїль"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Італійська"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Італія"
-
-# JM
-# fuzzy
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Ямайка"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Японська"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "ЯпонÑ\96Ñ\8f"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Ð\9bожбан"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Японська"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Японська"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Джерсі"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Йорданія"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Юдейсько-перська"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Юдейсько-арабська"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Юдейсько-перська"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Кабардинська"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Каракалпацька"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2363,11 +3048,6 @@ msgstr "Качин"
 msgid "Kalaallisut"
 msgstr "Калаалісут"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Калмицька"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2378,21 +3058,6 @@ msgstr "Камба"
 msgid "Kannada"
 msgstr "Каннадська"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Канурі"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Каракалпацька"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Карачаєво-балкарська"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2403,10 +3068,10 @@ msgstr "Карен"
 msgid "Kashmiri"
 msgstr "Кашмірська"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Кашубська"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Канурі"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2420,33 +3085,26 @@ msgstr "Каві"
 msgid "Kazakh"
 msgstr "Казахська"
 
-# KZ
-# fuzzy
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Тайвань"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Кенія"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Кабардинська"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Хасі"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Кхмерська"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Койсанські (інші)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Кхмерська"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2457,11 +3115,6 @@ msgstr "Хотанська"
 msgid "Kikuyu"
 msgstr "Кікуйю"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Кімбунду"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2472,15 +3125,15 @@ msgstr "Кіньяруанда"
 msgid "Kirghiz"
 msgstr "Киргизька"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Кірибаті"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Кімбунду"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Ð\9aлÑ\96нгонÑ\81Ñ\8cка"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Ð\9aонканÑ\96"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2492,11 +3145,6 @@ msgstr "Комі"
 msgid "Kongo"
 msgstr "Конго"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Конкані"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2512,11 +3160,21 @@ msgstr "Косраенська"
 msgid "Kpelle"
 msgstr "Кпеле"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Карачаєво-балкарська"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Кру"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Курух"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2532,28 +3190,11 @@ msgstr "Кумик"
 msgid "Kurdish"
 msgstr "Курдська"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Курух"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Кутенай"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Кувейт"
-
-# KZ
-# fuzzy
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Киргизстан"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2574,72 +3215,21 @@ msgstr "Ламба"
 msgid "Lao"
 msgstr "Лаоська"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Лаоська Народно-Демократична Республіка"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Латинська"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Латвія"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
-msgstr "Латвійська"
-
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Ліван"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Лесото"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Рівень 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Рівень 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Рівень 3"
+msgstr "Латвійська"
 
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Лезгінська"
 
-# LR
-# fuzzy
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Сербія"
-
-# LR
-# fuzzy
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Лівія"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Ліхтенштейн"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2650,61 +3240,49 @@ msgstr "Лімбурганська"
 msgid "Lingala"
 msgstr "Лінгала"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Литва"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "Литовська"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Адреса «%s» тимчасово недоступна."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Ложбан"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Нижня німецька"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Нижня лужицька"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Монгольська"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Лозі"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Луба-катанга"
+# LU
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Люксембурзька"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Луба-лулуа"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Луба-катанга"
+
+# GH
+# fuzzy
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Ґанда"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Луїсено"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Луле самі"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2720,39 +3298,11 @@ msgstr "Луо (Кенія і Танзанія)"
 msgid "Lushai"
 msgstr "Лушаї"
 
-# LU
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Люксембург"
-
-# LU
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Люксембурзька"
-
-# MO
-# fuzzy
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Мальта"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Македонія"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Македонська"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Мадагаскар"
-
 # MV
 # fuzzy
 #. language code: mad
@@ -2767,6 +3317,11 @@ msgstr "Мадурі"
 msgid "Magahi"
 msgstr "Маґахі"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Маршальська"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2777,100 +3332,26 @@ msgstr "Маїтхілі"
 msgid "Makasar"
 msgstr "Макасар"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Малагасійська"
-
-# MW
-# fuzzy
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Мальта"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Малайська"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Малаялам"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Малайзія"
-
-# MV
-# fuzzy
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Мальта"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "Помилковий URI"
-
-# ML
-# fuzzy
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Мальта"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Мальта"
-
-# MV
-# fuzzy
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Мальтійська"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Манчу"
-
-# MM
-# fuzzy
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Мандар"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Мандінго"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Маніпурі"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Мови манобо"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Манкс"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Маорі"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Австронезійські (інші)"
+
 # MU
 # fuzzy
 #. language code: mar mr
@@ -2878,101 +3359,39 @@ msgstr "Маорі"
 msgid "Marathi"
 msgstr "Маратхі"
 
-# ML
-# fuzzy
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Марі"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Маршаллові острови"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Маршальська"
-
-# MU
-# fuzzy
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Мартиніка"
-
-# MU
-# fuzzy
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Марварі"
-
 # MW
-# fuzzy
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
-msgstr "Масаї"
-
-# MR
-# fuzzy
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Литва"
-
-# MU
-# fuzzy
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Литва"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Мови Майя"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Майотта"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "Пристрій носія \"%s\" не містить бажаного носія"
+# fuzzy
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
+msgstr "Масаї"
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Ð\9dоÑ\81Ñ\96й \"%s\" Ð²Ð¸ÐºÐ¾Ñ\80иÑ\81Ñ\82овÑ\83Ñ\94Ñ\82Ñ\8cÑ\81Ñ\8f Ñ\96нÑ\88оÑ\8e ÐºÐ¾Ð¿Ñ\96Ñ\94Ñ\8e Ð¿Ñ\80огÑ\80ами"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Ð\9cалайÑ\81Ñ\8cка"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Носій не з’єднано"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Мокша"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Носій не було відкрито під час спроби виконання дії \"%s\"."
+# MM
+# fuzzy
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Мандар"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Менде"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Метропольна Франція"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Мексика"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Ірландська, середньовічна (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2984,90 +3403,63 @@ msgstr "Мікмак"
 msgid "Minangkabau"
 msgstr "Мінангкабау"
 
-# FM
-# fuzzy
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Мірандська"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Інші мови"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Мон-кхмерські (інші)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Малагасійська"
+
+# MV
+# fuzzy
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Мальтійська"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Манчу"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Маніпурі"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Мови манобо"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Могавк"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Мокша"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Молдовська"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Молдова"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Мон-кхмерські (інші)"
-
-# MO
-# fuzzy
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Монако"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Монгольська"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Монголія"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Монгольська"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Чорногорія"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Монтсеррат"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Марокко"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Моссі"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Мозамбік"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -3078,222 +3470,147 @@ msgstr "Декілька мов"
 msgid "Munda languages"
 msgstr "Мови мунда"
 
-# MM
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Крік"
+
+# FM
 # fuzzy
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Панама"
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Мірандська"
+
+# MU
+# fuzzy
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Марварі"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Мови Майя"
+
+# SY
+# fuzzy
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Ерзія"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Нагуатл"
 
-# GM
-# fuzzy
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Намібія"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Індіанська північноамериканська"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Науру"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Неаполітанська"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Навахо"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ндебеле, північна"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ндебеле, південна"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ндебеле, північна"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ндонга"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Неаполітанська"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Непал"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Непал Вхаза"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Нижня німецька"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Непальська"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Нідерланди"
-
-# AN
-# fuzzy
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Голландія"
-
-# NC
-# fuzzy
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Македонія"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Нова Зеландія"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Нове повідомлення про оновлення"
-
-#. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
-msgstr "Ніас"
-
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Нікарагуа"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Непал Вхаза"
 
-# NG
-# fuzzy
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Нігер"
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
+msgstr "Ніас"
 
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Нігеро-кордофанські (інші)"
 
-# NG
-# fuzzy
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Нігерія"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Ніло-сахарські (інші)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Ніуе"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Ніу"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Немає коду"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Норвезька (лансмол)"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "В сховищі немає url."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Норвезька (букмол)"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Ногайська"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Острів Норфолк"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Норвезька, давня"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Індіанська північноамериканська"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Північна Корея"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Північні Марианські острови"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Північна Самі"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Північне Сото"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Норвегія"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Норвезька"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Норвезька (букмол)"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Норвезька (лансмол)"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Не привід CD-ROM"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Північне Сото"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Нубійські мови"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Класичне неварі"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Чичева"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3314,10 +3631,6 @@ msgstr "Ніоро"
 msgid "Nzima"
 msgstr "Нзіма"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "Робить застарілим"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3328,20 +3641,6 @@ msgstr "Провансальська (після 1500)"
 msgid "Ojibwa"
 msgstr "Ожібва"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Оман"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Потрібний один або двоє атрибутів «%s» та «'%s»."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Операція не підтримується носієм"
-
 # SY
 # fuzzy
 #. language code: ori or
@@ -3364,19 +3663,25 @@ msgstr "Осаге"
 msgid "Ossetian"
 msgstr "Осетинська"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Турецька, оттоманська (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Отомійські мови"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Пакунок %s, здається, пошкоджено під час перенесення. Повторити спробу?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Папуаські (інші)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Пангасійська"
 
 # ML
 # fuzzy
@@ -3385,52 +3690,11 @@ msgstr ""
 msgid "Pahlavi"
 msgstr "Пахлаві"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Пакистан"
-
-# PW
-# fuzzy
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Парагвай"
-
-# PW
-# fuzzy
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Палау"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Палестинська територія"
-
-# ML
-# fuzzy
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Палі"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "Пампанга"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Панама"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Пангасійська"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3441,94 +3705,49 @@ msgstr "Панджабі"
 msgid "Papiamento"
 msgstr "Папіяменто"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Папуа Нова Гвінея"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Папуаські (інші)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Парагвай"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Шлях \"%s\" на носії \"%s\" не є каталогом."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Шлях \"%s\" на носії \"%s\" не є файлом."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Дозвіл на доступ до \"%s\" заборонено."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Перська"
+# PW
+# fuzzy
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Палау"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Перська, давня (600-400 до н.е.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Ð\9fеÑ\80Ñ\83"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Ð\9fеÑ\80Ñ\81Ñ\8cка"
 
 #. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
-msgstr "Філіппінські (інші)"
-
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Філіппіни"
-
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
-msgstr "Фінікійська"
-
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Піткерн"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "Встановіть спершу пакунок 'lsof'."
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
+msgstr "Філіппінські (інші)"
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Ð\9fонпейська"
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
+msgstr "ФÑ\96нÑ\96кÑ\96йська"
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Польща"
+# ML
+# fuzzy
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Палі"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Польська"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Португалія"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Понпейська"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3540,87 +3759,21 @@ msgstr "Португальська"
 msgid "Prakrit Languages"
 msgstr "Пракритські мови"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "Вимоги"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Визначення проблеми, тобто технічна підтримка, при якій надається інформація "
-"про сумісність, допомога при встановленні, підтримка для використання, та "
-"вирішення простих проблем. Підтримка 1-го рівня не займається виправленням "
-"помилками дефектів продуктів."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"Виокремлення проблеми, тобто технічна підтримка, при якій дублікуються "
-"проблеми клієнтів, виокремлюється проблемна ділянка і надається вирішення "
-"проблем, які не було виправлено 1-ми рівнем підтримки."
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"Вирішення проблем, тобто технічна підтримка, призначена для вирішення "
-"складних проблем, до яких залучають інженерний персонал для вирішення "
-"дефектів в продуктах, що їх було знайдено підтримкою 2-го рівня."
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Провансальська, давня (до 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Надає"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Пуерто ріко"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Пушту"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Катар"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Кечуа"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Розбір рядка запиту не підтримується для цього URL"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "Помилка RPM: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Ретороманська"
-
 # KZ
 # fuzzy
 #. language code: raj
@@ -3638,57 +3791,26 @@ msgstr "Рапануї"
 msgid "Rarotongan"
 msgstr "Раротонгська"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Рекомендує"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Відносний шлях не дозволяється при існуванні повноваження"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Вилучення сховища \"%s\""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "Псевдонім сховища не може починатися з точки."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "Немає потрібного атрибута «%s»."
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Вимагає"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Реуніон"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Романські (інші)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Румунія"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Румунська"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Ретороманська"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Циганська"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Румунська"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3699,51 +3821,25 @@ msgstr "Рунді"
 msgid "Russian"
 msgstr "Російська"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Російська Федерація"
-
-# RW
-# fuzzy
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Канада"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Острів Святої Олени"
-
-# KN
-# fuzzy
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Сент Кітс і Невіс"
-
-# LC
-# fuzzy
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Санта Люсія"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Сандаве"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Сен-Мартен"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Санго"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Сен Ð\9f\94Ñ\80 Ñ\96 Ð\9cÑ\96келон"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "ЯкÑ\83Ñ\82Ñ\81Ñ\8cка"
 
-# VC
-# fuzzy
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Сент Вікент і Гренадіни"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Індіанські південноамериканські (інші)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3755,73 +3851,41 @@ msgstr "Салішанські мови"
 msgid "Samaritan Aramaic"
 msgstr "Самарійська арамейська"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Мови Самі (інші)"
-
-# KH
-# fuzzy
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Самоа"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Самоанська"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "Сан Марино"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Сандаве"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Санго"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Санскрит"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Сасак"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Санталі"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Сан Томе і Принсипі"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Сардинська"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Сасак"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Сербська"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "СаÑ\83дÑ\96вÑ\81Ñ\8cка Ð\90Ñ\80авÑ\96Ñ\8f"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "СиÑ\86илÑ\96йÑ\81Ñ\8cка"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Шотландська"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Хорватська"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3832,59 +3896,21 @@ msgstr "Селкуп"
 msgid "Semitic (Other)"
 msgstr "Семітські (інші)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Сенегал"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Сербія"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Сербська"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Серер"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "Псевдонім служби не може починатися з точки."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "Модуль служби не підтримує зміну атрибута."
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Ірландська, давня (до 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "СейÑ\88ели"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Ð\97наковÑ\96 Ð¼Ð¾Ð²и"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Шан"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Шона"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Сичуаньська Ї"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Сицилійська"
-
 # KH
 # fuzzy
 #. language code: sid
@@ -3892,84 +3918,20 @@ msgstr "Сицилійська"
 msgid "Sidamo"
 msgstr "Сідамо"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Сьєра Леон"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Знакові мови"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "Підпис не перевіряється"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Файл підпису \"%s\" не знайдено"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "Із підписом усе гаразд"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "Із підписом усе гаразд, але ключ - ненадійний"
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "Невдала перевірка підпису"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "Публічний ключ підписів - недоступний"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Сіксіка"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Синдхі"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Сингапур"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "Сингальська"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Сино-тибетські (інші)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Сіуанські мови"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Сколт самі"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Атапаська"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Сино-тибетські (інші)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3981,156 +3943,127 @@ msgstr "Слов'янські (інші)"
 msgid "Slovak"
 msgstr "Словацька"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Словацька"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Словенія"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Словенська"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "Согдійська"
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Соломонові острови"
-
-# SO
-# fuzzy
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "Сомалійська"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Південна Самі"
 
-# SO
-# fuzzy
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Румунія"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Північна Самі"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "Сонгай"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Ð\9cови Ð¡Ð°Ð¼Ñ\96 (Ñ\96нÑ\88Ñ\96)"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "СонÑ\96нке"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Ð\9bÑ\83ле Ñ\81амÑ\96"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Ð\9bÑ\83жиÑ\86Ñ\8cкÑ\96 Ð¼Ð¾Ð²Ð¸"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Ð\86наÑ\80Ñ\96 Ñ\81амÑ\96"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "Вибачте, цю версію libzypp було складено без підтримки HAL."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Самоанська"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "СоÑ\82о, Ð¿Ñ\96вденна"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "СколÑ\82 Ñ\81амÑ\96"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Ð\9fÑ\96вденна Ð\90Ñ\84Ñ\80ика"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Шона"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Ð\86ндÑ\96анÑ\81Ñ\8cкÑ\96 Ð¿Ñ\96вденноамеÑ\80иканÑ\81Ñ\8cкÑ\96 (Ñ\96нÑ\88Ñ\96)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "СиндÑ\85Ñ\96"
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Ð\9fÑ\96вденна Ð\94жоÑ\80джÑ\96Ñ\8f Ñ\96 Ð\9fÑ\96вденнÑ\96 Ð¡Ð°Ð½Ð´Ð²Ñ\96Ñ\87евÑ\96 Ð¾Ñ\81Ñ\82Ñ\80ови"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "СонÑ\96нке"
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Ð\9fÑ\96вденна Ð\9aоÑ\80еÑ\8f"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "СогдÑ\96йÑ\81Ñ\8cка"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Південноалтайська"
+# SO
+# fuzzy
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "Сомалійська"
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Ð\9fÑ\96вденна Ð¡Ð°Ð¼Ñ\96"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "Сонгай"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Ð\86Ñ\81панÑ\96Ñ\8f"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "СоÑ\82о, Ð¿Ñ\96вденна"
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Іспанська"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "ШÑ\80Ñ\96\9bанка"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "СаÑ\80динÑ\81Ñ\8cка"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Судан"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Серер"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Пропонує"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Ніло-сахарські (інші)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Сваті"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Сукума"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Шумерська"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Сунданська"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Доповнює"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Суринам"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Сусу"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "СвалÑ\8cбаÑ\80д Ñ\96 Ð¯Ð½ Ð\9cаÑ\94н"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "ШÑ\83меÑ\80Ñ\81Ñ\8cка"
 
 # SZ
 # fuzzy
@@ -4139,40 +4072,11 @@ msgstr "Свальбард і Ян Маєн"
 msgid "Swahili"
 msgstr "Суахілі"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Сваті"
-
-# SZ
-# fuzzy
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Таїланд"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Швеція"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Шведська"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Швейцарія"
-
-# SY
-# fuzzy
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Сербія"
-
 # SY
 # fuzzy
 #. language code: syr
@@ -4180,25 +4084,6 @@ msgstr "Сербія"
 msgid "Syriac"
 msgstr "Сирійська"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Системне виключення \"%s\" на носії \"%s\"."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"Керування системою заблоковано програмою з pid %d (%s).\n"
-"Закрийте цю програму перш ніж спробувати знову."
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Тагалог"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4209,36 +4094,11 @@ msgstr "Таїтянська"
 msgid "Tai (Other)"
 msgstr "Тайські (інші)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Тайвань"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Таджицька"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Таджикистан"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Тамашек"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Тамільська"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Танзанія"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4249,6 +4109,11 @@ msgstr "Татарська"
 msgid "Telugu"
 msgstr "Телугу"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Тімне"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4259,33 +4124,21 @@ msgstr "Терено"
 msgid "Tetum"
 msgstr "Тетум"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Таджицька"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Тагалог"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Таїландська"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Таїланд"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Не вказано рівень підтримки"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Постачальник не надає підтримки."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Цю дію вже запущено іншою програмою."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Цей запит пошкодить вашу систему!"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4303,46 +4156,25 @@ msgstr "Тигре"
 msgid "Tigrinya"
 msgstr "Тигринья"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "Перевищено час очікування при спробі доступу до '%s'."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Тімне"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Тів"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Клінгонська"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Тлінгіт"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Того"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Ток пісін"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Токелау"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Тонга"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Тамашек"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4354,106 +4186,66 @@ msgstr "Тонга (Ньяса)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Тонга (острови Тонга)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Спроба імпорту неіснуючого ключа %s у сховище ключів %s"
-
-# TT
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Республіка Тринідад та Тобаго"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Ток пісін"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Тсимшіан"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Тсвана"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Тсонга"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "ТÑ\81вана"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "ТÑ\83Ñ\80кменÑ\81Ñ\8cка"
 
 #. language code: tum
-#: zypp/LanguageCode.cc:1067
-msgid "Tumbuka"
-msgstr "Тумбука"
-
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Туніс"
+#: zypp/LanguageCode.cc:1067
+msgid "Tumbuka"
+msgstr "Тумбука"
 
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Мови Тупі"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Туреччина"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Турецька"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Турецька, оттоманська (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Туркменська"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Туркменістан"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Острови Теркс і Кайкос"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Алтайські (інші)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Тувалу"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Тві"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "Тувинська"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Тві"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Удмуртська"
 
-# UG
-# fuzzy
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Канада"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4464,11 +4256,6 @@ msgstr "Угарітська"
 msgid "Uighur"
 msgstr "Уйгурська"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Україна"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4479,218 +4266,36 @@ msgstr "Українська"
 msgid "Umbundu"
 msgstr "Умбунду"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Не вдається клонувати об'єкт URL"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Неможливо створити з'єднання з dbus"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Неможливо започаткувати контекст HAL context -- не запущено hald?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Неможливо розібрати компоненти URL"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Невизначено"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Необроблений тип сховища"
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Об'єднані Арабські Емірати"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Об'єднане Королівство"
-
-# US
-# fuzzy
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "США"
-
-# UM
-# fuzzy
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "США"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Невідома країна: "
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Невідома помилка читання з «%s»"
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Невідома мова: "
-
-#: zypp/base/StrMatcher.cc:152
-#, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Невідомий режим збігу «%s»"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Невідомий режим збігу «%s» для шаблона «%s»"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr "Невідома служба '%1%': видалення сховища служби '%2%'"
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Невідомий параметр підтримки. Немає опису."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "Невідомий тип підпису"
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Метод автентифікації HTTP \"%s\", який не підтримується"
-
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Непідтримувана схема URI у \"%s\"."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Верхня лужицька"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "Урду"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Схема Url не дозволяє %s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Схема URL не дозволяє компонент вузла"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Схема URL не дозволяє пароля"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Схема URL не дозволяє порт"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Схема URL не дозволяє імені користувача"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Схема URL - це потрібний компонент"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Схема URL потребує компонент вузла"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Схема URL потребує назву шляху"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Уругвай"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "Узбецька"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Узбекистан"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "Ваі"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "У вказаній адресі URL не знайдено чинних метаданих"
-msgstr[1] "У вказаних адресах URL не знайдено чинних метаданих"
-msgstr[2] "У вказаних адресах URL не знайдено чинних метаданих"
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Вануату"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "Венда"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Венесуела"
-
-# VN
-# fuzzy
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "В'єтнамська"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "В'єтнамська"
 
-# VI
-# fuzzy
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Фінляндія"
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-"Відвідайте центр покупця Novel для перевірки терміну дії вашої реєстрації."
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4711,16 +4316,6 @@ msgstr "Вакашанські мови"
 msgid "Walamo"
 msgstr "Валамо"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Валліс і Футунські острови"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Валлонська"
-
 #. language code: war
 #: zypp/LanguageCode.cc:1111
 msgid "Waray"
@@ -4736,26 +4331,31 @@ msgstr "Вашо"
 msgid "Welsh"
 msgstr "Валлійська"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Західна Сахара"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Лужицькі мови"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Валлонська"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "Волоф"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Калмицька"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "Хоза"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Якутська"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4766,11 +4366,6 @@ msgstr "Йао"
 msgid "Yapese"
 msgstr "Япізька"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Ємен"
-
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
 msgid "Yiddish"
@@ -4788,18 +4383,6 @@ msgstr "Йоруба"
 msgid "Yupik Languages"
 msgstr "Юпікські мови"
 
-# ZM
-# fuzzy
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Ямайка"
-
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Занде"
-
 #. language code: zap
 #: zypp/LanguageCode.cc:1139
 msgid "Zapotec"
@@ -4816,242 +4399,662 @@ msgstr "Зенага"
 msgid "Zhuang"
 msgstr "Жуанг"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Зімбабве"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Занде"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Зулуська"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Зуні"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Спроба імпорту неіснуючого ключа %s у сховище ключів %s"
+
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Не вдалось вилучити ключ."
+
+#: zypp/KeyRing.cc:575
+#, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Файл підпису \"%s\" не знайдено"
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Неможливо надати файл \"%s\" зі сховища \"%s\""
+
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "В сховищі немає url."
+
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "Модуль служби не підтримує зміну атрибута."
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Пакунок %s, здається, пошкоджено під час перенесення. Повторити спробу?"
+
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "Невдала перевірка підпису"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "Не вдалося надати пакунок %s. Повторити спробу?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "перевірка applydeltarpm зазнала невдачі."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "застосування дельти rpm зазнало невдачі."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"Керування системою заблоковано програмою з pid %d (%s).\n"
+"Закрийте цю програму перш ніж спробувати знову."
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s не належить до сховища distupgrade (оновлення дистрибутиву)"
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s має слабшу архітектуру"
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "проблема з встановленим пакунком %s"
+
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "конфлікт запитів"
+
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "якась проблема залежностей"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "жоден з пакунків не надає потрібного %s"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Чи ви увімкнули всі запитані сховища?"
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "пакунок %s не існує"
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "непідтримуваний запит"
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s надано системою і його неможливо прибрати."
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s не можливо встановити"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "жоден з пакунків не надає %s, потрібного %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "неможливо встановити одночасно %s і %s"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s конфліктує з %s, що надається %s"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s робить застарілим %s, що надається %s"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "встановлений пакунок %s робить застарілим %s, який надається %s"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "Розв’язок %s конфліктує з %s, що у ньому міститься"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s потребує %s, але цю залежність неможливо вдовольнити"
+
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "вилучені залежності: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"залежності без можливості встановлення: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "залежності без можливості встановлення: "
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "усунути блокування, щоб дозволити вилучення %s"
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "не встановлювати %s"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "залишити %s"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "усунути блокування, щоб дозволити встановлення %s"
+
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Цей запит пошкодить вашу систему!"
+
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "ігнорувати попередження про пошкодження системи"
+
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "не питати про встановлення розв’язувача, що надає %s"
+
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "не питати про вилучення всіх розв’язувачів, що надаються %s"
+
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "не встановлювати ранішу версію %s"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Зулуська"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "Залишити %s, незважаючи на слабшу архітектуру"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Ð\97Ñ\83нÑ\96"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "Ð\92Ñ\81Ñ\82ановиÑ\82и %s, Ð½ÐµÐ·Ð²Ð°Ð¶Ð°Ñ\8eÑ\87и Ð½Ð° Ñ\82е, Ñ\89о Ñ\86е Ð·Ð¼Ñ\96ниÑ\82Ñ\8c Ð°Ñ\80Ñ\85Ñ\96Ñ\82екÑ\82Ñ\83Ñ\80Ñ\83"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "перевірка applydeltarpm зазнала невдачі."
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "Залишити застарілі %s"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "застосування дельти rpm зазнало невдачі."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "Встановити %s з невключеного сховища"
+
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "повернення замість %s %s"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr "зміна архітектури з %s на %s"
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"встановити %s (зі зміною виробника)\n"
+"  %s  -->  %s"
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "заміна %s на %s"
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "вилучення %s"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "зламати %s, ігноруючи деякі залежності"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "взагалі нехтувати деякими залежностями"
+
+#: zypp/parser/RepoindexFileReader.cc:197
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "неможливо Ð²Ñ\81Ñ\82ановиÑ\82и Ð¾Ð´Ð½Ð¾Ñ\87аÑ\81но %s Ñ\96 %s"
+msgid "Required attribute '%s' is missing."
+msgstr "Ð\9dемаÑ\94 Ð¿Ð¾Ñ\82Ñ\80Ñ\96бного Ð°Ñ\82Ñ\80ибÑ\83Ñ\82а Â«%s»."
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "конфлікт запитів"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Потрібний один або двоє атрибутів «%s» та «'%s»."
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/base/InterProcessMutex.cc:83
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "створено резервну копію %s"
+msgid "Can't open lock file: %s"
+msgstr "Не вдалося відкрити файл замка: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Цю дію вже запущено іншою програмою."
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Історія:"
+
+#: zypp/base/StrMatcher.cc:152
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "вилÑ\83Ñ\87еннÑ\8f %s"
+msgid "Unknown match mode '%s'"
+msgstr "Ð\9dевÑ\96домий Ñ\80ежим Ð·Ð±Ñ\96гÑ\83 Â«%s»"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "вилучені залежності: "
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Невідомий режим збігу «%s» для шаблона «%s»"
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "не Ð¿Ð¸Ñ\82аÑ\82и Ð¿Ñ\80о Ð²Ð¸Ð»Ñ\83Ñ\87еннÑ\8f Ð²Ñ\81Ñ\96Ñ\85 Ñ\80озвâ\80\99Ñ\8fзÑ\83ваÑ\87Ñ\96в, Ñ\89о Ð½Ð°Ð´Ð°Ñ\8eÑ\82Ñ\8cÑ\81Ñ\8f %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Ð\9dекоÑ\80екÑ\82ний Ñ\84оÑ\80малÑ\8cний Ð²Ð¸Ñ\80аз \"%s\": regcomp Ð¿Ð¾Ð²ÐµÑ\80нÑ\83ла %d"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "не Ð¿Ð¸Ñ\82аÑ\82и Ð¿Ñ\80о Ð²Ñ\81Ñ\82ановленнÑ\8f Ñ\80озвâ\80\99Ñ\8fзÑ\83ваÑ\87а, Ñ\89о Ð½Ð°Ð´Ð°Ñ\94 %s"
+msgid "Invalid regular expression '%s'"
+msgstr "Ð\9dеÑ\87инний Ñ\84оÑ\80малÑ\8cний Ð²Ð¸Ñ\80аз Â«%s»"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "Встановіть спершу пакунок 'lsof'."
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "не Ð²Ñ\81Ñ\82ановлÑ\8eваÑ\82и %s"
+msgid "Authentication required for '%s'"
+msgstr "Ð\9fоÑ\82Ñ\80Ñ\96бна Ð°Ð²Ñ\82енÑ\82иÑ\84Ñ\96каÑ\86Ñ\96Ñ\8f Ð´Ð»Ñ\8f \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "не Ð²Ñ\81Ñ\82ановлÑ\8eваÑ\82и Ñ\80анÑ\96Ñ\88Ñ\83 Ð²ÐµÑ\80Ñ\81Ñ\96Ñ\8e %s"
+msgid "Failed to mount %s on %s"
+msgstr "Ð\9dе Ð²Ð´Ð°Ð»Ð¾Ñ\81Ñ\8f Ð·Ð¼Ð¾Ð½Ñ\82Ñ\83ваÑ\82и %s Ñ\83 %s"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "повеÑ\80неннÑ\8f Ð·Ð°Ð¼Ñ\96Ñ\81Ñ\82Ñ\8c %s %s"
+msgid "Failed to unmount %s"
+msgstr "Ð\9dе Ð²Ð´Ð°Ð»Ð¾Ñ\81Ñ\8f Ð²Ñ\96дмонÑ\82Ñ\83ваÑ\82и %s"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "взагалі нехтувати деякими залежностями"
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
+msgstr "Некоректна назва файла: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "ігнорувати попередження про пошкодження системи"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Носій не було відкрито під час спроби виконання дії \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"встановити %s (зі зміною виробника)\n"
-"  %s  -->  %s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Файл \"%s\" не знайдено на носії \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "Ð\92Ñ\81Ñ\82ановиÑ\82и %s, Ð½ÐµÐ·Ð²Ð°Ð¶Ð°Ñ\8eÑ\87и Ð½Ð° Ñ\82е, Ñ\89о Ñ\86е Ð·Ð¼Ñ\96ниÑ\82Ñ\8c Ð°Ñ\80Ñ\85Ñ\96Ñ\82екÑ\82Ñ\83Ñ\80Ñ\83"
+msgid "Cannot write file '%s'."
+msgstr "Ð\9dеможливо Ð·Ð°Ð¿Ð¸Ñ\81аÑ\82и Ñ\83 Ñ\84айл \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Носій не з’єднано"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Некоректна точка з’єднання носія"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "Ð\92Ñ\81Ñ\82ановиÑ\82и %s Ð· Ð½ÐµÐ²ÐºÐ»Ñ\8eÑ\87еного Ñ\81Ñ\85овиÑ\89а"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "Ð\97апоÑ\87аÑ\82кÑ\83ваннÑ\8f Ð·Ð°Ð²Ð°Ð½Ñ\82аженнÑ\8f (curl) Ð·Ð°Ð·Ð½Ð°Ð»Ð¾ Ð½ÐµÐ²Ð´Ð°Ñ\87Ñ\96 Ð´Ð»Ñ\8f \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "вÑ\81Ñ\82ановлений Ð¿Ð°ÐºÑ\83нок %s Ñ\80обиÑ\82Ñ\8c Ð·Ð°Ñ\81Ñ\82аÑ\80Ñ\96лим %s, Ñ\8fкий Ð½Ð°Ð´Ð°Ñ\94Ñ\82Ñ\8cÑ\81Ñ\8f %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "СиÑ\81Ñ\82емне Ð²Ð¸ÐºÐ»Ñ\8eÑ\87еннÑ\8f \"%s\" Ð½Ð° Ð½Ð¾Ñ\81Ñ\96Ñ\97 \"%s\"."
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "нечинний"
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Шлях \"%s\" на носії \"%s\" не є файлом."
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "залиÑ\88иÑ\82и %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "ШлÑ\8fÑ\85 \"%s\" Ð½Ð° Ð½Ð¾Ñ\81Ñ\96Ñ\97 \"%s\" Ð½Ðµ Ñ\94 ÐºÐ°Ñ\82алогом."
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "Помилковий URI"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Порожня назва вузла у URI"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Порожня файлова система за URI"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Порожнє місце призначення за URI"
+
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "Залишити %s, незважаючи на слабшу архітектуру"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Непідтримувана схема URI у \"%s\"."
+
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Операція не підтримується носієм"
+
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"Помилка завантаження (curl) для \"%s\":\n"
+"Код помилки: %s\n"
+"Повідомлення про помилку: %s\n"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
+#, c-format, boost-format
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"Під час встановлення параметрів завантаження (curl) для \"%s\" сталася "
+"помилка:"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "Ð\97алиÑ\88иÑ\82и Ð·Ð°Ñ\81Ñ\82аÑ\80Ñ\96лÑ\96 %s"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "Ð\9fÑ\80иÑ\81Ñ\82Ñ\80Ñ\96й Ð½Ð¾Ñ\81Ñ\96Ñ\8f \"%s\" Ð½Ðµ Ð¼Ñ\96Ñ\81Ñ\82иÑ\82Ñ\8c Ð±Ð°Ð¶Ð°Ð½Ð¾Ð³Ð¾ Ð½Ð¾Ñ\81Ñ\96Ñ\8f"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: неможливо створити контекст libhal"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "Носій \"%s\" використовується іншою копією програми"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: неможливо встановити з'єднання з dbus"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Не вдається виштовхнути жодного носія"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "жоден Ð· Ð¿Ð°ÐºÑ\83нкÑ\96в Ð½Ðµ Ð½Ð°Ð´Ð°Ñ\94 %s, Ð¿Ð¾Ñ\82Ñ\80Ñ\96бного %s"
+msgid "Cannot eject media '%s'"
+msgstr "Ð\9dе Ð²Ð´Ð°Ñ\94Ñ\82Ñ\8cÑ\81Ñ\8f Ð²Ð¸Ñ\88Ñ\82овÑ\85нÑ\83Ñ\82и Ð½Ð¾Ñ\81Ñ\96Ñ\8f \"%s\""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "жоден Ð· Ð¿Ð°ÐºÑ\83нкÑ\96в Ð½Ðµ Ð½Ð°Ð´Ð°Ñ\94 Ð¿Ð¾Ñ\82Ñ\80Ñ\96бного %s"
+msgid "Permission to access '%s' denied."
+msgstr "Ð\94озвÑ\96л Ð½Ð° Ð´Ð¾Ñ\81Ñ\82Ñ\83п Ð´Ð¾ \"%s\" Ð·Ð°Ð±Ð¾Ñ\80онено."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "пакÑ\83нок %s Ð½Ðµ Ñ\96Ñ\81нÑ\83Ñ\94"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "Ð\9fеÑ\80евиÑ\89ено Ñ\87аÑ\81 Ð¾Ñ\87Ñ\96кÑ\83ваннÑ\8f Ð¿Ñ\80и Ñ\81пÑ\80обÑ\96 Ð´Ð¾Ñ\81Ñ\82Ñ\83пÑ\83 Ð´Ð¾ '%s'."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "пÑ\80облема Ð· Ð²Ñ\81Ñ\82ановленим Ð¿Ð°ÐºÑ\83нком %s"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Ð\90дÑ\80еÑ\81а Â«%s» Ñ\82имÑ\87аÑ\81ово Ð½ÐµÐ´Ð¾Ñ\81Ñ\82Ñ\83пна."
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "усунути блокування, щоб дозволити встановлення %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
+" Проблема з сертифікатом SSL, перевірте чи все гаразд з сертифікатом CA для "
+"\"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "усунути блокування, щоб дозволити вилучення %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr "Неможливо знайти наявний пристрій для монтування штампа файла з «%s»"
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "замÑ\96на %s Ð½Ð° %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Ð\9cеÑ\82од Ð°Ð²Ñ\82енÑ\82иÑ\84Ñ\96каÑ\86Ñ\96Ñ\97 HTTP \"%s\", Ñ\8fкий Ð½Ðµ Ð¿Ñ\96дÑ\82Ñ\80имÑ\83Ñ\94Ñ\82Ñ\8cÑ\81Ñ\8f"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm створила %s як %s, але було неможливо виявити різницю"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
+"Відвідайте центр покупця Novel для перевірки терміну дії вашої реєстрації."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Неможливо створити sat-pool."
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm створили %s як %s.\n"
-"Ось перші 25 рядків розбіжностей:\n"
+"Файл %1%\n"
+"з пакунку\n"
+"%2%\n"
+"конфліктує з файлом пакунку\n"
+"%3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm збережено %s як %s, але було неможливо виявити різницю"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Файл %1%\n"
+"з пакунку\n"
+"%2%\n"
+"конфліктує з файлом пакунку\n"
+"%3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm збережено %s як %s.\n"
-"Ось перші 25 рядків розбіжностей:\n"
+"Файл %1%\n"
+"з пакунку\n"
+"%2%\n"
+"конфліктує з файлом пакунку\n"
+"%3%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "Розв’язок %s конфліктує з %s, що у ньому міститься"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"Файл %1%\n"
+"з пакунку\n"
+"%2%\n"
+"конфліктує з файлом пакунку\n"
+"%3%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "якась проблема залежностей"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Файл %1%\n"
+"з пакунку\n"
+"%2%\n"
+"конфліктує з файлом\n"
+"%3%\n"
+" пакунку\n"
+"%4%"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "залежності без можливості встановлення: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Файл %1%\n"
+"з пакунку\n"
+"%2%\n"
+"конфліктує з файлом\n"
+"%3%\n"
+" пакунку\n"
+"%4%"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "невідомий"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"Файл %1%\n"
+"з пакунку\n"
+"%2%\n"
+"конфліктує з файлом\n"
+"%3%\n"
+"з пакунку\n"
+"%4%"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "не підтримується"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"Файл %1%\n"
+"з пакунку\n"
+"%2%\n"
+"конфліктує з файлом\n"
+"%3%\n"
+"з пакунку\n"
+"%4%"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "непідтримуваний запит"
+#~ msgid "do not keep %s installed"
+#~ msgstr "не залишати встановленим %s"
 
 #~ msgid "Cannot create public key %s from %s keyring to file %s"
 #~ msgstr ""
@@ -5088,6 +5091,3 @@ msgstr "непідтримуваний запит"
 
 #~ msgid "Serbia and Montenegro"
 #~ msgstr "Сербія і Чорногорія"
-
-#~ msgid "do not keep %s installed"
-#~ msgstr "не залишати встановленим %s"
index ab4bb0d..63d22e0 100644 (file)
--- a/po/vi.po
+++ b/po/vi.po
@@ -18,831 +18,812 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
 msgstr ""
 
-#: zypp/media/MediaException.cc:223
-#, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:310
-msgid " executed"
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:332
-#, fuzzy
-msgid " execution failed"
-msgstr "DBI Execution failed: %s"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
 msgstr ""
 
-#. translators: We may find the same script content in files with different names.
-#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
-#. message for a log file. Preferably start translation with "%s"
-#: zypp/target/TargetImpl.cc:449
-#, c-format, boost-format
-msgid "%s already executed as %s)"
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
+#: zypp/Dep.cc:96
+msgid "Provides"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
+#: zypp/Dep.cc:98
+msgid "Requires"
 msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
+#: zypp/Dep.cc:101
+msgid "Recommends"
 msgstr ""
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
+#: zypp/Dep.cc:102
+msgid "Suggests"
 msgstr ""
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
+#: zypp/Dep.cc:103
+msgid "Enhances"
 msgstr ""
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
+#: zypp/Dep.cc:104
+msgid "Supplements"
 msgstr ""
 
-#: zypp/RepoManager.cc:1611
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#: zypp/target/TargetImpl.cc:310
+msgid " executed"
 msgstr ""
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr ""
+#: zypp/target/TargetImpl.cc:332
+#, fuzzy
+msgid " execution failed"
+msgstr "DBI Execution failed: %s"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
+#. translators: We may find the same script content in files with different names.
+#. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
+#. message for a log file. Preferably start translation with "%s"
+#: zypp/target/TargetImpl.cc:449
+#, c-format, boost-format
+msgid "%s already executed as %s)"
 msgstr ""
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
 msgstr ""
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
 msgstr ""
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
 msgstr ""
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
 msgstr ""
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
+#: zypp/target/hal/HalContext.cc:117
+#, fuzzy
+msgid "HalContext not connected"
+msgstr "chưa kết nối"
+
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
 msgstr ""
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
 msgstr ""
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
 msgstr ""
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
 msgstr ""
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
 msgstr ""
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
 msgstr ""
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
 msgstr ""
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
 msgstr ""
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
 msgstr ""
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
 msgstr ""
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
 msgstr ""
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
 msgstr ""
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
 msgstr ""
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
 msgstr ""
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
 msgstr ""
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
 msgstr ""
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
 msgstr ""
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
 msgstr ""
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
 msgstr ""
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
 msgstr ""
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr ""
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
 msgstr ""
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
 msgstr ""
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
 msgstr ""
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr ""
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Couldn't open file: %s."
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
 msgstr ""
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Couldn't open file: %s."
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
 msgstr ""
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
 msgstr ""
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
 msgstr ""
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
 msgstr ""
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
 msgstr ""
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
 msgstr ""
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#: zypp/RepoManager.cc:1611
 #, c-format, boost-format
-msgid "Authentication required for '%s'"
+msgid "Adding repository '%s'"
 msgstr ""
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
 msgstr ""
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
 msgstr ""
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
 msgstr ""
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Couldn't open file: %s."
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
 msgstr ""
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
 msgstr ""
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
 msgstr ""
 
-#: zypp/media/MediaException.cc:47
+#: zypp/url/UrlBase.cc:180
 #, c-format, boost-format
-msgid "Bad file name: %s"
+msgid "Invalid %s component"
 msgstr ""
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
 msgstr ""
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
 msgstr ""
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
 msgstr ""
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
 msgstr ""
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
 msgstr ""
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
 msgstr ""
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
 msgstr ""
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
 msgstr ""
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
 msgstr ""
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
 msgstr ""
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
 msgstr ""
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
 msgstr ""
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
 msgstr ""
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
 msgstr ""
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
 msgstr ""
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
 msgstr ""
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr ""
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr ""
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Couldn't open file: %s."
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
 msgstr ""
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
 msgstr ""
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr ""
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Couldn't open file: %s."
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
 msgstr ""
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
 msgstr ""
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
 msgstr ""
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
 msgstr ""
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr ""
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "Lệnh thực hiện khi kết nối"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
 msgstr ""
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
 msgstr ""
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
 msgstr ""
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
 msgstr ""
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
 msgstr ""
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
 msgstr ""
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
 msgstr ""
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
 msgstr ""
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
 msgstr ""
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
 msgstr ""
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
 msgstr ""
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
 msgstr ""
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
 msgstr ""
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
 msgstr ""
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
 msgstr ""
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
 msgstr ""
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
 msgstr ""
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
 msgstr ""
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
 msgstr ""
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
 msgstr ""
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
 msgstr ""
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
 msgstr ""
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
 msgstr ""
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
 msgstr ""
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
 msgstr ""
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
 msgstr ""
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
 msgstr ""
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
 msgstr ""
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
 msgstr ""
 
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
 msgstr ""
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Couldn't open file: %s."
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
 msgstr ""
 
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Couldn't open file: %s."
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
 msgstr ""
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
 msgstr ""
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Couldn't open file: %s."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
 msgstr ""
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
 msgstr ""
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
 msgstr ""
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
 msgstr ""
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
 msgstr ""
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
 msgstr ""
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
 msgstr ""
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
 msgstr ""
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Couldn't open file: %s."
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr ""
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
 msgstr ""
 
-#. language code: car
-#: zypp/LanguageCode.cc:305
-msgid "Carib"
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
 msgstr ""
 
-#. language code: cat ca
-#: zypp/LanguageCode.cc:307
-msgid "Catalan"
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
 msgstr ""
 
-#. language code: cau
-#: zypp/LanguageCode.cc:309
-msgid "Caucasian (Other)"
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
 msgstr ""
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
 msgstr ""
 
-#. language code: ceb
-#: zypp/LanguageCode.cc:311
-msgid "Cebuano"
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
 msgstr ""
 
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
 msgstr ""
 
 #. :COD:180:
@@ -850,61 +831,19 @@ msgstr ""
 msgid "Central African Republic"
 msgstr ""
 
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
 msgstr ""
 
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr ""
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr ""
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr ""
-
-#. language code: cha ch
-#: zypp/LanguageCode.cc:315
-msgid "Chamorro"
-msgstr ""
-
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr ""
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr ""
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr ""
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr ""
-
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
 msgstr ""
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
 msgstr ""
 
 #. :COK:184:
@@ -912,29 +851,34 @@ msgstr ""
 msgid "Chile"
 msgstr ""
 
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr ""
+
 #. :CMR:120:
 #: zypp/CountryCode.cc:204
 msgid "China"
 msgstr ""
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
 msgstr ""
 
-#. language code: chn
-#: zypp/LanguageCode.cc:331
-msgid "Chinook Jargon"
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
 msgstr ""
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
 msgstr ""
 
-#. language code: cho
-#: zypp/LanguageCode.cc:333
-msgid "Choctaw"
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
 msgstr ""
 
 #. :CPV:132:
@@ -942,2781 +886,2840 @@ msgstr ""
 msgid "Christmas Island"
 msgstr ""
 
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
 msgstr ""
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
 msgstr ""
 
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
 msgstr ""
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
 msgstr ""
 
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
 msgstr ""
 
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
 msgstr ""
 
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "Lệnh thực hiện khi kết nối"
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr ""
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
 msgstr ""
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
 msgstr ""
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
 msgstr ""
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
 msgstr ""
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
 msgstr ""
 
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
 msgstr ""
 
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
 msgstr ""
 
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
 msgstr ""
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
 msgstr ""
 
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
 msgstr ""
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
 msgstr ""
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
 msgstr ""
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
 msgstr ""
 
-#. language code: cpe
-#: zypp/LanguageCode.cc:353
-msgid "Creoles and Pidgins, English-Based (Other)"
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
 msgstr ""
 
-#. language code: cpf
-#: zypp/LanguageCode.cc:355
-msgid "Creoles and Pidgins, French-Based (Other)"
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
 msgstr ""
 
-#. language code: cpp
-#: zypp/LanguageCode.cc:357
-msgid "Creoles and Pidgins, Portuguese-Based (Other)"
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
 msgstr ""
 
-#. language code: crh
-#: zypp/LanguageCode.cc:361
-msgid "Crimean Tatar"
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
 msgstr ""
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
 msgstr ""
 
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
 msgstr ""
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
 msgstr ""
 
-#. language code: cus
-#: zypp/LanguageCode.cc:367
-msgid "Cushitic (Other)"
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
 msgstr ""
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
 msgstr ""
 
-#. language code: cze ces cs
-#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
-msgid "Czech"
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
 msgstr ""
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
 msgstr ""
 
-#. language code: dak
-#: zypp/LanguageCode.cc:373
-msgid "Dakota"
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
 msgstr ""
 
-#. language code: dan da
-#: zypp/LanguageCode.cc:375
-msgid "Danish"
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
 msgstr ""
 
-#. language code: dar
-#: zypp/LanguageCode.cc:377
-msgid "Dargwa"
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
 msgstr ""
 
-#. language code: day
-#: zypp/LanguageCode.cc:379
-msgid "Dayak"
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
 msgstr ""
 
-#. language code: del
-#: zypp/LanguageCode.cc:381
-msgid "Delaware"
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
 msgstr ""
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
 msgstr ""
 
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
 msgstr ""
 
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
 msgstr ""
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
 msgstr ""
 
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
 msgstr ""
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
 msgstr ""
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
 msgstr ""
 
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
 msgstr ""
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
 msgstr ""
 
-#. language code: dra
-#: zypp/LanguageCode.cc:393
-msgid "Dravidian (Other)"
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
 msgstr ""
 
-#. language code: dua
-#: zypp/LanguageCode.cc:397
-msgid "Duala"
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
 msgstr ""
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
 msgstr ""
 
-#. language code: dut nld nl
-#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
-msgid "Dutch"
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
 msgstr ""
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
+#: zypp/CountryCode.cc:261
+msgid "India"
 msgstr ""
 
-#. language code: dyu
-#: zypp/LanguageCode.cc:405
-msgid "Dyula"
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
 msgstr ""
 
-#. language code: dzo dz
-#: zypp/LanguageCode.cc:407
-msgid "Dzongkha"
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
 msgstr ""
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
 msgstr ""
 
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
 msgstr ""
 
-#. language code: efi
-#: zypp/LanguageCode.cc:409
-msgid "Efik"
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
 msgstr ""
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
 msgstr ""
 
-#. language code: egy
-#: zypp/LanguageCode.cc:411
-msgid "Egyptian (Ancient)"
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
 msgstr ""
 
-#. language code: eka
-#: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
 msgstr ""
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
 msgstr ""
 
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
 msgstr ""
 
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
 msgstr ""
 
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
 msgstr ""
 
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
 msgstr ""
 
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
 msgstr ""
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
 msgstr ""
 
-#: zypp/Dep.cc:103
-msgid "Enhances"
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
 msgstr ""
 
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
 msgstr ""
 
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
 msgstr ""
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
 msgstr ""
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
 msgstr ""
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
 msgstr ""
 
-#. language code: epo eo
-#: zypp/LanguageCode.cc:421
-msgid "Esperanto"
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
 msgstr ""
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
 msgstr ""
 
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
 msgstr ""
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
 msgstr ""
 
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
 msgstr ""
 
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
 msgstr ""
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr ""
 
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Failed to parse: %s."
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr ""
 
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
 msgstr ""
 
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Failed to parse: %s."
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr ""
 
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
 msgstr ""
 
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
 msgstr ""
 
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Failed to parse: %s."
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr ""
 
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
 msgstr ""
 
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
 msgstr ""
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
 msgstr ""
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
 msgstr ""
 
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
 msgstr ""
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
 msgstr ""
 
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
 msgstr ""
 
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr ""
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr ""
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr ""
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr ""
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr ""
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr ""
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr ""
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr ""
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr ""
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr ""
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr ""
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr ""
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr ""
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr ""
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr ""
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr ""
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr ""
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr ""
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr ""
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr ""
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr ""
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
 msgstr ""
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
 msgstr ""
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
 msgstr ""
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
 msgstr ""
 
-#. language code: fil
-#: zypp/LanguageCode.cc:437
-msgid "Filipino"
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
 msgstr ""
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
 msgstr ""
 
-#. language code: fin fi
-#: zypp/LanguageCode.cc:439
-msgid "Finnish"
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
 msgstr ""
 
-#. language code: fiu
-#: zypp/LanguageCode.cc:441
-msgid "Finno-Ugrian (Other)"
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
 msgstr ""
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
 msgstr ""
 
-#. language code: fon
-#: zypp/LanguageCode.cc:443
-msgid "Fon"
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
 msgstr ""
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
 msgstr ""
 
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
 msgstr ""
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
 msgstr ""
 
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
 msgstr ""
 
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
 msgstr ""
 
-#. language code: frm
-#: zypp/LanguageCode.cc:449
-msgid "French, Middle (ca.1400-1600)"
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
 msgstr ""
 
-#. language code: fro
-#: zypp/LanguageCode.cc:451
-msgid "French, Old (842-ca.1400)"
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
 msgstr ""
 
-#. language code: fry fy
-#: zypp/LanguageCode.cc:453
-msgid "Frisian"
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
 msgstr ""
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
 msgstr ""
 
-#. language code: ful ff
-#: zypp/LanguageCode.cc:455
-msgid "Fulah"
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
 msgstr ""
 
-#. language code: gaa
-#: zypp/LanguageCode.cc:459
-msgid "Ga"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
 msgstr ""
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
 msgstr ""
 
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
 msgstr ""
 
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
 msgstr ""
 
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
 msgstr ""
 
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
 msgstr ""
 
-#. language code: gay
-#: zypp/LanguageCode.cc:461
-msgid "Gayo"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
 msgstr ""
 
-#. language code: gba
-#: zypp/LanguageCode.cc:463
-msgid "Gbaya"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
 msgstr ""
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
 msgstr ""
 
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
 msgstr ""
 
-#. language code: geo kat ka
-#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
-msgid "Georgian"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
 msgstr ""
 
-#. language code: ger deu de
-#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
-msgid "German"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
 msgstr ""
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
 msgstr ""
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
 msgstr ""
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
 msgstr ""
 
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
 msgstr ""
 
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
 msgstr ""
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
 msgstr ""
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr ""
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr ""
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
 msgstr ""
 
-#. language code: gon
-#: zypp/LanguageCode.cc:491
-msgid "Gondi"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
 msgstr ""
 
-#. language code: gor
-#: zypp/LanguageCode.cc:493
-msgid "Gorontalo"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
 msgstr ""
 
-#. language code: got
-#: zypp/LanguageCode.cc:495
-msgid "Gothic"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
 msgstr ""
 
-#. language code: grb
-#: zypp/LanguageCode.cc:497
-msgid "Grebo"
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
 msgstr ""
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
 msgstr ""
 
-#. language code: grc
-#: zypp/LanguageCode.cc:499
-msgid "Greek, Ancient (to 1453)"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
 msgstr ""
 
-#. language code: gre ell el
-#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
-msgid "Greek, Modern (1453-)"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
 msgstr ""
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
 msgstr ""
 
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
 msgstr ""
 
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
 msgstr ""
 
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
 msgstr ""
 
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
 msgstr ""
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
 msgstr ""
 
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
 msgstr ""
 
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
 msgstr ""
 
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
 msgstr ""
 
-#. language code: guj gu
-#: zypp/LanguageCode.cc:507
-msgid "Gujarati"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
 msgstr ""
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
 msgstr ""
 
-#. language code: gwi
-#: zypp/LanguageCode.cc:509
-msgid "Gwich'in"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
 msgstr ""
 
-#. language code: hai
-#: zypp/LanguageCode.cc:511
-msgid "Haida"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
 msgstr ""
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
 msgstr ""
 
-#. language code: hat ht
-#: zypp/LanguageCode.cc:513
-msgid "Haitian"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
 msgstr ""
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:117
-#, fuzzy
-msgid "HalContext not connected"
-msgstr "chưa kết nối"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
 msgstr ""
 
-#. language code: hau ha
-#: zypp/LanguageCode.cc:515
-msgid "Hausa"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
 msgstr ""
 
-#. language code: haw
-#: zypp/LanguageCode.cc:517
-msgid "Hawaiian"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
 msgstr ""
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
 msgstr ""
 
-#. language code: heb he
-#: zypp/LanguageCode.cc:519
-msgid "Hebrew"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
 msgstr ""
 
-#. language code: her hz
-#: zypp/LanguageCode.cc:521
-msgid "Herero"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
 msgstr ""
 
-#. language code: hil
-#: zypp/LanguageCode.cc:523
-msgid "Hiligaynon"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
 msgstr ""
 
-#. language code: him
-#: zypp/LanguageCode.cc:525
-msgid "Himachali"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
 msgstr ""
 
-#. language code: hin hi
-#: zypp/LanguageCode.cc:527
-msgid "Hindi"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
 msgstr ""
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
 msgstr ""
 
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
 msgstr ""
 
-#. language code: hit
-#: zypp/LanguageCode.cc:529
-msgid "Hittite"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
 msgstr ""
 
-#. language code: hmn
-#: zypp/LanguageCode.cc:531
-msgid "Hmong"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
 msgstr ""
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
 msgstr ""
 
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
 msgstr ""
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
 msgstr ""
 
-#. language code: hun hu
-#: zypp/LanguageCode.cc:537
-msgid "Hungarian"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
 msgstr ""
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
 msgstr ""
 
-#. language code: hup
-#: zypp/LanguageCode.cc:539
-msgid "Hupa"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
 msgstr ""
 
-#. language code: iba
-#: zypp/LanguageCode.cc:541
-msgid "Iban"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
 msgstr ""
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
 msgstr ""
 
-#. language code: ice isl is
-#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
-msgid "Icelandic"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
 msgstr ""
 
-#. language code: ido io
-#: zypp/LanguageCode.cc:549
-msgid "Ido"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
 msgstr ""
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
 msgstr ""
 
-#. language code: ijo
-#: zypp/LanguageCode.cc:553
-msgid "Ijo"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
 msgstr ""
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
 msgstr ""
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
 msgstr ""
 
-#: zypp/CountryCode.cc:261
-msgid "India"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
 msgstr ""
 
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
 msgstr ""
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
 msgstr ""
 
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
 msgstr ""
 
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
 msgstr ""
 
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
 msgstr ""
 
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
 msgstr ""
 
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
 msgstr ""
 
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
 msgstr ""
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
 msgstr ""
 
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
 msgstr ""
 
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
 msgstr ""
 
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
 msgstr ""
 
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
 msgstr ""
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
 msgstr ""
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
 msgstr ""
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
 msgstr ""
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
 msgstr ""
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
 msgstr ""
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
 msgstr ""
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
 msgstr ""
 
-#. language code: iro
-#: zypp/LanguageCode.cc:575
-msgid "Iroquoian Languages"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
 msgstr ""
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
 msgstr ""
 
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
 msgstr ""
 
-#. language code: ita it
-#: zypp/LanguageCode.cc:577
-msgid "Italian"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
 msgstr ""
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
 msgstr ""
 
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
 msgstr ""
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
 msgstr ""
 
-#. language code: jpn ja
-#: zypp/LanguageCode.cc:583
-msgid "Japanese"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
 msgstr ""
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
 msgstr ""
 
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
 msgstr ""
 
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
 msgstr ""
 
-#. language code: jrb
-#: zypp/LanguageCode.cc:587
-msgid "Judeo-Arabic"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
 msgstr ""
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
+#. language code: car
+#: zypp/LanguageCode.cc:305
+msgid "Carib"
 msgstr ""
 
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
+#. language code: cat ca
+#: zypp/LanguageCode.cc:307
+msgid "Catalan"
 msgstr ""
 
-#. language code: kab
-#: zypp/LanguageCode.cc:591
-msgid "Kabyle"
+#. language code: cau
+#: zypp/LanguageCode.cc:309
+msgid "Caucasian (Other)"
 msgstr ""
 
-#. language code: kac
-#: zypp/LanguageCode.cc:593
-msgid "Kachin"
+#. language code: ceb
+#: zypp/LanguageCode.cc:311
+msgid "Cebuano"
 msgstr ""
 
-#. language code: kal kl
-#: zypp/LanguageCode.cc:595
-msgid "Kalaallisut"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
 msgstr ""
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
+#. language code: cha ch
+#: zypp/LanguageCode.cc:315
+msgid "Chamorro"
 msgstr ""
 
-#. language code: kam
-#: zypp/LanguageCode.cc:597
-msgid "Kamba"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
 msgstr ""
 
-#. language code: kan kn
-#: zypp/LanguageCode.cc:599
-msgid "Kannada"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
 msgstr ""
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
 msgstr ""
 
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
 msgstr ""
 
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
 msgstr ""
 
-#. language code: kar
-#: zypp/LanguageCode.cc:601
-msgid "Karen"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
 msgstr ""
 
-#. language code: kas ks
-#: zypp/LanguageCode.cc:603
-msgid "Kashmiri"
+#. language code: chn
+#: zypp/LanguageCode.cc:331
+msgid "Chinook Jargon"
 msgstr ""
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
+#. language code: cho
+#: zypp/LanguageCode.cc:333
+msgid "Choctaw"
 msgstr ""
 
-#. language code: kaw
-#: zypp/LanguageCode.cc:607
-msgid "Kawi"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
 msgstr ""
 
-#. language code: kaz kk
-#: zypp/LanguageCode.cc:609
-msgid "Kazakh"
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
 msgstr ""
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
 msgstr ""
 
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
 msgstr ""
 
-#. language code: kha
-#: zypp/LanguageCode.cc:613
-msgid "Khasi"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
 msgstr ""
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
 msgstr ""
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
 msgstr ""
 
-#. language code: kho
-#: zypp/LanguageCode.cc:619
-msgid "Khotanese"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
 msgstr ""
 
-#. language code: kik ki
-#: zypp/LanguageCode.cc:621
-msgid "Kikuyu"
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
 msgstr ""
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
+#. language code: cpe
+#: zypp/LanguageCode.cc:353
+msgid "Creoles and Pidgins, English-Based (Other)"
 msgstr ""
 
-#. language code: kin rw
-#: zypp/LanguageCode.cc:623
-msgid "Kinyarwanda"
+#. language code: cpf
+#: zypp/LanguageCode.cc:355
+msgid "Creoles and Pidgins, French-Based (Other)"
 msgstr ""
 
-#. language code: kir ky
-#: zypp/LanguageCode.cc:625
-msgid "Kirghiz"
+#. language code: cpp
+#: zypp/LanguageCode.cc:357
+msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr ""
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
 msgstr ""
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
+#. language code: crh
+#: zypp/LanguageCode.cc:361
+msgid "Crimean Tatar"
 msgstr ""
 
-#. language code: kom kv
-#: zypp/LanguageCode.cc:631
-msgid "Komi"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-#. language code: kon kg
-#: zypp/LanguageCode.cc:633
-msgid "Kongo"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
 msgstr ""
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
+#. language code: cus
+#: zypp/LanguageCode.cc:367
+msgid "Cushitic (Other)"
 msgstr ""
 
-#. language code: kor ko
-#: zypp/LanguageCode.cc:635
-msgid "Korean"
+#. language code: cze ces cs
+#: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
+msgid "Czech"
 msgstr ""
 
-#. language code: kos
-#: zypp/LanguageCode.cc:637
-msgid "Kosraean"
+#. language code: dak
+#: zypp/LanguageCode.cc:373
+msgid "Dakota"
 msgstr ""
 
-#. language code: kpe
-#: zypp/LanguageCode.cc:639
-msgid "Kpelle"
+#. language code: dan da
+#: zypp/LanguageCode.cc:375
+msgid "Danish"
 msgstr ""
 
-#. language code: kro
-#: zypp/LanguageCode.cc:643
-msgid "Kru"
+#. language code: dar
+#: zypp/LanguageCode.cc:377
+msgid "Dargwa"
 msgstr ""
 
-#. language code: kua kj
-#: zypp/LanguageCode.cc:647
-msgid "Kuanyama"
+#. language code: day
+#: zypp/LanguageCode.cc:379
+msgid "Dayak"
 msgstr ""
 
-#. language code: kum
-#: zypp/LanguageCode.cc:649
-msgid "Kumyk"
+#. language code: del
+#: zypp/LanguageCode.cc:381
+msgid "Delaware"
 msgstr ""
 
-#. language code: kur ku
-#: zypp/LanguageCode.cc:651
-msgid "Kurdish"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
 msgstr ""
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
 msgstr ""
 
-#. language code: kut
-#: zypp/LanguageCode.cc:653
-msgid "Kutenai"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
 msgstr ""
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
 msgstr ""
 
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
 msgstr ""
 
-#. language code: lad
-#: zypp/LanguageCode.cc:655
-msgid "Ladino"
+#. language code: dra
+#: zypp/LanguageCode.cc:393
+msgid "Dravidian (Other)"
 msgstr ""
 
-#. language code: lah
-#: zypp/LanguageCode.cc:657
-msgid "Lahnda"
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
 msgstr ""
 
-#. language code: lam
-#: zypp/LanguageCode.cc:659
-msgid "Lamba"
+#. language code: dua
+#: zypp/LanguageCode.cc:397
+msgid "Duala"
 msgstr ""
 
-#. language code: lao lo
-#: zypp/LanguageCode.cc:661
-msgid "Lao"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
 msgstr ""
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
+#. language code: dut nld nl
+#: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
+msgid "Dutch"
 msgstr ""
 
-#. language code: lat la
-#: zypp/LanguageCode.cc:663
-msgid "Latin"
+#. language code: dyu
+#: zypp/LanguageCode.cc:405
+msgid "Dyula"
 msgstr ""
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
+#. language code: dzo dz
+#: zypp/LanguageCode.cc:407
+msgid "Dzongkha"
 msgstr ""
 
-#. language code: lav lv
-#: zypp/LanguageCode.cc:665
-msgid "Latvian"
+#. language code: efi
+#: zypp/LanguageCode.cc:409
+msgid "Efik"
 msgstr ""
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
+#. language code: egy
+#: zypp/LanguageCode.cc:411
+msgid "Egyptian (Ancient)"
 msgstr ""
 
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
+#. language code: eka
+#: zypp/LanguageCode.cc:413
+msgid "Ekajuk"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-#. language code: lez
-#: zypp/LanguageCode.cc:667
-msgid "Lezghian"
+#. language code: epo eo
+#: zypp/LanguageCode.cc:421
+msgid "Esperanto"
 msgstr ""
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
 msgstr ""
 
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
 msgstr ""
 
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
 msgstr ""
 
-#. language code: lim li
-#: zypp/LanguageCode.cc:669
-msgid "Limburgan"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
 msgstr ""
 
-#. language code: lin ln
-#: zypp/LanguageCode.cc:671
-msgid "Lingala"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
 msgstr ""
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
 msgstr ""
 
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
-msgid "Lithuanian"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
 msgstr ""
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
+#. language code: fil
+#: zypp/LanguageCode.cc:437
+msgid "Filipino"
 msgstr ""
 
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
+#. language code: fin fi
+#: zypp/LanguageCode.cc:439
+msgid "Finnish"
 msgstr ""
 
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
+#. language code: fiu
+#: zypp/LanguageCode.cc:441
+msgid "Finno-Ugrian (Other)"
 msgstr ""
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
+#. language code: fon
+#: zypp/LanguageCode.cc:443
+msgid "Fon"
 msgstr ""
 
-#. language code: loz
-#: zypp/LanguageCode.cc:677
-msgid "Lozi"
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
 msgstr ""
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
+#. language code: frm
+#: zypp/LanguageCode.cc:449
+msgid "French, Middle (ca.1400-1600)"
 msgstr ""
 
-#. language code: lua
-#: zypp/LanguageCode.cc:681
-msgid "Luba-Lulua"
+#. language code: fro
+#: zypp/LanguageCode.cc:451
+msgid "French, Old (842-ca.1400)"
 msgstr ""
 
-#. language code: lui
-#: zypp/LanguageCode.cc:687
-msgid "Luiseno"
+#. language code: fry fy
+#: zypp/LanguageCode.cc:453
+msgid "Frisian"
 msgstr ""
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
+#. language code: ful ff
+#: zypp/LanguageCode.cc:455
+msgid "Fulah"
 msgstr ""
 
-#. language code: lun
-#: zypp/LanguageCode.cc:689
-msgid "Lunda"
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
 msgstr ""
 
-#. language code: luo
-#: zypp/LanguageCode.cc:691
-msgid "Luo (Kenya and Tanzania)"
+#. language code: gaa
+#: zypp/LanguageCode.cc:459
+msgid "Ga"
 msgstr ""
 
-#. language code: lus
-#: zypp/LanguageCode.cc:693
-msgid "Lushai"
+#. language code: gay
+#: zypp/LanguageCode.cc:461
+msgid "Gayo"
 msgstr ""
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
+#. language code: gba
+#: zypp/LanguageCode.cc:463
+msgid "Gbaya"
 msgstr ""
 
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
 msgstr ""
 
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
+#. language code: geo kat ka
+#: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
+msgid "Georgian"
 msgstr ""
 
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
+#. language code: ger deu de
+#: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
+msgid "German"
 msgstr ""
 
-#. language code: mac mkd mk
-#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
-msgid "Macedonian"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
 msgstr ""
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
 msgstr ""
 
-#. language code: mad
-#: zypp/LanguageCode.cc:699
-msgid "Madurese"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
 msgstr ""
 
-#. language code: mag
-#: zypp/LanguageCode.cc:701
-msgid "Magahi"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
 msgstr ""
 
-#. language code: mai
-#: zypp/LanguageCode.cc:705
-msgid "Maithili"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
 msgstr ""
 
-#. language code: mak
-#: zypp/LanguageCode.cc:707
-msgid "Makasar"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
 msgstr ""
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
 msgstr ""
 
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
 msgstr ""
 
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
+#. language code: gon
+#: zypp/LanguageCode.cc:491
+msgid "Gondi"
 msgstr ""
 
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
+#. language code: gor
+#: zypp/LanguageCode.cc:493
+msgid "Gorontalo"
 msgstr ""
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
+#. language code: got
+#: zypp/LanguageCode.cc:495
+msgid "Gothic"
 msgstr ""
 
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
+#. language code: grb
+#: zypp/LanguageCode.cc:497
+msgid "Grebo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
+#. language code: grc
+#: zypp/LanguageCode.cc:499
+msgid "Greek, Ancient (to 1453)"
 msgstr ""
 
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
+#. language code: gre ell el
+#: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
+msgid "Greek, Modern (1453-)"
 msgstr ""
 
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
 msgstr ""
 
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
+#. language code: guj gu
+#: zypp/LanguageCode.cc:507
+msgid "Gujarati"
 msgstr ""
 
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
+#. language code: gwi
+#: zypp/LanguageCode.cc:509
+msgid "Gwich'in"
 msgstr ""
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
+#. language code: hai
+#: zypp/LanguageCode.cc:511
+msgid "Haida"
 msgstr ""
 
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
+#. language code: hat ht
+#: zypp/LanguageCode.cc:513
+msgid "Haitian"
 msgstr ""
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
+#. language code: hau ha
+#: zypp/LanguageCode.cc:515
+msgid "Hausa"
 msgstr ""
 
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
+#. language code: haw
+#: zypp/LanguageCode.cc:517
+msgid "Hawaiian"
 msgstr ""
 
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
+#. language code: heb he
+#: zypp/LanguageCode.cc:519
+msgid "Hebrew"
 msgstr ""
 
-#. language code: mao mri mi
-#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
-msgid "Maori"
+#. language code: her hz
+#: zypp/LanguageCode.cc:521
+msgid "Herero"
 msgstr ""
 
-#. language code: mar mr
-#: zypp/LanguageCode.cc:719
-msgid "Marathi"
+#. language code: hil
+#: zypp/LanguageCode.cc:523
+msgid "Hiligaynon"
 msgstr ""
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
+#. language code: him
+#: zypp/LanguageCode.cc:525
+msgid "Himachali"
 msgstr ""
 
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
+#. language code: hin hi
+#: zypp/LanguageCode.cc:527
+msgid "Hindi"
 msgstr ""
 
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
+#. language code: hit
+#: zypp/LanguageCode.cc:529
+msgid "Hittite"
 msgstr ""
 
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
+#. language code: hmn
+#: zypp/LanguageCode.cc:531
+msgid "Hmong"
 msgstr ""
 
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
 msgstr ""
 
-#. language code: mas
-#: zypp/LanguageCode.cc:721
-msgid "Masai"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
 msgstr ""
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
+#. language code: hun hu
+#: zypp/LanguageCode.cc:537
+msgid "Hungarian"
 msgstr ""
 
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
+#. language code: hup
+#: zypp/LanguageCode.cc:539
+msgid "Hupa"
 msgstr ""
 
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
+#. language code: iba
+#: zypp/LanguageCode.cc:541
+msgid "Iban"
 msgstr ""
 
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
 msgstr ""
 
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
+#. language code: ice isl is
+#: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
+msgid "Icelandic"
 msgstr ""
 
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
+#. language code: ido io
+#: zypp/LanguageCode.cc:549
+msgid "Ido"
 msgstr ""
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
 msgstr ""
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
+#. language code: ijo
+#: zypp/LanguageCode.cc:553
+msgid "Ijo"
 msgstr ""
 
-#. language code: men
-#: zypp/LanguageCode.cc:731
-msgid "Mende"
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
 msgstr ""
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
 msgstr ""
 
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
 msgstr ""
 
-#. language code: mic
-#: zypp/LanguageCode.cc:735
-msgid "Mi'kmaq"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-#. language code: min
-#: zypp/LanguageCode.cc:737
-msgid "Minangkabau"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
 msgstr ""
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
 msgstr ""
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
 msgstr ""
 
-#. language code: moh
-#: zypp/LanguageCode.cc:753
-msgid "Mohawk"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
 msgstr ""
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
 msgstr ""
 
-#. language code: mol mo
-#: zypp/LanguageCode.cc:755
-msgid "Moldavian"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
 msgstr ""
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
+#. language code: iro
+#: zypp/LanguageCode.cc:575
+msgid "Iroquoian Languages"
 msgstr ""
 
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
+#. language code: ita it
+#: zypp/LanguageCode.cc:577
+msgid "Italian"
 msgstr ""
 
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
 msgstr ""
 
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
 msgstr ""
 
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
+#. language code: jpn ja
+#: zypp/LanguageCode.cc:583
+msgid "Japanese"
 msgstr ""
 
-#. language code: mon mn
-#: zypp/LanguageCode.cc:757
-msgid "Mongolian"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
 msgstr ""
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
+#. language code: jrb
+#: zypp/LanguageCode.cc:587
+msgid "Judeo-Arabic"
 msgstr ""
 
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
 msgstr ""
 
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
+#. language code: kab
+#: zypp/LanguageCode.cc:591
+msgid "Kabyle"
 msgstr ""
 
-#. language code: mos
-#: zypp/LanguageCode.cc:759
-msgid "Mossi"
+#. language code: kac
+#: zypp/LanguageCode.cc:593
+msgid "Kachin"
 msgstr ""
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
+#. language code: kal kl
+#: zypp/LanguageCode.cc:595
+msgid "Kalaallisut"
 msgstr ""
 
-#. language code: mul
-#: zypp/LanguageCode.cc:761
-msgid "Multiple Languages"
+#. language code: kam
+#: zypp/LanguageCode.cc:597
+msgid "Kamba"
 msgstr ""
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
+#. language code: kan kn
+#: zypp/LanguageCode.cc:599
+msgid "Kannada"
 msgstr ""
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
+#. language code: kar
+#: zypp/LanguageCode.cc:601
+msgid "Karen"
 msgstr ""
 
-#. language code: nah
-#: zypp/LanguageCode.cc:775
-msgid "Nahuatl"
+#. language code: kas ks
+#: zypp/LanguageCode.cc:603
+msgid "Kashmiri"
 msgstr ""
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
 msgstr ""
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
+#. language code: kaw
+#: zypp/LanguageCode.cc:607
+msgid "Kawi"
 msgstr ""
 
-#. language code: nav nv
-#: zypp/LanguageCode.cc:783
-msgid "Navajo"
+#. language code: kaz kk
+#: zypp/LanguageCode.cc:609
+msgid "Kazakh"
 msgstr ""
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
 msgstr ""
 
-#. language code: nbl nr
-#: zypp/LanguageCode.cc:785
-msgid "Ndebele, South"
+#. language code: kha
+#: zypp/LanguageCode.cc:613
+msgid "Khasi"
 msgstr ""
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
 msgstr ""
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
 msgstr ""
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
+#. language code: kho
+#: zypp/LanguageCode.cc:619
+msgid "Khotanese"
 msgstr ""
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
+#. language code: kik ki
+#: zypp/LanguageCode.cc:621
+msgid "Kikuyu"
 msgstr ""
 
-#. language code: nep ne
-#: zypp/LanguageCode.cc:793
-msgid "Nepali"
+#. language code: kin rw
+#: zypp/LanguageCode.cc:623
+msgid "Kinyarwanda"
 msgstr ""
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
+#. language code: kir ky
+#: zypp/LanguageCode.cc:625
+msgid "Kirghiz"
 msgstr ""
 
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
 msgstr ""
 
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
 msgstr ""
 
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
+#. language code: kom kv
+#: zypp/LanguageCode.cc:631
+msgid "Komi"
 msgstr ""
 
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
+#. language code: kon kg
+#: zypp/LanguageCode.cc:633
+msgid "Kongo"
 msgstr ""
 
-#. language code: nia
-#: zypp/LanguageCode.cc:797
-msgid "Nias"
+#. language code: kor ko
+#: zypp/LanguageCode.cc:635
+msgid "Korean"
 msgstr ""
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
+#. language code: kos
+#: zypp/LanguageCode.cc:637
+msgid "Kosraean"
 msgstr ""
 
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
+#. language code: kpe
+#: zypp/LanguageCode.cc:639
+msgid "Kpelle"
 msgstr ""
-
-#. language code: nic
-#: zypp/LanguageCode.cc:799
-msgid "Niger-Kordofanian (Other)"
+
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
 msgstr ""
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
+#. language code: kro
+#: zypp/LanguageCode.cc:643
+msgid "Kru"
 msgstr ""
 
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
 msgstr ""
 
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
+#. language code: kua kj
+#: zypp/LanguageCode.cc:647
+msgid "Kuanyama"
 msgstr ""
 
-#. language code: niu
-#: zypp/LanguageCode.cc:801
-msgid "Niuean"
+#. language code: kum
+#: zypp/LanguageCode.cc:649
+msgid "Kumyk"
 msgstr ""
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
+#. language code: kur ku
+#: zypp/LanguageCode.cc:651
+msgid "Kurdish"
 msgstr ""
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
+#. language code: kut
+#: zypp/LanguageCode.cc:653
+msgid "Kutenai"
 msgstr ""
 
-#. language code: nog
-#: zypp/LanguageCode.cc:807
-msgid "Nogai"
+#. language code: lad
+#: zypp/LanguageCode.cc:655
+msgid "Ladino"
 msgstr ""
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
+#. language code: lah
+#: zypp/LanguageCode.cc:657
+msgid "Lahnda"
 msgstr ""
 
-#. language code: non
-#: zypp/LanguageCode.cc:809
-msgid "Norse, Old"
+#. language code: lam
+#: zypp/LanguageCode.cc:659
+msgid "Lamba"
 msgstr ""
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
+#. language code: lao lo
+#: zypp/LanguageCode.cc:661
+msgid "Lao"
 msgstr ""
 
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
+#. language code: lat la
+#: zypp/LanguageCode.cc:663
+msgid "Latin"
 msgstr ""
 
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
+#. language code: lav lv
+#: zypp/LanguageCode.cc:665
+msgid "Latvian"
 msgstr ""
 
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
+#. language code: lez
+#: zypp/LanguageCode.cc:667
+msgid "Lezghian"
 msgstr ""
 
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
+#. language code: lim li
+#: zypp/LanguageCode.cc:669
+msgid "Limburgan"
 msgstr ""
 
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
+#. language code: lin ln
+#: zypp/LanguageCode.cc:671
+msgid "Lingala"
 msgstr ""
 
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
+msgid "Lithuanian"
 msgstr ""
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
 msgstr ""
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
+#. language code: loz
+#: zypp/LanguageCode.cc:677
+msgid "Lozi"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
 msgstr ""
 
-#. language code: nub
-#: zypp/LanguageCode.cc:815
-msgid "Nubian Languages"
+#. language code: lua
+#: zypp/LanguageCode.cc:681
+msgid "Luba-Lulua"
 msgstr ""
 
-#. language code: nym
-#: zypp/LanguageCode.cc:821
-msgid "Nyamwezi"
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
 msgstr ""
 
-#. language code: nyn
-#: zypp/LanguageCode.cc:823
-msgid "Nyankole"
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
 msgstr ""
 
-#. language code: nyo
-#: zypp/LanguageCode.cc:825
-msgid "Nyoro"
+#. language code: lui
+#: zypp/LanguageCode.cc:687
+msgid "Luiseno"
 msgstr ""
 
-#. language code: nzi
-#: zypp/LanguageCode.cc:827
-msgid "Nzima"
+#. language code: lun
+#: zypp/LanguageCode.cc:689
+msgid "Lunda"
 msgstr ""
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
+#. language code: luo
+#: zypp/LanguageCode.cc:691
+msgid "Luo (Kenya and Tanzania)"
 msgstr ""
 
-#. language code: oci oc
-#: zypp/LanguageCode.cc:829
-msgid "Occitan (post 1500)"
+#. language code: lus
+#: zypp/LanguageCode.cc:693
+msgid "Lushai"
 msgstr ""
 
-#. language code: oji oj
-#: zypp/LanguageCode.cc:831
-msgid "Ojibwa"
+#. language code: mac mkd mk
+#: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
+msgid "Macedonian"
 msgstr ""
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
+#. language code: mad
+#: zypp/LanguageCode.cc:699
+msgid "Madurese"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
+#. language code: mag
+#: zypp/LanguageCode.cc:701
+msgid "Magahi"
 msgstr ""
 
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
 msgstr ""
 
-#. language code: ori or
-#: zypp/LanguageCode.cc:833
-msgid "Oriya"
+#. language code: mai
+#: zypp/LanguageCode.cc:705
+msgid "Maithili"
 msgstr ""
 
-#. language code: orm om
-#: zypp/LanguageCode.cc:835
-msgid "Oromo"
+#. language code: mak
+#: zypp/LanguageCode.cc:707
+msgid "Makasar"
 msgstr ""
 
-#. language code: osa
-#: zypp/LanguageCode.cc:837
-msgid "Osage"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
 msgstr ""
 
-#. language code: oss os
-#: zypp/LanguageCode.cc:839
-msgid "Ossetian"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
 msgstr ""
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
+#. language code: mao mri mi
+#: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
+msgid "Maori"
 msgstr ""
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
 msgstr ""
 
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
+#. language code: mar mr
+#: zypp/LanguageCode.cc:719
+msgid "Marathi"
 msgstr ""
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
+#. language code: mas
+#: zypp/LanguageCode.cc:721
+msgid "Masai"
 msgstr ""
 
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
 msgstr ""
 
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
 msgstr ""
 
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
 msgstr ""
 
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
+#. language code: men
+#: zypp/LanguageCode.cc:731
+msgid "Mende"
 msgstr ""
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
 msgstr ""
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
+#. language code: mic
+#: zypp/LanguageCode.cc:735
+msgid "Mi'kmaq"
 msgstr ""
 
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
+#. language code: min
+#: zypp/LanguageCode.cc:737
+msgid "Minangkabau"
 msgstr ""
 
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
 msgstr ""
 
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
 msgstr ""
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
 msgstr ""
 
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
 msgstr ""
 
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
 msgstr ""
 
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
 msgstr ""
 
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
 msgstr ""
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
+#. language code: moh
+#: zypp/LanguageCode.cc:753
+msgid "Mohawk"
 msgstr ""
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
+#. language code: mol mo
+#: zypp/LanguageCode.cc:755
+msgid "Moldavian"
 msgstr ""
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
+#. language code: mon mn
+#: zypp/LanguageCode.cc:757
+msgid "Mongolian"
 msgstr ""
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
+#. language code: mos
+#: zypp/LanguageCode.cc:759
+msgid "Mossi"
 msgstr ""
 
-#. language code: phi
-#: zypp/LanguageCode.cc:865
-msgid "Philippine (Other)"
+#. language code: mul
+#: zypp/LanguageCode.cc:761
+msgid "Multiple Languages"
 msgstr ""
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
 msgstr ""
 
-#. language code: phn
-#: zypp/LanguageCode.cc:867
-msgid "Phoenician"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
 msgstr ""
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
 msgstr ""
 
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
 msgstr ""
 
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
 msgstr ""
 
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
 msgstr ""
 
-#. language code: pol pl
-#: zypp/LanguageCode.cc:871
-msgid "Polish"
+#. language code: nah
+#: zypp/LanguageCode.cc:775
+msgid "Nahuatl"
 msgstr ""
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
 msgstr ""
 
-#. language code: por pt
-#: zypp/LanguageCode.cc:875
-msgid "Portuguese"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
 msgstr ""
 
-#. language code: pra
-#: zypp/LanguageCode.cc:877
-msgid "Prakrit Languages"
+#. language code: nav nv
+#: zypp/LanguageCode.cc:783
+msgid "Navajo"
 msgstr ""
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
+#. language code: nbl nr
+#: zypp/LanguageCode.cc:785
+msgid "Ndebele, South"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
 msgstr ""
 
-#. language code: pro
-#: zypp/LanguageCode.cc:879
-msgid "Provencal, Old (to 1500)"
+#. language code: nep ne
+#: zypp/LanguageCode.cc:793
+msgid "Nepali"
 msgstr ""
 
-#: zypp/Dep.cc:96
-msgid "Provides"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
 msgstr ""
 
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
+#. language code: nia
+#: zypp/LanguageCode.cc:797
+msgid "Nias"
 msgstr ""
 
-#. language code: pus ps
-#: zypp/LanguageCode.cc:881
-msgid "Pushto"
+#. language code: nic
+#: zypp/LanguageCode.cc:799
+msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
+#. language code: niu
+#: zypp/LanguageCode.cc:801
+msgid "Niuean"
 msgstr ""
 
-#. language code: que qu
-#: zypp/LanguageCode.cc:883
-msgid "Quechua"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
 msgstr ""
 
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
+#. language code: nog
+#: zypp/LanguageCode.cc:807
+msgid "Nogai"
 msgstr ""
 
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
+#. language code: non
+#: zypp/LanguageCode.cc:809
+msgid "Norse, Old"
 msgstr ""
 
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
 msgstr ""
 
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
 msgstr ""
 
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
+#. language code: nub
+#: zypp/LanguageCode.cc:815
+msgid "Nubian Languages"
+msgstr ""
+
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
 msgstr ""
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
+#. language code: nym
+#: zypp/LanguageCode.cc:821
+msgid "Nyamwezi"
 msgstr ""
 
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
+#. language code: nyn
+#: zypp/LanguageCode.cc:823
+msgid "Nyankole"
 msgstr ""
 
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
+#. language code: nyo
+#: zypp/LanguageCode.cc:825
+msgid "Nyoro"
 msgstr ""
 
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
+#. language code: nzi
+#: zypp/LanguageCode.cc:827
+msgid "Nzima"
 msgstr ""
 
-#: zypp/Dep.cc:98
-msgid "Requires"
+#. language code: oci oc
+#: zypp/LanguageCode.cc:829
+msgid "Occitan (post 1500)"
 msgstr ""
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
+#. language code: oji oj
+#: zypp/LanguageCode.cc:831
+msgid "Ojibwa"
 msgstr ""
 
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
+#. language code: ori or
+#: zypp/LanguageCode.cc:833
+msgid "Oriya"
 msgstr ""
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
+#. language code: orm om
+#: zypp/LanguageCode.cc:835
+msgid "Oromo"
 msgstr ""
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
+#. language code: osa
+#: zypp/LanguageCode.cc:837
+msgid "Osage"
 msgstr ""
 
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
+#. language code: oss os
+#: zypp/LanguageCode.cc:839
+msgid "Ossetian"
 msgstr ""
 
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
 msgstr ""
 
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
 msgstr ""
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
 msgstr ""
 
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
 msgstr ""
 
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
 msgstr ""
 
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
 msgstr ""
 
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
 msgstr ""
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
 msgstr ""
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
 msgstr ""
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr ""
 
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
 msgstr ""
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
+#. language code: phi
+#: zypp/LanguageCode.cc:865
+msgid "Philippine (Other)"
 msgstr ""
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
+#. language code: phn
+#: zypp/LanguageCode.cc:867
+msgid "Phoenician"
 msgstr ""
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
 msgstr ""
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
+#. language code: pol pl
+#: zypp/LanguageCode.cc:871
+msgid "Polish"
 msgstr ""
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
 msgstr ""
 
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
+#. language code: por pt
+#: zypp/LanguageCode.cc:875
+msgid "Portuguese"
 msgstr ""
 
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
+#. language code: pra
+#: zypp/LanguageCode.cc:877
+msgid "Prakrit Languages"
 msgstr ""
 
-#. language code: san sa
-#: zypp/LanguageCode.cc:917
-msgid "Sanskrit"
+#. language code: pro
+#: zypp/LanguageCode.cc:879
+msgid "Provencal, Old (to 1500)"
 msgstr ""
 
-#. language code: sat
-#: zypp/LanguageCode.cc:921
-msgid "Santali"
+#. language code: pus ps
+#: zypp/LanguageCode.cc:881
+msgid "Pushto"
 msgstr ""
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
+#. language code: que qu
+#: zypp/LanguageCode.cc:883
+msgid "Quechua"
 msgstr ""
 
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
 msgstr ""
 
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
 msgstr ""
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
 msgstr ""
 
-#. language code: sco
-#: zypp/LanguageCode.cc:929
-msgid "Scots"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
 msgstr ""
 
-#. language code: sel
-#: zypp/LanguageCode.cc:935
-msgid "Selkup"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
 msgstr ""
 
-#. language code: sem
-#: zypp/LanguageCode.cc:937
-msgid "Semitic (Other)"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
 msgstr ""
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
 msgstr ""
 
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
 msgstr ""
 
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
 msgstr ""
 
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
 msgstr ""
 
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
 msgstr ""
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
 msgstr ""
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
 msgstr ""
 
-#. language code: shn
-#: zypp/LanguageCode.cc:943
-msgid "Shan"
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
 msgstr ""
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
 msgstr ""
 
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
+#. language code: san sa
+#: zypp/LanguageCode.cc:917
+msgid "Sanskrit"
 msgstr ""
 
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
 msgstr ""
 
-#. language code: sid
-#: zypp/LanguageCode.cc:945
-msgid "Sidamo"
+#. language code: sat
+#: zypp/LanguageCode.cc:921
+msgid "Santali"
 msgstr ""
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
 msgstr ""
 
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
+#. language code: sco
+#: zypp/LanguageCode.cc:929
+msgid "Scots"
 msgstr ""
 
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
+#. language code: sel
+#: zypp/LanguageCode.cc:935
+msgid "Selkup"
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
+#. language code: sem
+#: zypp/LanguageCode.cc:937
+msgid "Semitic (Other)"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
 msgstr ""
 
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
 msgstr ""
 
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
+#. language code: shn
+#: zypp/LanguageCode.cc:943
+msgid "Shan"
 msgstr ""
 
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
+#. language code: sid
+#: zypp/LanguageCode.cc:945
+msgid "Sidamo"
 msgstr ""
 
 #. language code: sin si
@@ -3724,24 +3727,14 @@ msgstr ""
 msgid "Sinhala"
 msgstr ""
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr ""
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr ""
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
 #. language code: sla
@@ -3754,98 +3747,79 @@ msgstr ""
 msgid "Slovak"
 msgstr ""
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr ""
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr ""
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr ""
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr ""
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr ""
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
 msgstr ""
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
 msgstr ""
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
 msgstr ""
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
 msgstr ""
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
 msgstr ""
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
 msgstr ""
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
 msgstr ""
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
 msgstr ""
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
 msgstr ""
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
 msgstr ""
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
 msgstr ""
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
 msgstr ""
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
 msgstr ""
 
 #. language code: spa es
@@ -3853,18 +3827,24 @@ msgstr ""
 msgid "Spanish"
 msgstr ""
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
 msgstr ""
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
 msgstr ""
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
 msgstr ""
 
 #. language code: suk
@@ -3872,33 +3852,19 @@ msgstr ""
 msgid "Sukuma"
 msgstr ""
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr ""
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr ""
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr ""
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr ""
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
 msgstr ""
 
 #. language code: swa sw
@@ -3906,58 +3872,16 @@ msgstr ""
 msgid "Swahili"
 msgstr ""
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr ""
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr ""
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr ""
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr ""
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr ""
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr ""
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr ""
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr ""
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3968,36 +3892,11 @@ msgstr ""
 msgid "Tai (Other)"
 msgstr ""
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr ""
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr ""
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr ""
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr ""
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr ""
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr ""
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4008,6 +3907,11 @@ msgstr ""
 msgid "Telugu"
 msgstr ""
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr ""
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4018,31 +3922,19 @@ msgstr ""
 msgid "Tetum"
 msgstr ""
 
-#. language code: tha th
-#: zypp/LanguageCode.cc:1033
-msgid "Thai"
-msgstr ""
-
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
 msgstr ""
 
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
+#. language code: tha th
+#: zypp/LanguageCode.cc:1033
+msgid "Thai"
 msgstr ""
 
 #. language code: tib bod bo
@@ -4060,45 +3952,24 @@ msgstr ""
 msgid "Tigrinya"
 msgstr ""
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr ""
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr ""
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr ""
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr ""
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr ""
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr ""
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr ""
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
 msgstr ""
 
 #. language code: tog
@@ -4111,15 +3982,9 @@ msgstr ""
 msgid "Tonga (Tonga Islands)"
 msgstr ""
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
 msgstr ""
 
 #. language code: tsi
@@ -4127,14 +3992,19 @@ msgstr ""
 msgid "Tsimshian"
 msgstr ""
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr ""
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr ""
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
 msgstr ""
 
 #. language code: tum
@@ -4142,653 +4012,783 @@ msgstr ""
 msgid "Tumbuka"
 msgstr ""
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr ""
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr ""
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr ""
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr ""
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
 msgstr ""
 
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
 msgstr ""
 
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
+#. language code: tyv
+#: zypp/LanguageCode.cc:1079
+msgid "Tuvinian"
+msgstr ""
+
+#. language code: udm
+#: zypp/LanguageCode.cc:1081
+msgid "Udmurt"
+msgstr ""
+
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr ""
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr ""
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr ""
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr ""
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr ""
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr ""
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr ""
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr ""
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr ""
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr ""
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
 msgstr ""
 
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
 msgstr ""
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
 msgstr ""
 
-#. language code: tyv
-#: zypp/LanguageCode.cc:1079
-msgid "Tuvinian"
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
 msgstr ""
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
 msgstr ""
 
-#. language code: udm
-#: zypp/LanguageCode.cc:1081
-msgid "Udmurt"
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
 msgstr ""
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
 msgstr ""
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
 msgstr ""
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
 msgstr ""
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
 msgstr ""
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
 msgstr ""
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
 msgstr ""
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
 msgstr ""
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
 msgstr ""
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
 msgstr ""
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
 msgstr ""
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
 msgstr ""
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
 msgstr ""
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
 msgstr ""
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
 msgstr ""
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
 msgstr ""
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
+msgid "Tried to import not existent key %s into keyring %s"
 msgstr ""
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr ""
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Failed to parse: %s."
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
+msgid "Signature file %s not found"
 msgstr ""
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
+msgid "Can't provide file '%s' from repository '%s'"
 msgstr ""
 
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
 msgstr ""
 
-#: zypp/media/MediaException.cc:140
-#, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
 msgstr ""
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
 msgstr ""
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
 msgstr ""
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/solver/detail/SATResolver.cc:975
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
+msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
 msgstr ""
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
 msgstr ""
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
 msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
 msgstr ""
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
 msgstr ""
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr ""
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
 msgstr ""
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
 msgstr ""
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
 msgstr ""
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
 msgstr ""
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
 msgstr ""
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
 msgstr ""
 
-#: zypp/media/MediaCurl.cc:1008
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"\n"
+"uninstallable providers: "
 msgstr ""
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
 msgstr ""
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
 msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
 msgstr ""
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
 msgstr ""
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
 msgstr ""
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
 msgstr ""
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
 msgstr ""
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
 msgstr ""
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
 msgstr ""
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
 msgstr ""
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
 msgstr ""
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
 msgstr ""
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
 msgstr ""
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
 msgstr ""
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
 msgstr ""
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
 msgstr ""
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
 msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
 msgstr ""
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
 msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
 msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
 msgstr ""
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr ""
+#: zypp/base/InterProcessMutex.cc:83
+#, fuzzy, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Couldn't open file: %s."
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
 msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
 msgstr ""
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
 msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
+msgid "Invalid regular expression '%s'"
 msgstr ""
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
-#, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
+msgid "Authentication required for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
+#: zypp/media/MediaException.cc:31
+#, fuzzy, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:41
+#, fuzzy, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "Failed to parse: %s."
+
+#: zypp/media/MediaException.cc:47
+#, c-format, boost-format
+msgid "Bad file name: %s"
 msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "created backup %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "deinstallation of %s"
+msgid "File '%s' not found on medium '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Couldn't open file: %s."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
+msgid "Download (curl) initialization failed for '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
+msgid "System exception '%s' on medium '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Path '%s' on medium '%s' is not a file."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
+msgid "Path '%s' on medium '%s' is not a directory."
 msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Unsupported URI scheme in '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:152
+#, c-format, boost-format
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep obsolete %s"
+msgid "Medium '%s' is in use by another instance"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
 msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:184
+#, c-format, boost-format
+msgid "Cannot eject media '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
+msgid "Permission to access '%s' denied."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "nothing provides requested %s"
+msgid "Timeout exceeded when accessing '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "problem with installed package %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Unsupported HTTP authentication method '%s'"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#, fuzzy
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Failed to parse: %s."
 
 #, fuzzy
 #~ msgid "Can't open solv-file: "
 #~ msgstr "Couldn't open file: %s."
-
-#, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Failed to parse: %s."
index 5974178..f747dd9 100644 (file)
--- a/po/wa.po
+++ b/po/wa.po
@@ -18,21 +18,94 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: Lokalize 1.4\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"ahesseus nén astalåves : "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Foû-rîle di hal"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Tchinne di cweraedje di l' IRL LDAP nén valåbe"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Paramete cweraedje di l' URL LDAP nén valåbe « %s »"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Dji n' sai clôner l' objet Url"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Vude referince d' objet di l' Url nén valåbe"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Dji n' sai analijhî les componints di l' Url"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Dji n' sai inicialijhî les atributs mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Dji n' sai defini l' atribut mutex recursif"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Dji n' sai inicialijhî l' mutex recursif"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Dji n' sai acweri l' eclawaedje mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Dji n' sai dislaxhî l' eclawaedje mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "Dene"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
 msgstr ""
-" : rujhe di l' acertineure SSL, waitîz k' l' acert. di l' OA est boune po « "
-"%s »."
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "Dimande"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "Afrontmints"
+
+#: zypp/Dep.cc:100
+#, fuzzy
+msgid "Obsoletes"
+msgstr "wårder l' forpassé %s"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "Ricmande"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "Propoze"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "Amidrêye"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "Rawetes"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "Crombe sôre « %s » po l' octet %u del some di controle « %s »"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -42,10 +115,6 @@ msgstr " enondé"
 msgid " execution failed"
 msgstr " a fwait berwete a l' enondaedje"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " a passé l' enondaedje cwand il abandnéve"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -54,114 +123,1811 @@ msgstr " a passé l' enondaedje cwand il abandnéve"
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s s' afronte avou %s ahessî pa %s"
-
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr ""
-"%s ni fwait nén pårteye d' on depot d' metaedje a djoû del distribucion"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " a passé l' enondaedje cwand il abandnéve"
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s a ene årtchitecteure pus basse"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "Åk n' a nén stî come dji meteu a djoû l' notifiaedje do messaedje."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s n' est nén astalåve"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "Novea messaedje di metaedje a djoû"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "Çou paket n' est nén astalé et n' serè nén astalé."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "L' astalaedje a stî abandné come dimandé."
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s rind trop vîs %s ahessî pa %s"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
+"Dji rgrete mins cisse modêye ci di libzypp a stî basteye sins sopoirt po HAL."
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s a dandjî d' %s mins cisse dimande ni sait nén esse ahesseye"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext nén raloyî"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(ESPIRÉ)"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive nén inicialijhî"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(n' espire nén)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume nén inicialijhî"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(espire divant 24 e)"
-msgstr[1] "(espire divant 24 e)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Dji n' sai ahiver l' raloyaedje dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(espire divant 24 e)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new : Dji n' sai ahiver l' contecse libhal"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Abxhaze"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection : Dji n' sai defini l' raloyaedje dbus"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Achinwès"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Dji n' sai inicialijhî l' contecse HAL -- hald nén ovrant ?"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Acoli"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Nén on léjheu d' plake CDROM"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Adangme"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM a fwait berwete :"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "Dji radjoute li depot « %s »"
+msgid "Failed to import public key from file %s: %s"
+msgstr "L' abagaedje del clé publike do fitchî %s a fwait berwete : %s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "I fåt èn ôte Contrat cliyint"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Li oistaedje del clé publike %s a fwait berwete : %s"
 
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "Ôtès rexhowes di rpm"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Les fitchîs d' apontiaedje po %s ont stî candjîs :"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Adyghe"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm a schapé %s come %s mins ça n' a nén stî possibe di trover l' diferince"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Afar"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm a schapé %s come %s/\n"
+"Vos avoz droci les 25 prumirès royes di diferince :\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr ""
+"rpm a ahivé %s come %s mins ça n' a nén stî possibe di trover l' diferince"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm a ahivé %s come %s/\n"
+"Vos avoz droci les 25 prumirès royes di diferince :\n"
+
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "Ôtès rexhowes di rpm"
+
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "copeye di såvrité di %s ahivêye"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "Sinateure di fitchî %s nén trovêye"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "Sinateure di fitchî %s nén trovêye"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "Sinateure di fitchî %s nén trovêye"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "Dji va fé les faitindjes shuvants :"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Li léjhaedje do ridant « %s » a fwait berwete."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr ""
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "On no metou di siervice ni s' pout cominçî avou on pont."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Dji n' sai nén drovi l' fitchî « %s » pol sicrire."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+#, fuzzy
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "Dji n' a trové nole meta-dnêye valåbe al/ås URL sipeciftî(s)"
+msgstr[1] "Dji n' a trové nole meta-dnêye valåbe al/ås URL sipeciftî(s)"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Dji n' sai ahiver %s"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "Dji n' sai ahiver l' ridant muchete des meta-dnêyes."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "Dji basti l' muchete do depot « %s »"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "Dji n' sai ahiver l' muchete a %s - pont d' droet di scrijhaedje."
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Li metaedje e muchete do depot (%d) a fwait berwete."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "Dji n' sai nén apougnî cisse sôre di depot la"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "Åk n' a nén stî come dji sayive di lére a pårti di « %s »"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Åk di nén cnoxhou n' a nén stî come dji léjheu a pårti d' \"%s\""
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "Dji radjoute li depot « %s »"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "No do fitchî do depot so « %s » nén valåbe"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr ""
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "Dji n' sai nén trover ewou ç' kel depot est wårdé."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Dji n' sai disfacer « %s »"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "Dji n' sai nén trover ewou ç' kel siervice est wårdé."
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "L' arindjmint di l' Url ni permet pont d' %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Componrint %s nén valåbe « %s »"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Componint %s nén valåbe"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr ""
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "L' arindjmint di l' URL est on componint reki"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Arindjmint di l' URL nén valåbe « %s »"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "L' arindjmint di l' Url ni permet pont d' no d' uzeu"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "L' arindjmint di l' Url ni permete pont d' sicret"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "I fåt on lodjoe e l' arindjmint di l' URL"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "L' arindjmint URL ni permete nén d' awè on componint lodjoe"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Componint do lodjoe nén valåbe « %s »"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "L' arindjmint di l' Url ni permet pont d' pôrt"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Componint do pôrt « %s » Nén valåbe"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "I fåt on no di tchmin e l' arindjmint di l' URL"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "I gn a èn octet NUL el tchinne ecôdêye."
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Dji n' sai drovi pty (%s)."
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Dji n' sai drovi l' pupe (%s)."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "Dji n' sai fé chroot a « %s » (%s)."
+
+#: zypp/ExternalProgram.cc:360
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "Dji n' sai fé chdir a « / » divins chroot (%s)."
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Dji n' sai fé chroot a « %s » (%s)."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "Dji n' sai enonder « %s » (%s)."
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Dji n' sai fé on fork (%s)."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "Li comande a moussî foû avou l' sitatut %d."
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "Li comande a stî touwêye på signå %d (%s)."
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "Li comande a moussî foû avou ene aroke nén cnoxhowe."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(n' espire nén)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(ESPIRÉ)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(espire divant 24 e)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, fuzzy, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(espire divant 24 e)"
+msgstr[1] "(espire divant 24 e)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "nén cnoxhou"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "nén sopoirté"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "Livea 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "Livea 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "Livea 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "I fåt èn ôte Contrat cliyint"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "nén valåbe"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "Li livea do sopoirt n' est nén specifyî"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "Li vindeu n' dene pont d' sopoirt."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"Trovaedje do problinme, ça vout dire on sopoirt tecnike atuzlé po dner des "
+"informåcions sol copatibilité, aidance a l' astalaedje, sopoirt po l' "
+"eployaedje, mintnance normåle eyet rujhes di båze. Li sopoirt di livea 1 n' "
+"est nén fwait po coridjî les arokes des sacwès nén bén fwaites e prodût."
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "I fåt èn ôte contrat cliyint pos awè on sopoirt."
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "Tchuze di sopoirt nén cnoxhowe. I gn a pont d' discrijhaedje"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Payis nén cnoxhou : "
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Pont d' côde"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andore"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Emirats Arabes Unis"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afganistan"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua eyet Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguila"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albaneye"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Årmeneye"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Antiyes neyerlandesses"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antartike"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Årdjintene"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "Samowa amerikinne"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Otriche"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Ostraleye"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Arouba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Iyes Aland"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaydjan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosneye"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Bårbades"
+
+#
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Beljike"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Bourkina Fasso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgåreye"
+
+#
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bareyn"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Bouroundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermudes"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Boliveye"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Braezi"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Boutan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Iye Bouvet"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Boswana"
+
+#
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Belaruss"
+
+#
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Iyes Cocos (Keeling)"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo-Brazza"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Cintrafrike"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Swisse"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Coisse d' Ivwere"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Iyes Cook"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Tchili"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Camrone"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "Chine"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombeye"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Cap Vert"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Iye Christmas"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Chipe"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Tchekeye"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Almagne"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Daenmåtche"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominike"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Republike Dominikinne"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Aldjereye"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecwåteur"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estoneye"
+
+#
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Edjipe"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Sara Coûtchantrece"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrêye"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Espagne"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Etiopeye"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finlande"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fidji"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Iyes Malouwines (Falkland)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Estats Federé d' Microneseye"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Iyes Faeroyé"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "France"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "France Metropolitinne"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "Grande-Burtaegne"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenåde"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Djeyordjeye"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "Guyane francesse"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "Guernsey"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Gana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Djibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Groenlande"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambeye"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinêye"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Gwadeloupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Guinêye Ecwåtoriåle"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Grece"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Djeyordjeye do sud eyet Iyes Sandwich do sud"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Gwatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Gwam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinêye-Bissaw"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Iyes Heard eyet Iyes MacDonald"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Crowåceye"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Hayiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hongreye"
+
+#
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonezeye"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Irlande"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israyel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "Iye di Man"
+
+#
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "Inde"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "Teritweres britanikes di l' Oceyan Indyin"
+
+#
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Irak"
+
+#
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Izlande"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Itåleye"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "Djerzey"
+
+#
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Djamayike"
+
+#
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Djordaneye"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Djapon"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenia"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kirguiztan"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Cambodje"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comores"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Sint Kitts et Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "Corêye (bijhrece)"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "Corêye (nonnrece)"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuweyt"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Iyes Cayman"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazaxhtan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Republike Democratike då Peupe Lawo (Lawos)"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Liban"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Sinte Luceye"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Lîchtensteyn"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lessoto"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Litwaneye"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Lussimbork"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Letoneye"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libeye"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Marok"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "Montenegro"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "Sint Martin"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagascar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Iyes Marshall"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedoneye"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Birmaneye"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongoleye"
+
+#
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Iyes Marianes bijhreces"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinike"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Moritanreye"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Male"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Iye Môrice"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldives"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mecsike"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaizeye"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambike"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibeye"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "Nouve Caledoneye"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Nidjer"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Iye Norfolk"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nidjeria"
+
+#
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragwa"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Bas Payis"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norvedje"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nawouryin"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niuwé"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "Nouve Zelande"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Perou"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "Polinezeye francesse"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papouwazeye Nouve Guinêye"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Filipenes"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Pologne"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Sint Pire et Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Porto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestene"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palawou"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paragway"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Katar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reyunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Roumaneye"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "Serbeye"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Rûsseye"
+
+#
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Arabeye Sawoudite"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Iyes Solomon"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seycheles"
+
+#
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Soudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Suwede"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapour"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Sinte Helene"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Esloveneye"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Iyes Svalbard eyet Jan Mayen"
+
+#
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Eslovakeye"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Siera Leyone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "Sint Marin"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegål"
+
+#
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somaleye"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "São Tomé et Prince"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Sireye"
+
+#
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Suwazilande"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afganistan"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Iyes Turks eyet Caicos"
+
+#
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Tchad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "Payis francès nonnrece"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Taylande"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tadjikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "Tokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turcmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunizeye"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "Levant Timor"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turkeye"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinité et Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "Touvalou"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzaneye"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Oucrinne"
+
+#
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Ouganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "Iyes mineures des Estats Unis"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "Estats Unis"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Ourougway"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Ouzbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Vatican"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Sint Vincint et les Grenadines"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezwela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "Iyes Viedjes Britanikes"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Iyes Viedjes etazunyinnes"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanouatou"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis et Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samowa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Yemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayote"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "Nonne Afrike"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambeye"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwè"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Lingaedje nén cnoxhou : "
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Afar"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Abxhaze"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Achinwès"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Adyghe"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Afro-Aziyatike (ôtes)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -173,11 +1939,6 @@ msgstr "Afrihili"
 msgid "Afrikaans"
 msgstr "Afrikaans"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Afro-Aziyatike (ôtes)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -193,16 +1954,6 @@ msgstr "Acanyin"
 msgid "Akkadian"
 msgstr "Acadyin"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Iyes Aland"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albaneye"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -213,58 +1964,25 @@ msgstr "Albanès"
 msgid "Aleut"
 msgstr "Alewoute"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Aldjereye"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
-msgstr "Lingaedjes algonkyins"
-
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Altayike (ôtes)"
+msgstr "Lingaedjes algonkyins"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "Samowa amerikinne"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Altay nonnrece"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "Amarike"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "I fåt èn ôte contrat cliyint pos awè on sopoirt."
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andore"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguila"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antartike"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua eyet Barbuda"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "Inglès, Vî inglès (450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -276,55 +1994,40 @@ msgstr "Lingaedjes apaches"
 msgid "Arabic"
 msgstr "Arabe"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Aragonès"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "Aramayike"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Arapaho"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Aragonès"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Årmenyin"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "Arawoucan"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Arawak"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Årdjintene"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Årmeneye"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Årmenyin"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Arapaho"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "Constrût (ôtes)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Arouba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Arawak"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -341,32 +2044,11 @@ msgstr "Asturyin"
 msgid "Athapascan Languages"
 msgstr "Lingaedjes atapascans"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Ostraleye"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "Lingaedjes ostralyins"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Otriche"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Ostronezyin (ôtes)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "I s' fåt otintifyî po « %s »"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -387,45 +2069,25 @@ msgstr "Awadi"
 msgid "Aymara"
 msgstr "Aymara"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaydjan"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Azeri"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "Mwais no d' fitchî : %s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "Mwais pont d' ataetche do media"
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
-
-#
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bareyn"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "Banda"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "Balinès"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Lingaedjes bamilekes"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Baltike (ôtes)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "Bashkir"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -437,79 +2099,36 @@ msgstr "Baloutchi"
 msgid "Bambara"
 msgstr "Bambara"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Lingaedjes bamilekes"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "Banda"
-
-#
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Bantou (ôtes)"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "Balinès"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Bårbades"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Basse"
 
 #. language code: bas
 #: zypp/LanguageCode.cc:253
 msgid "Basa"
 msgstr "Bassa"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "Bashkir"
-
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Basse"
-
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "Batak (Indonezeye)"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Baltike (ôtes)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "Bedja"
 
-#
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belaruss"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "Bielorûsse"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Beljike"
-
-#
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -520,31 +2139,16 @@ msgstr "Bemba"
 msgid "Bengali"
 msgstr "Bengali"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "Berbere (ôtes)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermudes"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "Bhojpuri"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Boutan"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
@@ -565,266 +2169,70 @@ msgstr "Bini"
 msgid "Bislama"
 msgstr "Bislama"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "Blin"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Boliveye"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "Siksika"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosneye"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Bantou (ôtes)"
 
 #. language code: bos bs
 #: zypp/LanguageCode.cc:281
 msgid "Bosnian"
 msgstr "Bosnyin"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Boswana"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Iye Bouvet"
-
 #. language code: bra
 #: zypp/LanguageCode.cc:283
 msgid "Braj"
 msgstr "Braj"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Braezi"
-
 #. language code: bre br
 #: zypp/LanguageCode.cc:285
 msgid "Breton"
 msgstr "Burton"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "Teritweres britanikes di l' Oceyan Indyin"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "Iyes Viedjes Britanikes"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "Batak (Indonezeye)"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "Bouriate"
 
 #. language code: bug
 #: zypp/LanguageCode.cc:291
 msgid "Buginese"
 msgstr "Budjinès"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "Dji basti l' muchete do depot « %s »"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgåreye"
-
 #. language code: bul bg
 #: zypp/LanguageCode.cc:293
 msgid "Bulgarian"
 msgstr "Bulgåre"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "Bouriate"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Bourkina Fasso"
-
 #. language code: bur mya my
 #: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
 msgid "Burmese"
 msgstr "Birman"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Bouroundi"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "Blin"
 
 #. language code: cad
 #: zypp/LanguageCode.cc:301
 msgid "Caddo"
 msgstr "Caddo"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Cambodje"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Camrone"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "Dji n' sai ahiver sat-pool."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Dji n' sai acweri l' eclawaedje mutex"
-
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Dji n' sai fé chroot a « %s » (%s)."
-
-#: zypp/ExternalProgram.cc:360
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "Dji n' sai fé chdir a « / » divins chroot (%s)."
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "Dji n' sai fé chroot a « %s » (%s)."
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Dji n' sai ahiver %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "Dji n' sai ahiver l' muchete a %s - pont d' droet di scrijhaedje."
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "Dji n' sai ahiver l' ridant muchete des meta-dnêyes."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Dji n' sai disfacer « %s »"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "Dji n' sai enonder « %s » (%s)."
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "Dji n' sai nén trover ewou ç' kel depot est wårdé."
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "Dji n' sai nén trover ewou ç' kel siervice est wårdé."
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Dji n' sai fé on fork (%s)."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Dji n' sai inicialijhî les atributs mutex"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Dji n' sai inicialijhî l' mutex recursif"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Dji n' sai nén drovi l' fitchî « %s » pol sicrire."
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Dji n' sai nén drovi l' fitchî d' eclawaedje : %s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Dji n' sai drovi l' pupe (%s)."
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Dji n' sai drovi pty (%s)."
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Dji n' sai diner l' fitchî « %s » do depot « %s »"
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Dji n' sai dislaxhî l' eclawaedje mutex"
-
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Dji n' sai defini l' atribut mutex recursif"
-
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canada"
-
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "Dji n' sai fé rexhe nou media"
-
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Dji n' sai fé rexhe li media « %s »"
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
-"Dji n' sai trover l' éndjin loop k' i gn a po monter l' imådje a pårti d' « "
-"%s »"
-
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
-
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
-
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Dji n' sai scrire li fitchî « %s »."
-
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Cap Vert"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Amerindyin di l' Amerike cintråle (ôtes)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -841,182 +2249,90 @@ msgstr "Catalan"
 msgid "Caucasian (Other)"
 msgstr "Cocåzyin (ôtes)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Iyes Cayman"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
-msgstr "Cebwano"
-
-#. language code: cel
-#: zypp/LanguageCode.cc:313
-msgid "Celtic (Other)"
-msgstr "Celtike (ôtes)"
-
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Cintrafrike"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Amerindyin di l' Amerike cintråle (ôtes)"
-
-#
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Tchad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "Tchagatay"
+msgstr "Cebwano"
 
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Lingaedjes xhamitikes"
+#. language code: cel
+#: zypp/LanguageCode.cc:313
+msgid "Celtic (Other)"
+msgstr "Celtike (ôtes)"
 
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "Tchamoro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Les fitchîs d' apontiaedje po %s ont stî candjîs :"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "Tchetchene"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "Tcherokî"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "Tcheyinne"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "Tchibtcha"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "Tchitchewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Tchili"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "Tchetchene"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "Chine"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "Tchagatay"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "Chinwès"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "Tchouwoukès"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "Mari"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Djårgon Tchinouk"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "Tchipewa"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "Tchoctåw"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Iye Christmas"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "Tchipewa"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "Tcherokî"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "Eslavonike d' eglijhe"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "Tchouwoukès"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "Tchouvache"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "Newari classike"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Iyes Cocos (Keeling)"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombeye"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "Li comande a moussî foû avou l' sitatut %d."
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "Li comande a moussî foû avou ene aroke nén cnoxhowe."
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "Li comande a stî touwêye på signå %d (%s)."
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comores"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "Afrontmints"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo-Brazza"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "Tcheyinne"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Iyes Cook"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Lingaedjes xhamitikes"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1033,31 +2349,6 @@ msgstr "Cornike"
 msgid "Corsican"
 msgstr "Corse"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Coisse d' Ivwere"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "Crî"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "Crîk"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Creyoles et pidjines (ôtes)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1073,46 +2364,36 @@ msgstr "Creyoles et pidjines, båzé sol francès (ôtes)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Creyoles et pidjines, båzé sol portuguès (ôtes)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "Crî"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Tatar crimeyin"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Crowåceye"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "Crowåte"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Creyoles et pidjines (ôtes)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "Kachubian"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Couchitike (ôtes)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Chipe"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "Tcheke"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Tchekeye"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1138,10 +2419,15 @@ msgstr "Dayak"
 msgid "Delaware"
 msgstr "Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Daenmåtche"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "Slave (Athapascan)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1153,74 +2439,36 @@ msgstr "Dinka"
 msgid "Divehi"
 msgstr "Divehi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "Dogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominike"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Republike Dominikinne"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"Aroke d' aberwetaedje (curl) po « %s » :\n"
-"Côde di l' aroke : %s\n"
-"Messaedje d' aroke : %s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "L' inicialijhaedje di l' aberwetaedje (curl) a fwait berwete po « %s »"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Dravidyin (ôtes)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "Bas serbe"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "Douwala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "Crombe sôre « %s » po l' octet %u del some di controle « %s »"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "Neyerlandès, Moyén neyerlandès (åtoû di 1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "Neyerlandès"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "Neyerlandès, Moyén neyerlandès (åtoû di 1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1231,27 +2479,11 @@ msgstr "Dioula"
 msgid "Dzongkha"
 msgstr "Boutanès"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "Levant Timor"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecwåteur"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Efik"
 
-#
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Edjipe"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1262,32 +2494,11 @@ msgstr "Edjipcyin (ancyin)"
 msgid "Ekajuk"
 msgstr "Ekadjouk"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "Elamite"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "Vude såme e l' URI"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "Vude sistinme di fitchî e l' URI"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "Vude no do lodjoe e l' URI"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "I gn a èn octet NUL el tchinne ecôdêye."
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1298,289 +2509,51 @@ msgstr "Inglès"
 msgid "English, Middle (1100-1500)"
 msgstr "Inglès, Moyén inglès (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "Inglès, Vî inglès (450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "Amidrêye"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Guinêye Ecwåtoriåle"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrêye"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-"Åk n' a nén stî come dji definixheu les tchuzes d' aberwetaedje (curl) po « "
-"%s » :"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "Åk n' a nén stî come dji meteu a djoû l' notifiaedje do messaedje."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "Åk n' a nén stî come dji sayive di lére a pårti di « %s »"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estoneye"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "Estonyin"
-
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Etiopeye"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "Ewè"
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "Ewondo"
-
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Li metaedje e muchete do depot (%d) a fwait berwete."
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "Li disfaçaedje del clé a fwait berwete."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "L' abagaedje del clé publike do fitchî %s a fwait berwete : %s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Li montaedje di %s dins %s a fwait berwete"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"L' ahessaedje do pacaedje %s a fwait berwete. Voloz vs rissayî l' "
-"rischoyaedje?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Li léjhaedje do ridant « %s » a fwait berwete."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Li oistaedje del clé publike %s a fwait berwete : %s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Li dismontaedje di %s a fwait berwete"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Iyes Malouwines (Falkland)"
-
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "Fang"
-
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Iyes Faeroyé"
-
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "Faeroyès"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Estats Federé d' Microneseye"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fidji"
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "Fidjyin"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+msgid "Estonian"
+msgstr "Estonyin"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "Ewè"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "Ewondo"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "Fang"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "Faeroyès"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Fitchî « %s » nén trové sol media « %s »"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "Fanti"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "Fidjyin"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "Filipenes"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finlande"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1591,40 +2564,16 @@ msgstr "Finwès"
 msgid "Finno-Ugrian (Other)"
 msgstr "Fino-ougryin (ôtes)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "Dji va fé les faitindjes shuvants :"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "France"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "Francès"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "Guyane francesse"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "Polinezeye francesse"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "Payis francès nonnrece"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1640,46 +2589,21 @@ msgstr "Francès, Vî francès (842-1400)"
 msgid "Frisian"
 msgstr "Frizon"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "Friyoulan"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "Fulah"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "Friyoulan"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "Gayelic"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "Galicyin"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambeye"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "Louganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1690,15 +2614,10 @@ msgstr "Gayo"
 msgid "Gbaya"
 msgstr "Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "Gehez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Djeyordjeye"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "Tîxhon (ôtes)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1710,6 +2629,36 @@ msgstr "Djeyordjyin"
 msgid "German"
 msgstr "Almand"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "Gehez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "Djilbertyin"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "Gayelic"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Irlandès"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "Galicyin"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "Gayel di l' iye di Man"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1720,30 +2669,6 @@ msgstr "Almand, Moyén hôt almand (åtoû di 1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "Almand, Vî hôt almand (åtoû di 750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "Tîxhon (ôtes)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Almagne"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Gana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Djibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "Djilbertyin"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1764,11 +2689,6 @@ msgstr "Gotike"
 msgid "Grebo"
 msgstr "Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Grece"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1779,61 +2699,16 @@ msgstr "Grek, Ancyin grek (disk' a 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "Grek, Modiene (dispoy 1453)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Groenlande"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenåde"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Gwadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Gwam"
-
-#. language code: grn gn
-#: zypp/LanguageCode.cc:505
-msgid "Guarani"
-msgstr "Gwarani"
-
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Gwatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "Guernsey"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinêye"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinêye-Bissaw"
+#. language code: grn gn
+#: zypp/LanguageCode.cc:505
+msgid "Guarani"
+msgstr "Gwarani"
 
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "Goudjarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1844,52 +2719,21 @@ msgstr "Gwich'in"
 msgid "Haida"
 msgstr "Hayida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Hayiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "Hayicyin"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Foû-rîle di hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext nén raloyî"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive nén inicialijhî"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume nén inicialijhî"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "Hawssa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "Avoz metou en alaedje tos les depots dmandés ?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "Hawayin"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Iyes Heard eyet Iyes MacDonald"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1915,16 +2759,6 @@ msgstr "Himatchali"
 msgid "Hindi"
 msgstr "Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "Istwere :"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1935,31 +2769,21 @@ msgstr "Hitite"
 msgid "Hmong"
 msgstr "Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Vatican"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "Hôt serbe"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "Hongrwès"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hongreye"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1970,10 +2794,10 @@ msgstr "Hupa"
 msgid "Iban"
 msgstr "Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Izlande"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1985,256 +2809,105 @@ msgstr "Izlandès"
 msgid "Ido"
 msgstr "Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "Yi sitchouwanès"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "Såmi Inari"
-
-#
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "Inde"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Interlingua (Soce do lingaedje ogziliaire internacionå)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Indyin (ôtes)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Indo-uropeyin (ôtes)"
-
-#
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonezeye"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Indonezyin"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Indo-uropeyin (ôtes)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "Ingouche"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "L' astalaedje a stî abandné come dimandé."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Interlingua (Soce do lingaedje ogziliaire internacionå)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Inuktitut"
-
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "Inyupiak"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Componint %s nén valåbe"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Componrint %s nén valåbe « %s »"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Paramete cweraedje di l' URL LDAP nén valåbe « %s »"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Tchinne di cweraedje di l' IRL LDAP nén valåbe"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Arindjmint di l' URL nén valåbe « %s »"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Vude referince d' objet di l' Url nén valåbe"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Componint do lodjoe nén valåbe « %s »"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Componint do pôrt « %s » Nén valåbe"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Erîlêye ratourneure « %s » nén valåbe"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "Erîlêye ratourneure « %s » nén valåbe : regcomp a rtourné %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "No do fitchî do depot so « %s » nén valåbe"
-
-#
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
-msgstr "Iranyin (ôtes)"
-
-#
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Irak"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Irlande"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Irlandès"
+msgid "Ingush"
+msgstr "Ingouche"
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Irlandès, Moyén irlandès (900-1200)"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "Inyupiak"
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Irlandès, Vî irlandès (divant 900)"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
+msgstr "Iranyin (ôtes)"
 
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Lingaedjes irocwès"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "Iye di Man"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israyel"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "Itålyin"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Itåleye"
-
-#
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Djamayike"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "Djavanès"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Djapon"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "Djaponès"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "Djavanès"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "Djerzey"
-
-#
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Djordaneye"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "Djudeyo-farsi"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Djudeyo-arabe"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "Djudeyo-farsi"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "Kabardyin"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2251,11 +2924,6 @@ msgstr "Katchin"
 msgid "Kalaallisut"
 msgstr "Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "Kalmike"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2266,21 +2934,6 @@ msgstr "Kamba"
 msgid "Kannada"
 msgstr "Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "Karatchay-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2291,10 +2944,10 @@ msgstr "Karen"
 msgid "Kashmiri"
 msgstr "Kashmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "Kachubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2306,31 +2959,26 @@ msgstr "Kawi"
 msgid "Kazakh"
 msgstr "Kazaxh"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazaxhtan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenia"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "Kabardyin"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "Xhmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "Koysan (ôtes)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "Xhmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2341,11 +2989,6 @@ msgstr "Khotanès"
 msgid "Kikuyu"
 msgstr "Kikouyou"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "Kimboundou"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2356,15 +2999,15 @@ msgstr "Kinyarwanda"
 msgid "Kirghiz"
 msgstr "Kirguize"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "Kimboundou"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2376,11 +3019,6 @@ msgstr "Komi"
 msgid "Kongo"
 msgstr "Kicongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2396,11 +3034,21 @@ msgstr "Kosrayin"
 msgid "Kpelle"
 msgstr "Kpellè"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "Karatchay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "Krou"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "Kuruxh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2416,26 +3064,11 @@ msgstr "Kumyk"
 msgid "Kurdish"
 msgstr "Kurde"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "Kuruxh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "Kutenay"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuweyt"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kirguiztan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2456,68 +3089,21 @@ msgstr "Lamba"
 msgid "Lao"
 msgstr "Lawocyin"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Republike Democratike då Peupe Lawo (Lawos)"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "Latén"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Letoneye"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "Letonyin"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Liban"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lessoto"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "Livea 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "Livea 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "Livea 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "Lezguyin"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libeye"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Lîchtensteyn"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2526,63 +3112,48 @@ msgstr "Limbordjwès"
 #. language code: lin ln
 #: zypp/LanguageCode.cc:671
 msgid "Lingala"
-msgstr "Lingala"
-
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Litwaneye"
-
-#. language code: lit lt
-#: zypp/LanguageCode.cc:673
-msgid "Lithuanian"
-msgstr "Litwanyin"
-
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "Dji n' sai moussî e l' eplaeçmint « %s » pol moumint."
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "Bas almand"
+msgstr "Lingala"
 
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "Bas serbe"
+#. language code: lit lt
+#: zypp/LanguageCode.cc:673
+msgid "Lithuanian"
+msgstr "Litwanyin"
+
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "Louba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "Lussimbordjès"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "Louba-Loulouwa"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "Louba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "Louganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "Såmi Lule"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2598,36 +3169,11 @@ msgstr "Louwo (Kenia et Tanzaneye)"
 msgid "Lushai"
 msgstr "Louchay"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Lussimbork"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "Lussimbordjès"
-
-#
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedoneye"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "Macedonyin"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagascar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2638,6 +3184,11 @@ msgstr "Madurès"
 msgid "Magahi"
 msgstr "Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "Marshalès"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2648,178 +3199,60 @@ msgstr "Maithili"
 msgid "Makasar"
 msgstr "Makazar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "Malgache"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "Malay"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "Malayalam"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaizeye"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldives"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "URI må fwaite"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Male"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "Malès"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "Mantchou"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "Mandar"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Lingaedjes manobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "Gayel di l' iye di Man"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "Mawori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Ostronezyin (ôtes)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "Marati"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Iyes Marshall"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "Marshalès"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinike"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "Massay"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Moritanreye"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Iye Môrice"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Lingaedjes maya"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayote"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "I gn a nén e media sourdant « %s » li media volou"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "Li media « %s » est eployî pa-z ene ôte instance"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "Malay"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "Media nén ataetchî"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "Media nén drovou cwand dj' a sayî d' fé l' faitindje « %s »."
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "France Metropolitinne"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mecsike"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Irlandès, Moyén irlandès (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2831,86 +3264,61 @@ msgstr "Micmak"
 msgid "Minangkabau"
 msgstr "Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "Mirandès"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Ôtes lingaedjes"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "Mon-Xhmer (ôtes)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "Malgache"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "Malès"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "Mantchou"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Lingaedjes manobo"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "Mohåwk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "Moldåve"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "Mon-Xhmer (ôtes)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongoleye"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "Mongol"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "Montenegro"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Marok"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambike"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2921,211 +3329,141 @@ msgstr "Multipes lingaedjes"
 msgid "Munda languages"
 msgstr "Lingaedjes mounda"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Birmaneye"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "Crîk"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "Mirandès"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Lingaedjes maya"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibeye"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "Amerindyins d' Amerike bijhrece (ôtes)"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nawouryin"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "Napolitin"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navaxho"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "Ndebele (Bijhrece)"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "Ndebele (Nonnrece)"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "Ndebele (Bijhrece)"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "Ndonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "Napolitin"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "Bhasa nepalès"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "Bas almand"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "Nepalès"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Bas Payis"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Antiyes neyerlandesses"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "Nouve Caledoneye"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "Nouve Zelande"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "Novea messaedje di metaedje a djoû"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "Bhasa nepalès"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "Nias"
 
-#
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragwa"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Nidjer"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "Niger-Kordofanyin (ôtes)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nidjeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "Nilo-saryin (ôtes)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niuwé"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "Niuweyin"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Pont d' côde"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "Norvedjyin Ninorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "Pont d' url e depot"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "Norvedjyin Bokmål"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "Nogay"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Iye Norfolk"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "Vî norvedjyin"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "Amerindyins d' Amerike bijhrece (ôtes)"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "Corêye (bijhrece)"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Iyes Marianes bijhreces"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "Såmi bijhrece"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "Soto bijhrece"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norvedje"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "Norvedjyin"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "Norvedjyin Bokmål"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "Norvedjyin Ninorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Nén on léjheu d' plake CDROM"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "Soto bijhrece"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Lingaedjes noubyins"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "Newari classike"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "Tchitchewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3146,11 +3484,6 @@ msgstr "Nyoro"
 msgid "Nzima"
 msgstr "Nzima"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "wårder l' forpassé %s"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3161,20 +3494,6 @@ msgstr "Occitan (après 1500)"
 msgid "Ojibwa"
 msgstr "Odjibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "Dj' a dandjî d' onk ou amdedeus atributs « %s » ou « %s »."
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "Operåcion nén sopoirtêye på media"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3195,67 +3514,36 @@ msgstr "Ozaedje"
 msgid "Ossetian"
 msgstr "Ossetyin"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "Turk otoman (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Lingaedjes otomans"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Li pacaedje %s shonne awè stî crombyî sol tins do berwetaedje. Voloz rsayî "
-"l' rischoyaedje ?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "Papouwazyin (ôtes)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "Pangazinan"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "Pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palawou"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "Palawouwin"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestene"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "Pâli"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "Pampanga"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "Pangazinan"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3266,95 +3554,45 @@ msgstr "Pandjabi"
 msgid "Papiamento"
 msgstr "Papiamento"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papouwazeye Nouve Guinêye"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "Papouwazyin (ôtes)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paragway"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "Li tchmin « %s » sol media « %s » n' est nén on ridant."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "Li tchmin « %s » sol media « %s » n' est nén on fitchî."
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Droet di moussî e « %s » rifuzé."
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "Farsi"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "Palawouwin"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "Farsi, Vî farsi (åtoû di 600-400 divant J.C.)"
 
-#
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Perou"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "Farsi"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Filipin (ôtes)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Filipenes"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "Fenicyin"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "Pohnpeyin"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Pologne"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "Pâli"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "Polonès"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "Pohnpeyin"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3366,81 +3604,21 @@ msgstr "Portuguès"
 msgid "Prakrit Languages"
 msgstr "Lingaedjes prakrit"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"Trovaedje do problinme, ça vout dire on sopoirt tecnike atuzlé po dner des "
-"informåcions sol copatibilité, aidance a l' astalaedje, sopoirt po l' "
-"eployaedje, mintnance normåle eyet rujhes di båze. Li sopoirt di livea 1 n' "
-"est nén fwait po coridjî les arokes des sacwès nén bén fwaites e prodût."
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "Provincå, Vî provincå (djusk' a 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "Dene"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Porto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Pashto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Katar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "Ketchwa"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr ""
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM a fwait berwete :"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "Romantche"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3454,59 +3632,28 @@ msgstr "Rapanwi"
 #. language code: rar
 #: zypp/LanguageCode.cc:889
 msgid "Rarotongan"
-msgstr "Raratongyin (Iye di Påke)"
-
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "Ricmande"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr ""
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr ""
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr ""
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "Dimande"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reyunion"
+msgstr "Raratongyin (Iye di Påke)"
 
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "Roman (ôtes)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Roumaneye"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "Roumanyin"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "Romantche"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "Romani"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "Roumanyin"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3517,44 +3664,25 @@ msgstr "Kiroundi"
 msgid "Russian"
 msgstr "Rûsse"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Rûsseye"
-
-#
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Sinte Helene"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Sint Kitts et Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Sinte Luceye"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "Sandawe"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "Sint Martin"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "Sango"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Sint Pire et Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "Yakout"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Sint Vincint et les Grenadines"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "Amerindyins d' Amerike nonnrece (ôtes)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3566,71 +3694,41 @@ msgstr "Lingaedjes salichans"
 msgid "Samaritan Aramaic"
 msgstr "Arameyin samaritin"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Lingaedjes såmi (ôtes)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samowa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "Samowan"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "Sint Marin"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "Sandawe"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "Sango"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "Sanskrit"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "Sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "São Tomé et Prince"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "Sardegnyin"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "Sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "Serbe"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Arabeye Sawoudite"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "Sicilyin"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "Scots"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "Crowåte"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3641,146 +3739,40 @@ msgstr "Selkup"
 msgid "Semitic (Other)"
 msgstr "Semitike (ôtes)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegål"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "Serbeye"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "Serbe"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "Serer"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "On no metou di siervice ni s' pout cominçî avou on pont."
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Irlandès, Vî irlandès (divant 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seycheles"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Lingaedjes des sines"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "Chan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "Shona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "Yi sitchouwanès"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "Sicilyin"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "Sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Siera Leyone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Lingaedjes des sines"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "Sinateure di fitchî %s nén trovêye"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Sinateure di fitchî %s nén trovêye"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "Sinateure di fitchî %s nén trovêye"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "Sinateure di fitchî %s nén trovêye"
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr " a fwait berwete a l' enondaedje"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "Sindi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapour"
-
 #. language code: sin si
-#: zypp/LanguageCode.cc:947
-msgid "Sinhala"
-msgstr "Sinhala"
-
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "Sino-Tibetin (ôtes)"
+#: zypp/LanguageCode.cc:947
+msgid "Sinhala"
+msgstr "Sinhala"
 
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Lingaedjes siwous"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "Såmi Skolt"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "Sino-Tibetin (ôtes)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3792,255 +3784,156 @@ msgstr "Eslåve (ôtes)"
 msgid "Slovak"
 msgstr "Eslovake"
 
-#
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Eslovakeye"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Esloveneye"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "Eslovenyin"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "Såmi nonnrece"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "Såmi bijhrece"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Lingaedjes såmi (ôtes)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "Såmi Lule"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "Såmi Inari"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "Samowan"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "Såmi Skolt"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "Shona"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "Sindi"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "Soninke"
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "Sogdyin"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Iyes Solomon"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "Somalyin"
 
-#
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somaleye"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "Songhay"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "Soninke"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Lingaedjes sorbyin"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
-"Dji rgrete mins cisse modêye ci di libzypp a stî basteye sins sopoirt po HAL."
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "Soto nonnrece"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "Nonne Afrike"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "Amerindyins d' Amerike nonnrece (ôtes)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Djeyordjeye do sud eyet Iyes Sandwich do sud"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "Corêye (nonnrece)"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Altay nonnrece"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "Såmi nonnrece"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Espagne"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "Espagnol"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "Sardegnyin"
 
-#
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Soudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "Propoze"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "Nilo-saryin (ôtes)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "Suwati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "Soukouma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "Soumeryin"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "Sundanès"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "Rawetes"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "Sousou"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Iyes Svalbard eyet Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "Soumeryin"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "Suwahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "Suwati"
-
-#
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Suwazilande"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Suwede"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "Suwedwès"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Swisse"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Sireye"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "Siriake"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "Foû rîle sistinme « %s » sol media « %s »."
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "Tagalog"
-
-#. language code: tah ty
-#: zypp/LanguageCode.cc:1013
-msgid "Tahitian"
-msgstr "Tahityin"
-
-#. language code: tai
-#: zypp/LanguageCode.cc:1015
-msgid "Tai (Other)"
-msgstr "Taylandès (ôtes)"
-
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "Tadjik"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tadjikistan"
+#. language code: tah ty
+#: zypp/LanguageCode.cc:1013
+msgid "Tahitian"
+msgstr "Tahityin"
 
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "Tamashek"
+#. language code: tai
+#: zypp/LanguageCode.cc:1015
+msgid "Tai (Other)"
+msgstr "Taylandès (ôtes)"
 
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "Tamoul"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzaneye"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4051,6 +3944,11 @@ msgstr "Tatår"
 msgid "Telugu"
 msgstr "Telougou"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4061,33 +3959,21 @@ msgstr "Tereno"
 msgid "Tetum"
 msgstr "Tetoum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "Tadjik"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "Tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "Taylandès"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Taylande"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "Li livea do sopoirt n' est nén specifyî"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "Li vindeu n' dene pont d' sopoirt."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "Ci faitindje ci est dedja enondé pa èn ôte programe."
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "Cisse dimande ci va scheter vosse sistinme !"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4103,46 +3989,25 @@ msgstr "Tigré"
 msgid "Tigrinya"
 msgstr "Tigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "L' astådje a stî trop longue po moussî e \"%s\"."
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "Klingon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "Tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "Tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4154,766 +4019,898 @@ msgstr "Tonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "Tonga (Iyes Tonga)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, fuzzy, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "Dj' a sayî d' abaguer l' clé %s nén egzistante e l' anea d' clés %s"
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinité et Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "Tsimchyin"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "Tswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "Tsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "Tswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "Turcmene"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "Toumbouka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunizeye"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Lingaedjes toupi"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turkeye"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "Turk"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "Turk otoman (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "Turcmene"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turcmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Iyes Turks eyet Caicos"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Altayike (ôtes)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "Touvalou"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "Twi"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "Touvinyin"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "Twi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Oudmourt"
 
-#
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Ouganda"
+#. language code: uga
+#: zypp/LanguageCode.cc:1083
+msgid "Ugaritic"
+msgstr "Ougaritike"
+
+#. language code: uig ug
+#: zypp/LanguageCode.cc:1085
+msgid "Uighur"
+msgstr "Ouygour"
+
+#. language code: ukr uk
+#: zypp/LanguageCode.cc:1087
+msgid "Ukrainian"
+msgstr "Oucrinnyin"
+
+#. language code: umb
+#: zypp/LanguageCode.cc:1089
+msgid "Umbundu"
+msgstr "Oumboundou"
+
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "Nén cnoxhou"
+
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "Ourdou"
+
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "Ouzbeke"
+
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "Vay"
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "Venda"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "Vietnamyin"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "Volapouk"
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "Votic"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "Lingaedjes wakashan"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "Walamo"
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "Waray"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "Washo"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "Walès"
 
-#. language code: uga
-#: zypp/LanguageCode.cc:1083
-msgid "Ugaritic"
-msgstr "Ougaritike"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Lingaedjes sorbyin"
 
-#. language code: uig ug
-#: zypp/LanguageCode.cc:1085
-msgid "Uighur"
-msgstr "Ouygour"
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "Walon"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Oucrinne"
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "Wolof"
 
-#. language code: ukr uk
-#: zypp/LanguageCode.cc:1087
-msgid "Ukrainian"
-msgstr "Oucrinnyin"
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "Kalmike"
 
-#. language code: umb
-#: zypp/LanguageCode.cc:1089
-msgid "Umbundu"
-msgstr "Oumboundou"
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "Xhossa"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Dji n' sai clôner l' objet Url"
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "Yawo"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Dji n' sai ahiver l' raloyaedje dbus"
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "Yapese"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Dji n' sai inicialijhî l' contecse HAL -- hald nén ovrant ?"
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "Yidish"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Dji n' sai analijhî les componints di l' Url"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "Yorouba"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "Nén cnoxhou"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Lingaedjes youpik"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "Dji n' sai nén apougnî cisse sôre di depot la"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "Zapoteke"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Emirats Arabes Unis"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "Zenaga"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "Grande-Burtaegne"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "Zhuang"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "Estats Unis"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "Zandè"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "Iyes mineures des Estats Unis"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "Zoulou"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Payis nén cnoxhou : "
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "Zouni"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Åk di nén cnoxhou n' a nén stî come dji léjheu a pårti d' \"%s\""
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, fuzzy, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "Dj' a sayî d' abaguer l' clé %s nén egzistante e l' anea d' clés %s"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Lingaedje nén cnoxhou : "
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "Li disfaçaedje del clé a fwait berwete."
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Môde di corespondaedje \"%s\" nén cnoxhou"
+msgid "Signature file %s not found"
+msgstr "Sinateure di fitchî %s nén trovêye"
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "Môde di corespondaedje \"%s\" pol modele \"%s\" nén cnoxhou"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Dji n' sai diner l' fitchî « %s » do depot « %s »"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "Tchuze di sopoirt nén cnoxhowe. I gn a pont d' discrijhaedje"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "Pont d' url e depot"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
 msgstr ""
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "Metôde d' otintifiaedje HTTP \"%s\" nén sopoirtêye"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Li pacaedje %s shonne awè stî crombyî sol tins do berwetaedje. Voloz rsayî "
+"l' rischoyaedje ?"
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr " a fwait berwete a l' enondaedje"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Arindjmint d' URI nén sopoirté dins \"%s\"."
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
+"L' ahessaedje do pacaedje %s a fwait berwete. Voloz vs rissayî l' "
+"rischoyaedje?"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "Hôt serbe"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "li verifiaedje d' applydeltarpm a fwait berwete."
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "Ourdou"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm a fwait berwete."
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "L' arindjmint di l' Url ni permet pont d' %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "L' arindjmint URL ni permete nén d' awè on componint lodjoe"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr ""
+"%s ni fwait nén pårteye d' on depot d' metaedje a djoû del distribucion"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "L' arindjmint di l' Url ni permete pont d' sicret"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s a ene årtchitecteure pus basse"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "L' arindjmint di l' Url ni permet pont d' pôrt"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "problinme avou l' pacaedje d' astalé %s"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "L' arindjmint di l' Url ni permet pont d' no d' uzeu"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "dimandes d' afrontmints"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "L' arindjmint di l' URL est on componint reki"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "gn des des problinmes d' aloyances"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "I fåt on lodjoe e l' arindjmint di l' URL"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "rén n' dene li %s dimandé"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "I fåt on no di tchmin e l' arindjmint di l' URL"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "Avoz metou en alaedje tos les depots dmandés ?"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Ourougway"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr ""
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "Ouzbeke"
+#: zypp/solver/detail/SATResolver.cc:1000
+#, fuzzy
+msgid "unsupported request"
+msgstr "nén sopoirté"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Ouzbekistan"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "Çou paket n' est nén astalé et n' serè nén astalé."
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "Vay"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s n' est nén astalåve"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-#, fuzzy
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] "Dji n' a trové nole meta-dnêye valåbe al/ås URL sipeciftî(s)"
-msgstr[1] "Dji n' a trové nole meta-dnêye valåbe al/ås URL sipeciftî(s)"
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "rén n' dene %s k' a dandjî %s"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanouatou"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Dji n' sai nén astaler ambedeus %s eyet %s"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "Venda"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s s' afronte avou %s ahessî pa %s"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezwela"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s rind trop vîs %s ahessî pa %s"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "astalé %s trop vîs %s dinés pa %s"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "Vietnamyin"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s afrontmints rezoudåves avou %s ahessî pa lyi minme"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Iyes Viedjes etazunyinnes"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s a dandjî d' %s mins cisse dimande ni sait nén esse ahesseye"
 
-#: zypp/media/MediaCurl.cc:1008
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "ahesseus disfacé : "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
+"\n"
+"uninstallable providers: "
 msgstr ""
+"\n"
+"ahesseus nén astalåves : "
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "Volapouk"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "ahesseus nén astalåves : "
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "Votic"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "Lingaedjes wakashan"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "èn nén astaler %s"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "Walamo"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "wårder %s"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis et Futuna"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "èn nén espaitchî l' astalaedje di %s"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "Walon"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "Cisse dimande ci va scheter vosse sistinme !"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "Waray"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "passer houte l' adviertixhmint d' on sketé sistinme"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "Washo"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "èn nén dmander d' astaler on rezoudaedje dinant %s"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "Walès"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "èn nén dmander d' disfacer tos les rezoudaedjes dinant %s"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Sara Coûtchantrece"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "èn nén astaler l' pus nouve modêye di %s"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "Wolof"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "wårder %s mågré k' il est d' ene pus basse årtchitecteure"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "Xhossa"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "astaler %s mågré k' il est d' ene pus basse årtchitecteure"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "Yakout"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "wårder l' forpassé %s"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "Yawo"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "astaler %s a pårti do depot schovté evoye"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "Yapese"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "dismete a djoû di %s a %s"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Yemen"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "candjmint d' årtchitecteure di %s a %s"
+
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"astaler %s (avou candjmint d' vindeu)\n"
+"  %s  -->  %s"
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "replaeçmint di %s avou %s"
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "disastalaedje di %s"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "Yidish"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "sketer %s e passant houte sacwantes di ses aloyances"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "Yorouba"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "sketer %s e passant houte sacwantes di ses aloyances"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Lingaedjes youpik"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambeye"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "Dj' a dandjî d' onk ou amdedeus atributs « %s » ou « %s »."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "Zandè"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "Dji n' sai nén drovi l' fitchî d' eclawaedje : %s"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "Zapoteke"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "Ci faitindje ci est dedja enondé pa èn ôte programe."
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "Zenaga"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "Istwere :"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Môde di corespondaedje \"%s\" nén cnoxhou"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwè"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "Môde di corespondaedje \"%s\" pol modele \"%s\" nén cnoxhou"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "Zoulou"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "Erîlêye ratourneure « %s » nén valåbe : regcomp a rtourné %d"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "Zouni"
+#: zypp/base/StrMatcher.cc:158
+#, c-format, boost-format
+msgid "Invalid regular expression '%s'"
+msgstr "Erîlêye ratourneure « %s » nén valåbe"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "li verifiaedje d' applydeltarpm a fwait berwete."
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm a fwait berwete."
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr "I s' fåt otintifyî po « %s »"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "candjmint d' årtchitecteure di %s a %s"
+msgid "Failed to mount %s on %s"
+msgstr "Li montaedje di %s dins %s a fwait berwete"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "sketer %s e passant houte sacwantes di ses aloyances"
+msgid "Failed to unmount %s"
+msgstr "Li dismontaedje di %s a fwait berwete"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Dji n' sai nén astaler ambedeus %s eyet %s"
+msgid "Bad file name: %s"
+msgstr "Mwais no d' fitchî : %s"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "dimandes d' afrontmints"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "Media nén drovou cwand dj' a sayî d' fé l' faitindje « %s »."
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "copeye di såvrité di %s ahivêye"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Fitchî « %s » nén trové sol media « %s »"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "disastalaedje di %s"
+msgid "Cannot write file '%s'."
+msgstr "Dji n' sai scrire li fitchî « %s »."
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "ahesseus disfacé : "
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "Media nén ataetchî"
 
-#: zypp/solver/detail/SATResolver.cc:1245
-#, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "èn nén dmander d' disfacer tos les rezoudaedjes dinant %s"
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "Mwais pont d' ataetche do media"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "èn nén dmander d' astaler on rezoudaedje dinant %s"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "L' inicialijhaedje di l' aberwetaedje (curl) a fwait berwete po « %s »"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "èn nén astaler %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "Foû rîle sistinme « %s » sol media « %s »."
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "èn nén astaler l' pus nouve modêye di %s"
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "Li tchmin « %s » sol media « %s » n' est nén on fitchî."
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "dismete a djoû di %s a %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "Li tchmin « %s » sol media « %s » n' est nén on ridant."
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "sketer %s e passant houte sacwantes di ses aloyances"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "URI må fwaite"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "passer houte l' adviertixhmint d' on sketé sistinme"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "Vude no do lodjoe e l' URI"
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "Vude sistinme di fitchî e l' URI"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "Vude såme e l' URI"
+
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Arindjmint d' URI nén sopoirté dins \"%s\"."
+
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "Operåcion nén sopoirtêye på media"
+
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
-"astaler %s (avou candjmint d' vindeu)\n"
-"  %s  -->  %s"
+"Aroke d' aberwetaedje (curl) po « %s » :\n"
+"Côde di l' aroke : %s\n"
+"Messaedje d' aroke : %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "astaler %s mågré k' il est d' ene pus basse årtchitecteure"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr ""
+"Åk n' a nén stî come dji definixheu les tchuzes d' aberwetaedje (curl) po « "
+"%s » :"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "astaler %s a pårti do depot schovté evoye"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "I gn a nén e media sourdant « %s » li media volou"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "astalé %s trop vîs %s dinés pa %s"
-
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "nén valåbe"
+msgid "Medium '%s' is in use by another instance"
+msgstr "Li media « %s » est eployî pa-z ene ôte instance"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
-#, c-format, boost-format
-msgid "keep %s"
-msgstr "wårder %s"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "Dji n' sai fé rexhe nou media"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "wårder %s mågré k' il est d' ene pus basse årtchitecteure"
+msgid "Cannot eject media '%s'"
+msgstr "Dji n' sai fé rexhe li media « %s »"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "wårder l' forpassé %s"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new : Dji n' sai ahiver l' contecse libhal"
-
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection : Dji n' sai defini l' raloyaedje dbus"
+msgid "Permission to access '%s' denied."
+msgstr "Droet di moussî e « %s » rifuzé."
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "rén n' dene %s k' a dandjî %s"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "L' astådje a stî trop longue po moussî e \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "rén n' dene li %s dimandé"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "Dji n' sai moussî e l' eplaeçmint « %s » pol moumint."
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "package %s does not exist"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
 msgstr ""
+" : rujhe di l' acertineure SSL, waitîz k' l' acert. di l' OA est boune po « "
+"%s »."
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "problinme avou l' pacaedje d' astalé %s"
-
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "èn nén espaitchî l' astalaedje di %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
+"Dji n' sai trover l' éndjin loop k' i gn a po monter l' imådje a pårti d' « "
+"%s »"
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "Metôde d' otintifiaedje HTTP \"%s\" nén sopoirtêye"
+
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "replaeçmint di %s avou %s"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "Dji n' sai ahiver sat-pool."
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm a ahivé %s come %s mins ça n' a nén stî possibe di trover l' diferince"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"rpm a ahivé %s come %s/\n"
-"Vos avoz droci les 25 prumirès royes di diferince :\n"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm a schapé %s come %s mins ça n' a nén stî possibe di trover l' diferince"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"rpm a schapé %s come %s/\n"
-"Vos avoz droci les 25 prumirès royes di diferince :\n"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s afrontmints rezoudåves avou %s ahessî pa lyi minme"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "gn des des problinmes d' aloyances"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "ahesseus nén astalåves : "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "nén cnoxhou"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "nén sopoirté"
+#~ msgid "do not keep %s installed"
+#~ msgstr "èn nén wårder %s astalé"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-#, fuzzy
-msgid "unsupported request"
-msgstr "nén sopoirté"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr ""
+#~ "Dji n' sai askepyî l' clé publike %s di l' anea des clés %s e fitchî %s"
 
-#, fuzzy
-#~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
-#~ msgstr "Gn a pont d' eterface uzeu po ç' module."
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr ""
+#~ "L' inicialijhaedje di l' aberwetaedje (Metalink curl) a fwait berwete po "
+#~ "« %s »"
 
-#, fuzzy
-#~ msgid " Error!"
-#~ msgstr "Aroke"
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "Aroke d' aberwetaedje (metalink curl) po « %s » :\n"
+#~ "Côde di l' aroke : %s\n"
+#~ "Messaedje d' aroke : %s\n"
 
-#, fuzzy
-#~ msgid " Important!"
-#~ msgstr "Abe&rweter"
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "L' aberwetaedje s' a aresté a %d%%"
 
-#, fuzzy
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "Afrontmint etur les coridjaedjes"
+#~ msgid "Download interrupted by user"
+#~ msgstr "L' aberwetaedje a stî aresté pa l' uzeu"
 
-#, fuzzy
 #~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
-#~ msgstr "afrontmint avou..."
-
-#, fuzzy
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "Coridjaedjes ricomandés"
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr ""
+#~ "Åk n' a nén stî come dji definixheu les tchuzes d' aberwetaedje (curl) po "
+#~ "« %s » :"
 
-#, fuzzy
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "a des dmandes nén rezoudowes..."
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "L' aberwetaedje di %s a pårti di %s a fwait berwete"
 
-#, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "a des dmandes nén rezoudowes..."
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Serbeye et Montenegro"
 
 #, fuzzy
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "Coridjaedjes ricomandés"
+#~ msgid "Unknown Distribution"
+#~ msgstr "Djin nén cnoxhowe"
 
 #, fuzzy
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "Çou paket n' est nén astalé et n' serè nén astalé."
+#~ msgid "Invalid user name or password."
+#~ msgstr "L' operåcion d' siervice ni covént nén."
 
 #, fuzzy
-#~ msgid "%s obsoletes other resolvables"
+#~ msgid "Do not install or delete the resolvables concerned"
 #~ msgstr "Coridjaedjes di radjoutés"
 
 #, fuzzy
-#~ msgid ", Action: "
-#~ msgstr "&Accions"
-
-#, fuzzy
-#~ msgid "Apache languages"
-#~ msgstr "Lingaedjes apaches"
+#~ msgid "Install missing resolvables"
+#~ msgstr "Afrontmint etur les coridjaedjes"
 
 #, fuzzy
-#~ msgid "Athapascan languages"
-#~ msgstr "Lingaedjes atapascans"
+#~ msgid "Keep resolvables"
+#~ msgstr "Coridjaedjes ki dj' vos propôze"
 
 #, fuzzy
-#~ msgid "Australian languages"
-#~ msgstr "Lingaedjes ostralyins"
+#~ msgid "Unlock these resolvables"
+#~ msgstr "Coridjaedjes d' amidrés"
 
 #, fuzzy
-#~ msgid "Bamileke languages"
-#~ msgstr "Lingaedjes bamilekes"
+#~ msgid "delete %s"
+#~ msgstr "Dis&facer"
 
 #, fuzzy
-#~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
-#~ msgstr "Coridjaedjes ki dj' a dandjî dvant l' astalaedje"
+#~ msgid "unlock all resolvables"
+#~ msgstr "Afrontmint etur les coridjaedjes"
 
 #, fuzzy
 #~ msgid "Can't open solv-file: "
@@ -4921,126 +4918,127 @@ msgstr "nén sopoirté"
 #~ "Dji n' pout nén drovi l' fitchî d' son:\n"
 #~ "%1"
 
-#~ msgid "Cannot create public key %s from %s keyring to file %s"
-#~ msgstr ""
-#~ "Dji n' sai askepyî l' clé publike %s di l' anea des clés %s e fitchî %s"
-
 #, fuzzy
-#~ msgid "Centruual African Republic"
-#~ msgstr "Cintrafrike"
+#~ msgid "Software management is already running."
+#~ msgstr "Meteu a djoû d' programe - ZMD n' est nén enondé"
 
 #, fuzzy
-#~ msgid "Child of"
-#~ msgstr "Tchili"
+#~ msgid "Invalid information"
+#~ msgstr "&Informåcion"
 
 #, fuzzy
-#~ msgid "Chinook jargon"
-#~ msgstr "Djårgon Tchinouk"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "Coridjaedjes ricomandés"
 
 #, fuzzy
-#~ msgid "Creoles and pidgins, English based (Other)"
-#~ msgstr "Creyoles et pidjines, båzé sol inglès (ôtes)"
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "Afrontmint etur les coridjaedjes"
 
 #, fuzzy
-#~ msgid "Creoles and pidgins, French-based (Other)"
-#~ msgstr "Creyoles et pidjines, båzé sol francès (ôtes)"
+#~ msgid ""
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr "afrontmint avou..."
 
 #, fuzzy
-#~ msgid "Creoles and pidgins, Portuguese-based (Other)"
-#~ msgstr "Creyoles et pidjines, båzé sol portuguès (ôtes)"
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "Coridjaedjes di radjoutés"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "Coridjaedjes di radjoutés"
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "Coridjaedjes ricomandés"
 
-#~ msgid "Download (Metalink curl) initialization failed for '%s'"
-#~ msgstr ""
-#~ "L' inicialijhaedje di l' aberwetaedje (Metalink curl) a fwait berwete po "
-#~ "« %s »"
+#, fuzzy
+#~ msgid "Child of"
+#~ msgstr "Tchili"
 
+#, fuzzy
 #~ msgid ""
-#~ "Download (metalink curl) error for '%s':\n"
-#~ "Error code: %s\n"
-#~ "Error message: %s\n"
-#~ msgstr ""
-#~ "Aroke d' aberwetaedje (metalink curl) po « %s » :\n"
-#~ "Côde di l' aroke : %s\n"
-#~ "Messaedje d' aroke : %s\n"
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
+#~ msgstr "Gn a pont d' eterface uzeu po ç' module."
 
-#~ msgid "Download interrupted at %d%%"
-#~ msgstr "L' aberwetaedje s' a aresté a %d%%"
+#, fuzzy
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "Çou paket n' est nén astalé et n' serè nén astalé."
 
-#~ msgid "Download interrupted by user"
-#~ msgstr "L' aberwetaedje a stî aresté pa l' uzeu"
+#, fuzzy
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "a des dmandes nén rezoudowes..."
 
 #, fuzzy
-#~ msgid "Downloading %s"
-#~ msgstr "A&berweter"
+#~ msgid "No need to install %s"
+#~ msgstr "Copyî les fitchîs sol sistinme d' astalé"
 
-#~ msgid ""
-#~ "Error occurred while setting download (metalink curl) options for '%s':"
-#~ msgstr ""
-#~ "Åk n' a nén stî come dji definixheu les tchuzes d' aberwetaedje (curl) po "
-#~ "« %s » :"
+#, fuzzy
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "a des dmandes nén rezoudowes..."
 
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "L' aberwetaedje di %s a pårti di %s a fwait berwete"
+#, fuzzy
+#~ msgid ", Action: "
+#~ msgstr "&Accions"
 
 #, fuzzy
-#~ msgid "Install missing resolvables"
-#~ msgstr "Afrontmint etur les coridjaedjes"
+#~ msgid "selection"
+#~ msgstr "Tchuze"
 
 #, fuzzy
-#~ msgid "Installing %s"
-#~ msgstr "Astalaedje"
+#~ msgid "pattern"
+#~ msgstr "Modeles"
 
 #, fuzzy
-#~ msgid "Invalid information"
-#~ msgstr "&Informåcion"
+#~ msgid "product"
+#~ msgstr "prodûts"
 
 #, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "L' operåcion d' siervice ni covént nén."
+#~ msgid "patch"
+#~ msgstr "coridjaedjes"
 
 #, fuzzy
-#~ msgid "Iroquoian languages"
-#~ msgstr "Lingaedjes irocwès"
+#~ msgid "script"
+#~ msgstr "Scripe"
 
 #, fuzzy
-#~ msgid "Keep resolvables"
-#~ msgstr "Coridjaedjes ki dj' vos propôze"
+#~ msgid "message"
+#~ msgstr "Messaedjes"
 
 #, fuzzy
-#~ msgid "Manobo languages"
-#~ msgstr "Lingaedjes manobo"
+#~ msgid "Resolvable"
+#~ msgstr "Coridjaedjes di dnés."
 
 #, fuzzy
 #~ msgid "Marking resolvable %s as uninstallable"
 #~ msgstr "Coridjaedjes ki dvèt esse astalés"
 
 #, fuzzy
-#~ msgid "No need to install %s"
-#~ msgstr "Copyî les fitchîs sol sistinme d' astalé"
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr "Coridjaedjes ki dj' a dandjî dvant l' astalaedje"
 
 #, fuzzy
-#~ msgid "Otomian languages"
-#~ msgstr "Lingaedjes otomans"
+#~ msgid "Installing %s"
+#~ msgstr "Astalaedje"
 
 #, fuzzy
-#~ msgid "Prakrit languages"
-#~ msgstr "Lingaedjes prakrit"
+#~ msgid " Error!"
+#~ msgstr "Aroke"
 
 #, fuzzy
-#~ msgid "Reading filelist from %s"
-#~ msgstr "Aroke e scrijhant l' lisse des pakets a pårti d' %1"
+#~ msgid " Important!"
+#~ msgstr "Abe&rweter"
 
 #, fuzzy
 #~ msgid "Reading index files"
 #~ msgstr "Dji lé l' lisse des modules..."
 
 #, fuzzy
-#~ msgid "Reading packages file"
-#~ msgstr "L' astalaedje des pakets dmandés n' a nén stî."
+#~ msgid "Reading product from %s"
+#~ msgstr "Dji schape l' informåcion sol prodût..."
+
+#, fuzzy
+#~ msgid "Reading filelist from %s"
+#~ msgstr "Aroke e scrijhant l' lisse des pakets a pårti d' %1"
 
 #, fuzzy
 #~ msgid "Reading packages from %s"
@@ -5051,83 +5049,85 @@ msgstr "nén sopoirté"
 #~ msgstr "Modeles k' on -z a dandjî"
 
 #, fuzzy
-#~ msgid "Reading product from %s"
-#~ msgstr "Dji schape l' informåcion sol prodût..."
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "Ci fitchî la n' egzistêye nén."
 
 #, fuzzy
-#~ msgid "Resolvable"
-#~ msgstr "Coridjaedjes di dnés."
+#~ msgid "Reading packages file"
+#~ msgstr "L' astalaedje des pakets dmandés n' a nén stî."
 
 #, fuzzy
-#~ msgid "Salishan languages"
-#~ msgstr "Lingaedjes salichans"
+#~ msgid "Downloading %s"
+#~ msgstr "A&berweter"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Serbeye et Montenegro"
+#, fuzzy
+#~ msgid "Apache languages"
+#~ msgstr "Lingaedjes apaches"
 
 #, fuzzy
-#~ msgid "Siouan languages"
-#~ msgstr "Lingaedjes siwous"
+#~ msgid "Athapascan languages"
+#~ msgstr "Lingaedjes atapascans"
 
 #, fuzzy
-#~ msgid "Software management is already running."
-#~ msgstr "Meteu a djoû d' programe - ZMD n' est nén enondé"
+#~ msgid "Australian languages"
+#~ msgstr "Lingaedjes ostralyins"
 
 #, fuzzy
-#~ msgid "Sorbian languages"
-#~ msgstr "Lingaedjes sorbyin"
+#~ msgid "Bamileke languages"
+#~ msgstr "Lingaedjes bamilekes"
 
 #, fuzzy
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "Ci fitchî la n' egzistêye nén."
+#~ msgid "Chinook jargon"
+#~ msgstr "Djårgon Tchinouk"
 
 #, fuzzy
-#~ msgid "Tupi languages"
-#~ msgstr "Lingaedjes toupi"
+#~ msgid "Creoles and pidgins, English based (Other)"
+#~ msgstr "Creyoles et pidjines, båzé sol inglès (ôtes)"
 
 #, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "Djin nén cnoxhowe"
+#~ msgid "Creoles and pidgins, French-based (Other)"
+#~ msgstr "Creyoles et pidjines, båzé sol francès (ôtes)"
 
 #, fuzzy
-#~ msgid "Unlock these resolvables"
-#~ msgstr "Coridjaedjes d' amidrés"
+#~ msgid "Creoles and pidgins, Portuguese-based (Other)"
+#~ msgstr "Creyoles et pidjines, båzé sol portuguès (ôtes)"
 
 #, fuzzy
-#~ msgid "Wakashan languages"
-#~ msgstr "Lingaedjes wakashan"
+#~ msgid "Iroquoian languages"
+#~ msgstr "Lingaedjes irocwès"
 
 #, fuzzy
-#~ msgid "delete %s"
-#~ msgstr "Dis&facer"
+#~ msgid "Manobo languages"
+#~ msgstr "Lingaedjes manobo"
 
-#~ msgid "do not keep %s installed"
-#~ msgstr "èn nén wårder %s astalé"
+#, fuzzy
+#~ msgid "Otomian languages"
+#~ msgstr "Lingaedjes otomans"
 
 #, fuzzy
-#~ msgid "message"
-#~ msgstr "Messaedjes"
+#~ msgid "Prakrit languages"
+#~ msgstr "Lingaedjes prakrit"
 
 #, fuzzy
-#~ msgid "patch"
-#~ msgstr "coridjaedjes"
+#~ msgid "Salishan languages"
+#~ msgstr "Lingaedjes salichans"
 
 #, fuzzy
-#~ msgid "pattern"
-#~ msgstr "Modeles"
+#~ msgid "Siouan languages"
+#~ msgstr "Lingaedjes siwous"
 
 #, fuzzy
-#~ msgid "product"
-#~ msgstr "prodûts"
+#~ msgid "Tupi languages"
+#~ msgstr "Lingaedjes toupi"
 
 #, fuzzy
-#~ msgid "script"
-#~ msgstr "Scripe"
+#~ msgid "Wakashan languages"
+#~ msgstr "Lingaedjes wakashan"
 
 #, fuzzy
-#~ msgid "selection"
-#~ msgstr "Tchuze"
+#~ msgid "Sorbian languages"
+#~ msgstr "Lingaedjes sorbyin"
 
 #, fuzzy
-#~ msgid "unlock all resolvables"
-#~ msgstr "Afrontmint etur les coridjaedjes"
+#~ msgid "Centruual African Republic"
+#~ msgstr "Cintrafrike"
index cd1e9ef..1c679d1 100644 (file)
--- a/po/xh.po
+++ b/po/xh.po
@@ -14,17 +14,93 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Isinxaxhi se-Hal"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Umtya wokubuzisa we-LDAP URL ongasebenzisekiyo"
+
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Umtya wokubuzisa we-LDAP URL ongasebenzisekiyo '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Akukwazeki ukufanisa into ye-Url"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Isalathi sento ye-Url elikhamte nengasebenzisekiyo"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Akukwazeki ukwahlula iinxalenye ze-Url"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Ayikwazi kundulula ukwabela i-mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Ayikwazi kumisela ulwabelo lokugoba i-mutex "
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Ayikwazi kundulula i-mutex yokugoba"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Ayikwazi kufumana isitshixo se-mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Ayikwazi kukhulula isitshixo se-mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr ""
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr ""
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
 #, fuzzy
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr "Akukho baboneleli bahlohliweyo baka%s"
+msgid "Obsoletes"
+msgstr "%s ziphelelwe lixehsa:%s"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -37,10 +113,6 @@ msgstr "Phumeza"
 msgid " execution failed"
 msgstr "DBI Execution failed: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -49,93 +121,123 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s iimpixano ne %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+#, fuzzy
+msgid "Error sending update message notification."
+msgstr "Imposiso ngethuba loguqulelo oluntsonkothileyo lweqhosha."
+
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s ibonelela%s, kodwa inenye inzululwazi ngokwakha."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Ukuhlohla kuye kwalahlwa njengoko bekuyalelwe."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "ayihlohlwanga"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s itshixiwe kwaye ayikwazi kungahlohlwa."
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "Imeko ye-Hal ayiqhagamshelwanga"
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, fuzzy, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s ziphelelwe lixehsa %s"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "Isixhobo se-Hal asindululwanga"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "Isixa se-Hal asindululwanga"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Ayikwazi kudala uqhagamshelo lwe-dbus"
+
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "i-libhal_ctx_entsha: Ayikwazu kudala imeko ye-libhal"
+
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
 msgstr ""
+"i-libhal_imisela_uqhagamshelo_lwe-dbus: Ayikwazi kumesela uqhagamshelo lwe-"
+"dbus "
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Ayikwazi kundulula imeko ye-HAL--i-hald ayiqhubi?"
+
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Akukho sixhobo se-CDROM"
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
 #, fuzzy
-msgid "(does not expire)"
-msgstr "'%1ayikho kwayona."
+msgid "RPM failed: "
+msgstr "isilele"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Isi-Abkhazian"
-
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "isi-Achinese"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, fuzzy, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Akukwazeki ukufumana iqhosha likawonkewonke."
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "isi-Acoli"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Iifayili zobumbeko ezitshintshileyo zika%s:"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "isi-Adangme"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, fuzzy, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "i-rpm igcine %s njenge %s kodwa kwakungenzeki ukumisela umahluko"
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"i-rpm igcinwe %s njenge %s.\n"
+"Nantsi imigca eyi-25 yokuqala yomahluko:\n"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, fuzzy, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "i-rpm idalwe %s njenge %s kodwa kwakungenzeki ukumisela umahluko"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"i-rpm idalwe %s njenge %s.\n"
+"Nantsi imigca eyi-25 yokuqala yomahluko:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -144,679 +246,1982 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "Isivelisi se-rpm Esongezelelweyo:"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "isi-Adyghe"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "idale ugcino olukhuselekileyo %s "
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "Ukungenisa akufunyenwanga."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "Ukungenisa akufunyenwanga."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "Ukungenisa akufunyenwanga."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+#, fuzzy
+msgid "Repository alias cannot start with dot."
+msgstr "Igama le-VM alikwazi kuqalisa ngomvo."
+
+#: zypp/RepoManager.cc:349
+#, fuzzy
+msgid "Service alias cannot start with dot."
+msgstr "Igama le-VM alikwazi kuqalisa ngomvo."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Ayikwazi kuvula ifayili ukuze kubhalwe."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Ayikwazi kuvuleka into yolwazi olusesikrinini '%s'"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "Akakwazi kudaleka uvimba weefayili %1: %2."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Imposiso xa kufundwa kwidiski ye-floppy."
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Igama lefayili elithathwa ngaphandle elingasebenzisekiyo."
+
+#: zypp/RepoManager.cc:1740
+#, fuzzy, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Ibuyisela oovimba"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Ayikwazi kuvuleka into yolwazi olusesikrinini '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Ulungiselelo lwe-Url aluyivumeli i-%s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Ayisebenziseki %s inxalenye '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Ayisebenziseki %s inxalenye"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Ukwahlulwa komtya wokubuzisa awuxhaswa malunga nale-URL"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Ulungiselelo lwe-Url yinxalenye efunekayo"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Ulungiselelo olusebenzisekayo lwe-Url '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Ulungiselelo lwe-Url akulivumeli igama lomsebenzisi"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Ulungiselelo lwe-Url awulivumeli igama lokugqithisa"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Ulungiselelo lwe-Url lufuna inxalenye yomamkeli"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Ulungiselelo lwe-Url awuyivumeli inxalenye yomamkeli"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Ayisebenziseki inxalenye yomamkeli ye-'%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Ulungiselelo lwe-Url awusivumeli isiqhagamshelanisi"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Ayisebenziseki inxalenye yesiqhagamshelanisi se-'%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Ulungiselelo lwe-Url lufuna igama lendlela yothungelwano"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Indlela yothungelwano ethelekisekayo ayivunyelwa xa lukhona ugunyaziso"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Umtya ofakwe iikhowudi uqhulethe i-byte ENGENANTO"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr ""
+"Uphawu oluthatha isithuba somhlukanisi oqhekezayo woludwe lomda wenkcazelo "
+"engasebenzisekiyo"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr ""
+"Uphawu oluthatha isithuba somhlukanisi oqhekezayo woludwe lomda wenkcazelo "
+"ongasebenzisekiyo"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr ""
+"Uphawu oluthatha isithuba somhlukanisi ohlanganisayo woludwe lomda "
+"wenkcazelo engasebenzisekiyo"
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Ayikwazi kuvuleka ifayili %1."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Ayikwazi kufumana %s."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, fuzzy, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Ayikwazi kufumana %s."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "Umyalelo okhutshwa xa kudityaniswa"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+#, fuzzy
+msgid "(does not expire)"
+msgstr "'%1ayikho kwayona."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "akwaziwa"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+#, fuzzy
+msgid "The vendor does not provide support."
+msgstr "Idiski ayikho."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Ilizwe elingaziwa:"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Akukho Khowudi"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "i-Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "Ii-Arab Emirates Ezimanyeneyo"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "i-Afghanistan"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "i-Antigua ne-Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "i-Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "i-Albania"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "i-Armenia"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "i-Netherlands Antilles"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "i-Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "i-Antarctica"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "i-Argentina"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "i-American Samoa"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "i-Austria"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "i-Australia"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "i-Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "i-Aland Islands"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "i-Azerbaijan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "i-Bosnia ne-Herzegowina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "i-Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "i-Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "i-Belgium"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "i-Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "i-Bulgaria"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "i-Bahrain"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "i-Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "i-Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "i-Bermuda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "i-Brunei Darussalam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "i-Bolivia"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "i-Brazil"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "i-Bahamas"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "i-Bhutan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "i-Bouvet Island"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "i-Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "i-Belarus"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "i-Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "i-Canada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "i-Cocos (Keeling) Islands"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "i-Congo"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Iriphabliki yaseAfrika Esembindini "
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "i-Switzerland"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "i-Cote D'Ivoire"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "i-Cook Islands"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "i-Chile"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "i-Cameroon"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "i-China"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "i-Colombia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "i-Costa Rica"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "i-Cuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "i-Cape Verde"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "i-Christmas Island"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "i-Cyprus"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "i-Czech Republic"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "EJamani"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "i-Djibouti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "i-Denmark"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "i-Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "i-Dominican Republic"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "i-Algeria"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "i-Ecuador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "i-Estonia"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "iYiphutha"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "i-Western Sahara"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "i-Ertrea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "i-Spain"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "i-Ethiopia"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "i-Finland"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "i-Fiji"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "i-Falkland Islands (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "i-Federated States of Micronesia"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "i-Faroe Islands"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "i-France"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "i-Metropolitan France"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "i-Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "i-United Kingdom"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "i-Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "i-Georgia"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "i-French Guiana"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "EJamani"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "i-Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "i-Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "i-Greenland"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "i-Gambia"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "i-Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "i-Guadeloupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "i-Equatorial Guinea"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "i-Greece"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "i-South Georgia ne-South Sandwich Islands"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "i-Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "i-Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "i-Guinea-Bissau"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "i-Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "i-Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "i-Heard Island ne-McDonald Islands"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "i-Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "i-Croatia"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "i-Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "i-Hungary"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "i-Indonesia"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "i-Ireland"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "i-Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "i-Indiya"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "i-British Indian Ocean Territory"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "i-Iraq"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "i-Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "i-Iceland"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "i-Italy"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "i-Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "i-Jordan"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "iJapani"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "i-Kenya"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "i-Kyrgyzstan"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "i-Cambodia"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "i-Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "i-Comoros"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "i-Saint Kitts neNevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "i-North Korea"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "i-South Korea"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "i-Kuwait"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "i-Cayman Islands"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "i-Kazakhstan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "i-Lao People's Democratic Republic"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "i-Lebanon"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "i-Saint Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "i-Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "i-Sri Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "i-Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "i-Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "i-Lithuania"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "i-Luxembourg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "i-Latvia"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "i-Libya"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "i-Morocco"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "i-Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "i-Moldova"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "isi-Mongo"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "i-San Marino"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "i-Madagascar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "i-Marshall Islands"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "i-Macedonia"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "i-Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "i-Myanmar"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "i-Mongolia"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "i-Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "i-Northern Mariana Islands"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "i-Martinique"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "i-Mauritania"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "i-Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "i-Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "i-Mauritius"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "i-Maldives"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "i-Malawi"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "Isi-Afar"
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "i-Mexico"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "i-Afghanistan"
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "i-Malaysia"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "isi-Afrihili"
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "i-Mozambique"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "isiBhulu"
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "i-Namibia"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "isi-Afro-Asiatic (Esinye)"
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "i-New Caledonia"
 
-#. language code: ain
-#: zypp/LanguageCode.cc:179
-msgid "Ainu"
-msgstr "isi-Ainu"
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "i-Niger"
 
-#. language code: aka ak
-#: zypp/LanguageCode.cc:181
-msgid "Akan"
-msgstr "isi-Akan"
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "i-Norfolk Island"
 
-#. language code: akk
-#: zypp/LanguageCode.cc:183
-msgid "Akkadian"
-msgstr "isi-Akkadian"
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "i-Nigeria"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "i-Aland Islands"
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "i-Nicaragua"
 
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "i-Albania"
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "i-Netherlands"
 
-#. language code: alb sqi sq
-#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
-msgid "Albanian"
-msgstr "isi-Albanian"
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "i-Norway"
 
-#. language code: ale
-#: zypp/LanguageCode.cc:189
-msgid "Aleut"
-msgstr "isi-Aleut"
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "i-Nepal"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "i-Algeria"
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "i-Nauru"
 
-#. language code: alg
-#: zypp/LanguageCode.cc:191
-msgid "Algonquian Languages"
-msgstr "isi-Algonquian Languages"
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "i-Niue"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "isi-Altaic (Esinye)"
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "i-New Zealand"
 
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "i-American Samoa"
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "i-Oman"
 
-#. language code: amh am
-#: zypp/LanguageCode.cc:195
-msgid "Amharic"
-msgstr "isi-Amharic"
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "i-Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "i-Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "i-French Polynesia"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "i-Papua New Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "i-Philippines"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "i-Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "i-Poland"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "i-Saint Pierre ne-Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "i-Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "i-Puerto-Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "i-Palestinian Territory"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "i-Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "i-Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "i-Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "i-Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "i-Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "i-Romania"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "isi-Serbian"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "i-Russian Federation"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "i-Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "i-Saudi Arabia"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "i-Solomon Islands"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "i-Seychelles"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "i-Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "i-Sweden"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "i-Singapore"
 
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "i-Andorra"
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "i-Saint Helena"
 
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "i-Angola"
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "i-Slovenia"
 
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "i-Anguilla"
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "i-Svalbard ne-Jan Mayen"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "i-Antarctica"
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "i-Slovakia"
 
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "i-Antigua ne-Barbuda"
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "i-Sierra Leone"
 
-#. language code: apa
-#: zypp/LanguageCode.cc:199
-msgid "Apache Languages"
-msgstr "Iilwimi ze-Apache"
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "i-San Marino"
 
-#. language code: ara ar
-#: zypp/LanguageCode.cc:201
-msgid "Arabic"
-msgstr "isi-Arabic"
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "i-Senegal"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "isi-Aragonese"
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "i-Somalia"
 
-#. language code: arc
-#: zypp/LanguageCode.cc:203
-msgid "Aramaic"
-msgstr "isi-Aramaic"
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "i-Suriname"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "isi-Arapaho"
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "i-Sao Tome ne-Principe"
 
-#. language code: arn
-#: zypp/LanguageCode.cc:211
-msgid "Araucanian"
-msgstr "isi-Araucanian"
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "i-El Salvador"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "isi-Arawak"
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "i-Syria"
 
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "i-Argentina"
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "i-Swaziland"
 
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "i-Armenia"
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "i-Turks ne-Caicos Islands"
 
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "isi-Armenian"
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "i-Chad"
 
-#. language code: art
-#: zypp/LanguageCode.cc:215
-msgid "Artificial (Other)"
-msgstr "isi-Artificial (Esinye)"
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "i-French Southern Territories"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "i-Aruba"
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "i-Togo"
 
-#. language code: asm as
-#: zypp/LanguageCode.cc:219
-msgid "Assamese"
-msgstr "isi-Assamese"
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "i-Thailand"
 
-#. language code: ast
-#: zypp/LanguageCode.cc:221
-msgid "Asturian"
-msgstr "isi-Asturian"
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "i-Tajikistan"
 
-#. language code: ath
-#: zypp/LanguageCode.cc:223
-msgid "Athapascan Languages"
-msgstr "Iilwimi ze-Athapascan"
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "isi-Tokelau"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "i-Australia"
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "i-Turkmenistan"
 
-#. language code: aus
-#: zypp/LanguageCode.cc:225
-msgid "Australian Languages"
-msgstr "Iilwimi zase-Australia"
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "i-Tunisia"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "i-Austria"
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "i-Tonga"
 
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "isi-Austronesian (Esinye)"
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "i-East Timor"
 
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "i-Turkey"
 
-#. language code: ava av
-#: zypp/LanguageCode.cc:227
-msgid "Avaric"
-msgstr "isi-Avaric"
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "i-Trinidad ne-Tobago"
 
-#. language code: ave ae
-#: zypp/LanguageCode.cc:229
-msgid "Avestan"
-msgstr "isi-Avestan"
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "isi-Tuvalu"
 
-#. language code: awa
-#: zypp/LanguageCode.cc:231
-msgid "Awadhi"
-msgstr "isi-Awadhi"
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "i-Taiwan"
 
-#. language code: aym ay
-#: zypp/LanguageCode.cc:233
-msgid "Aymara"
-msgstr "isi-Aymara"
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "i-Tanzania"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "i-Azerbaijan"
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "i-Ukraine"
 
-#. language code: aze az
-#: zypp/LanguageCode.cc:235
-msgid "Azerbaijani"
-msgstr "isi-Azerbaijani"
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "i-Uganda"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "i-United States Minor Outlying Islands"
 
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "i-United States"
 
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "i-Bahamas"
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "i-Uruguay"
 
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "i-Bahrain"
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "i-Uzbekistan"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "isi-Balinese"
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "i-Holy See (Vatican City State)"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "isi-Baltic (Esinye)"
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "i-Saint Vincent ne-Grenadines"
 
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "isi-Baluchi"
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "i-Venezuela"
 
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "isi-Bambara"
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "i-British Virgin Islands"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Iilwimi ze-Bamileke"
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "i-Virgin Islands, U.S."
 
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "isiBanda"
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "i-Vietnam"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "i-Bangladesh"
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "i-Vanuatu"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "isiBantu (Esinye)"
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "i-Wallis ne-Futuna"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "i-Barbados"
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "i-Samoa"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "isi-Basa"
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "i-Yemen"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "isi-Bashkir"
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "i-Mayotte"
 
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "Isi-Basque"
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "uMzantsi Afrika"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "isi-Batak (Indonesia)"
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "i-Zambia"
 
-#. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "isi-Beja"
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "i-Zimbabwe"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "i-Belarus"
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Ulwimi Olungaziwayo:"
 
-#. language code: bel be
-#: zypp/LanguageCode.cc:259
-msgid "Belarusian"
-msgstr "isi-Belarusian"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "Isi-Afar"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "i-Belgium"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Isi-Abkhazian"
 
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "i-Belize"
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "isi-Achinese"
 
-#. language code: bem
-#: zypp/LanguageCode.cc:261
-msgid "Bemba"
-msgstr "isi-Bemba"
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "isi-Acoli"
 
-#. language code: ben bn
-#: zypp/LanguageCode.cc:263
-msgid "Bengali"
-msgstr "isi-Bengali"
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "isi-Adangme"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "i-Benin"
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "isi-Adyghe"
 
-#. language code: ber
-#: zypp/LanguageCode.cc:265
-msgid "Berber (Other)"
-msgstr "isi-Berber (Esinye)"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "isi-Afro-Asiatic (Esinye)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "i-Bermuda"
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "isi-Afrihili"
 
-#. language code: bho
-#: zypp/LanguageCode.cc:267
-msgid "Bhojpuri"
-msgstr "isi-Bhojpuri"
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "isiBhulu"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "i-Bhutan"
+#. language code: ain
+#: zypp/LanguageCode.cc:179
+msgid "Ainu"
+msgstr "isi-Ainu"
 
-#. language code: bih bh
-#: zypp/LanguageCode.cc:269
-msgid "Bihari"
-msgstr "isi-Bihari"
+#. language code: aka ak
+#: zypp/LanguageCode.cc:181
+msgid "Akan"
+msgstr "isi-Akan"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "isi-Bikol"
+#. language code: akk
+#: zypp/LanguageCode.cc:183
+msgid "Akkadian"
+msgstr "isi-Akkadian"
 
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "isi-Bini"
+#. language code: alb sqi sq
+#: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
+msgid "Albanian"
+msgstr "isi-Albanian"
 
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "isi-Bislama"
+#. language code: ale
+#: zypp/LanguageCode.cc:189
+msgid "Aleut"
+msgstr "isi-Aleut"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "isi-Blin"
+#. language code: alg
+#: zypp/LanguageCode.cc:191
+msgid "Algonquian Languages"
+msgstr "isi-Algonquian Languages"
 
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "i-Bolivia"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "isi-Southern Altai"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "i-Bosnia ne-Herzegowina"
+#. language code: amh am
+#: zypp/LanguageCode.cc:195
+msgid "Amharic"
+msgstr "isi-Amharic"
 
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "isi-Bosnian"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "isiNgesi, Sakudala (ca.450-1100)"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "i-Botswana"
+#. language code: apa
+#: zypp/LanguageCode.cc:199
+msgid "Apache Languages"
+msgstr "Iilwimi ze-Apache"
 
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "i-Bouvet Island"
+#. language code: ara ar
+#: zypp/LanguageCode.cc:201
+msgid "Arabic"
+msgstr "isi-Arabic"
 
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "isi-Braj"
+#. language code: arc
+#: zypp/LanguageCode.cc:203
+msgid "Aramaic"
+msgstr "isi-Aramaic"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "i-Brazil"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "isi-Aragonese"
 
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "isi-Breton"
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "isi-Armenian"
 
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "i-British Indian Ocean Territory"
+#. language code: arn
+#: zypp/LanguageCode.cc:211
+msgid "Araucanian"
+msgstr "isi-Araucanian"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "i-British Virgin Islands"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "isi-Arapaho"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "i-Brunei Darussalam"
+#. language code: art
+#: zypp/LanguageCode.cc:215
+msgid "Artificial (Other)"
+msgstr "isi-Artificial (Esinye)"
 
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "isi-Buginese"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "isi-Arawak"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
+#. language code: asm as
+#: zypp/LanguageCode.cc:219
+msgid "Assamese"
+msgstr "isi-Assamese"
 
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "i-Bulgaria"
+#. language code: ast
+#: zypp/LanguageCode.cc:221
+msgid "Asturian"
+msgstr "isi-Asturian"
 
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "isi-Bulgarian"
+#. language code: ath
+#: zypp/LanguageCode.cc:223
+msgid "Athapascan Languages"
+msgstr "Iilwimi ze-Athapascan"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "isi-Buriat"
+#. language code: aus
+#: zypp/LanguageCode.cc:225
+msgid "Australian Languages"
+msgstr "Iilwimi zase-Australia"
 
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "i-Burkina Faso"
+#. language code: ava av
+#: zypp/LanguageCode.cc:227
+msgid "Avaric"
+msgstr "isi-Avaric"
 
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "isi-Burmese"
+#. language code: ave ae
+#: zypp/LanguageCode.cc:229
+msgid "Avestan"
+msgstr "isi-Avestan"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "i-Burundi"
+#. language code: awa
+#: zypp/LanguageCode.cc:231
+msgid "Awadhi"
+msgstr "isi-Awadhi"
 
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "isi-Caddo"
+#. language code: aym ay
+#: zypp/LanguageCode.cc:233
+msgid "Aymara"
+msgstr "isi-Aymara"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "i-Cambodia"
+#. language code: aze az
+#: zypp/LanguageCode.cc:235
+msgid "Azerbaijani"
+msgstr "isi-Azerbaijani"
 
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "i-Cameroon"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "isiBanda"
 
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "Ayikwazi kudaleka ifayili."
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Iilwimi ze-Bamileke"
 
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Ayikwazi kufumana isitshixo se-mutex"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "isi-Bashkir"
 
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Ayikwazi kufumana %s."
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "isi-Baluchi"
 
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "isi-Bambara"
 
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "isi-Balinese"
 
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Ayikwazi kuvuleka into yolwazi olusesikrinini '%s'"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "Isi-Basque"
 
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "isi-Basa"
 
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "Akakwazi kudaleka uvimba weefayili %1: %2."
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "isi-Baltic (Esinye)"
+
+#. language code: bej
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "isi-Beja"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Ayikwazi kuvuleka into yolwazi olusesikrinini '%s'"
+#. language code: bel be
+#: zypp/LanguageCode.cc:259
+msgid "Belarusian"
+msgstr "isi-Belarusian"
 
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
+#. language code: bem
+#: zypp/LanguageCode.cc:261
+msgid "Bemba"
+msgstr "isi-Bemba"
 
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
+#. language code: ben bn
+#: zypp/LanguageCode.cc:263
+msgid "Bengali"
+msgstr "isi-Bengali"
 
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
+#. language code: ber
+#: zypp/LanguageCode.cc:265
+msgid "Berber (Other)"
+msgstr "isi-Berber (Esinye)"
 
-#: zypp/ExternalProgram.cc:381
-#, fuzzy, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Ayikwazi kufumana %s."
+#. language code: bho
+#: zypp/LanguageCode.cc:267
+msgid "Bhojpuri"
+msgstr "isi-Bhojpuri"
 
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Ayikwazi kundulula ukwabela i-mutex"
+#. language code: bih bh
+#: zypp/LanguageCode.cc:269
+msgid "Bihari"
+msgstr "isi-Bihari"
 
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Ayikwazi kundulula i-mutex yokugoba"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "isi-Bikol"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Ayikwazi kuvula ifayili ukuze kubhalwe."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "isi-Bini"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Ayikwazi kuvuleka ifayili %1."
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "isi-Bislama"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Ayikwazi kuvuleka ifayili %1."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "isi-Siksika"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "isiBantu (Esinye)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, fuzzy, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Ayikwazi kubonelela%s ukusuka ku%s"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "isi-Bosnian"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Ayikwazi kukhulula isitshixo se-mutex"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "isi-Braj"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Ayikwazi kumisela ulwabelo lokugoba i-mutex "
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "isi-Breton"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "i-Canada"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "isi-Batak (Indonesia)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "isi-Buriat"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Ayikwazi kuvuleka into yolwazi olusesikrinini '%s'"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "isi-Buginese"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "isi-Bulgarian"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "isi-Burmese"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "isi-Blin"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Akukwazi kubhaleka ukuphawuleka kwefayili %1."
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "isi-Caddo"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "i-Cape Verde"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "isi-Central American Indian (Esinye)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -833,11 +2238,6 @@ msgstr "isi-Catalan"
 msgid "Caucasian (Other)"
 msgstr "isi-Caucasian (Esinye)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "i-Cayman Islands"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -848,167 +2248,80 @@ msgstr "isi-Cebuano"
 msgid "Celtic (Other)"
 msgstr "isi-Celtic (Esinye)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Iriphabliki yaseAfrika Esembindini "
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "isi-Central American Indian (Esinye)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "i-Chad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "isi-Chagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Iilwimi ze-Chamic"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "isi-Chamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Iifayili zobumbeko ezitshintshileyo zika%s:"
+#. language code: chb
+#: zypp/LanguageCode.cc:317
+msgid "Chibcha"
+msgstr "isi-Chibcha"
 
 #. language code: che ce
 #: zypp/LanguageCode.cc:319
 msgid "Chechen"
 msgstr "isi-Chechen"
 
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "isi-Cherokee"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "isi-Cheyenne"
-
-#. language code: chb
-#: zypp/LanguageCode.cc:317
-msgid "Chibcha"
-msgstr "isi-Chibcha"
-
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "isi-Chichewa"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "isi-Chagatai"
 
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "i-Chile"
+#. language code: chi zho zh
+#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
+msgid "Chinese"
+msgstr "isiTshayina"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "i-China"
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "isi-Chuukese"
 
-#. language code: chi zho zh
-#: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
-msgid "Chinese"
-msgstr "isiTshayina"
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "isi-Mari"
 
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "isi-Chinook Jargon"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "isi-Chipewyan"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "isi-Choctaw"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "i-Christmas Island"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "isi-Chipewyan"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "isi-Cherokee"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "isi-Church Slavic"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "isi-Chuukese"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "isi-Chuvash"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "isi-Classical Newari"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "i-Cocos (Keeling) Islands"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "i-Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "Umyalelo okhutshwa xa kudityaniswa"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "i-Comoros"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "i-Congo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "isi-Cheyenne"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "i-Cook Islands"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Iilwimi ze-Chamic"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1025,31 +2338,6 @@ msgstr "isi-Cornish"
 msgid "Corsican"
 msgstr "isi-Corsican"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "i-Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "i-Cote D'Ivoire"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "isi-Cree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "isi-Creek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Ii-Creoles nee-Pidgins (Ezinye)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1065,46 +2353,36 @@ msgstr "Ii-Creoles nee-Pidgins, Ezisekwe kwisiFrentshi (Nakwezinye)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "Ii-Creoles nee-Pidgins, Ezisekwe kwisiPhuthukezi (Nakwezinye)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "isi-Cree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "isi-Crimean Tatar"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "i-Croatia"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "isi-Croatian"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Ii-Creoles nee-Pidgins (Ezinye)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "i-Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "isi-Kashubian"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "isi-Cushitic (Ezinye)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "i-Cyprus"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "isi-Czech"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "i-Czech Republic"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1130,10 +2408,15 @@ msgstr "isi-Dayak"
 msgid "Delaware"
 msgstr "isi-Delaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "i-Denmark"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "isi-Slave (Athapascan)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "isi-Dogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1145,71 +2428,36 @@ msgstr "isi-Dinka"
 msgid "Divehi"
 msgstr "isi-Divehi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "i-Djibouti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "isi-Dogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "isi-Dogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "i-Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "i-Dominican Republic"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "isi-Dravidian (Esinye)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "i-Lower Sorbian"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "isi-Duala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "isi-Datshi, Esiphakathi (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "isiDatshi"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "isi-Datshi, Esiphakathi (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1220,26 +2468,11 @@ msgstr "isi-Dyula"
 msgid "Dzongkha"
 msgstr "isi-Dzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "i-East Timor"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "i-Ecuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "isi-Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "iYiphutha"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1250,33 +2483,11 @@ msgstr "isiYiphutha (Samandulo)"
 msgid "Ekajuk"
 msgstr "isi-Ekajuk"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "i-El Salvador"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "isi-Elamite"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-#, fuzzy
-msgid "Empty host name in URI"
-msgstr "Igama le-CA elikhamte."
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Umtya ofakwe iikhowudi uqhulethe i-byte ENGENANTO"
-
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "isi-Elamite"
+
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1287,74 +2498,16 @@ msgstr "isiNgesi"
 msgid "English, Middle (1100-1500)"
 msgstr "isiNgesi, Esiphakathi (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "isiNgesi, Sakudala (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "i-Equatorial Guinea"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "i-Ertrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-#, fuzzy
-msgid "Error sending update message notification."
-msgstr "Imposiso ngethuba loguqulelo oluntsonkothileyo lweqhosha."
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "isi-Erzya"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "isi-Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "i-Estonia"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "isi-Estonian"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "i-Ethiopia"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1365,211 +2518,31 @@ msgstr "isi-Ewe"
 msgid "Ewondo"
 msgstr "isi-Ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Isilele ukuqalisa i-VM."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Ayikwazanga kuvuleka i-%s - %s\n"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, fuzzy, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"Umbekelo%s usilele ukukhangela imfezekiso. Ingaba usafuna ukuzama kwakhona "
-"ukuyikhuphela?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, fuzzy, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Akukwazeki ukufumana iqhosha likawonkewonke."
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Kusilele ukulayishwa kwemodyulei \"%s\"."
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "i-Falkland Islands (Malvinas)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "isi-Fang"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "isi-Fanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "i-Faroe Islands"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "isi-Faroese"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "i-Federated States of Micronesia"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "i-Fiji"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "isi-Fanti"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "isi-Fijian"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Ifayili %1 ayifunyenwanga elugcinweni."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "isi-Filipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "i-Finland"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1578,42 +2551,18 @@ msgstr "isiFinnish"
 #. language code: fiu
 #: zypp/LanguageCode.cc:441
 msgid "Finno-Ugrian (Other)"
-msgstr "isi-Finno-Ugrian (Esinye)"
-
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
+msgstr "isi-Finno-Ugrian (Esinye)"
 
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "isi-Fon"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "i-France"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "isiFrentshi"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "i-French Guiana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "i-French Polynesia"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "i-French Southern Territories"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1629,46 +2578,21 @@ msgstr "isiNgesi, Sakudala (842-ca.1400)"
 msgid "Frisian"
 msgstr "isi-Frisian"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "isi-Friulian"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "isi-Fulah"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "isi-Friulian"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "isi-Ga"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "i-Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "isi-Gaelic"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "isi-Galician"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "i-Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "isi-Ganda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1679,15 +2603,10 @@ msgstr "isi-Gayo"
 msgid "Gbaya"
 msgstr "isi-Gbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "isi-Geez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "i-Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "isi-Jamani (Ezinye)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1699,6 +2618,36 @@ msgstr "isi-Georgian"
 msgid "German"
 msgstr "isiJamani"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "isi-Geez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "isi-Gilbertese"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "isi-Gaelic"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "isi-Irish"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "isi-Galician"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "isi-Manx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1709,30 +2658,6 @@ msgstr "isiJamani, Esiphakathi Phezulu(ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "isiJamani, Sakudala Phezulu (ca.750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "isi-Jamani (Ezinye)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "EJamani"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "i-Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "i-Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "isi-Gilbertese"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1753,11 +2678,6 @@ msgstr "isi-Gothic"
 msgid "Grebo"
 msgstr "isi-Grebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "i-Greece"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1768,62 +2688,16 @@ msgstr "isi-Grike, Samandulo (ukuya ku-1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "isiGrike, Sanamhla (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "i-Greenland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "i-Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "i-Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "i-Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "isi-Guarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "i-Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "EJamani"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "i-Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "i-Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "isi-Gujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "i-Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1834,52 +2708,21 @@ msgstr "isi-Gwich'in"
 msgid "Haida"
 msgstr "isi-Haida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "i-Haiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "isi-Haitian"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Isinxaxhi se-Hal"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "Imeko ye-Hal ayiqhagamshelwanga"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "Isixhobo se-Hal asindululwanga"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "Isixa se-Hal asindululwanga"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "isi-Hausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "isi-Hawaiian"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "i-Heard Island ne-McDonald Islands"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1905,16 +2748,6 @@ msgstr "isi-Himachali"
 msgid "Hindi"
 msgstr "isi-Hindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "isi-Hiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr ""
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1925,31 +2758,21 @@ msgstr "isi-Hittite"
 msgid "Hmong"
 msgstr "isi-Hmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "i-Holy See (Vatican City State)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "i-Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "isi-Hiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "i-Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "isi-Sorbian Sangasentla"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "isi-Hungarian"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "i-Hungary"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1960,10 +2783,10 @@ msgstr "isi-Hupa"
 msgid "Iban"
 msgstr "isi-Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "i-Iceland"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "isi-Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1972,259 +2795,108 @@ msgstr "isi-Icelandic"
 
 #. language code: ido io
 #: zypp/LanguageCode.cc:549
-msgid "Ido"
-msgstr "isi-Ido"
-
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "isi-Igbo"
+msgid "Ido"
+msgstr "isi-Ido"
+
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "isi-Sichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "isi-Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "isi-Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "isi-Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "isi-Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "isi-Inari Sami"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "i-Indiya"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "i-Interlingua (Umbutho Wehlabathi Wokuncedisa Ngeelwimi)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "isi-Artificial (Esinye)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "isi-Indo-European (Esinye)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "i-Indonesia"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "isi-Indonesian"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "isi-Indo-European (Esinye)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "isi-Ingush"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Ukuhlohla kuye kwalahlwa njengoko bekuyalelwe."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "i-Interlingua (Umbutho Wehlabathi Wokuncedisa Ngeelwimi)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "isi-Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "isi-Inuktitut"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "isi-Inupiaq"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Ayisebenziseki %s inxalenye"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Ayisebenziseki %s inxalenye '%s'"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Umtya wokubuzisa we-LDAP URL ongasebenzisekiyo '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Umtya wokubuzisa we-LDAP URL ongasebenzisekiyo"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Ulungiselelo olusebenzisekayo lwe-Url '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Isalathi sento ye-Url elikhamte nengasebenzisekiyo"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Ayisebenziseki inxalenye yomamkeli ye-'%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr ""
-"Uphawu oluthatha isithuba somhlukanisi ohlanganisayo woludwe lomda "
-"wenkcazelo engasebenzisekiyo"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr ""
-"Uphawu oluthatha isithuba somhlukanisi oqhekezayo woludwe lomda wenkcazelo "
-"engasebenzisekiyo"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr ""
-"Uphawu oluthatha isithuba somhlukanisi oqhekezayo woludwe lomda wenkcazelo "
-"ongasebenzisekiyo"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Ayisebenziseki inxalenye yesiqhagamshelanisi se-'%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Ulungiselelo olusebenzisekayo lwe-Url '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Igama lefayili elithathwa ngaphandle elingasebenzisekiyo."
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "i-Iran"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "isi-Iranian (Esinye)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "i-Iraq"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "i-Ireland"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "isi-Irish"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "isi-Irish, Esiphakathi (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "isi-Irish, Sakudala (ukuya ku-900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Iilwimi ze-Iroquoian"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "i-Israel"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "isiTaliyane"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "i-Italy"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "i-Jamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "isi-Javanese"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "iJapani"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "isi-Lojban"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "isiJapani"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "isi-Javanese"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "i-Jordan"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "isi-Judeo-Persian"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "isi-Judeo-Arabic"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "isi-Judeo-Persian"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "isi-Kabardian"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "isi-Kara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2241,11 +2913,6 @@ msgstr "isi-Kachin"
 msgid "Kalaallisut"
 msgstr "isi-Kalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "isi-Kalmyk"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2256,21 +2923,6 @@ msgstr "isi-Kamba"
 msgid "Kannada"
 msgstr "isi-Kannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "isi-Kanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "isi-Kara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "isi-Karachay-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2281,10 +2933,10 @@ msgstr "isi-Karen"
 msgid "Kashmiri"
 msgstr "isi-Kashmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "isi-Kashubian"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "isi-Kanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2296,31 +2948,26 @@ msgstr "isi-Kawi"
 msgid "Kazakh"
 msgstr "isi-Kazakh"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "i-Kazakhstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "i-Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "isi-Kabardian"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "isi-Khasi"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "isi-Khmer"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "isi-Khoisan (Esinye)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "isi-Khmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2331,11 +2978,6 @@ msgstr "isi-Khotanese"
 msgid "Kikuyu"
 msgstr "isi-Kikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "isi-Kimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2346,15 +2988,15 @@ msgstr "isi-Kinyarwanda"
 msgid "Kirghiz"
 msgstr "isi-Kirghiz"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "i-Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "isi-Kimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "isi-Klingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "isi-Konkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2366,11 +3008,6 @@ msgstr "isi-Komi"
 msgid "Kongo"
 msgstr "isi-Kongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "isi-Konkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2386,11 +3023,21 @@ msgstr "isi-Kosraean"
 msgid "Kpelle"
 msgstr "isi-Kpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "isi-Karachay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "isi-Kru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "isi-Kurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2406,26 +3053,11 @@ msgstr "isi-Kumyk"
 msgid "Kurdish"
 msgstr "isi-Kurdish"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "isi-Kurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "isi-Kutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "i-Kuwait"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "i-Kyrgyzstan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2446,68 +3078,21 @@ msgstr "isi-Lamba"
 msgid "Lao"
 msgstr "isi-Lao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "i-Lao People's Democratic Republic"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "isi-Latin"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "i-Latvia"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "isi-Latvian"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "i-Lebanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "i-Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "isi-Lezghian"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "i-Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "i-Libya"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "i-Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2518,61 +3103,46 @@ msgstr "isi-Limburgan"
 msgid "Lingala"
 msgstr "isi-Lingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "i-Lithuania"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "isi-Lithuanian"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "isi-Lojban"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "isiJamani saseZantsi"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "i-Lower Sorbian"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "isi-Mongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "isi-Lozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "isi-Luba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "isi-Luxembourgish"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "isi-Luba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "isi-Luba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "isi-Ganda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "isi-Luiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "isi-Lule Sami"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2588,35 +3158,11 @@ msgstr "isi-Luo (eKenya naseTanzania)"
 msgid "Lushai"
 msgstr "isi-Lushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "i-Luxembourg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "isi-Luxembourgish"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "i-Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "i-Macedonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "isi-Macedonian"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "i-Madagascar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2627,6 +3173,11 @@ msgstr "isi-Madurese"
 msgid "Magahi"
 msgstr "isi-Magahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "isi-Marshallese"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2635,180 +3186,62 @@ msgstr "isi-Maithili"
 #. language code: mak
 #: zypp/LanguageCode.cc:707
 msgid "Makasar"
-msgstr "isi-Makasar"
-
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "isi-Malagasy"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "i-Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "isi-Malay"
-
-#. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "isi-Malayalam"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "i-Malaysia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "i-Maldives"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "i-Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "i-Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "isi-Maltese"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "isi-Manchu"
+msgstr "isi-Makasar"
 
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "isi-Mandar"
+#. language code: mal ml
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "isi-Malayalam"
 
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "isi-Mandingo"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "isi-Manipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Iilwimi zesiManobo"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "isi-Manx"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "isi-Maori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "isi-Austronesian (Esinye)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "isi-Marathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "isi-Mari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "i-Marshall Islands"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "isi-Marshallese"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "i-Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "isi-Marwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "isi-Masai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "i-Mauritania"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "i-Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Iilwimi zesi-Mayan"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "i-Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "isi-Malay"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "isi-Moksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "isi-Mandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "isi-Mende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "i-Metropolitan France"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "i-Mexico"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "isi-Irish, Esiphakathi (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2820,87 +3253,61 @@ msgstr "isi-Mi'kmaq"
 msgid "Minangkabau"
 msgstr "isi-Minangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "isi-Mirandese"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Iilwimi Eziyintlaninge"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "isi-Mon-Khmer (Esinye)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "isi-Malagasy"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "isi-Maltese"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "isi-Manchu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "isi-Manipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Iilwimi zesiManobo"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "isi-Mohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "isi-Moksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "isi-Moldavian"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "i-Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "isi-Mon-Khmer (Esinye)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "i-Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "isi-Mongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "i-Mongolia"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "isi-Mongolian"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "isi-Mongo"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "i-Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "i-Morocco"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "isi-Mossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "i-Mozambique"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2911,211 +3318,141 @@ msgstr "Iilwimi Ezininzi"
 msgid "Munda languages"
 msgstr "Iilwimi zesiMunda"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "i-Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "isi-Creek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "isi-Mirandese"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "isi-Marwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Iilwimi zesi-Mayan"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "isi-Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "isi-Nahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "i-Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "isi-American Indian saseMantla"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "i-Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "isi-Neapolitan"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "i-Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "isiNdebele, saseMantla"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "isiNdebele, saseMzantsi"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "isiNdebele, saseMantla"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "isiNdonga"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "isi-Neapolitan"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "i-Nepal"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "isi-Nepal Bhasa"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "isiJamani saseZantsi"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "isi-Nepali"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "i-Netherlands"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "i-Netherlands Antilles"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "i-New Caledonia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "i-New Zealand"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "isi-Nepal Bhasa"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "isi-Nias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "i-Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "i-Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "isi-Niger-Kordofanian (Ezinye)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "i-Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "isi-Nilo-Saharan (Ezinye)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "i-Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "isi-Niuean"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Akukho Khowudi"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "isi-Norwegian Nynorsk"
 
-#: zypp/repo/RepoProvideFile.cc:265
-#, fuzzy
-msgid "No url in repository."
-msgstr "Ifayili %1 ayifunyenwanga elugcinweni."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "isi-Norwegian Bokmal"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "isi-Nogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "i-Norfolk Island"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "isi-Norse, Sakudala"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "isi-American Indian saseMantla"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "i-North Korea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "i-Northern Mariana Islands"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "isi-Sami esiseMantla"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "isiSuthu saseLebowa"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "i-Norway"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "isi-Norwegian"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "isi-Norwegian Bokmal"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "isi-Norwegian Nynorsk"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Akukho sixhobo se-CDROM"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "isiSuthu saseLebowa"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Iilwimi zesiNubian"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "isi-Classical Newari"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "isi-Chichewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3136,11 +3473,6 @@ msgstr "isiNyoro"
 msgid "Nzima"
 msgstr "isiNzima"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "%s ziphelelwe lixehsa:%s"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3151,20 +3483,6 @@ msgstr "isi-Occitan (emva kwe-1500)"
 msgid "Ojibwa"
 msgstr "isi-Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "i-Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3185,164 +3503,85 @@ msgstr "isi-Osage"
 msgid "Ossetian"
 msgstr "isi-Ossetian"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "isi-Turkish, Ottoman (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Iilwimi zesi-Otomian"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, fuzzy, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Umbekelo%s usilele ukukhangela imfezekiso. Ingaba usafuna ukuzama kwakhona "
-"ukuyikhuphela?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "isi-Papuan (Esinye)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "isi-Pangasinan"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "isi-Pahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "i-Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "i-Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "isi-Palauan"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "i-Palestinian Territory"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "isiPali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "isi-Pampanga"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "i-Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "isi-Pangasinan"
-
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "isi-Panjabi"
-
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "isi-Papiamento"
-
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "i-Papua New Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "isi-Papuan (Esinye)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "i-Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, fuzzy, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "%1 asingovimba weefayili."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "isi-Panjabi"
 
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Iimvume zaliwe"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "isi-Papiamento"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "isi-Persian"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "isi-Palauan"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "isi-Persian, Sakudala (ca.600-400 B.C)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "i-Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "isi-Persian"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "isi-Philippine (Esinye)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "i-Philippines"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "isi-Phoenician"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "i-Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "isi-Pohnpeian"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "i-Poland"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "isiPali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "isi-Polish"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "i-Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "isi-Pohnpeian"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3354,78 +3593,21 @@ msgstr "isiPhuthukezi"
 msgid "Prakrit Languages"
 msgstr "Iilwimi zesi-Prakrit"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "isi-Provencal, Sakudala (ukuya kwi-1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "i-Puerto-Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "Isi-Pushto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "i-Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "isi-Quechua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Ukwahlulwa komtya wokubuzisa awuxhaswa malunga nale-URL"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "isilele"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "isi-Raeto-Romance"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3441,58 +3623,26 @@ msgstr "isi-Rapanui"
 msgid "Rarotongan"
 msgstr "isi-Ratongan"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Indlela yothungelwano ethelekisekayo ayivunyelwa xa lukhona ugunyaziso"
-
-#: zypp/RepoManager.cc:1740
-#, fuzzy, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Ibuyisela oovimba"
-
-#: zypp/RepoManager.cc:338
-#, fuzzy
-msgid "Repository alias cannot start with dot."
-msgstr "Igama le-VM alikwazi kuqalisa ngomvo."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "i-Reunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "isi-Romance (Ezinye)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "i-Romania"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "isi-Romanian"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "isi-Raeto-Romance"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "isi-Romany"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "isi-Romanian"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3503,75 +3653,6 @@ msgstr "isi-Rundi"
 msgid "Russian"
 msgstr "isiRashiya"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "i-Russian Federation"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "i-Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "i-Saint Helena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "i-Saint Kitts neNevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "i-Saint Lucia"
-
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "i-San Marino"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "i-Saint Pierre ne-Miquelon"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "i-Saint Vincent ne-Grenadines"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "Iilwimi zesi-Salishan "
-
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "isi-Samaritan Aramaic"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Iilwimi zesi-Sami (Ezinye)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "i-Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "isi-Samoan"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "i-San Marino"
-
 #. language code: sad
 #: zypp/LanguageCode.cc:905
 msgid "Sandawe"
@@ -3582,41 +3663,61 @@ msgstr "isi-Sandawe"
 msgid "Sango"
 msgstr "isi-Sango"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "isi-Yakut"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "isi-South American Indian (Ezinye)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "Iilwimi zesi-Salishan "
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "isi-Samaritan Aramaic"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "isi-Sanskrit"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "isi-Sasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "isi-Santali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "i-Sao Tome ne-Principe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "isi-Sardinian"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "isi-Sasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "isi-Serbian"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "i-Saudi Arabia"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "isi-Sicilian"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "isi-Scots"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "isi-Croatian"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3627,149 +3728,40 @@ msgstr "isi-Selkup"
 msgid "Semitic (Other)"
 msgstr "isi-Semitic (Ezinye)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "i-Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "isi-Serbian"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "isi-Serbian"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "isi-Serer"
-
-#: zypp/RepoManager.cc:349
-#, fuzzy
-msgid "Service alias cannot start with dot."
-msgstr "Igama le-VM alikwazi kuqalisa ngomvo."
-
-#: zypp/repo/RepoException.cc:129
-#, fuzzy
-msgid "Service plugin does not support changing an attribute."
-msgstr "uhlobo lukavimba we-VAR1 aluluxhasi uphawu lokubonisa utshintsho"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "isi-Irish, Sakudala (ukuya ku-900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "i-Seychelles"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Iilwimi zeMiqondiso"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "isi-Shan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "isiShona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "isi-Sichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "isi-Sicilian"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "isi-Sidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "i-Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Iilwimi zeMiqondiso"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "Ukungenisa akufunyenwanga."
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Ukungenisa akufunyenwanga."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "Ukungenisa akufunyenwanga."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "Ukungenisa akufunyenwanga."
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "isi-Siksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "isi-Sindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "i-Singapore"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "isi-Sinhala"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "isi-Sino-Tibetan (Ezinye)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Iilwimi zesi-Siouan"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "isi-Skolt Sami"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "isi-Slave (Athapascan)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "isi-Sino-Tibetan (Ezinye)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3781,210 +3773,141 @@ msgstr "isi-Slavic (Esinye)"
 msgid "Slovak"
 msgstr "isi-Slovak"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "i-Slovakia"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "i-Slovenia"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "isi-Slovenian"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "isi-Sogdian"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "isi-Sami esiseMzantsi"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "i-Solomon Islands"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "isi-Sami esiseMantla"
 
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "isi-Somali"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Iilwimi zesi-Sami (Ezinye)"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "i-Somalia"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "isi-Lule Sami"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "isi-Songhai"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "isi-Inari Sami"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "isi-Samoan"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "isi-Skolt Sami"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "isiShona"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "isi-Sindhi"
 
 #. language code: snk
 #: zypp/LanguageCode.cc:979
 msgid "Soninke"
 msgstr "isi-Soninke"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Iilwimi zesi-Sorbian"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "isi-Sogdian"
+
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "isi-Somali"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "isi-Songhai"
 
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "isiSuthu, saseMzantsi"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "uMzantsi Afrika"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "isi-South American Indian (Ezinye)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "i-South Georgia ne-South Sandwich Islands"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "i-South Korea"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "isi-Southern Altai"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "isi-Sami esiseMzantsi"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "i-Spain"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "isi-Spanish"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "i-Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "isi-Sardinian"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "i-Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "isi-Serer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr ""
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "isi-Nilo-Saharan (Ezinye)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "isiSwati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "isiSukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "isi-Sumerian"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "isi-Sundanese"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "i-Suriname"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "isi-Susu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "i-Svalbard ne-Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "isi-Sumerian"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "isiSwahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "isiSwati"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "i-Swaziland"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "i-Sweden"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "isi-Swedish"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "i-Switzerland"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "i-Syria"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "isi-Syriac"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "isi-Tagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3995,36 +3918,11 @@ msgstr "isi-Tahitian"
 msgid "Tai (Other)"
 msgstr "isi-Tai (Esinye)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "i-Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "isi-Tajik"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "i-Tajikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "isi-Tamashek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "isi-Tamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "i-Tanzania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4035,6 +3933,11 @@ msgstr "isi-Tatar"
 msgid "Telugu"
 msgstr "isiTelegu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "isi-Timne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4045,35 +3948,21 @@ msgstr "isi-Tereno"
 msgid "Tetum"
 msgstr "isi-Tetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "isi-Tajik"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "isi-Tagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "isi-Thai"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "i-Thailand"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-#, fuzzy
-msgid "The vendor does not provide support."
-msgstr "Idiski ayikho."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-#, fuzzy
-msgid "This request will break your system!"
-msgstr "Isicelo sesikhona kakade."
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4089,46 +3978,25 @@ msgstr "isi-Tigre"
 msgid "Tigrinya"
 msgstr "isi-Tigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "isi-Timne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "isi-Tiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "isi-Klingon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "isi-Tlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "i-Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "isi-Tok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "isi-Tokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "i-Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "isi-Tamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4140,103 +4008,66 @@ msgstr "isiTonga (Nyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "isi-Tonga (Tonga Islands)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "i-Trinidad ne-Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "isi-Tok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "isi-Tsimshian"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "isiTswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "isiTsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "isiTswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "isi-Turkmen"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "isiTumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "i-Tunisia"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Iilwimi zesiTupi"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "i-Turkey"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "isi-Turkish"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "isi-Turkish, Ottoman (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "isi-Turkmen"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "i-Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "i-Turks ne-Caicos Islands"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "isi-Altaic (Esinye)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "isi-Tuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "isiTwi"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "isi-Tuvinian"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "isiTwi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "isi-Udmurt"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "i-Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4247,11 +4078,6 @@ msgstr "isi-Ugaritic"
 msgid "Uighur"
 msgstr "isi-Uighur"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "i-Ukraine"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4262,208 +4088,36 @@ msgstr "isi-Ukrainian"
 msgid "Umbundu"
 msgstr "isi-Umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Akukwazeki ukufanisa into ye-Url"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Ayikwazi kudala uqhagamshelo lwe-dbus"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Ayikwazi kundulula imeko ye-HAL--i-hald ayiqhubi?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Akukwazeki ukwahlula iinxalenye ze-Url"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Akuqondwanga"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr ""
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "Ii-Arab Emirates Ezimanyeneyo"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "i-United Kingdom"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "i-United States"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "i-United States Minor Outlying Islands"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Ilizwe elingaziwa:"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Imposiso xa kufundwa kwidiski ye-floppy."
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Ulwimi Olungaziwayo:"
-
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Umyalelo ongaziwa"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr ""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr ""
-
-#: zypp/media/MediaException.cc:140
-#, fuzzy, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Isicwangciso se-Url asisebenziseki '%1'"
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "isi-Sorbian Sangasentla"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "isi-Urdu"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Ulungiselelo lwe-Url aluyivumeli i-%s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Ulungiselelo lwe-Url awuyivumeli inxalenye yomamkeli"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Ulungiselelo lwe-Url awulivumeli igama lokugqithisa"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Ulungiselelo lwe-Url awusivumeli isiqhagamshelanisi"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Ulungiselelo lwe-Url akulivumeli igama lomsebenzisi"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Ulungiselelo lwe-Url yinxalenye efunekayo"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Ulungiselelo lwe-Url lufuna inxalenye yomamkeli"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Ulungiselelo lwe-Url lufuna igama lendlela yothungelwano"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "i-Uruguay"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "isi-Uzbek"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "i-Uzbekistan"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "isi-Vai"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "i-Vanuatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "isiVenda"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "i-Venezuela"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "i-Vietnam"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "isi-Vietnamese"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "i-Virgin Islands, U.S."
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4477,22 +4131,12 @@ msgstr "isi-Votic"
 #. language code: wak
 #: zypp/LanguageCode.cc:1107
 msgid "Wakashan Languages"
-msgstr "Iilwimi zesiWakashan"
-
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "isi-Walamo"
-
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "i-Wallis ne-Futuna"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "isi-Walloon"
+msgstr "Iilwimi zesiWakashan"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "isi-Walamo"
 
 #. language code: war
 #: zypp/LanguageCode.cc:1111
@@ -4509,26 +4153,31 @@ msgstr "isi-Washo"
 msgid "Welsh"
 msgstr "isi-Welsh"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "i-Western Sahara"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Iilwimi zesi-Sorbian"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "isi-Walloon"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "isi-Wolof"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "isi-Kalmyk"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "isiXhosa"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "isi-Yakut"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4539,11 +4188,6 @@ msgstr "isi-Yao"
 msgid "Yapese"
 msgstr "isi-Yapese"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "i-Yemen"
-
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
 msgid "Yiddish"
@@ -4554,347 +4198,719 @@ msgstr "isi-Yiddish"
 msgid "Yoruba"
 msgstr "isiYoruba"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Iilwimi zesi-Yupik"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Iilwimi zesi-Yupik"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "isi-Zapotec"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "isi-Zenaga"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "isi-Zhuang"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "isi-Zande"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "IsiZulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "isiZuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Isilele ukuqalisa i-VM."
+
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Ukungenisa akufunyenwanga."
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, fuzzy, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Ayikwazi kubonelela%s ukusuka ku%s"
+
+#: zypp/repo/RepoProvideFile.cc:265
+#, fuzzy
+msgid "No url in repository."
+msgstr "Ifayili %1 ayifunyenwanga elugcinweni."
+
+#: zypp/repo/RepoException.cc:129
+#, fuzzy
+msgid "Service plugin does not support changing an attribute."
+msgstr "uhlobo lukavimba we-VAR1 aluluxhasi uphawu lokubonisa utshintsho"
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, fuzzy, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Umbekelo%s usilele ukukhangela imfezekiso. Ingaba usafuna ukuzama kwakhona "
+"ukuyikhuphela?"
+
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, fuzzy, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
+"Umbekelo%s usilele ukukhangela imfezekiso. Ingaba usafuna ukuzama kwakhona "
+"ukuyikhuphela?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "kusilele ukukhangela ukusetyenziswa kwe-deltarpm. "
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "kusilele ukusetyenziswa kwe-deltarpm."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s ibonelela%s, kodwa inenye inzululwazi ngokwakha."
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "umyalelo wokuyeka ukuhlohla imibekelelo"
+
+#: zypp/solver/detail/SATResolver.cc:986
+#, fuzzy
+msgid "conflicting requests"
+msgstr "Uqhagamshelo lucela uku:"
+
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "Ayikwazi kuhlohla%s ngenxa yeengxaki zoxhomekeko"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, fuzzy, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "Akukho nanye ebonelela ngo%s "
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "Idiski ayikho."
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s itshixiwe kwaye ayikwazi kungahlohlwa."
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "ayihlohlwanga"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, fuzzy, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s ifunwa ngu %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Ayikwazi kuhlohla%s "
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s iimpixano ne %s"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, fuzzy, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s ziphelelwe lixehsa %s"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s ziphelelwe lixehsa %s"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s iimpixano ne %s"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1070
+#, fuzzy
+msgid "deleted providers: "
+msgstr "Akukho nanye ebonelela ngo%s "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+#, fuzzy
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr "Akukho baboneleli bahlohliweyo baka%s"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "Akukho baboneleli bahlohliweyo baka%s"
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "ungahlohli %s"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "Gcina%s"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "i-Zambia"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "ungahlohli %s"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "isi-Zande"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+#, fuzzy
+msgid "This request will break your system!"
+msgstr "Isicelo sesikhona kakade."
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "isi-Zapotec"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "isi-Zenaga"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, fuzzy, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "Akukho baboneleli bahlohliweyo baka%s"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "isi-Zhuang"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "Ungahlohli okanye cima izicombululi ezinxulumeneyo"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "i-Zimbabwe"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "IsiZulu"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, fuzzy, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s ibonelela%s, kodwa inenye inzululwazi ngokwakha."
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "isiZuni"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, fuzzy, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "Hlohla%s nangona kuza kutshintsha inzululwazi yokwakha"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "kusilele ukukhangela ukusetyenziswa kwe-deltarpm. "
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%s ziphelelwe lixehsa %s"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "kusilele ukusetyenziswa kwe-deltarpm."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1318
+#, fuzzy, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "Ikhuphele%s ukusuka ku%s"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr ""
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Ukuhlohla"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, fuzzy, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "Suhoya le mfuneko apha nje"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "Suhoya le mfuneko apha nje"
+
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
+
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
+
+#: zypp/base/InterProcessMutex.cc:83
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Ayikwazi kuhlohla%s "
+msgid "Can't open lock file: %s"
+msgstr "Ayikwazi kuvuleka ifayili %1."
 
-#: zypp/solver/detail/SATResolver.cc:986
-#, fuzzy
-msgid "conflicting requests"
-msgstr "Uqhagamshelo lucela uku:"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr ""
+
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Umyalelo ongaziwa"
+
+#: zypp/base/StrMatcher.cc:153
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "idale ugcino olukhuselekileyo %s "
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
+
+#: zypp/base/StrMatcher.cc:158
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Ukuhlohla"
+msgid "Invalid regular expression '%s'"
+msgstr "Ulungiselelo olusebenzisekayo lwe-Url '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-#, fuzzy
-msgid "deleted providers: "
-msgstr "Akukho nanye ebonelela ngo%s "
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "Ungahlohli okanye cima izicombululi ezinxulumeneyo"
+msgid "Failed to mount %s on %s"
+msgstr "Ayikwazanga kuvuleka i-%s - %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:41
 #, fuzzy, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "Akukho baboneleli bahlohliweyo baka%s"
+msgid "Failed to unmount %s"
+msgstr "Kusilele ukulayishwa kwemodyulei \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "ungahlohli %s"
+msgid "Bad file name: %s"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr ""
+
+#: zypp/media/MediaException.cc:60
+#, fuzzy, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "Ifayili %1 ayifunyenwanga elugcinweni."
+
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Akukwazi kubhaleka ukuphawuleka kwefayili %1."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
+
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr ""
+
+#: zypp/media/MediaException.cc:106
+#, fuzzy, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "%1 asingovimba weefayili."
+
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:125
+#, fuzzy
+msgid "Empty host name in URI"
+msgstr "Igama le-CA elikhamte."
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:140
 #, fuzzy, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "Ikhuphele%s ukusuka ku%s"
-
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "Suhoya le mfuneko apha nje"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Isicwangciso se-Url asisebenziseki '%1'"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, fuzzy, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "Hlohla%s nangona kuza kutshintsha inzululwazi yokwakha"
-
-#: zypp/solver/detail/SATResolver.cc:1298
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s ziphelelwe lixehsa %s"
-
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "Gcina%s"
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
+
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s ibonelela%s, kodwa inenye inzululwazi ngokwakha."
+msgid "Cannot eject media '%s'"
+msgstr "Ayikwazi kuvuleka into yolwazi olusesikrinini '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:199
 #, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%s ziphelelwe lixehsa %s"
+msgid "Permission to access '%s' denied."
+msgstr "Iimvume zaliwe"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "i-libhal_ctx_entsha: Ayikwazu kudala imeko ye-libhal"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
 msgstr ""
-"i-libhal_imisela_uqhagamshelo_lwe-dbus: Ayikwazi kumesela uqhagamshelo lwe-"
-"dbus "
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, fuzzy, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s ifunwa ngu %s"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, fuzzy, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "Akukho nanye ebonelela ngo%s "
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "Idiski ayikho."
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "umyalelo wokuyeka ukuhlohla imibekelelo"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "ungahlohli %s"
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "Ayikwazi kudaleka ifayili."
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, fuzzy, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "i-rpm idalwe %s njenge %s kodwa kwakungenzeki ukumisela umahluko"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"i-rpm idalwe %s njenge %s.\n"
-"Nantsi imigca eyi-25 yokuqala yomahluko:\n"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, fuzzy, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "i-rpm igcine %s njenge %s kodwa kwakungenzeki ukumisela umahluko"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
-"i-rpm igcinwe %s njenge %s.\n"
-"Nantsi imigca eyi-25 yokuqala yomahluko:\n"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s iimpixano ne %s"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-#, fuzzy
-msgid "some dependency problem"
-msgstr "Ayikwazi kuhlohla%s ngenxa yeengxaki zoxhomekeko"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "uninstallable providers: "
-msgstr "Akukho baboneleli bahlohliweyo baka%s"
+#~ msgid "do not keep %s installed"
+#~ msgstr "ayihlohlwanga"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "akwaziwa"
+#, fuzzy
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Ayikwazanga kuvuleka i-%s - %s\n"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr ""
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "i-Serbia ne-Montenegro"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "Isikhethwa soluhlu esingaziwa"
 
 #, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "ayikwazi kusombulula izixhomekeki"
+
 #~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "Akukho vimba ufumanekayo oxhasa le mfuneko."
+#~ "Ifayili%s ayinayo inxenye yokukhangela.\n"
+#~ "Sebenzisa ifayili nakanjani?"
 
 #~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "Ezi ziconjululwa ziza kucinywa kwisixokelelwano."
-
-#~ msgid " Error!"
-#~ msgstr "Imposiso!"
-
-#~ msgid " Important!"
-#~ msgstr "Ibalulekile!"
-
-#~ msgid " fails checksum verification."
-#~ msgstr "isilele ukuqinisekisa ukukhangela inxenye."
-
-#~ msgid " miss checksum."
-#~ msgstr "ilahlekelwe kukukhangela inxenye."
-
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "%s ayikwazi kuhlohla ngenxa yezixhomekeki ezilahlekikeyo"
-
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "%s iimpixano nezinye iziconjululwa"
+#~ "Ifayili%s isilele ukukhangela imfezeko ngeqhosha elilandelayo:\n"
+#~ "%s|%s|%s\n"
+#~ " Sebenzisa ifayili nalanjani?"
 
 #~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s iimpixano ne:\n"
-#~ "%s"
-
-#~ msgid "%s depended on %s"
-#~ msgstr "%s ixhomekeke kwi %s"
-
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s ixhomekeke kwi %s"
+#~ "Ifayili%s inenxenye yokukhangela engasebenzi.\n"
+#~ "Ilindeleke%s, ifunyenwe%s\n"
+#~ " Sebenzisa ifayili nakanjani?"
 
-#~ msgid "%s depends on %s"
-#~ msgstr "%s ixhomekeke kwi %s"
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Ifayili%s inenxenye yokukhangela engaziwa%s .\n"
+#~ "Sebenzisa ifayili nakanjani?"
 
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s ixhomekeke kwezinye iziconjululwa"
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "Ifayili %s ayisayinwanga.\n"
+#~ "Yisebenzise nakanjani?"
 
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s ixhomekeke kwi:%s"
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Ifayili%s isayinwe ngeqhosha elingaziwa:\n"
+#~ "%s|%s|%s\n"
+#~ " Sebenzise ifayili nakanjani?"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
 #~ msgstr ""
-#~ "%s zaliseka izixhomekeki zika%s kodwa ziza kugcinwa kwisixokelelwano sakho"
+#~ "Kufunyenwe iqhosha elingathenjwanga:\n"
+#~ "%s|%s|%s\n"
+#~ " Themba Iqhosha?"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "%s zalisekisa izixhomekeki zika%s kodwa aziyi kuhlohlwa"
+#~ msgid "%s remove failed"
+#~ msgstr "%s ukushenxisa kusilele"
 
-#~ msgid "%s has missing dependencies"
-#~ msgstr "%s inezixhomekeki ezilahlekileyo"
+#, fuzzy
+#~ msgid "Invalid user name or password."
+#~ msgstr "Guqula igama lokugqithisa lakho"
 
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "%s inemfuneko ezingazalisekiswanga"
+#~ msgid "rpm output:"
+#~ msgstr "isivelisi se-rpm:"
 
 #~ msgid "%s install failed"
 #~ msgstr "%s ukuhlohla kusilele"
@@ -4902,132 +4918,88 @@ msgstr ""
 #~ msgid "%s installed ok"
 #~ msgstr "%s ukuhlohla kulungile"
 
-#, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s ibuyiselwe ngo %s"
-
-#, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s ifunwa ngu %s"
+#~ msgid "%s remove ok"
+#~ msgstr "%s ukushenxisa kulungile"
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s ilahlekelwe yimfuneko %s"
-
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "%s iyafunwa zezinye iziconjululwa"
-
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
 #~ msgstr ""
-#~ "%s ifunwa ngu:\n"
-#~ "%s"
-
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "%s ayihlohlwanga kwaye iphawulwe njengengahlohleki"
-
-#, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s ifunwa ngu %s"
-
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s ibuyiselwe ngo %s"
+#~ "%s ibonelela esi sixhomekeki kodwa kuza kutshintsha inzululwazi yokwakha "
+#~ "into ehlohliweyo"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
 #~ msgstr ""
-#~ "%s iyafunwa zezinye ukuba ihlohle izicombululi, ayizukwazi ukwenziwa "
-#~ "inganxulumani."
+#~ "%s ibonelela esi sixhomekeki kodwa kuza kutshintsha inzululwazi yokwakha "
+#~ "into ehlohliweyo"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
-#~ msgstr ""
-#~ "%s iyafunwa zezinye ukuba ihlohle izicombululi, ayizukwazi ukwenziwa "
-#~ "inganxulumani."
-
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
-#~ msgstr ""
-#~ "%s iyafunwa zezinye ukuba ihlohle izicombululi, ayisoze inganxulumani."
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "Ungahlohli okanye cima izicombululi ezinxulumeneyo"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr ""
-#~ "%s uludwe lwenkqubo ukuba lihlohlwe, kodwa oku akwenzeki ngenxa yeengxaki "
-#~ "zesixhomekeki."
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "Suhoya ukuba%s sele imiselwe ukuhlohla"
 
-#, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s ifunwa ngu %s"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "Suhoya ukuphelelwa%s lixesha kwi%s"
 
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s ifunwa ngu %s"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "Suhoya le mpixano ka%s "
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s ayihlohleki ngenxa yeempixano ne %s"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "Suhoya le mfuneko apha nje"
 
 #, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr "%s ziphelelwe lixehsa%s . Kodwa%s ayikwazi kucima kuba itshixiwe."
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "Hlohla%s nangona kuza kutshintsha inzululwazi yokwakha"
 
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s yenza ezinye iziconjululwa ziphelelwe lixesha"
+#~ msgid "Install missing resolvables"
+#~ msgstr "Hlohla izicombululi ezilahlekileyo"
 
-#~ msgid "%s part of %s"
-#~ msgstr "%s inxenye ka %s"
+#~ msgid "Keep resolvables"
+#~ msgstr "Gcina iziconjululwa"
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s ibonelela%s, kodwa yenzelwe uludwe lwenkqubo ukuba igcinwe."
+#~ msgid "Unlock these resolvables"
+#~ msgstr "Vula ezi zicombululi"
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr "%s ibonelela%s, kodwa enye inguqulelo yoko%s sele ihlohliwe."
+#~ msgid "delete %s"
+#~ msgstr "Cima %s"
 
-#, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s ibonelela%s, kodwa inenye inzululwazi ngokwakha."
+#~ msgid "install %s"
+#~ msgstr "hlohla%s"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s ibonelela%s, kodwa yenzelwe uludwe lwenkqubo ukuba ihlohlwe."
+#~ msgid "unlock %s"
+#~ msgstr "vula%s"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s ibonelela%s, kodwa itshixiwe."
+#~ msgid "unlock all resolvables"
+#~ msgstr "vula zonke izicombululi"
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s ibonelela%s, kodwa ayihlohleki.  Zama ukuyihlohla ngokunokwayo "
-#~ "ngeenkcukacha ezithe vetshe."
+#, fuzzy
+#~ msgid "Can't open solv-file: "
+#~ msgstr "Ayikwazi kuvuleka ifayili %1."
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
+#~ msgid "Error reading solv-file: "
+#~ msgstr "Icandelo lokufunda imposiso %u."
+
+#~ msgid "Path Parameter parsing not supported for this URL"
 #~ msgstr ""
-#~ "%s ibonelela esi sixhomekeki kodwa kuza kutshintsha inzululwazi yokwakha "
-#~ "into ehlohliweyo"
+#~ "Ukwahlula umda wenkcazelo yendlela yothungelwano awuxhaswa malunga nale-"
+#~ "URL"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
+#~ msgid "Path parameter parsing not supported for this URL"
 #~ msgstr ""
-#~ "%s ibonelela esi sixhomekeki kodwa kuza kutshintsha inzululwazi yokwakha "
-#~ "into ehlohliweyo"
+#~ "Ukwahlula umda wenkcazelo yendlela yothungelwano awuxhaswa malunga ne-URL"
 
-#~ msgid "%s remove failed"
-#~ msgstr "%s ukushenxisa kusilele"
+#~ msgid "Software management is already running."
+#~ msgstr "Ukulawulwa kwe-software sele kuqhuba."
 
-#~ msgid "%s remove ok"
-#~ msgstr "%s ukushenxisa kulungile"
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s ibuyiselwe ngo %s"
 
 #~ msgid "%s replaced by %s"
 #~ msgstr "%s ibuyiselwe ngo %s"
@@ -5042,356 +5014,384 @@ msgstr ""
 #~ msgid "%s will be installed by the user.\n"
 #~ msgstr "%s ayizukuhlohlwa kuba isafuneka"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "%s ayizukuhlohlwa kuba isafuneka"
+#~ msgid "Invalid information"
+#~ msgstr "Ulwazi olungasebenzi"
 
-#~ msgid ", Action: "
-#~ msgstr ", Isenzo:"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s iyafunwa zezinye iziconjululwa"
 
-#~ msgid ", Trigger: "
-#~ msgstr ", Inkcukumiso:"
+#~ msgid ""
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s ifunwa ngu:\n"
+#~ "%s"
+
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "%s iimpixano nezinye iziconjululwa"
 
-#, fuzzy
 #~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
-#~ msgstr "Impixano ngaphezu%s (%s) ifuna ukushenxiswa ukuba kuhlohlwe%s"
+#~ "%s conflicts with:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s iimpixano ne:\n"
+#~ "%s"
+
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s yenza ezinye iziconjululwa ziphelelwe lixesha"
 
 #~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
 #~ msgstr ""
-#~ "Uvimba nje omnye sele ebhalisiwe, oovimba abagciniweyo abanako ukugcinwa "
-#~ "kwakhona."
+#~ "\n"
+#~ "Ezi ziconjululwa ziza kucinywa kwisixokelelwano."
+
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s ixhomekeke kwezinye iziconjululwa"
+
+#~ msgid "%s depends on %s"
+#~ msgstr "%s ixhomekeke kwi %s"
+
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s ixhomekeke kwi:%s"
+
+#~ msgid "Child of"
+#~ msgstr "Umntwana ka"
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
 #~ msgstr ""
-#~ "Ayikwazi kuhlohla%s ukusukela oko kuba sele iphawulwe njengefuna ukuba "
-#~ "ihlohlwe"
+#~ "\n"
+#~ "Akukho vimba ufumanekayo oxhasa le mfuneko."
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
 #~ msgstr ""
-#~ "Ayikwazi kuhlohla%s ukusukela oko%s kuba sele iphawulwe njengefuna ukuba "
-#~ "ihlohlwe"
+#~ "Ngenxa yeengxaki ezichazwe ngentla/ngezantsi kwesi sigqibo "
+#~ "akuyikusombulula zonke izixhomekeki."
 
 #, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
-#~ msgstr ""
-#~ "Ayikwazi kuhlohla%s ukusukela oko ingabhekiseli kwesi sixokelelwano."
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "Ayikwazi kuhlohla u%s kuba kuyaphixana ne%s "
+
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "%s ayihlohlwanga kwaye iphawulwe njengengahlohleki"
+
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "%s inemfuneko ezingazalisekiswanga"
+
+#~ msgid "%s has missing dependencies"
+#~ msgstr "%s inezixhomekeki ezilahlekileyo"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "%s ayikwazi kuhlohla ngenxa yezixhomekeki ezilahlekikeyo"
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "Ayikwazi kuvuleka ifayili %1."
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "%s zalisekisa izixhomekeki zika%s kodwa aziyi kuhlohlwa"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "Ayikwazi kwanelisa imfuneko%s ka%s"
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgstr ""
+#~ "%s zaliseka izixhomekeki zika%s kodwa ziza kugcinwa kwisixokelelwano sakho"
 
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
-#~ msgstr "Ayikwazi kuhlohla%s ukuzalisekisa izixhomekeki zika%s"
+#~ msgid "No need to install %s"
+#~ msgstr "Akukho mfuno yokuhlohla%s "
 
-#~ msgid "Cannot create a file needed to perform update installation."
-#~ msgstr "Ayikwazi kudala ifayili efunelwa ukwenza ukuhlohlwa kohlaziyo."
+#, fuzzy
+#~ msgid "Cannot install %s to fulfill the dependencies of %s"
+#~ msgstr "Ayikwazi kuhlohla%s ukuzalisekisa izixhomekeki zika%s"
 
 #~ msgid "Cannot install %s to fulfil the dependencies of %s"
 #~ msgstr "Ayikwazi kuhlohla%s ukuzalisekisa izixhomekeki zika%s"
 
 #, fuzzy
-#~ msgid "Cannot install %s to fulfill the dependencies of %s"
-#~ msgstr "Ayikwazi kuhlohla%s ukuzalisekisa izixhomekeki zika%s"
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "%s ayizukuhlohlwa kuba isafuneka"
+
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr "%s ziphelelwe lixehsa%s . Kodwa%s ayikwazi kucima kuba itshixiwe."
 
 #, fuzzy
 #~ msgid "Cannot install %s, because it is conflicting"
 #~ msgstr "Ayikwazi kuhlohla u%s kuba kuyaphixana "
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "Ayikwazi kuhlohla u%s kuba kuyaphixana ne%s "
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s ayihlohleki ngenxa yeempixano ne %s"
 
-#~ msgid "Child of"
-#~ msgstr "Umntwana ka"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "ukufuna%s ka%s xa ihlaziya%s"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "Ungahlohli okanye cima izicombululi ezinxulumeneyo"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s ilahlekelwe yimfuneko %s"
 
-#~ msgid "Downloading %s"
-#~ msgstr "Ikhuphela u%s"
+#~ msgid ", Action: "
+#~ msgstr ", Isenzo:"
 
-#, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "Ngenxa yeengxaki ezichazwe ngentla/ngezantsi kwesi sigqibo "
-#~ "akuyikusombulula zonke izixhomekeki."
+#~ msgid ", Trigger: "
+#~ msgstr ", Inkcukumiso:"
 
-#, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "Icandelo lokufunda imposiso %u."
+#~ msgid "package"
+#~ msgstr "umbekelo"
 
-#~ msgid "Establishing %s"
-#~ msgstr "Imisela%s"
+#~ msgid "selection"
+#~ msgstr "ukukhetha"
 
-#, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Ayikwazanga kuvuleka i-%s - %s\n"
+#~ msgid "pattern"
+#~ msgstr "indlela yenkqubo"
 
-#~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "Ifayili%s ayinayo inxenye yokukhangela.\n"
-#~ "Sebenzisa ifayili nakanjani?"
+#~ msgid "product"
+#~ msgstr "imveliso"
 
-#~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "Ifayili%s isilele ukukhangela imfezeko ngeqhosha elilandelayo:\n"
-#~ "%s|%s|%s\n"
-#~ " Sebenzisa ifayili nalanjani?"
+#~ msgid "patch"
+#~ msgstr "lungisa"
 
-#~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "Ifayili%s inenxenye yokukhangela engasebenzi.\n"
-#~ "Ilindeleke%s, ifunyenwe%s\n"
-#~ " Sebenzisa ifayili nakanjani?"
+#~ msgid "script"
+#~ msgstr "iskripti"
 
-#~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "Ifayili%s inenxenye yokukhangela engaziwa%s .\n"
-#~ "Sebenzisa ifayili nakanjani?"
+#~ msgid "message"
+#~ msgstr "umyalezo"
 
-#~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
-#~ msgstr ""
-#~ "Ifayili %s ayisayinwanga.\n"
-#~ "Yisebenzise nakanjani?"
+#~ msgid "atom"
+#~ msgstr "iatom"
 
-#~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "Ifayili%s isayinwe ngeqhosha elingaziwa:\n"
-#~ "%s|%s|%s\n"
-#~ " Sebenzise ifayili nakanjani?"
+#~ msgid "system"
+#~ msgstr "isixokelelwano"
 
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "Suhoya ukuba%s sele imiselwe ukuhlohla"
+#~ msgid "Resolvable"
+#~ msgstr "Isiconjululwa"
 
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "Suhoya ukuphelelwa%s lixesha kwi%s"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "Ukuphawu le nzame yesigqibo akusebenzi."
 
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "Suhoya le mpixano ka%s "
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "Ukuphawula ukuconjululwa%s njengesingahlohleki"
 
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "Suhoya le mfuneko jikelele"
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "%s uludwe lwenkqubo ukuba lihlohlwe, kodwa oku akwenzeki ngenxa yeengxaki "
+#~ "zesixhomekeki."
 
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "Suhoya le mfuneko apha nje"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr ""
+#~ "Ayikwazi kuhlohla%s ukusukela oko kuba sele iphawulwe njengefuna ukuba "
+#~ "ihlohlwe"
 
 #, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "Hlohla%s nangona kuza kutshintsha inzululwazi yokwakha"
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr ""
+#~ "Ayikwazi kuhlohla%s ukusukela oko ingabhekiseli kwesi sixokelelwano."
 
-#~ msgid "Install missing resolvables"
-#~ msgstr "Hlohla izicombululi ezilahlekileyo"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr ""
+#~ "Ayikwazi kuhlohla%s ukusukela oko%s kuba sele iphawulwe njengefuna ukuba "
+#~ "ihlohlwe"
+
+#~ msgid "This would invalidate %s."
+#~ msgstr "Oku kuza kubhangisa%s."
+
+#~ msgid "Establishing %s"
+#~ msgstr "Imisela%s"
 
 #~ msgid "Installing %s"
 #~ msgstr "Ihlohla %s"
 
-#~ msgid "Invalid information"
-#~ msgstr "Ulwazi olungasebenzi"
+#~ msgid "Updating %s to %s"
+#~ msgstr "Ihlaziya%s ukuya ku%s"
 
-#, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "Guqula igama lokugqithisa lakho"
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "Itsiba%s: sele ihlohliwe"
 
-#~ msgid "Keep resolvables"
-#~ msgstr "Gcina iziconjululwa"
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "Akukho baboneleli bachaseneyo bahlohliweyo baka%s"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "Ukuphawula%s njengengahlohleki ngenxa yeempixano ezingaphezu kuka%s"
+#~ msgid "for %s"
+#~ msgstr "ka%s"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "Ukuphawula ukuconjululwa%s njengesingahlohleki"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "Hlaziya ukuya ku%s ukunqanda ukushenxiswa kuka%s akwenzeki."
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "Ukuphawu le nzame yesigqibo akusebenzi."
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s ibonelela%s, kodwa yenzelwe uludwe lwenkqubo ukuba ihlohlwe."
 
-#~ msgid "No need to install %s"
-#~ msgstr "Akukho mfuno yokuhlohla%s "
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr "%s ibonelela%s, kodwa enye inguqulelo yoko%s sele ihlohliwe."
 
-#, fuzzy
 #~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
-#~ msgstr ""
-#~ "Umbekelo%s usilele ukukhangela imfezekiso. Ingaba usafuna ukuzama "
-#~ "kwakhona ukuyikhuphela, okanye lahla ukuhlohla?"
-
-#~ msgid "Path Parameter parsing not supported for this URL"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "Ukwahlula umda wenkcazelo yendlela yothungelwano awuxhaswa malunga nale-"
-#~ "URL"
+#~ "%s ibonelela%s, kodwa ayihlohleki.  Zama ukuyihlohla ngokunokwayo "
+#~ "ngeenkcukacha ezithe vetshe."
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr ""
-#~ "Ukwahlula umda wenkcazelo yendlela yothungelwano awuxhaswa malunga ne-URL"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s ibonelela%s, kodwa itshixiwe."
 
-#~ msgid "Reading filelist from %s"
-#~ msgstr "Ifunda uluhlu lwefayili ukusuka ku%s"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s ibonelela%s, kodwa yenzelwe uludwe lwenkqubo ukuba igcinwe."
 
-#~ msgid "Reading index files"
-#~ msgstr "Ifunda iifayili zokwalathisa"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s ibonelela%s, kodwa inenye inzululwazi ngokwakha."
 
-#~ msgid "Reading packages file"
-#~ msgstr "Ifunda ifayili yemibekelo"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "Ayikwazi kwanelisa imfuneko%s ka%s"
 
-#~ msgid "Reading packages from %s"
-#~ msgstr "Ifunda imibekelo ukusuka ku%s"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s iyafunwa zezinye ukuba ihlohle izicombululi, ayizukwazi ukwenziwa "
+#~ "inganxulumani."
 
-#~ msgid "Reading patch %s"
-#~ msgstr "Ifunda indawana%s"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s iyafunwa zezinye ukuba ihlohle izicombululi, ayizukwazi ukwenziwa "
+#~ "inganxulumani."
 
-#~ msgid "Reading patches index %s"
-#~ msgstr "Ifunda iindawana zokwalathisa%s"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "Impixano ngaphezu%s (%s) ifuna ukushenxiswa ukuba kuhlohlwe%s"
 
-#~ msgid "Reading pattern from %s"
-#~ msgstr "Ifunda indlela yenkqubo ukusuka ku%s"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "Ukuphawula%s njengengahlohleki ngenxa yeempixano ezingaphezu kuka%s"
 
-#~ msgid "Reading product from %s"
-#~ msgstr "Ifunda imveliso ukusuka ku%s"
+#~ msgid "from %s"
+#~ msgstr "Ukusuka ku%s"
 
-#~ msgid "Reading selection from %s"
-#~ msgstr "Ifunda ukukhetha ukusuka ku%s"
+#~ msgid " Error!"
+#~ msgstr "Imposiso!"
 
-#~ msgid "Reading translation: %s"
-#~ msgstr "Ifunda uguqulelo: %s"
+#~ msgid " Important!"
+#~ msgstr "Ibalulekile!"
 
-#~ msgid "Resolvable"
-#~ msgstr "Isiconjululwa"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s ixhomekeke kwi %s"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "i-Serbia ne-Montenegro"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s ifunwa ngu %s"
 
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "Itsiba%s: sele ihlohliwe"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s ifunwa ngu %s"
 
-#~ msgid "Software management is already running."
-#~ msgstr "Ukulawulwa kwe-software sele kuqhuba."
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s ibuyiselwe ngo %s"
 
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "Ifayili yesikripti isilele uvavanyo lwe-checksum. "
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s ifunwa ngu %s"
 
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr "Ifayili ye-xml repomd esayiniweyo isilele usayino lokukhangela."
+#~ msgid "%s part of %s"
+#~ msgstr "%s inxenye ka %s"
 
 #, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "Akukho baboneleli bachaseneyo bahlohliweyo baka%s"
-
-#~ msgid "This would invalidate %s."
-#~ msgstr "Oku kuza kubhangisa%s."
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s ifunwa ngu %s"
 
 #~ msgid "Unable to parse Url authority"
 #~ msgstr "Akukwazeki ukwahlula ugunyaziso lwe-Url"
 
-#~ msgid "Unable to restore all sources."
-#~ msgstr "Ayikwazi kugcina bonke oovimba."
-
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "Isikhethwa soluhlu esingaziwa"
-
-#~ msgid "Unlock these resolvables"
-#~ msgstr "Vula ezi zicombululi"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "Suhoya le mfuneko jikelele"
 
 #~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
 #~ msgstr ""
-#~ "Kufunyenwe iqhosha elingathenjwanga:\n"
-#~ "%s|%s|%s\n"
-#~ " Themba Iqhosha?"
+#~ "%s iyafunwa zezinye ukuba ihlohle izicombululi, ayisoze inganxulumani."
 
-#~ msgid "Updating %s to %s"
-#~ msgstr "Ihlaziya%s ukuya ku%s"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr "Ayikwazi kudala ifayili efunelwa ukwenza ukuhlohlwa kohlaziyo."
 
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "Hlaziya ukuya ku%s ukunqanda ukushenxiswa kuka%s akwenzeki."
+#~ msgid "Unable to restore all sources."
+#~ msgstr "Ayikwazi kugcina bonke oovimba."
 
-#~ msgid "atom"
-#~ msgstr "iatom"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr ""
+#~ "Uvimba nje omnye sele ebhalisiwe, oovimba abagciniweyo abanako ukugcinwa "
+#~ "kwakhona."
 
-#~ msgid "delete %s"
-#~ msgstr "Cima %s"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "Ayikwazi kuhlohla%s ukuzalisekisa izixhomekeki zika%s"
 
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "ayihlohlwanga"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s ixhomekeke kwi %s"
 
-#~ msgid "for %s"
-#~ msgstr "ka%s"
+#~ msgid "Reading index files"
+#~ msgstr "Ifunda iifayili zokwalathisa"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "ukufuna%s ka%s xa ihlaziya%s"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "Ifayili ye-xml repomd esayiniweyo isilele usayino lokukhangela."
 
-#~ msgid "from %s"
-#~ msgstr "Ukusuka ku%s"
+#~ msgid "Reading product from %s"
+#~ msgstr "Ifunda imveliso ukusuka ku%s"
 
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "ayikwazi kusombulula izixhomekeki"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "Ifunda uluhlu lwefayili ukusuka ku%s"
 
-#~ msgid "install %s"
-#~ msgstr "hlohla%s"
+#~ msgid "Reading packages from %s"
+#~ msgstr "Ifunda imibekelo ukusuka ku%s"
 
-#~ msgid "message"
-#~ msgstr "umyalezo"
+#~ msgid "Reading selection from %s"
+#~ msgstr "Ifunda ukukhetha ukusuka ku%s"
 
-#~ msgid "package"
-#~ msgstr "umbekelo"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "Ifunda indlela yenkqubo ukusuka ku%s"
 
-#~ msgid "patch"
-#~ msgstr "lungisa"
+#~ msgid "Reading patches index %s"
+#~ msgstr "Ifunda iindawana zokwalathisa%s"
 
-#~ msgid "pattern"
-#~ msgstr "indlela yenkqubo"
+#~ msgid "Reading patch %s"
+#~ msgstr "Ifunda indawana%s"
 
-#~ msgid "product"
-#~ msgstr "imveliso"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "Ifayili yesikripti isilele uvavanyo lwe-checksum. "
 
-#~ msgid "rpm output:"
-#~ msgstr "isivelisi se-rpm:"
+#~ msgid "Reading packages file"
+#~ msgstr "Ifunda ifayili yemibekelo"
 
-#~ msgid "script"
-#~ msgstr "iskripti"
+#~ msgid "Reading translation: %s"
+#~ msgstr "Ifunda uguqulelo: %s"
 
-#~ msgid "selection"
-#~ msgstr "ukukhetha"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "Umbekelo%s usilele ukukhangela imfezekiso. Ingaba usafuna ukuzama "
+#~ "kwakhona ukuyikhuphela, okanye lahla ukuhlohla?"
 
-#~ msgid "system"
-#~ msgstr "isixokelelwano"
+#~ msgid " miss checksum."
+#~ msgstr "ilahlekelwe kukukhangela inxenye."
 
-#~ msgid "unlock %s"
-#~ msgstr "vula%s"
+#~ msgid " fails checksum verification."
+#~ msgstr "isilele ukuqinisekisa ukukhangela inxenye."
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "vula zonke izicombululi"
+#~ msgid "Downloading %s"
+#~ msgstr "Ikhuphela u%s"
index 99614a8..bf40905 100644 (file)
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# Chinese message file for YaST2 (@memory@)
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002 SuSE Linux AG.
+# Copyright (C) 2001 SuSE GmbH.
 #
+#
+# Thruth Wang <lihaow@opera.com>, 2007, 2008, 2009, 2012, 2013.
+# marguerite <i@marguerite.su>, 2013.
+# 玛格丽特 · 苏 <marguerite@opensuse.org>, 2013, 2014, 2015.
 msgid ""
 msgstr ""
-"Project-Id-Version: zypp\n"
+"Project-Id-Version: YaST (@memory@)\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 16:59\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2015-12-23 18:11+0800\n"
+"Last-Translator: marguerite <marguerite@opensuse.org>\n"
+"Language-Team: Chinese <kde-i18n-doc@kde.org>\n"
+"Language: zh_CN\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Lokalize 2.0\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"不可安装的提供程序:"
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal 例外"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "无效的 LDAP URL 查询字符串"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr " SSL 证书问题,请确认“%s”的 CA 证书是对的。"
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "无效的 LDAP URL 查询参数 '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "无法克隆 URL 对象"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "无效的空 URL 对象引用"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "无法解析 URL 组件"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "无法初始化 mutex 属性"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "无法设置递归的 mutex 属性"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "无法初始化递归的 mutex"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "无法取得 mutex 锁定"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "无法释放 mutex 锁定"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "提供"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "前提"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "需要"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "冲突"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "淘汰"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "推荐"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "建议"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "扩展"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "补充"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "可疑类型 '%s',在 %u 字节,校验和 '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
@@ -36,140 +118,1800 @@ msgstr " 已执行"
 msgid " execution failed"
 msgstr " 执行失败"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " 中止时跳过执行"
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
 #: zypp/target/TargetImpl.cc:449
 #, c-format, boost-format
 msgid "%s already executed as %s)"
-msgstr "%s 已作为 %s 执行)"
+msgstr "%s 早已作为 %s 执行了)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s 与 %s 冲突(%s 提供)"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr " 执行在中止时被跳过"
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s 不属于智能升级的储存库"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "发送更新消息通知出错。"
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s 有低等体系结构"
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "新更新消息"
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s 不能安装"
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "安装已按指示中止。"
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s 由系统提供,无法擦除"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "对不起,本版 libzypp 没有编译 HAL 支持。"
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s 废弃了 %s(%s 提供)"
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext 未连接"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s 需要 %s,但是不能提供此需求"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive 未初始化"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(已失效)"
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume 未初始化"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(不会失效)"
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "无法创建 dbus 连接"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(将在 24 小时内失效)"
-msgstr[1] "(将在 24 小时内失效)"
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new:无法创建 libhal 环境"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(将在 24 小时内失效)"
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection:无法设置 dbus 连接"
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "阿布哈西亚语"
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "无法初始化 HAL 环境 - hald 未运行?"
 
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "亚齐语"
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "不是一个 CDROM 驱动器"
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "阿乔利语"
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM 失败:"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "阿当梅语"
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
+#, c-format, boost-format
+msgid "Failed to import public key from file %s: %s"
+msgstr "从文件 %s 中导入公钥失败:%s"
 
-#: zypp/RepoManager.cc:1611
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "正在添加储存库“%s”"
+msgid "Failed to remove public key %s: %s"
+msgstr "移除公钥 %s 失败:%s"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "需要附加客户合同"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "%s 的有改动的配置文件:"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm 已将 %s 另存为 %s,但是无法确定两者的差异"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
+#, c-format, boost-format
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm 已将 %s 另存为 %s。\n"
+"以下是前 25 行差异:\n"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm 已将 %s 创建为 %s,但是无法确定两者的差异"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm 已将 %s 创建为 %s。\n"
+"以下是前 25 行差异:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
 #: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
 msgid "Additional rpm output"
-msgstr "é\99\84å\8a ç\9a\84 rpm 输出"
+msgstr "é¢\9då¤\96ç\9a\84 RPM 输出"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "阿第盖语"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "已创建备份 %s"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "阿法尔"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "签名正确"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "阿富汗"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "未知签名类型"
 
-#. language code: afh
-#: zypp/LanguageCode.cc:175
-msgid "Afrihili"
-msgstr "阿弗里希利语"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "无法核实签名"
 
-#. language code: afr af
-#: zypp/LanguageCode.cc:177
-msgid "Afrikaans"
-msgstr "南非荷兰语"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "签名正确,但密钥是非受信的"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "签名公钥不可用"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "文件不存在或无法检查其签名"
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "将执行以下动作:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "无法读取源文件夹 '%1%': 权限被拒"
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "读取文件夹 '%s' 失败"
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "无法读取源文件 '%1%': 权限被拒"
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "软件源别名不能以点开头。"
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "服务别名不能以点开头。"
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "无法打开并写入 '%s' 文件。"
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr "未知服务 '%1%':正在移除孤立的服务软件源 '%2%'"
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "在指定 URL 未找到有效元数据"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "无法创建 %s"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "无法创建元数据缓存文件夹。"
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "正在构建软件源 '%s' 的缓存"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "无法在 %s 创建缓存 - 无写入权限。"
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "缓存软件源 (%d) 失败。"
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "未处理的软件源类型"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "试图读取 '%s' 出错"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "读取 '%s' 遇到未知错误"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "正在添加软件源 '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "无效的源文件名于 '%s'"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "正在移除软件源 '%s'"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "找不到软件源存储位置。"
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "无法删除 '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "找不到服务存储位置。"
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "URL 方案不允许使用 %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "无效的 %s 组件 '%s'"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "无效的 %s 组件"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "不支持解析此 URL 的查询字符串"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "URL 方案是一个必需组件"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "无效的 URL 方案 '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "URL 方案不允许使用用户名"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "URL 方案不允许使用密码"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "URL 方案要求有主机组件"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "URL 方案不允许使用主机组件"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "无效的主机组件 '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "URL 方案不允许使用端口"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "无效的端口组件 '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "URL 方案要求有路径名"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "若存在认证则不允许相对路径"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "编码的字符串包含了一个 NUL 字节"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "无效的参数数组分割的分隔符"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "无效的参数映射分割的分隔符"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "无效的参数数组合并的分隔符"
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "无法打开 pty (%s)。"
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "无法打开管道 (%s)。"
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "无法 chroot 到 '%s' (%s)。"
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "无法 chir 到 '%s',它在 chroot '%s' (%s) 中。"
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "无法 chdir 到 '%s' (%s)。"
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "无法执行 '%s' (%s)。"
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "无法派生 (%s)。"
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "命令退出,状态 %d。"
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "命令已被信号 %d (%s) 杀死。"
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "命令退出,未知错误。"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(未过期)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(已过期)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(24 小时内过期)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(%d 天后过期)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "未知"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "不支持"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "级别 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "级别 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "级别 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "需要额外的客户合同"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "无效"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "支持级别未指定"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "厂商不提供支持。"
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"问题判定,该技术支持设计用于提供兼容性信息、安装辅助、使用帮助、持续维护和基"
+"础甄错。一级支持并不意在修正产品缺陷错误。"
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"问题隔离,该技术支持设计用于重现客户问题、孤立问题领域并提供一级支持不能解决"
+"的问题的解决方案。"
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"问题解决,该技术支持设计用来解决复杂的问题,通过工程解决二级支持中确认的产品"
+"缺陷。"
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "签署一份额外的客户合同后才能获得支持。"
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "未知支持选项。描述不可用"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "未知国家或地区:"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "无代码"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "安道尔共和国"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "阿拉伯联合酋长国"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "阿富汗"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "安提瓜岛和巴布达岛"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "安圭拉岛"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "阿尔巴尼亚"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "亚美尼亚"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "荷属安的列斯"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "安哥拉"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "南极洲"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "阿根廷"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "美属萨摩亚"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "奥地利"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "澳大利亚"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "阿鲁巴岛"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "奥兰群岛"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "阿塞拜疆"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "波斯尼亚和黑塞哥维那"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "巴巴多斯岛"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "孟加拉国"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "比利时"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "布基纳法索"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "保加利亚"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "巴林"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "布隆迪"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "贝宁湾"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "百慕大群岛"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "文莱达鲁萨兰国"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "玻利维亚"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "巴西"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "巴哈马群岛"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "不丹"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "布维岛"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "博茨瓦纳"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "白俄罗斯"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "伯利兹城"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "加拿大"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "科科斯 (基林) 群岛"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "刚果"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "中非共和国"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "瑞士"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "科特迪瓦共和国"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "库克群岛"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "智利"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "喀麦隆"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "中国"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "哥伦比亚"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "哥斯达黎加"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "古巴"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "佛得角"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "圣诞岛"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "塞浦路斯"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "捷克共和国"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "德国"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "吉布提"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "丹麦"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "多米尼加"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "多米尼加共和国"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "阿尔及利亚"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "厄瓜多尔"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "爱沙尼亚"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "埃及"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "西撒哈拉"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "厄立特里亚"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "西班牙"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "埃塞俄比亚"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "芬兰"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "斐济"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "福克兰群岛 (马尔维纳斯群岛)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "密克罗尼西亚联邦"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "法罗群岛"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "法国"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "法属美特罗波利坦"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "加蓬"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "英国"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "格林纳达"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "乔治亚州"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "法属圭亚那"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "格恩西"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "加纳"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "直布罗陀"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "格陵兰"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "冈比亚"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "几内亚"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "瓜德罗普岛"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "赤道几内亚"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "希腊"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "南乔治亚岛和南三维治群岛"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "危地马拉"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "关岛"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "几内亚比绍共和国"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "圭亚那"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "中国香港特别行政区"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "赫德岛和麦克唐纳岛"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "洪都拉斯"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "克罗地亚"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "海地"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "匈牙利"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "印度尼西亚"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "爱尔兰"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "以色列"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "马恩岛"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "印度"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "英属印度洋领地"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "伊拉克"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "伊朗"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "冰岛"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "意大利"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "新泽西州"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "牙买加"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "约旦"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "日本"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "肯尼亚"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "吉尔吉斯斯坦"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "柬埔寨"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "基里巴斯"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "科摩罗"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "圣基茨和尼维斯"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "北朝鲜"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "南韩"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "科威特"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "开曼群岛"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "哈萨克斯坦"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "老挝人民民主共和国"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "黎巴嫩"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "圣卢西亚岛"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "列支敦士登"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "斯里兰卡"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "利比里亚"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "莱索托"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "立陶宛"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "卢森堡公国"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "拉脱维亚"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "利比亚"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "摩洛哥"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "摩纳哥"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "摩尔多瓦"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "黑山"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "圣马丁"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "马达加斯加岛"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "马绍尔群岛"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "马其顿王国"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "马里"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "缅甸"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "蒙古"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "中国澳门行政特区"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "北马里亚纳群岛"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "马提尼克岛"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "毛利塔尼亚"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "蒙特塞拉特岛"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "马耳他"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "毛里求斯"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "马尔代夫"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "马拉维"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "墨西哥"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "马来群岛"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "莫桑比克"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "纳米比亚"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "新喀里多尼亚"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "尼日尔"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "诺福克岛"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "尼日利亚"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "尼加拉瓜"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "荷兰"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "挪威"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "尼泊尔"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "瑙鲁语"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "纽埃岛"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "新西兰"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "阿曼"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "巴拿马"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "秘鲁"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "法属波利尼西亚"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "巴布亚新几内亚"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "菲律宾共和国"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "巴基斯坦"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "波兰"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "圣皮埃尔和密克隆"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "皮特克恩岛"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "波多黎各"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "巴基斯坦领土"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "葡萄牙"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "帕劳群岛"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "巴拉圭"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "卡塔尔"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "留尼旺"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "罗马尼亚"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "塞尔维亚"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "俄联邦"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "卢旺达"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "沙特阿拉伯"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "所罗门群岛"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "塞舌尔"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "苏丹"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "瑞典"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "新加坡"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "圣赫勒拿"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "斯洛文尼亚"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "斯瓦尔巴岛和扬马延岛"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "斯洛伐克"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "塞拉利昂"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "圣马力诺"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "塞内加尔"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "索马里"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "苏里南"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "圣多美和普林西比"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "萨尔瓦多"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "叙利亚共和国"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "斯威士兰"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "特克斯和凯科斯群岛"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "乍得湖"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "法属南部领土"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "多哥"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "泰国"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "塔吉克斯坦"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "托克劳语"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "土库曼斯坦"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "突尼斯"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "汤加"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "东帝汶"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "土耳其"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "特立尼达和多巴哥"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "图瓦卢语"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "中国台湾"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "坦桑尼亚"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "乌克兰"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "乌干达"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "美国本土外小岛屿"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "美国"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "乌拉圭"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "乌兹别克斯坦"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "梵蒂冈 (梵蒂冈城国)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "圣文森特和格林纳丁斯"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "委内瑞拉"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "英属维尔京群岛"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "美属维尔京群岛"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "越南"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "瓦努阿图"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "瓦利斯和富图纳"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "萨摩亚群岛"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "也门"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "马约特岛"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "南非"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "赞比亚"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "津巴布韦"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "未知语言:"
+
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "阿法尔语"
+
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "阿布哈兹语"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "亚齐语"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "阿乔利方言"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "阿当梅语"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "阿地盖语"
 
 #. language code: afa
 #: zypp/LanguageCode.cc:173
 msgid "Afro-Asiatic (Other)"
-msgstr "亚非诸语言(其它)"
+msgstr "亚非诸语言 (其它)"
+
+#. language code: afh
+#: zypp/LanguageCode.cc:175
+msgid "Afrihili"
+msgstr "阿弗里希利语"
+
+#. language code: afr af
+#: zypp/LanguageCode.cc:177
+msgid "Afrikaans"
+msgstr "南非荷兰语"
 
 #. language code: ain
 #: zypp/LanguageCode.cc:179
@@ -186,16 +1928,6 @@ msgstr "阿坎语"
 msgid "Akkadian"
 msgstr "阿卡德语"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "奥兰群岛"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "阿尔巴尼亚"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -206,58 +1938,25 @@ msgstr "阿尔巴尼亚语"
 msgid "Aleut"
 msgstr "阿留申语"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "阿尔及利亚"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "阿冈昆语"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "阿尔泰诸语言(其它)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "美属萨摩亚"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "南阿尔泰语"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "阿姆哈拉语"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "需要附加客户合同才能获得支持。"
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "安道尔共和国"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "安哥拉"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "安圭拉岛"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "南极洲"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "安提瓜岛和巴布达岛"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "古代英语 (约 450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -269,55 +1968,40 @@ msgstr "阿帕切语"
 msgid "Arabic"
 msgstr "阿拉伯语"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "阿拉贡语"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "亚拉姆语"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "阿拉帕霍语"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "阿拉贡语"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "亚美尼亚语"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "阿劳干语"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "阿拉瓦克语"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "阿根廷"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "亚美尼亚"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "亚美尼亚语"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "阿拉帕霍语"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
-msgstr "人工语言(其它)"
+msgstr "人工语言 (其它)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "阿鲁巴岛"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "阿拉瓦克语"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -334,32 +2018,11 @@ msgstr "阿斯图里亚斯语"
 msgid "Athapascan Languages"
 msgstr "阿撒巴斯卡语"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "澳大利亚"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "澳洲语"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "奥地利"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "澳斯特罗尼西亚诸语言(其它)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "“%s”需要身份验证"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -380,125 +2043,66 @@ msgstr "阿瓦乔语"
 msgid "Aymara"
 msgstr "艾马拉语"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "阿塞拜疆"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "阿塞拜疆语"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "无效文件名:%s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "媒体挂接点无效"
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "巴哈马群岛"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "巴林"
-
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "巴厘语"
-
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "波罗的诸语言(其它)"
-
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "俾路支语"
-
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "班巴拉语"
-
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "巴米累克语"
-
 #. language code: bad
 #: zypp/LanguageCode.cc:237
 msgid "Banda"
 msgstr "班达语"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "å­\9få\8a æ\8b\89å\9b½"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "巴米累å\85\8b语"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "班图诸语言(其它)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "巴什基尔语"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "巴巴多斯岛"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "俾路支语"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "巴萨语"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "班巴拉语"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "巴什基尔语"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "巴语"
 
 #. language code: baq eus eu
 #: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 msgid "Basque"
 msgstr "巴斯克语"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "巴塔克语(印度尼西亚)"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "巴萨语"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "波罗的海诸语言 (其它)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "别札语"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "白俄罗斯"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "白俄罗斯语"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "比利时"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "伯利兹城"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -509,31 +2113,16 @@ msgstr "别姆巴语"
 msgid "Bengali"
 msgstr "孟加拉语"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "贝宁湾"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
-msgstr "柏柏尔诸语言(其它)"
-
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "百慕大群岛"
+msgstr "柏柏尔语 (其它)"
 
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "博杰普尔语"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "不丹"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
@@ -554,264 +2143,70 @@ msgstr "比尼语"
 msgid "Bislama"
 msgstr "比利兹语"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "布林语"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "玻利维亚"
-
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "波斯尼亚和黑塞哥维那"
-
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "波斯尼亚语"
-
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "博茨瓦纳"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "布维岛"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "布拉杰语"
-
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "巴西"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "布里多尼语"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "英属印度洋领地"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "英属维尔京群岛"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "文莱达鲁萨兰国"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "布吉语"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "正在构建“%s”储存库超速缓存"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "保加利亚"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "保加利亚语"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "布利亚特语"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "布基纳法索"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "缅甸语"
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "布隆迪"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "卡多语"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "柬埔寨"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "喀麦隆"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "无法创建 sat-pool。"
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "无法获取 mutex 锁定"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "无法 chdir 到“%s”(%s)。"
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "无法 chir 到“%s”,它在 chroot“%s”(%s) 中。"
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "无法 chroot 到“%s”(%s)。"
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "无法创建 %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "无法在 %s 创建缓存 - 没有写权限。"
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "无法创建元数据缓存目录。"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "无法删除“%s”"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "无法执行“%s”(%s)。"
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "不确定储存库的储存位置。"
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "不确定服务的储存位置。"
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "无法派生 (%s)。"
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "无法初始化 mutex 特性"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "无法初始化递归的 mutex"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "无法打开文件“%s”进行写操作。"
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "无法打开锁定文件:%s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "无法打开管道 (%s)。"
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "无法打开 pty (%s)。"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "西克西卡语"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "无法提供文件“%s”(自储存库“%s”)"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "班图语 (其它)"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "无法解除 mutex 锁定"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "波斯尼亚语"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "无法设置递归的 mutex 特性"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "布拉杰语"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "å\8a æ\8b¿å¤§"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "å¸\83é\87\8cå¤\9a尼语"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "无法弹出任何媒体"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "巴塔克语 (印度尼西亚)"
 
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "无法弹出媒体“%s”"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "布利亚特语"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr "找不到可用的循环设备来装入来自“%s”的图像文件"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "布吉语"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "无法读储存库目录“%1%”:权限被拒"
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "保加利亚语"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "无法读取储存库文件“%1%”:权限被拒"
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "缅甸语"
 
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "无法写入文件“%s”。"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "布林语"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "佛得角"
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "卡多语"
+
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "中美洲印第安语 (其它)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -826,12 +2221,7 @@ msgstr "加泰罗尼亚语"
 #. language code: cau
 #: zypp/LanguageCode.cc:309
 msgid "Caucasian (Other)"
-msgstr "高加索诸语言(其它)"
-
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "开曼群岛"
+msgstr "高加索语 (其它)"
 
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
@@ -841,264 +2231,143 @@ msgstr "宿务语"
 #. language code: cel
 #: zypp/LanguageCode.cc:313
 msgid "Celtic (Other)"
-msgstr "凯尔特诸语言(其它)"
-
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "中非共和国"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "中美洲印第安诸语言(其它)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "乍得湖"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "查加语"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "查米克语"
+msgstr "塞尔特语(其它)"
 
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "查莫罗语"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "%s 的已更改配置文件:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "车臣语"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "彻罗基语"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "夏延语"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "契布卡语"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "齐切瓦语"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "智利"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "车臣语"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "中国"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "查加语"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "中文"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "楚克语"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "马里语"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "契努克语"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "奇帕维安语"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "乔克托语"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "圣诞岛"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "奇帕维安语"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "彻罗基语"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "宗教斯拉夫语"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "楚克语"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "楚瓦什语"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "古典尼瓦尔语"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "科科斯(基林)群岛"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "哥伦比亚"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "命令退出,状态为 %d。"
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "命令退出,带未知错误。"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "命令由信号 %d (%s) 中止。"
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "科摩罗"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "冲突"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "刚果"
-
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "库克群岛"
-
-#. language code: cop
-#: zypp/LanguageCode.cc:347
-msgid "Coptic"
-msgstr "科普特语"
-
-#. language code: cor kw
-#: zypp/LanguageCode.cc:349
-msgid "Cornish"
-msgstr "凯尔特语"
-
-#. language code: cos co
-#: zypp/LanguageCode.cc:351
-msgid "Corsican"
-msgstr "科西嘉语"
-
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "哥斯达黎加"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "科特迪瓦共和国"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "夏延语"
 
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "克里族语"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "查米克语"
 
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "克里克语"
+#. language code: cop
+#: zypp/LanguageCode.cc:347
+msgid "Coptic"
+msgstr "科普特语"
 
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "克里奥尔语和皮钦语(其它)"
+#. language code: cor kw
+#: zypp/LanguageCode.cc:349
+msgid "Cornish"
+msgstr "凯尔特语"
+
+#. language code: cos co
+#: zypp/LanguageCode.cc:351
+msgid "Corsican"
+msgstr "科西嘉语"
 
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
-msgstr "基于英语的克里奥尔语和皮钦语(其它)"
+msgstr "基于英语的克里奥尔语和皮钦语 (其它)"
 
 #. language code: cpf
 #: zypp/LanguageCode.cc:355
 msgid "Creoles and Pidgins, French-Based (Other)"
-msgstr "基于法语的克里奥尔语和皮钦语(其它)"
+msgstr "基于法语的克里奥尔语和皮钦语 (其它)"
 
 #. language code: cpp
 #: zypp/LanguageCode.cc:357
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
-msgstr "基于葡萄牙语的克里奥尔语和皮钦语(其它)"
+msgstr "基于葡萄牙语的克里奥尔语和皮钦语 (其它)"
+
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "克里族语"
 
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "克里米亚鞑靼语"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "克罗地亚"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "克罗地亚语"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "克里奥尔语和皮钦语 (其它)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "å\8f¤å·´"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "å\8d¡è\88\92æ¯\94语"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
-msgstr "库施特诸语言(其它)"
-
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "塞浦路斯"
+msgstr "库希特语 (其它)"
 
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "捷克语"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "捷克共和国"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1124,10 +2393,15 @@ msgstr "达雅语"
 msgid "Delaware"
 msgstr "特拉瓦印第安人语"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "丹麦"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "阿萨巴斯卡奴隶语"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "多格里布语"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1139,74 +2413,36 @@ msgstr "丁卡语"
 msgid "Divehi"
 msgstr "迪蔚希语"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "吉布提"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "多格来语"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "多格里布语"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "多米尼加"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "多米尼加共和国"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"由于“%s”而发生的下载 (curl) 错误:\n"
-"错误代码:%s\n"
-"错误讯息:%s\n"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "由于“%s”,下载 (curl) 初始化失败"
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
-msgstr "达罗毗荼语(其它)"
+msgstr "达罗毗荼语 (其它)"
+
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "下索布语"
 
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "都阿拉语"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "可疑类型“%s”(%u 字节校验和“%s”中)"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "中古荷兰语 (约 1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "荷兰语"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "中古荷兰语(约 1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1217,26 +2453,11 @@ msgstr "迪尤拉语"
 msgid "Dzongkha"
 msgstr "不丹语"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "东帝汶"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "厄瓜多尔"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "艾非克语"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "埃及"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1247,32 +2468,11 @@ msgstr "古埃及语"
 msgid "Ekajuk"
 msgstr "艾卡朱克语"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "萨尔瓦多"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "艾拉米特语"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "URI 中目标为空"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "URI 中文件系统为空"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "URI 中主机名为空"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "编码的字符串包含一个 NUL 字节"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1283,73 +2483,16 @@ msgstr "英语"
 msgid "English, Middle (1100-1500)"
 msgstr "中古英语 (1100-1500)"
 
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "古代英语(约 450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "增强"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "赤道几内亚"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "厄立特里亚"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "为“%s”设置下载 (curl) 选项时出错:"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "发送更新消息通知时出错。"
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "尝试从“%s”读取时出错"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Erzya"
-
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "世界语"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "爱沙尼亚"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "爱沙尼亚语"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "埃塞俄比亚"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1358,258 +2501,33 @@ msgstr "幽语"
 #. language code: ewo
 #: zypp/LanguageCode.cc:427
 msgid "Ewondo"
-msgstr "埃翁多语"
-
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "未能缓存储存库 (%d)。"
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "未能删除密钥。"
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "未能从文件 %s 中导入公共密钥:%s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "未能将 %s 装入到 %s 上"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "未能提供包 %s。要重试获取吗?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "未能读取目录“%s”"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "未能去除公共密钥 %s:%s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "未能卸载 %s"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "福克兰群岛(马尔维纳斯群岛)"
-
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "芳语"
-
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "芳蒂语"
+msgstr "埃翁多语"
 
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "法罗群岛"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "芳语"
 
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "法罗语"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "密克罗尼西亚联邦"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "斐济"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "芳蒂语"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "斐济语"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"%2%\n"
-"安装包中的\n"
-"文件 %1%\n"
-"与 %4%\n"
-"安装包中的\n"
-"文件 %3%\n"
-"冲突"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"%2%\n"
-"安装包中的\n"
-"文件 %1%\n"
-"与 %4%\n"
-"包中的\n"
-"文件 %3%\n"
-"冲突"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"%2%\n"
-"安装包中的文件 %1%\n"
-"与 %3%\n"
-"安装包中的文件\n"
-"冲突"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"%2%\n"
-"安装包中的文件 %1%\n"
-"与 %3%\n"
-"包中的文件\n"
-"冲突"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"%2%\n"
-"包中的\n"
-"文件 %1%\n"
-"与 %4%\n"
-"安装包中的\n"
-"文件 %3%\n"
-"冲突"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"%2%\n"
-"包中的\n"
-"文件 %1%\n"
-"与 %4%\n"
-"包中的\n"
-"文件 %3%\n"
-"冲突"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"%2%\n"
-"包中的文件 %1%\n"
-"与 %3%\n"
-"安装包中的文件\n"
-"冲突"
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"%2%\n"
-"包中的文件 %1%\n"
-"与 %3%\n"
-"包中的文件\n"
-"冲突"
-
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "文件“%s”未在媒体“%s”上找到"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "文件不存在或无法检查其签名"
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "菲律宾语"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "芬兰"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1618,97 +2536,48 @@ msgstr "芬兰语"
 #. language code: fiu
 #: zypp/LanguageCode.cc:441
 msgid "Finno-Ugrian (Other)"
-msgstr "芬兰-乌戈尔诸语言(其它)"
-
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "将执行以下操作:"
+msgstr "芬兰乌戈尔语 (其它)"
 
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "丰语"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "法国"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "法语"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "法属圭亚那"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "法属波利尼西亚"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "法属南部领土"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
-msgstr "中古法语(约 1050-1600)"
+msgstr "中古法语 (约 1050-1600)"
 
 #. language code: fro
 #: zypp/LanguageCode.cc:451
 msgid "French, Old (842-ca.1400)"
-msgstr "古法语(842-约 1400)"
+msgstr "古法语 (842-约 1400)"
 
 #. language code: fry fy
 #: zypp/LanguageCode.cc:453
 msgid "Frisian"
 msgstr "弗里西语"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "弗留利语"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "富拉语"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "弗留利语"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "加语"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "加蓬"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "盖尔语"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "加利西亚语"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "冈比亚"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "干达语"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1719,15 +2588,10 @@ msgstr "卡约语"
 msgid "Gbaya"
 msgstr "巴亚语"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "吉兹语"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "乔治亚州"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "日尔曼语 (其它)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1739,39 +2603,45 @@ msgstr "乔治亚语"
 msgid "German"
 msgstr "德语"
 
-#. language code: gmh
-#: zypp/LanguageCode.cc:487
-msgid "German, Middle High (ca.1050-1500)"
-msgstr "中古高地德语(约 1050-1500)"
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "吉兹语"
 
-#. language code: goh
-#: zypp/LanguageCode.cc:489
-msgid "German, Old High (ca.750-1050)"
-msgstr "å\8f¤é«\98å\9c°å¾·è¯­ï¼\88约 750-1050ï¼\89"
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "å\90\89å°\94伯ç\89¹è¯­"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "日尔曼诸语言(其它)"
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "盖尔语"
 
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "德国"
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "爱尔兰语"
 
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "加纳"
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "加利西亚语"
 
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "直布罗陀"
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "马恩岛语"
+
+#. language code: gmh
+#: zypp/LanguageCode.cc:487
+msgid "German, Middle High (ca.1050-1500)"
+msgstr "中古高地德语 (约 1050-1500)"
 
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "å\90\89å°\94伯ç\89¹è¯­"
+#. language code: goh
+#: zypp/LanguageCode.cc:489
+msgid "German, Old High (ca.750-1050)"
+msgstr "å\8f¤é«\98å\9c°å¾·è¯­ (约 750-1050)"
 
 #. language code: gon
 #: zypp/LanguageCode.cc:491
@@ -1793,76 +2663,26 @@ msgstr "哥特语"
 msgid "Grebo"
 msgstr "格列博语"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "希腊"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
-msgstr "古希腊语(1453 以前)"
+msgstr "古希腊语 (1453 以前)"
 
 #. language code: gre ell el
 #: zypp/LanguageCode.cc:501 zypp/LanguageCode.cc:503
 msgid "Greek, Modern (1453-)"
 msgstr "现代希腊语 (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "格陵兰"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "格林纳达"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "瓜德罗普岛"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "关岛"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "瓜拉尼语"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "危地马拉"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "格恩西岛"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "几内亚"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "几内亚比绍共和国"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "印度古哈拉地语"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "圭亚那"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1873,52 +2693,21 @@ msgstr "库臣语"
 msgid "Haida"
 msgstr "海达语"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "海地"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "海地语"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal 例外"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext 未连接"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive 未初始化"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume 未初始化"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "豪撒语"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "是否已启用所有请求的储存库?"
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "夏威夷语"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "赫德岛和麦克唐纳岛"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1944,16 +2733,6 @@ msgstr "喜马偕尔语"
 msgid "Hindi"
 msgstr "北印度语"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "希里莫图语"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "历史:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1962,33 +2741,23 @@ msgstr "赫梯语"
 #. language code: hmn
 #: zypp/LanguageCode.cc:531
 msgid "Hmong"
-msgstr "蒙(苗)语"
+msgstr "蒙 (苗) 语"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "梵蒂冈(梵蒂冈城国)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "洪都拉斯"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "希里莫图语"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "中国香港特别行政区"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "高地索布语"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "匈牙利语"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "匈牙利"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1999,10 +2768,10 @@ msgstr "胡帕语"
 msgid "Iban"
 msgstr "伊班语"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "冰岛"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "伊博语"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2014,250 +2783,105 @@ msgstr "冰岛语"
 msgid "Ido"
 msgstr "伊多语"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "伊博语"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "四川彝语"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "伊乔语"
 
-#. language code: ilo
-#: zypp/LanguageCode.cc:559
-msgid "Iloko"
-msgstr "伊洛卡诺语"
-
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "伊纳里萨摩斯语"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "印度"
-
-#. language code: inc
-#: zypp/LanguageCode.cc:563
-msgid "Indic (Other)"
-msgstr "印度诸语言(其它)"
-
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "印欧诸语言(其它)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "印度尼西亚"
-
-#. language code: ind id
-#: zypp/LanguageCode.cc:565
-msgid "Indonesian"
-msgstr "印度尼西亚语"
-
-#. language code: inh
-#: zypp/LanguageCode.cc:569
-msgid "Ingush"
-msgstr "英古什语"
-
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "安装已经按照指示被中止。"
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "国际语(国际辅助语协会)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "国际语"
-
 #. language code: iku iu
 #: zypp/LanguageCode.cc:555
 msgid "Inuktitut"
 msgstr "伊努伊特语"
 
-#. language code: ipk ik
-#: zypp/LanguageCode.cc:571
-msgid "Inupiaq"
-msgstr "依努皮亚语"
-
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "无效的 %s 组件"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "无效的 %s 组件“%s”"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "无效的 LDAP URL 查询参数“%s”"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "无效的 LDAP URL 查询字符串"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "无效的 URL 模式“%s”"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "无效的空 URL 对象参照"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "无效的主机组件“%s”"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "无效的参数数组合并的分隔符"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "无效的参数数组分割的分隔符"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "无效的参数映射分割的分隔符"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "无效的端口组件“%s”"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "正则表达式“%s”无效"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "无效的正则表达式“%s”:regcomp 返回 %d"
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "国际语"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "“%s”处的储存库文件名无效"
+#. language code: ilo
+#: zypp/LanguageCode.cc:559
+msgid "Iloko"
+msgstr "伊洛卡诺语"
 
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "伊朗"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "国际语 (国际辅助语协会)"
 
-#. language code: ira
-#: zypp/LanguageCode.cc:573
-msgid "Iranian (Other)"
-msgstr "伊朗诸语言(其它)"
+#. language code: inc
+#: zypp/LanguageCode.cc:563
+msgid "Indic (Other)"
+msgstr "印度语 (其它)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "伊拉克"
+#. language code: ind id
+#: zypp/LanguageCode.cc:565
+msgid "Indonesian"
+msgstr "印度尼西亚语"
 
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "爱尔兰"
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "印欧诸语言 (其它)"
 
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "爱尔兰语"
+#. language code: inh
+#: zypp/LanguageCode.cc:569
+msgid "Ingush"
+msgstr "英古什语"
 
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "中å\8f¤ç\88±å°\94å\85°è¯­ (900-1200)"
+#. language code: ipk ik
+#: zypp/LanguageCode.cc:571
+msgid "Inupiaq"
+msgstr "ä¾\9då\8aªç\9a®äº\9a语"
 
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "古爱尔兰语(900 以前)"
+#. language code: ira
+#: zypp/LanguageCode.cc:573
+msgid "Iranian (Other)"
+msgstr "伊朗语 (其它)"
 
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "易洛魁语"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "马恩岛"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "以色列"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "意大利语"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "意大利"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "牙买加"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "爪哇语"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "日本"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "逻辑语"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "日语"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "爪哇语"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "泽西岛"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "约旦"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "犹太-波斯语"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "犹太-阿拉伯语"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "犹太-波斯语"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "卡巴尔德语"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "卡拉卡尔帕克语"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2274,11 +2898,6 @@ msgstr "克钦语"
 msgid "Kalaallisut"
 msgstr "格陵兰语"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "卡尔梅克语"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2289,21 +2908,6 @@ msgstr "坎巴语"
 msgid "Kannada"
 msgstr "加拿大语"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "卡努里语"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "卡拉卡尔帕克语"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "卡拉恰伊-巴尔卡尔语"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2314,10 +2918,10 @@ msgstr "克伦语"
 msgid "Kashmiri"
 msgstr "克什米尔语"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "卡舒比语"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "卡努里语"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2329,31 +2933,26 @@ msgstr "卡威语"
 msgid "Kazakh"
 msgstr "哈萨克语"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "哈萨克斯坦"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "肯尼亚"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "卡巴尔德语"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "卡西语"
 
+#. language code: khi
+#: zypp/LanguageCode.cc:615
+msgid "Khoisan (Other)"
+msgstr "科伊桑语 (其它)"
+
 #. language code: khm km
 #: zypp/LanguageCode.cc:617
 msgid "Khmer"
 msgstr "高棉语"
 
-#. language code: khi
-#: zypp/LanguageCode.cc:615
-msgid "Khoisan (Other)"
-msgstr "科伊桑诸语言(其它)"
-
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2364,11 +2963,6 @@ msgstr "和阗(和田)语"
 msgid "Kikuyu"
 msgstr "基库尤语"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "金本杜语"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2379,15 +2973,15 @@ msgstr "加泰隆语"
 msgid "Kirghiz"
 msgstr "吉尔吉斯语"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "基里巴斯"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "金本杜语"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "å\85\8bæ\9e\97è´¡"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "å­\94å\8d¡å°¼è¯­"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2399,11 +2993,6 @@ msgstr "科米语"
 msgid "Kongo"
 msgstr "刚果语"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "孔卡尼语"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2419,11 +3008,21 @@ msgstr "科斯拉伊语"
 msgid "Kpelle"
 msgstr "克佩勒语"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "卡拉恰伊-巴尔卡尔语"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "克鲁语"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "库卢克语"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2439,26 +3038,11 @@ msgstr "库密克语"
 msgid "Kurdish"
 msgstr "库尔德语"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "库卢克语"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "库特内语"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "科威特"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "吉尔吉斯斯坦"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2479,67 +3063,20 @@ msgstr "兰巴语"
 msgid "Lao"
 msgstr "老挝语"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "老挝人民民主共和国"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "拉丁语"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "拉脱维亚"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "拉脱维亚语"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "黎巴嫩"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "莱索托"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "一级"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "二级"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "级别 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
-msgstr "列兹金语"
-
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "利比里亚"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "利比亚"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "列支敦士登"
+msgstr "列兹金语"
 
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
@@ -2551,61 +3088,46 @@ msgstr "林堡干语"
 msgid "Lingala"
 msgstr "林加拉语"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "立陶宛"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "立陶宛语"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "位置“%s”暂时不可访问。"
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "逻辑语"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "低地德语"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "下索布语"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "蒙古语"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "洛齐语"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "卢巴-加丹加语"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "卢森堡语"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "卢巴-卢拉语"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "卢巴-加丹加语"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "干达语"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "卢伊塞诺语"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "鲁乐萨摩斯语"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2614,42 +3136,18 @@ msgstr "隆达语"
 #. language code: luo
 #: zypp/LanguageCode.cc:691
 msgid "Luo (Kenya and Tanzania)"
-msgstr "卢奥语(肯尼亚和坦桑尼亚)"
+msgstr "卢奥语 (肯尼亚和坦桑尼亚)"
 
 #. language code: lus
 #: zypp/LanguageCode.cc:693
 msgid "Lushai"
 msgstr "卢萨语"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "卢森堡公国"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "卢森堡语"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "中国澳门行政特区"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "马其顿王国"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "马其顿语"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "马达加斯加岛"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2660,6 +3158,11 @@ msgstr "马都拉语"
 msgid "Magahi"
 msgstr "马加赫语"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "马绍尔语"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2670,269 +3173,126 @@ msgstr "米德勒语"
 msgid "Makasar"
 msgstr "望加锡语"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "马达加斯加语"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "马拉维"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "马来语"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
 msgstr "马拉雅拉姆语"
 
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "马来群岛"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "马尔代夫"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "格式错误的 URI"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "马里"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "马耳他"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "马耳他语"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "满语"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "曼达语"
-
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "曼丁哥语"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "曼尼普尔语"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "马诺博诸语言"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "马恩岛语"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "毛利语"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "新西兰南岛诸语言 (其它)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "马拉地语"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "马里语"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "马绍尔群岛"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "马绍尔语"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "马提尼克岛"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "马尔瓦利语"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "马萨伊语"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "毛利塔尼亚"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "毛里求斯"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "玛雅诸语言"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "马约特岛"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "媒体源“%s”不包含所需的媒体"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "媒体“%s”正在由其他实例使用"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "马来语"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "媒体未挂接"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "莫克沙语"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "尝试执行操作“%s”时,媒体未打开。"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "曼达语"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "门德语"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "法属美特罗波利坦"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "墨西哥"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "中古爱尔兰语 (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
 msgid "Mi'kmaq"
 msgstr "密克马克语"
 
-#. language code: min
-#: zypp/LanguageCode.cc:737
-msgid "Minangkabau"
-msgstr "米南卡保语"
+#. language code: min
+#: zypp/LanguageCode.cc:737
+msgid "Minangkabau"
+msgstr "米南卡保语"
+
+#. language code: mis
+#: zypp/LanguageCode.cc:739
+msgid "Miscellaneous Languages"
+msgstr "杂项语言"
+
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "孟高棉语 (其它)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "马达加斯加语"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "马耳他语"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "满语"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "米兰德语"
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "曼尼普尔语"
 
-#. language code: mis
-#: zypp/LanguageCode.cc:739
-msgid "Miscellaneous Languages"
-msgstr "混杂语诸语言"
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "马诺博诸语言"
 
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "莫霍克语"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "莫克沙语"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "摩尔达维亚语"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "摩尔多瓦"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "孟-高棉诸语言(其它)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "摩纳哥"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "蒙古语"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "蒙古"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "蒙古语"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "黑山"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "蒙特塞拉特岛"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "摩洛哥"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "莫西语"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "莫桑比克"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2943,209 +3303,140 @@ msgstr "多语种"
 msgid "Munda languages"
 msgstr "蒙达诸语言"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "缅甸"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "克里克语"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "米兰德语"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "马尔瓦利语"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "玛雅诸语言"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "厄尔兹亚语"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "纳瓦特尔语"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "纳米比亚"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "北美印第安语"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "瑙鲁语"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "那不勒斯语"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "纳瓦霍语"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "北部恩德贝勒语"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "南部恩德贝勒语"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "北部恩德贝勒语"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "恩敦加语"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "那不勒斯语"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "尼泊尔"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "尼泊尔 Bhasa 语"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "低地德语"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "尼泊尔语"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "荷兰"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "荷属安的列斯"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "新喀里多尼亚"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "新西兰"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "新建更新消息"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "尼泊尔 Bhasa 语"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "尼亚斯语"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "尼加拉瓜"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "尼日尔"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
-msgstr "尼日尔-科尔多凡语诸语言(其它)"
-
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "尼日利亚"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "尼罗-撒哈拉诸语言(其它)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "纽埃岛"
+msgstr "尼日尔-科尔多凡语 (其它)"
 
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "纽埃语"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "无代码"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "挪威 Nynorsk 语"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "储存库中没有 url。"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "挪威布克摩尔语"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "诺盖语"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "诺福克岛"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
-msgstr "古诺尔斯语"
-
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "北美印第安语"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "北朝鲜"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "北马里亚纳群岛"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "北萨摩斯语"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "北梭托语"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "挪威"
-
-#. language code: nor no
-#: zypp/LanguageCode.cc:811
-msgid "Norwegian"
-msgstr "挪威语"
-
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "挪威布克摩尔语"
+msgstr "古诺尔斯语"
 
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "挪威 Nynorsk 语"
+#. language code: nor no
+#: zypp/LanguageCode.cc:811
+msgid "Norwegian"
+msgstr "挪威语"
 
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "不是 CDROM 驱动器"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "北梭托语"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
-msgstr "努比亚语诸语言"
+msgstr "努比亚诸语言"
+
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "古典尼瓦尔语"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "齐切瓦语"
 
 #. language code: nym
 #: zypp/LanguageCode.cc:821
@@ -3167,38 +3458,20 @@ msgstr "尼奥罗语"
 msgid "Nzima"
 msgstr "恩济马语"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "过时"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
-msgstr "欧西坦语(邮编 1500)"
+msgstr "欧西坦语 (1500 前)"
 
 #. language code: oji oj
 #: zypp/LanguageCode.cc:831
 msgid "Ojibwa"
 msgstr "奥吉布瓦语"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "阿曼"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "需要“%s”和/或“%s”属性。"
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "不受媒体支持的操作"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
-msgstr "Oriya 语"
+msgstr "奥里亚语"
 
 #. language code: orm om
 #: zypp/LanguageCode.cc:835
@@ -3215,162 +3488,85 @@ msgstr "奥萨格语"
 msgid "Ossetian"
 msgstr "奥塞梯语"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "土耳其语,古奥斯曼 (1500-1928)"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
-msgstr "奥æ\89\98ç±³诸语言"
+msgstr "å\8f¤å¥¥æ\96¯æ\9b¼诸语言"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr "包 %s 可能在传输过程中已损坏。要重试获取吗?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "巴布亚语 (其它)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "邦阿西楠语"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "钵罗钵语"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "巴基斯坦"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "帕劳群岛"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "帕劳语"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "巴基斯坦领土"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "巴利语"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
 msgid "Pampanga"
 msgstr "邦板牙语"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "巴拿马"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "邦阿西楠语"
-
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
-msgstr "Panjabi 语"
+msgstr "旁遮普语"
 
 #. language code: pap
 #: zypp/LanguageCode.cc:855
 msgid "Papiamento"
 msgstr "帕皮亚门托语"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "巴布亚新几内亚"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "巴布亚诸语言(其它)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "巴拉圭"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "路径“%s”(在媒体“%s”上)不是一个目录。"
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "路径“%s”(在媒体“%s”上)不是一个文件。"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "帕劳语"
 
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "“%s” 的访问权限已拒绝。"
+#. language code: peo
+#: zypp/LanguageCode.cc:859
+msgid "Persian, Old (ca.600-400 B.C.)"
+msgstr "古波斯语 (约公元前 600-400)"
 
 #. language code: per fas fa
 #: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
 msgid "Persian"
 msgstr "波斯语"
 
-#. language code: peo
-#: zypp/LanguageCode.cc:859
-msgid "Persian, Old (ca.600-400 B.C.)"
-msgstr "古波斯语(约公元前 600-400)"
-
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "秘鲁"
-
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
-msgstr "菲律宾诸语言(其它)"
-
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "菲律宾共和国"
+msgstr "菲律宾语 (其它)"
 
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "腓尼基语"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "皮特克恩岛"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "请先安装“lsof”包。"
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "波纳佩语"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "波兰"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "巴利语"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "波兰语"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "葡萄牙"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "波纳佩语"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3380,151 +3576,58 @@ msgstr "葡萄牙语"
 #. language code: pra
 #: zypp/LanguageCode.cc:877
 msgid "Prakrit Languages"
-msgstr "普拉克里特诸语言"
-
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "先决条件"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"问题确定,这是旨在提供兼容性信息、安装帮助、使用支持、现行维护和基本查错的技"
-"术支持。一级支持的目的不是改正产品缺陷错误。"
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"问题隔离,这是旨在复制客户问题、隔离问题区域并为一级支持未解决的问题提供解决"
-"方案的技术支持。"
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"问题解决,这是旨在通过对二级支持已标识的产品缺陷进行解决方案工程计算来解决复"
-"杂问题的技术支持。"
+msgstr "古印度方言"
 
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
-msgstr "古普罗旺斯语(1500 以前)"
-
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "提供"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "波多黎各"
+msgstr "古普罗旺斯语 (1500 以前)"
 
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "普什图语"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "卡塔尔"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
-msgstr "盖丘亚语"
-
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "不支持对此 URL 的查询字符串进行语法分析"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM 失败:"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "罗曼语"
-
-#. language code: raj
-#: zypp/LanguageCode.cc:885
-msgid "Rajasthani"
-msgstr "拉贾斯坦语"
-
-#. language code: rap
-#: zypp/LanguageCode.cc:887
-msgid "Rapanui"
-msgstr "拉帕努伊语"
-
-#. language code: rar
-#: zypp/LanguageCode.cc:889
-msgid "Rarotongan"
-msgstr "拉罗汤加语"
-
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "推荐"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "如果存在认证,则不允许相对路径"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "正在去除储存库“%s”"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "储存库别名不能以点开头。"
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "缺少必需属性“%s”。"
+msgstr "盖丘亚语"
 
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "需要"
+#. language code: raj
+#: zypp/LanguageCode.cc:885
+msgid "Rajasthani"
+msgstr "拉贾斯坦语"
 
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
+#. language code: rap
+#: zypp/LanguageCode.cc:887
+msgid "Rapanui"
+msgstr "拉帕努伊语"
+
+#. language code: rar
+#: zypp/LanguageCode.cc:889
+msgid "Rarotongan"
+msgstr "拉罗汤加语"
 
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
-msgstr "罗曼诸语言(其它)"
-
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "罗马尼亚"
+msgstr "罗曼语 (其它)"
 
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "罗马尼亚语"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "罗语"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "吉普赛语"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "罗马尼亚语"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3535,43 +3638,25 @@ msgstr "隆迪语"
 msgid "Russian"
 msgstr "俄语"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "俄联邦"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "卢旺达"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "圣赫勒拿"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "圣基茨和尼维斯"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "圣卢西亚岛"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "桑达韦语"
 
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "圣马丁岛"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "桑戈语"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "圣皮埃尔和密克隆"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "雅库特语"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "å\9c£æ\96\87森ç\89¹å\92\8cæ ¼æ\9e\97纳ä¸\81æ\96¯"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "å\8d\97ç¾\8eæ´²å\8d°ç¬¬å®\89语 (å\85¶å®\83)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3583,71 +3668,41 @@ msgstr "萨利什诸语言"
 msgid "Samaritan Aramaic"
 msgstr "萨马利亚阿拉米语"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "萨摩斯诸语言(其它)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "萨摩亚群岛"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "萨摩亚语"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "圣马力诺"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "桑达韦语"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "桑戈语"
-
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "梵语"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "萨萨克语"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "桑塔利语"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "圣多美和普林西比"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "撒丁语"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "萨萨克语"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "塞尔维亚语"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "沙特阿拉伯"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "西西里岛语"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "苏格兰语"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "克罗地亚语"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3656,361 +3711,188 @@ msgstr "塞尔库普语"
 #. language code: sem
 #: zypp/LanguageCode.cc:937
 msgid "Semitic (Other)"
-msgstr "闪米特诸语言(其它)"
-
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "塞内加尔"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "塞尔维亚"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "塞尔维亚语"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "塞雷尔语"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "服务别名不能以点开头。"
+msgstr "闪米特语 (其它)"
 
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "服务插件不支持更改属性。"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "古爱尔兰语 (900 以前)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "塞舌尔"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "手语"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "掸语"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "修纳语"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "四川彝语"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "西西里岛语"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
-msgid "Sidamo"
-msgstr "锡达莫语"
-
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "塞拉利昂"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "手语"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "无法校验签名"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "未找到签名文件 %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "签名正确"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "签名正确,但密钥不可信"
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "签名校验失败"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "签名公共密钥不可用"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "西克西卡语"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "信德语"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "新加坡"
+msgid "Sidamo"
+msgstr "锡达莫语"
 
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "僧伽罗语"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "汉藏诸语言(其它)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "苏语诸语言"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "斯考特萨摩斯语"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "阿萨巴斯卡奴隶语"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "汉藏诸语言 (其它)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
 msgid "Slavic (Other)"
-msgstr "æ\96¯æ\8b\89夫诸语è¨\80ï¼\88å\85¶å®\83ï¼\89"
+msgstr "æ\96¯æ\8b\89夫语 (å\85¶å®\83)"
 
 #. language code: slo slk sk
 #: zypp/LanguageCode.cc:955 zypp/LanguageCode.cc:957
 msgid "Slovak"
 msgstr "斯洛伐克语"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "斯洛伐克"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "斯洛文尼亚"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "斯洛文尼亚语"
 
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "南萨摩斯语"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "北萨摩斯语"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "萨米诸语言 (其它)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "鲁乐萨摩斯语"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "伊纳里萨摩斯语"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "萨摩亚语"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "斯考特萨摩斯语"
+
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "修纳语"
+
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "信德语"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "索宁克语"
+
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "粟特语"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "所罗门群岛"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "索马里语"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "索马里"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "桑海语"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "索宁克语"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "索布诸语言"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "很抱歉,但此版本的 libzypp 是在无 HAL 支持的情况下构建的。"
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "南部索托语"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "南非"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "南美洲印第安诸语言(其它)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "南乔治亚岛和南三维治群岛"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "南韩"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "南阿尔泰语"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "南萨摩斯语"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "西班牙"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "西班牙语"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "æ\96¯é\87\8cå\85°å\8d¡"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "æ\92\92ä¸\81语"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "苏丹"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "塞雷尔语"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "建议"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "尼罗-撒哈拉语 (其它)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "斯瓦特语"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "苏库马语"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "苏美尔语"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "巽他语"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "补充"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "苏里南"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "苏苏语"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "斯瓦尔巴岛和扬马延岛"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "苏美尔语"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "斯瓦希里语"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "斯瓦特语"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "斯威士兰"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "瑞典"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "瑞典语"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "瑞士"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "叙利亚共和国"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "古叙利亚语"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "系统异常“%s”(在媒体“%s”上)。"
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"系统管理已由 pid 为 %d 的应用程序 (%s) 锁定。\n"
-"请关闭此应用程序再重试。"
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "塔加路语"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -4019,38 +3901,13 @@ msgstr "塔希提语"
 #. language code: tai
 #: zypp/LanguageCode.cc:1015
 msgid "Tai (Other)"
-msgstr "傣语诸语言(其它)"
-
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "台湾"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "塔吉克语"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "塔吉克斯坦"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "塔马奇克语"
+msgstr "傣语 (其它)"
 
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "泰米尔语"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "坦桑尼亚"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4061,6 +3918,11 @@ msgstr "鞑靼语"
 msgid "Telugu"
 msgstr "泰卢固语"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "滕内语"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4071,37 +3933,25 @@ msgstr "特列纳语"
 msgid "Tetum"
 msgstr "特塔姆语"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "塔吉克语"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "塔加路语"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "泰国语"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "泰国"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "未指定支持级别"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "供应商未提供支持。"
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "此操作正由另外一个程序运行。"
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "此请求会损坏您的系统!"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
-msgstr "西è\97\8f语"
+msgstr "藏语"
 
 #. language code: tig
 #: zypp/LanguageCode.cc:1039
@@ -4113,154 +3963,96 @@ msgstr "提格雷语"
 msgid "Tigrinya"
 msgstr "提格里尼亚语"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "访问“%s”超时。"
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "滕内语"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "蒂夫语"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "克林贡"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "特林吉特语"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "多哥"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "托克皮辛语"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "托克劳语"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "汤加"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "塔马奇克语"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
 msgid "Tonga (Nyasa)"
-msgstr "汤加语(尼亚萨)"
+msgstr "汤加语 (尼亚萨)"
 
 #. language code: ton to
 #: zypp/LanguageCode.cc:1055
 msgid "Tonga (Tonga Islands)"
-msgstr "汤加语(汤加岛)"
-
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "尝试将尚不存在的密钥 %s 导入到密钥环 %s"
+msgstr "汤加语 (汤加岛)"
 
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "特立尼达和多巴哥"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "托克皮辛语"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "钦西安语"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "茨瓦纳语"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "聪加语"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "茨瓦纳语"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "土库曼语"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "奇图姆布卡语"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "突尼斯"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "图皮诸语言"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "土耳其"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "土耳其语"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "土耳其语,古奥斯曼 (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "土库曼语"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "土库曼斯坦"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "特克斯和凯科斯群岛"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "阿尔泰语 (其它)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "图瓦卢语"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "契维语"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "图瓦语"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "契维语"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "乌德穆尔特语"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "乌干达"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4271,11 +4063,6 @@ msgstr "乌加里特语"
 msgid "Uighur"
 msgstr "维吾尔语"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "乌克兰"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4286,561 +4073,819 @@ msgstr "乌克兰语"
 msgid "Umbundu"
 msgstr "翁本杜语"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "无法克隆 URL 对象"
+#. language code: und
+#: zypp/LanguageCode.cc:1091
+msgid "Undetermined"
+msgstr "未确定的语种"
 
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "无法创建 dbus 连接"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "乌尔都语"
 
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "无法初始化 HAL 环境 - hald 未运行?"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "乌兹别克斯坦语"
 
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "无法对 URL 组件进行语法分析"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "瓦伊语"
+
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "文达语"
+
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "越南语"
+
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "沃拉普克语"
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "沃提克语"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "瓦卡希语组"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "瓦拉莫语"
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "瓦赖语"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "瓦肖语"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "威尔士语"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "索布诸语言"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "瓦龙语"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "沃洛夫语"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "卡尔梅克语"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "科萨语"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "瑶语"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "雅浦语"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "依地语"
 
-#. language code: und
-#: zypp/LanguageCode.cc:1091
-msgid "Undetermined"
-msgstr "未确定的语种"
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "约鲁巴语"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "未处理的储存库类型"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "尤皮克诸语言"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "阿拉伯联合酋长国"
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "萨波特克语"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "英国"
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "哲纳加语"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "美国"
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "壮语"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "美国本土外小岛屿"
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "赞德语"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "未知国家或地区:"
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "祖鲁语"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "祖尼语"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "从“%s”读取时发生未知错误"
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "尝试导入尚不存在的密钥 %s 到密钥环 %s"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "未知语言:"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "删除密钥失败。"
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "未知的匹配模式“%s”"
+msgid "Signature file %s not found"
+msgstr "未找到签名文件 %s"
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "未知的匹配模式“%s”(对于模式“%s”)"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr "“%1%”服务未知:正在去除孤立服务储存库“%2%”"
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "无法提供文件 '%s',软件源 '%s' 中找不到该文件"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "支持选项未知。说明不可用"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "软件源中没有 url。"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "未知签名类型"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "服务插件不支持修改属性。"
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "不受支持的 HTTP 身份验证方法“%s”"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr "软件包 %s 似乎在传输时损坏了。您想要重试撷取吗?"
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "签名校验失败"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "“%s”中不受支持的 URI 模式。"
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "未能提供软件包 %s。您想要重试撷取吗?"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "高地索布语"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "应用差异 RPM 检查失败。"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "乌尔都语"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "应用差异 RPM 失败。"
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "URL 模式不允许使用 %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"系统管理被进程编号为 %d 的应用程序 %s 锁定。\n"
+"请关闭此应用程序再试。"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "URL 模式不允许使用主机组件"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s 不属于发行版升级源"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "URL 模式不允许使用口令"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s 架构不对应"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "URL 模式不允许使用端口"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "已安装的 %s 软件包有问题"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "URL 模式不允许使用用户名"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "冲突的请求"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Url 模式不是必需组件"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "一些依赖性问题"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "URL 模式要求有主机组件"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "没有什么能提供所需的 %s"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "URL 模式要求有路径名"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "您启用了全部请求的软件源了吗?"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "乌拉圭"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "软件包 %s 不存在"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "乌兹别克斯坦语"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "不支持的请求"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "乌兹别克斯坦"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s 由系统提供,无法擦除"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "瓦伊语"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s 不可安装"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "没有什么能提供 %s,而它为 %s 所需"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "瓦努阿图"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "无法同时安装 %s 和 %s"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "文达语"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s 与 %s 冲突,后者由 %s 提供"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "委内瑞拉"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s 淘汰了 %s,后者由 %s 提供"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "越南"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "已安装的 %s 淘汰了 %s,后者由 %s 提供"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "越南语"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "可解析项 %s 与自身提供的 %s 冲突"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "美属维尔京群岛"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s 依赖 %s,但无法提供此依赖"
 
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr "请访问 Novell Customer Center 以检查您的注册是否有效且尚未过期。"
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "删除的提供者:"
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "沃拉普克语"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"不可安装的提供者:"
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "沃提克语"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "不可安装的提供者:"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "ç\93¦å\8d¡ä»\80诸语è¨\80"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "移é\99¤é\94\81å®\9a以å\85\81许移é\99¤ %s"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "瓦拉莫语"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "不安装 %s"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "瓦利斯和富图纳"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "保留 %s"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "ç\93¦é¾\99语"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "移é\99¤é\94\81å®\9a以å\85\81许å®\89è£\85 %s"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "瓦赖语"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "此请求将破坏您的系统!"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "瓦肖语"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "忽略损坏系统的警告"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "威尔士语"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "不询问就安装一个提供 %s 的解析项"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "西撒哈拉"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "不询问就删除全部提供 %s 的解析项"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "沃洛夫语"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "不安装最新版本的 %s"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "科萨语"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "保留 %s,即使架构不对应"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "雅库特语"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "尽管架构不对应仍安装 %s"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "瑶语"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "保留已淘汰的 %s"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "雅浦语"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "从排除的软件源安装 %s"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "也门"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "降级 %s 到 %s"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "依地语"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "架构从 %s 变更到 %s"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "约鲁巴语"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"安装 %s (包括厂商变更)\n"
+"  %s --> %s"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "å°¤ç\9a®å\85\8b诸语è¨\80"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "å°\86 %s ç\94¨ %s å\8f\96代"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "赞比亚"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "卸载 %s"
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "赞德语"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "通过忽略一些依赖关系来破坏 %s "
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "萨波特克语"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "通常忽略一些依赖关系"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "哲纳加语"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "缺失所需属性 '%s' 。"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "Zhuang 语"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "需要 '%s' 或 '%s' 属性中的一项或两项。"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "津巴å¸\83é\9f¦"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "æ\97 æ³\95æ\89\93å¼\80é\94\81å®\9aæ\96\87件ï¼\9a%s"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "祖鲁语"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "此动作正在由另一个程序运行着。"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "祖尼语"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "历史:"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "Applydeltarpm 检查已失败。"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "未知匹配模式 '%s'"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "Applydeltarpm 已失败。"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "未知匹配模式 '%s' 于软件集 '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/base/StrMatcher.cc:157
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "体系结构从 %s 更改为 %s"
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "无效的正则表达式 '%s':regcomp 返回 %d"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "通过忽略 %s 的某些从属项来断开它"
+msgid "Invalid regular expression '%s'"
+msgstr "无效的正则表达式 '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "请先安装 'lsof' 软件包。"
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "无法安装 %s 和 %s"
+msgid "Authentication required for '%s'"
+msgstr "'%s' 需要认证"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "冲突的请求"
+#: zypp/media/MediaException.cc:31
+#, c-format, boost-format
+msgid "Failed to mount %s on %s"
+msgstr "未能把 %s 挂载到 %s"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:41
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "å·²å\88\9b建å¤\87份 %s"
+msgid "Failed to unmount %s"
+msgstr "å\8d¸è½½ %s å¤±è´¥"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "取消安装 %s"
+msgid "Bad file name: %s"
+msgstr "文件名错误:%s"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "删除的提供程序:"
+#: zypp/media/MediaException.cc:53
+#, c-format, boost-format
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "当试图执行动作 '%s' 时,介质没有打开。"
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/media/MediaException.cc:60
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "不请求删除所有提供 %s 的解析项"
+msgid "File '%s' not found on medium '%s'"
+msgstr "文件 '%s' 未在介质 '%s' 上找到。"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "不请求安装一个提供 %s 的解析项"
+msgid "Cannot write file '%s'."
+msgstr "无法写入文件 '%s'。"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "介质未挂载"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "介质挂载点错误"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "ä¸\8då®\89è£\85 %s"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "ä¸\8bè½½(curl) '%s' æ\97¶å\88\9då§\8bå\8c\96失败"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "不安装最新版本的 %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "系统例外 '%s'  于介质 '%s' 上。"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "将 %s 降级为 %s"
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "路径 '%s',于介质 '%s' 上,并不是一个文件。"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "通常忽略一些依赖性"
+#: zypp/media/MediaException.cc:106
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "路径 '%s',于介质 '%s' 上,并不是一个文件夹。"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "忽略系统受损警告"
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "异常的 URI"
 
-#: zypp/solver/detail/SATResolver.cc:1334
-#, c-format, boost-format
-msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
-msgstr ""
-"安装 %s(包括供应商更改)\n"
-"  %s  -->  %s"
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "URI 中主机名为空"
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "尽管存在低等体系结构仍安装 %s"
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "URI 中文件系统为空"
 
-#: zypp/solver/detail/SATResolver.cc:1298
-#, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "从排除的储存库安装 %s"
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "URI 中目标为空"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:140
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "安装 %s 后导致 %s(由 %s 提供)过时"
+msgid "Unsupported URI scheme in '%s'."
+msgstr "不支持 '%s' 中的 URI 方案。"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "无效"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "介质不支持此操作"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "保留 %s"
+msgid ""
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
+msgstr ""
+"下载 (curl) '%s' 出错:\n"
+"错误代码:%s\n"
+"错误消息:%s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "尽管存在低等体系结构仍保留 %s"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "为 '%s' 设置下载 (curl) 选项时出错:"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "ä¿\9dç\95\99å·²åº\9få¼\83ç\9a\84 %s"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "ä»\8bè´¨æ\9d¥æº\90 '%s' ä¸\8då\8c\85å\90«æ\9c\9fæ\9c\9bç\9a\84ä»\8bè´¨"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new:无法创建 libhal 环境"
+#: zypp/media/MediaException.cc:175
+#, c-format, boost-format
+msgid "Medium '%s' is in use by another instance"
+msgstr "介质 '%s' 正被另一台计算机使用着"
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection:无法设置 dbus 连接"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "无法弹出任何介质"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "æ\9cªè\83½æ\8f\90ä¾\9b %sï¼\8cç\94± %s æ\89\80é\9c\80"
+msgid "Cannot eject media '%s'"
+msgstr "æ\97 æ³\95å¼¹å\87ºä»\8bè´¨ '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "未能提供请求的 %s"
+msgid "Permission to access '%s' denied."
+msgstr "访问 '%s' 的准入请求被拒绝。"
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "包 %s 不存在"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "访问 '%s' 时超时。"
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "已安装包 %s 有问题"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "位置 '%s' 暂时无法访问。"
 
-#: zypp/solver/detail/SATResolver.cc:1166
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "去除锁定以允许安装 %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr " SSL 证书问题,请校验 '%s' 的 CA 证书。"
 
-#: zypp/solver/detail/SATResolver.cc:1141
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "去除锁定以允许去除 %s"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr "找不到可用 loop 设备以挂载来自 '%s' 的映像文件"
 
-#: zypp/solver/detail/SATResolver.cc:1343
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "将 %s 替换为 %s"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "不支持 HTTP 认证方法 '%s'"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm å·²å°\86 %s å\88\9b建为 %sï¼\8cä½\86æ\98¯æ\97 æ³\95ç¡®å®\9aå·®å¼\82"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr "é\80 è®¿ Novell å®¢æ\88·ä¸­å¿\83æ£\80æ\9f¥æ\82¨ç\9a\84注å\86\8cæ\98¯å\90¦æ\9c\89æ\95\88并å°\9aæ\9cªè¿\87æ\9c\9fã\80\82"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "无法创建 sat-pool。"
+
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm 已将 %s 创建为 %s。\n"
-"以下是前 25 行差异:\n"
-
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm 已将 %s 另存为 %s,但是无法确定差异"
+"文件 %1%\n"
+" 来自软件包\n"
+" %2%\n"
+" 与来自软件包\n"
+" %3%\n"
+" 的文件冲突"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"rpm 已将 %s 另存为 %s。\n"
-"以下是前 25 行差异:\n"
+"文件 %1%\n"
+" 来自软件包\n"
+" %2%\n"
+" 与安装自\n"
+" %3%\n"
+" 的文件冲突"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "可解析项 %s 与自身提供的 %s 冲突"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"文件 %1%\n"
+" 安装自\n"
+" %2%\n"
+" 与安装自软件包\n"
+" %3%\n"
+" 的文件冲突"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "一些依赖性问题"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"文件 %1%\n"
+" 安装自\n"
+" %2%\n"
+" 与安装自\n"
+" %3%\n"
+" 的文件冲突"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "不可安装的提供程序:"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"文件 %1%\n"
+" 来自软件包\n"
+" %2%\n"
+" 与文件\n"
+" %3%\n"
+" 来自软件包\n"
+" %4%\n"
+" 冲突"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "未知"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"文件 %1%\n"
+" 来自软件包\n"
+" %2%\n"
+" 与文件\n"
+" %3%\n"
+" 安装自\n"
+" %4%\n"
+" 冲突"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "不受支持"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"文件 %1%\n"
+" 安装自\n"
+" %2%\n"
+" 与文件\n"
+" %3%\n"
+" 来自软件包\n"
+" %4%\n"
+" 冲突"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "不支持的请求"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"文件 %1%\n"
+" 安装自\n"
+" %2%\n"
+" 与文件\n"
+" %3%\n"
+" 安装自\n"
+" %4%\n"
+" 冲突"
+
+#~ msgid "do not keep %s installed"
+#~ msgstr "不保留 %s"
+
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr "无法创建公共密钥 %s, 该密钥来自 %s 钥匙环,准备创建到 %s 文件"
+
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "下载 (Metalink curl) '%s' 时初始化失败"
+
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "下载 (metalink curl) '%s' 出错:\n"
+#~ "错误代码:%s\n"
+#~ "错误消息:%s\n"
+
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "下载在 %d%% 中断"
+
+#~ msgid "Download interrupted by user"
+#~ msgstr "下载被用户中断"
+
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr "为 '%s' 设置下载 (metalink curl) 选项时出错:"
+
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "下载 %s 从 %s 时失败"
index 3426c41..bfbf16a 100644 (file)
-# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
-# This file is distributed under the same license as the package.
+# translation of zypp.po to Chinese Traditional
+# Chinese message file for YaST2 (@memory@). -*- coding: utf-8 -*-
+# Copyright (C) 2005 SUSE Linux Products GmbH.
+# Copyright (C) 2002 SuSE Linux AG.
+# Copyright (C) 2001 SuSE GmbH.
 #
+# swyear <swyear@gmail.com>, 2008, 2009, 2011.
+# Ray Chen <swyear@opensuse.org>, 2012.
+# Ramax Lo <ramaxlo@gmail.com>, 2014.
 msgid ""
 msgstr ""
 "Project-Id-Version: zypp\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-03 15:55+0200\n"
-"PO-Revision-Date: 2015-11-05 16:59\n"
-"Last-Translator: Novell language <language@novell.com>\n"
-"Language-Team: Novell language <language@novell.com>\n"
-"Language: \n"
+"PO-Revision-Date: 2015-12-02 01:24+0800\n"
+"Last-Translator: Ramax Lo <ramaxlo@gmail.com>\n"
+"Language-Team: Chinese Traditional <kde-i18n-doc@kde.org>\n"
+"Language: zh_TW\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Lokalize 1.4\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr ""
-"\n"
-"無法安裝的提供者: "
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "Hal 例外"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "無效的 LDAP URL 查詢字串"
+
+#: zypp/Url.cc:153
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
-msgstr " SSL 證書問題,驗證 %s 的 CA 證書是否正確。"
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "無效的 LDAP URL 查詢參數「%s」"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "無法複製 Url 物件"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "無效的空白 Url 物件參照"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "無法分析 Url 元件"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "無法啟始化 mutex 屬性"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "無法設定遞迴 mutex 屬性"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "無法啟始化遞迴 mutex"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "無法取得 mutex 鎖定"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "無法釋放 mutex 鎖定"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr "提供"
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr "預先需要"
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr "需要"
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr "衝突"
+
+#: zypp/Dep.cc:100
+msgid "Obsoletes"
+msgstr "汰換"
+
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr "建議"
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr "推薦"
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr "增強"
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr "補充"
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
+#, c-format, boost-format
+msgid "Dubious type '%s' for %u byte checksum '%s'"
+msgstr "可疑的類型 '%s':%u 位元 checksum '%s'"
 
 #: zypp/target/TargetImpl.cc:310
 msgid " executed"
-msgstr " 已執行"
+msgstr "執行"
 
 #: zypp/target/TargetImpl.cc:332
 msgid " execution failed"
-msgstr " 執行失敗"
-
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr " 中止時跳過執行"
+msgstr "執行失敗"
 
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
@@ -46,70 +124,1759 @@ msgstr " 中止時跳過執行"
 #: zypp/target/TargetImpl.cc:449
 #, c-format, boost-format
 msgid "%s already executed as %s)"
-msgstr "%s 已執行為 %s)"
+msgstr "%s 已被作為 %s 執行)"
 
-#: zypp/solver/detail/SATResolver.cc:1022
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr "當跳出時跳過執行"
+
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+msgid "Error sending update message notification."
+msgstr "發送更新訊息提醒失敗。"
+
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
+msgstr "新的更新提醒"
+
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "安裝已如指示中止。"
+
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr "抱歉,此版本的 libzypp 沒有支援 HAL。"
+
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "HalContext 未連接"
+
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "HalDrive 未啟始化"
+
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "HalVolume 未啟始化"
+
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "無法建立 dbus 連接"
+
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "libhal_ctx_new: 無法建立 libhal context"
+
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "libhal_set_dbus_connection: 無法設定 dbus 連接"
+
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "無法啟始化 HAL context -- hald 尚未執行嗎?"
+
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "不是光碟機"
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
+msgid "RPM failed: "
+msgstr "RPM 失敗: "
+
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s 與 %s 衝突 (由 %s 提供)"
+msgid "Failed to import public key from file %s: %s"
+msgstr "從檔案 %s 匯入公開金鑰失敗: %s"
 
-#: zypp/solver/detail/SATResolver.cc:975
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
 #, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
-msgstr "%s 不屬於版本升級儲存庫"
+msgid "Failed to remove public key %s: %s"
+msgstr "移除公開金鑰 %s 失敗: %s"
 
-#: zypp/solver/detail/SATResolver.cc:979
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
 #, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s 有次要架構"
+msgid "Changed configuration files for %s:"
+msgstr "%s 的已變更組態檔:"
 
-#: zypp/solver/detail/SATResolver.cc:1007
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
 #, c-format, boost-format
-msgid "%s is not installable"
-msgstr "%s 無法安裝"
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "rpm 已將 %s 儲存為 %s,但看不出差異"
 
-#: zypp/solver/detail/SATResolver.cc:1003
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
 #, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s 由系統提供,無法清除"
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm 已將 %s 儲存為 %s。\n"
+"這是前 25 行差異:\n"
 
-#: zypp/solver/detail/SATResolver.cc:1027
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
 #, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s 汰換 %s (由 %s 提供)"
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "rpm 已將 %s 建立為 %s,但看不出差異"
 
-#: zypp/solver/detail/SATResolver.cc:1068
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
 #, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr "%s 需要 %s,但無法提供此需求"
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
+msgstr ""
+"rpm 已將 %s 建立為 %s。\n"
+"這是前 25 行差異:\n"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr "(已過期)"
+#. report additional rpm output in finish
+#. TranslatorExplanation Text is followed by a ':'  and the actual output.
+#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
+msgid "Additional rpm output"
+msgstr "其他 rpm 輸出"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
-msgid "(does not expire)"
-msgstr "(未過期)"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "已建立備份 %s"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
-#, fuzzy, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] "(24 小時內過期)"
-msgstr[1] "(24 小時內過期)"
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+msgid "Signature is OK"
+msgstr "簽章驗證正確"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr "未知的簽章類型"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+msgid "Signature does not verify"
+msgstr "簽章無法驗證"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+msgid "Signature is OK, but key is not trusted"
+msgstr "簽章驗證正確,然而金鑰是不被信任的"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr "簽章用的公開金鑰不存在"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr "檔案不存在或是簽章無法驗證"
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr "下列行動將被執行:"
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr "無法讀取套件庫目錄 '%1%': 沒有權限"
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "無法讀取目錄 '%s'"
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr "無法讀取套件庫檔案 '%1%': 沒有權限"
+
+#: zypp/RepoManager.cc:338
+msgid "Repository alias cannot start with dot."
+msgstr "套件庫別名不能以 點 開始。"
+
+#: zypp/RepoManager.cc:349
+msgid "Service alias cannot start with dot."
+msgstr "服務的別名不能以 點 開始。"
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "無法開啟檔案 '%s' 來寫入。"
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr "未知的服務 '%1%':正在移除落單的服務儲存庫 '%2%'"
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] "在指定的 URL 中找不到有效的中繼資訊"
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, c-format, boost-format
+msgid "Can't create %s"
+msgstr "無法建立 %s"
+
+#: zypp/RepoManager.cc:1140
+msgid "Can't create metadata cache directory."
+msgstr "無法建立中繼資料快取目錄。"
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr "正在建立套件庫 '%s' 的快取"
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr "無法在 %s 建立快取 - 無寫入權限。"
+
+#: zypp/RepoManager.cc:1366
+#, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "快取套件庫失敗 (%d)."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr "無法處理的套件庫類型"
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr "嘗試自 '%s' 讀取時發生錯誤"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "由 '%s' 讀取時發生未知錯誤"
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr "正在新增套件庫 '%s'"
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "不適用的套件庫檔案名稱在 '%s'"
+
+#: zypp/RepoManager.cc:1740
+#, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "正在移除套件庫 '%s'"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr "無法找到套件庫儲存的位置。"
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "無法刪除 '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr "無法找到服務儲存的位置。"
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Url 規劃不允許 %s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "無效的 %s 元件「%s」"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "無效的 %s 元件"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "此 URL 不支援查詢字串分析"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Url 規劃為必要元件"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "無效的 Url 規劃「%s」"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Url 規劃不允許使用者名稱"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Url 規劃不允許密碼"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Url 規劃中必須要有主機元件"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Url 規劃不允許主機元件"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "無效的主機元件「%s」"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Url 規劃不允許連接埠"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "無效的連接埠 '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Url 規劃必須要有路徑名稱"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "如果授權存在,則不允許相對路徑"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "編碼字串包含 NUL 位元組"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "無效的參數陣列分割分隔符號字元"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "無效的參數映射分割分隔符號字元"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "無效的參數陣列加入分隔符號字元"
+
+#: zypp/ExternalProgram.cc:258
+#, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "無法開啟 pty (%s)。"
+
+#: zypp/ExternalProgram.cc:269
+#, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "無法開啟管線 (%s)。"
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr "無法 chroot 到 '%s' (%s)。"
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr "無法切換目錄到 '%s',當處在 chroot '%s' (%s) 中。"
+
+#: zypp/ExternalProgram.cc:361
+#, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "無法切換目錄到 '%s' (%s)。"
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr "無法執行 '%s' (%s)。"
+
+#: zypp/ExternalProgram.cc:381
+#, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "無法 fork (%s)。"
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr "指令跳出,狀態 %d。"
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr "指令被信號 %d (%s) 中止。"
+
+#: zypp/ExternalProgram.cc:532
+msgid "Command exited with unknown error."
+msgstr "因未知錯誤指令跳出。"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+msgid "(does not expire)"
+msgstr "(未過期)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr "(過期)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr "(在 24 小時內過期)"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] "(在 %d 天內過期)"
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "不明的"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr "不支援"
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr "層級 1"
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr "層級 2"
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr "層級 3"
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr "需要額外的使用者授權"
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr "不適用"
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr "支援的等級未指定"
+
+#: zypp/VendorSupportOptions.cc:42
+msgid "The vendor does not provide support."
+msgstr "此廠商不提供支援。"
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+"問題判斷,意指提供相依性資訊,安裝協助,用法支援,持續維護及基本錯誤排除的技"
+"術支援。層級 1 支援並不提供產品缺失錯誤的更正。"
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+"問題隔離,意指複製客戶問題,隔離問題區域並提供層級 1 支援無法解決的方案的技術"
+"支援。"
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+"問題解決,意指藉由進行工程解決由層級 2 支援所確認的產品缺失的複雜問題技術支"
+"援。"
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr "要取得支援需要額外的使用者授權"
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr "未知的支援選項。 描述不適用"
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "未知國家:"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "沒有程式碼"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "安道爾共和國"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "阿拉伯聯合大公國"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "阿富汗"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "安地卡及巴布達"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "安圭拉島"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "阿爾巴尼亞"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "亞美尼亞"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "荷蘭大小安第列斯群島"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "安哥拉"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "南極洲"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "阿根廷"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "美屬薩摩亞"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "奧地利"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "澳大利亞"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "阿魯巴"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "愛蘭群島"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "亞塞拜然"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "波士尼亞及亞塞哥維那"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "巴貝多"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "孟加拉共和國"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "比利時"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "布基那法索國"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "保加利亞"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "巴林"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "蒲隆地"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "貝南"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "百慕達"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "汶萊"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "玻利維亞"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "巴西"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "巴哈馬"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "不丹"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "布維特島"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "波紮那"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "白俄羅斯"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "貝里斯"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "加拿大"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "科科斯群島"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "剛果"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "中非共和國"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "瑞士"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "象牙海岸"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "庫克群島"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "智利"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "喀麥隆"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "中國"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "哥倫比亞"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "哥斯大黎加"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "古巴"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "維德角"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "聖誕島"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "塞普勒斯"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "捷克共和國"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "德國"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "吉布地"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "丹麥"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "多米尼克"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "多明尼加共和國"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "阿爾及利亞"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "厄瓜多爾"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "愛沙尼亞"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "埃及"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "西撒哈拉"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "厄立特里亞"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "西班牙"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "衣索比亞"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "芬蘭"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "斐濟"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "英屬福克蘭群島 (馬爾維納斯群島)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "密克羅尼西亞聯邦"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "法羅群島"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "法國"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "法屬美特羅波利坦"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "加彭"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "英國"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "格瑞納達"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "喬治亞"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "法屬圭亞納"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+msgid "Guernsey"
+msgstr "格恩西"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "迦納"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "直布羅陀"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "格林蘭島"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "甘比亞"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "幾內亞"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "哥德洛普島 (法屬)"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "赤道幾內亞"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "希臘"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "南喬治亞語南三明治群島"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "瓜地馬拉"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "關島"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "幾內亞比紹"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "蓋亞那"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "香港"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "赫德及麥當勞群島"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "宏都拉斯"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "克羅埃西亞共和國"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "海地"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "匈牙利"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "印尼"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "愛爾蘭"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "以色列"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr "馬恩島"
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "印度"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "英屬印度洋領土"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "伊拉客"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "伊朗"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "冰島"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "義大利"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr "澤西"
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "牙買加"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "約旦"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "日本"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "肯亞"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "吉爾吉斯"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "柬埔寨"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "吉里巴斯共和國"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "葛摩"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "聖克里斯多福及尼維斯"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "北韓"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "南韓"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "科威特"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "開曼群島"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "哈薩克"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "寮人民民主共和國"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "黎巴嫩"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "聖露西亞"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "列支敦斯登"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "斯里蘭卡"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "賴比瑞亞"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "賴索托"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "立陶宛"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "盧森堡"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "拉脫維亞"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "利比亞"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "摩洛哥"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "摩納哥"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "摩爾多瓦"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+msgid "Montenegro"
+msgstr "芒特尼格羅共和國"
+
+#: zypp/CountryCode.cc:297
+msgid "Saint Martin"
+msgstr "聖馬丁"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "馬達加斯加"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "馬紹爾群島"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "馬其頓"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "馬利"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "緬甸文"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "蒙古"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "澳門"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "北馬里安納群島"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "馬丁尼克"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "茅利塔尼亞"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "蒙特色拉特島"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "馬爾他"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "模里西斯"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "馬爾地夫"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "馬拉威"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "墨西哥"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "馬來西亞"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "莫三比克"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "那米比亞"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "新喀里多尼亞群島"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "尼日"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "諾福克島"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "奈及利亞"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "尼加拉瓜"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "荷蘭"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "挪威"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "尼泊爾"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "諾魯語"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "紐威島"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "紐西蘭"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "阿曼"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "巴拿馬"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "祕魯"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "法屬波里尼西亞"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "巴布亞新幾內亞"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "菲律賓"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "巴基斯坦"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "波蘭"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "聖匹島"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "皮特康"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "波多黎各"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "巴勒斯坦領土"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "葡萄牙"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "帛琉"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "巴拉圭"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "卡達"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "留尼旺島"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "羅馬尼亞"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+msgid "Serbia"
+msgstr "塞爾維亞"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "俄羅斯聯邦"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "盧安達"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "阿烏地阿拉伯"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "所羅門群島"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "塞席爾群島"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "蘇丹"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "瑞典"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "新加坡"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "聖赫勒拿島"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "斯洛維尼亞共和國"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "冷岸及央棉群島"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "斯洛伐克"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "獅子山"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "聖馬力諾"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "塞內加爾"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "索馬利亞"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "蘇利南"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "聖多美普林西比"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "薩爾瓦多"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "敘利亞"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "史瓦濟蘭"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "土克斯及開科斯群島"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "查德"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "法國南方領土"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "多哥"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "泰國"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "塔吉克"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "托克勞語"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "土庫曼"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "突尼西亞"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "東加"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "東帝汶"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "土耳其"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "千里達托貝哥"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "吐瓦魯語"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "台灣"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "坦尚尼亞"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "烏克蘭"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "烏干達"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "美國外島"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "美國"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "烏拉圭"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "烏茲別克"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "羅馬教庭 (梵蒂岡)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "聖文森及格瑞那丁"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "委內瑞拉"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "英屬維爾京群島"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "美屬維爾京群島"
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "越南"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "萬那杜"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "瓦利斯及福杜納群島"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "薩摩亞"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "葉門"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "馬約特島"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "南非"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "尚比亞"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "辛巴威"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "未知的語言:"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
-msgstr "(24 小時內過期)"
+#. language code: aar aa
+#: zypp/LanguageCode.cc:161
+msgid "Afar"
+msgstr "阿法爾語"
 
 #. language code: abk ab
 #: zypp/LanguageCode.cc:163
 msgid "Abkhazian"
-msgstr "亞布卡薩語"
+msgstr "阿布哈西亞語"
 
 #. language code: ace
 #: zypp/LanguageCode.cc:165
@@ -126,35 +1893,15 @@ msgstr "阿科利語"
 msgid "Adangme"
 msgstr "阿當梅語"
 
-#: zypp/RepoManager.cc:1611
-#, c-format, boost-format
-msgid "Adding repository '%s'"
-msgstr "正在新增儲存庫 %s"
-
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
-msgstr "需要其他客戶合約"
-
-#. report additional rpm output in finish
-#. TranslatorExplanation Text is followed by a ':'  and the actual output.
-#: zypp/target/rpm/RpmDb.cc:2056 zypp/target/rpm/RpmDb.cc:2202
-msgid "Additional rpm output"
-msgstr "其他 rpm 輸出"
-
 #. language code: ady
 #: zypp/LanguageCode.cc:171
 msgid "Adyghe"
 msgstr "阿迪格語"
 
-#. language code: aar aa
-#: zypp/LanguageCode.cc:161
-msgid "Afar"
-msgstr "阿法語"
-
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "阿富汗"
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "非洲-亞洲 (其他)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -166,11 +1913,6 @@ msgstr "阿弗裡希利語"
 msgid "Afrikaans"
 msgstr "南非荷蘭語"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "非洲-亞洲 (其他)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -186,16 +1928,6 @@ msgstr "阿坎語"
 msgid "Akkadian"
 msgstr "阿卡德語"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "愛蘭群島"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "阿爾巴尼亞"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -206,118 +1938,70 @@ msgstr "阿爾巴尼亞語"
 msgid "Aleut"
 msgstr "阿留申語"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "阿爾及利亞"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "亞爾岡京語言"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "阿爾泰語 (其他)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "美屬薩摩亞"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "南方阿爾泰語"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
-msgstr "阿姆哈拉語"
-
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr "需要其他客戶合約才能獲得支援。"
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "安道爾"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "安哥拉"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "安圭拉"
+msgstr "衣索比亞官方語言"
 
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "南極洲"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "安地卡及巴布達"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "英語,舊 (大約450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
 msgid "Apache Languages"
-msgstr "Apache 語言"
+msgstr "阿帕契語"
 
 #. language code: ara ar
 #: zypp/LanguageCode.cc:201
 msgid "Arabic"
 msgstr "阿拉伯語"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "阿拉貢語"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "阿拉姆語"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "阿拉帕霍語"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "阿拉貢語"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "亞美尼亞語"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "阿勞坎語"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "阿拉瓦克語"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "阿根廷"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "亞美尼亞"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "亞美尼亞語"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "阿拉帕霍語"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "人為的 (其他)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "阿路巴"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "阿拉瓦克語"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -334,32 +2018,11 @@ msgstr "阿斯圖里亞語"
 msgid "Athapascan Languages"
 msgstr "阿薩巴斯卡語"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "澳大利亞"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "澳大利亞語"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "奧地利"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "南島語系 (其他)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr "%s 需要驗證"
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -378,46 +2041,27 @@ msgstr "阿沃提語"
 #. language code: aym ay
 #: zypp/LanguageCode.cc:233
 msgid "Aymara"
-msgstr "亞摩拉語"
-
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "亞塞拜然"
+msgstr "艾馬拉語"
 
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "亞塞拜然語"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr "無效的檔案名稱︰%s"
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr "無效的媒體附加點"
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "巴哈馬"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "巴林"
+#. language code: bad
+#: zypp/LanguageCode.cc:237
+msgid "Banda"
+msgstr "班達語"
 
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "巴語"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "巴米累克語"
 
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "波羅的語 (其他)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "巴什克爾語"
 
 #. language code: bal
 #: zypp/LanguageCode.cc:243
@@ -429,76 +2073,36 @@ msgstr "巴路奇語"
 msgid "Bambara"
 msgstr "班巴拉語"
 
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "巴米累克語"
-
-#. language code: bad
-#: zypp/LanguageCode.cc:237
-msgid "Banda"
-msgstr "班達語"
-
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "孟加拉"
-
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "班圖語 (其他)"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "巴里語"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "巴貝多"
+#. language code: baq eus eu
+#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
+msgid "Basque"
+msgstr "巴斯克語"
 
 #. language code: bas
 #: zypp/LanguageCode.cc:253
 msgid "Basa"
 msgstr "巴沙語"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "巴什喀爾語"
-
-#. language code: baq eus eu
-#: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
-msgid "Basque"
-msgstr "巴斯克語"
-
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "巴塔克語 (印尼)"
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "波羅的語 (其他)"
 
 #. language code: bej
-#: zypp/LanguageCode.cc:257
-msgid "Beja"
-msgstr "白廈語"
-
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "白俄羅斯"
+#: zypp/LanguageCode.cc:257
+msgid "Beja"
+msgstr "白廈語"
 
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "白俄羅斯語"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "比利時"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "貝里斯"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -509,35 +2113,20 @@ msgstr "曼巴語"
 msgid "Bengali"
 msgstr "孟加拉語"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "貝南"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "柏柏爾語 (其他)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "百慕達"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "波布里語"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "不丹"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
-msgstr "比哈語"
+msgstr "比哈語"
 
 #. language code: bik
 #: zypp/LanguageCode.cc:271
@@ -554,264 +2143,70 @@ msgstr "比尼語"
 msgid "Bislama"
 msgstr "比斯拉馬語"
 
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "伯林語"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "玻利維亞"
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "西克西卡"
 
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "波士尼亞赫塞哥維納"
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "班圖語 (其他)"
 
 #. language code: bos bs
 #: zypp/LanguageCode.cc:281
 msgid "Bosnian"
 msgstr "波士尼亞語"
 
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "波紮那"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "布威島"
-
 #. language code: bra
 #: zypp/LanguageCode.cc:283
 msgid "Braj"
 msgstr "布拉吉語"
 
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "巴西"
-
 #. language code: bre br
 #: zypp/LanguageCode.cc:285
 msgid "Breton"
-msgstr "布里敦語"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "英屬印度洋領土"
+msgstr "不列塔尼語"
 
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "英屬維爾京群島"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "巴塔克語 (印尼)"
 
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "汶萊"
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "白雅特語"
 
 #. language code: bug
 #: zypp/LanguageCode.cc:291
 msgid "Buginese"
 msgstr "布吉斯語"
 
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr "正在建立儲存庫 %s 快取"
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "保加利亞"
-
 #. language code: bul bg
 #: zypp/LanguageCode.cc:293
 msgid "Bulgarian"
 msgstr "保加利亞語"
 
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "白雅特語"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "布吉納法索"
-
 #. language code: bur mya my
 #: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
 msgid "Burmese"
 msgstr "緬甸語"
 
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "蒲隆地"
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "伯林語"
 
 #. language code: cad
 #: zypp/LanguageCode.cc:301
 msgid "Caddo"
 msgstr "凱多語"
 
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "柬埔寨"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "喀麥隆"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-msgid "Can not create sat-pool."
-msgstr "無法建立 sat-pool。"
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "無法取得 mutex 鎖定"
-
-#: zypp/ExternalProgram.cc:361
-#, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "無法 chdir 到「%s」(%s)。"
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr "無法 chdir 到「%s」(在 chroot「%s」中) (%s)。"
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr "無法 chroot 到 %s (%s)。"
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, c-format, boost-format
-msgid "Can't create %s"
-msgstr "無法建立 %s"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr "無法於 %s 建立快取,沒有寫入權限。"
-
-#: zypp/RepoManager.cc:1140
-msgid "Can't create metadata cache directory."
-msgstr "無法建立中繼資料快取目錄。"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "無法刪除「%s」"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr "無法 exec %s (%s)。"
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr "無法確定儲存庫的儲存位置。"
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr "無法確定該服務的儲存位置。"
-
-#: zypp/ExternalProgram.cc:381
-#, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "無法 fork (%s)。"
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "無法啟始化 mutex 屬性"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "無法啟始化遞迴 mutex"
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "無法開啟檔案 %s 以寫入資料。"
-
-#: zypp/base/InterProcessMutex.cc:83
-#, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "無法開啟鎖定檔案:%s"
-
-#: zypp/ExternalProgram.cc:269
-#, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "無法開啟管線 (%s)。"
-
-#: zypp/ExternalProgram.cc:258
-#, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "無法開啟 pty (%s)。"
-
-#: zypp/repo/RepoProvideFile.cc:259
-#, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "檔案 %s 無法從儲存庫 %s 提供"
-
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "無法釋放 mutex 鎖定"
-
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "無法設定遞迴 mutex 屬性"
-
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "加拿大"
-
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr "無法退出任何媒體"
-
-#: zypp/media/MediaException.cc:184
-#, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "無法退出媒體「%s」"
-
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr "找不到要裝上「%s」中之影像檔的可用迴路裝置"
-
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr "無法讀取儲存庫目錄「%1%」︰許可權遭拒"
-
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr "無法讀取儲存庫檔案「%1%」︰許可權遭拒"
-
-#: zypp/media/MediaException.cc:67
-#, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "無法寫入檔案「%s」。"
-
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "維德角"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "中美洲印地安 (其他)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -821,17 +2216,12 @@ msgstr "加勒比語"
 #. language code: cat ca
 #: zypp/LanguageCode.cc:307
 msgid "Catalan"
-msgstr "å\8d¡é\81\94é\9a\86尼亞語"
+msgstr "å\98\89æ³°ç¾\85尼亞語"
 
 #. language code: cau
 #: zypp/LanguageCode.cc:309
 msgid "Caucasian (Other)"
-msgstr "高加索語 (其他)"
-
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "開曼群島"
+msgstr "高加索語 (其他)"
 
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
@@ -843,166 +2233,80 @@ msgstr "宿霧語"
 msgid "Celtic (Other)"
 msgstr "賽爾特語 (其他)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "中非共和國"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "中美洲印地安 (其他)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "查德"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "察合臺語"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "占米克語"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "查摩洛語"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "%s 的已變更組態檔:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "車臣語"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "卻洛奇語"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "薜安語"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "奇布查語"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "齊切瓦語"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "智利"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "車臣語"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "中國"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "察合臺語"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "中文"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "夏克島語"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "麻里語"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "契奴克語"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "奇帕維安語"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "喬克托語"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "聖誕島"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "奇帕維安語"
+
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "卻洛奇文"
 
 #. language code: chu cu
 #: zypp/LanguageCode.cc:339
 msgid "Church Slavic"
 msgstr "教會斯拉夫語"
 
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "夏克島語"
-
 #. language code: chv cv
 #: zypp/LanguageCode.cc:341
 msgid "Chuvash"
 msgstr "楚瓦士語"
 
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "尼瓦爾語"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "可可斯群島"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "哥倫比亞"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr "指令結束,狀態 %d。"
-
-#: zypp/ExternalProgram.cc:532
-msgid "Command exited with unknown error."
-msgstr "因未知錯誤指令結束。"
-
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr "指令被訊號 %d (%s) 中止。"
-
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "葛摩"
-
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr "衝突"
-
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "剛果"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "薜安語"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "柯克群島"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "占米克語"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1019,31 +2323,6 @@ msgstr "康瓦耳語"
 msgid "Corsican"
 msgstr "科西嘉語"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "哥斯大黎加"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "象牙海岸"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "克里語"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "克里克語"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "克瑞奧里語與皮欽語 (其他)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1059,46 +2338,36 @@ msgstr "克瑞奧里語與皮欽語,法國型 (其他)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "克瑞奧里語與皮欽語,葡萄牙型 (其他)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "克里語"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "克裡米亞韃靼語"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "克羅埃西亞"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "克羅埃西亞語"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "克瑞奧里語與皮欽語 (其他)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "å\8f¤å·´"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "å\8d¡è\88\92å¸\83èª\9e"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "庫希迪克語 (其他)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "塞普勒斯"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "捷克語"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "捷克共和國"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1124,89 +2393,56 @@ msgstr "達雅克語"
 msgid "Delaware"
 msgstr "德拉瓦語"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "丹麥"
-
-#. language code: din
-#: zypp/LanguageCode.cc:387
-msgid "Dinka"
-msgstr "丁卡語"
-
-#. language code: div dv
-#: zypp/LanguageCode.cc:389
-msgid "Divehi"
-msgstr "迪韋西語"
-
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "吉布達"
-
-#. language code: doi
-#: zypp/LanguageCode.cc:391
-msgid "Dogri"
-msgstr "多格里語"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "斯拉夫語 (阿薩巴斯卡)"
 
 #. language code: dgr
 #: zypp/LanguageCode.cc:385
 msgid "Dogrib"
 msgstr "多格里布語"
 
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "多明尼加"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "多明尼加共和國"
+#. language code: din
+#: zypp/LanguageCode.cc:387
+msgid "Dinka"
+msgstr "丁卡語"
 
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-"「%s」下載 (curl) 錯誤︰\n"
-"錯誤碼為︰%s\n"
-"錯誤訊息為︰%s\n"
+#. language code: div dv
+#: zypp/LanguageCode.cc:389
+msgid "Divehi"
+msgstr "迪韋西語"
 
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr "「%s」下載 (Curl) 啟始化失敗"
+#. language code: doi
+#: zypp/LanguageCode.cc:391
+msgid "Dogri"
+msgstr "多格里語"
 
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "達羅毗荼語 (其他)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "下文德語"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "杜阿拉語"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr "可疑的類型 %s (%u 位元組檢查總數 %s)"
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "荷蘭語,中古世紀 (大約1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "荷蘭語"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "荷蘭語,中古世紀 (大約1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1217,26 +2453,11 @@ msgstr "迪尤拉語"
 msgid "Dzongkha"
 msgstr "宗卡語"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "東帝汶"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "厄瓜多爾"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "艾非克語"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "埃及"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1247,32 +2468,11 @@ msgstr "埃及語 (古代)"
 msgid "Ekajuk"
 msgstr "艾卡朱克語"
 
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "薩爾瓦多"
-
 #. language code: elx
 #: zypp/LanguageCode.cc:415
 msgid "Elamite"
 msgstr "艾拉米特語"
 
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr "URI 中的目的地為空"
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr "URI 中的檔案系統為空"
-
-#: zypp/media/MediaException.cc:125
-msgid "Empty host name in URI"
-msgstr "URI 中的主機名稱為空"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "編碼字串包含 NUL 位元組"
-
 #. language code: eng en
 #: zypp/LanguageCode.cc:417
 msgid "English"
@@ -1281,335 +2481,53 @@ msgstr "英語"
 #. language code: enm
 #: zypp/LanguageCode.cc:419
 msgid "English, Middle (1100-1500)"
-msgstr "英語,中古世紀 (1100-1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "英語,舊 (大約450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr "增強"
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "赤道幾內亞"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "厄利垂亞"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr "設定「%s」的下載 (curl) 選項時發生錯誤︰"
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-msgid "Error sending update message notification."
-msgstr "傳送更新訊息通知時出錯。"
-
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr "嘗試讀取「%s」時發生錯誤"
-
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "愛斯亞語"
+msgstr "英文,中古世紀 (1100-1500)"
 
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "世界語"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "愛沙尼亞"
-
-#. language code: est et
-#: zypp/LanguageCode.cc:423
-msgid "Estonian"
-msgstr "愛沙尼亞語"
-
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "衣索比亞"
-
-#. language code: ewe ee
-#: zypp/LanguageCode.cc:425
-msgid "Ewe"
-msgstr "埃維語"
-
-#. language code: ewo
-#: zypp/LanguageCode.cc:427
-msgid "Ewondo"
-msgstr "埃翁多語"
-
-#: zypp/RepoManager.cc:1366
-#, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "快取儲存庫 (%d) 失敗。"
-
-#: zypp/KeyRing.cc:566
-msgid "Failed to delete key."
-msgstr "刪除金鑰失敗。"
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr "從檔案 %s 輸入公用金鑰失敗:%s"
-
-#: zypp/media/MediaException.cc:31
-#, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "無法掛接 %s (在 %s 上)"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr "無法提供套件 %s。是否要重試取回操作?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "讀取目錄「%s」失敗"
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "移除公用金鑰 %s 失敗:%s"
-
-#: zypp/media/MediaException.cc:41
-#, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "無法卸載 %s"
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "英屬福克蘭群島 (馬爾維納斯群島)"
-
-#. language code: fan
-#: zypp/LanguageCode.cc:429
-msgid "Fang"
-msgstr "芳族語"
-
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "芳蒂語"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "法羅群島"
-
-#. language code: fao fo
-#: zypp/LanguageCode.cc:431
-msgid "Faroese"
-msgstr "法羅語"
-
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "密克羅尼西亞聯邦"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "斐濟"
-
-#. language code: fij fj
-#: zypp/LanguageCode.cc:435
-msgid "Fijian"
-msgstr "斐濟語"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"%2%\n"
-"安裝中的\n"
-"檔案 %1%\n"
-"與 %4%\n"
-"安裝中的\n"
-"檔案 %3%\n"
-"衝突"
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"%2%\n"
-"安裝中的\n"
-"檔案 %1%\n"
-"與 %4%\n"
-"套件中的\n"
-"檔案 %3%\n"
-"衝突"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"%2%\n"
-"安裝中的檔案 %1%\n"
-"與 %3%\n"
-"安裝中的檔案\n"
-"衝突"
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"%2%\n"
-"安裝中的檔案 %1%\n"
-"與 %3%\n"
-"套件中的檔案\n"
-"衝突"
+#. language code: est et
+#: zypp/LanguageCode.cc:423
+msgid "Estonian"
+msgstr "愛沙尼亞語"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-"%2%\n"
-"套件中的\n"
-"檔案 %1%\n"
-"與 %4%\n"
-"安裝中的\n"
-"檔案 %3%\n"
-"衝突"
+#. language code: ewe ee
+#: zypp/LanguageCode.cc:425
+msgid "Ewe"
+msgstr "埃維語"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-"%2%\n"
-"套件中的\n"
-"文件 %1%\n"
-"與 %4%\n"
-"套件中的\n"
-"檔案 %3%\n"
-"衝突"
+#. language code: ewo
+#: zypp/LanguageCode.cc:427
+msgid "Ewondo"
+msgstr "埃翁多語"
 
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-"%2%\n"
-"套件中的檔案 %1%\n"
-"與 %3%\n"
-"安裝中的檔案\n"
-"衝突"
+#. language code: fan
+#: zypp/LanguageCode.cc:429
+msgid "Fang"
+msgstr "芳族語"
 
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-"%2%\n"
-"套件中的文件 %1%\n"
-"與 %3%\n"
-"套件中的檔案\n"
-"衝突"
+#. language code: fao fo
+#: zypp/LanguageCode.cc:431
+msgid "Faroese"
+msgstr "法羅群島語"
 
-#: zypp/media/MediaException.cc:60
-#, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "找不到檔案「%s」(媒體「%s」上)"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "芳蒂語"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr "æª\94æ¡\88ä¸\8då­\98å\9c¨æ\88\96æ\98¯ç°½å\90\8dç\84¡æ³\95é©\97è­\89"
+#. language code: fij fj
+#: zypp/LanguageCode.cc:435
+msgid "Fijian"
+msgstr "æ\96\90æ¿\9fèª\9e"
 
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "菲律賓語"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "芬蘭"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1620,40 +2538,16 @@ msgstr "芬蘭語"
 msgid "Finno-Ugrian (Other)"
 msgstr "芬匈語 (其他)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr "將執行下列動作:"
-
 #. language code: fon
 #: zypp/LanguageCode.cc:443
 msgid "Fon"
 msgstr "豐語"
 
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "法國"
-
 #. language code: fre fra fr
 #: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
 msgid "French"
 msgstr "法語"
 
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "法屬圭亞那"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "法屬波里尼西亞"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "法國南方領土"
-
 #. language code: frm
 #: zypp/LanguageCode.cc:449
 msgid "French, Middle (ca.1400-1600)"
@@ -1667,48 +2561,23 @@ msgstr "法語,舊 (842-大約1400)"
 #. language code: fry fy
 #: zypp/LanguageCode.cc:453
 msgid "Frisian"
-msgstr "夫里斯蘭語"
-
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "弗留利語"
+msgstr "弗列然語"
 
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "富拉語"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "弗留利語"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "咖語"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "加彭"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "蓋爾語"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "加利西亞語"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "甘比亞"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "干達語"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1719,26 +2588,51 @@ msgstr "咖幼語"
 msgid "Gbaya"
 msgstr "格巴亞語"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "吉茲語"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "喬治亞"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "日耳曼語 (其他)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
 msgid "Georgian"
-msgstr "喬治亞"
+msgstr "喬治亞"
 
 #. language code: ger deu de
 #: zypp/LanguageCode.cc:471 zypp/LanguageCode.cc:473
 msgid "German"
 msgstr "德語"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "吉茲語"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "吉伯特語"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "蓋爾語"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "愛爾蘭語"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "加利西亞語"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "曼島語"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1749,30 +2643,6 @@ msgstr "德語,中古世紀 (大約1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "德語,古代 (大約750-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "日耳曼語 (其他)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "德國"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "迦納"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "直布羅陀"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "吉伯特語"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1793,11 +2663,6 @@ msgstr "哥德語"
 msgid "Grebo"
 msgstr "格列博語"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "希臘"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1808,60 +2673,15 @@ msgstr "希臘語,古代 (至 1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "希臘語,現代 (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "格林蘭"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "格瑞那達"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "瓜得魯普島"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "關島"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "瓜拉尼語"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "瓜地馬拉"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-msgid "Guernsey"
-msgstr "根息"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "幾內亞"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "幾內亞比紹"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
-msgid "Gujarati"
-msgstr "古吉拉特語"
-
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "蓋亞那"
+msgid "Gujarati"
+msgstr "古吉拉特文"
 
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
@@ -1873,56 +2693,25 @@ msgstr "哥威迅語"
 msgid "Haida"
 msgstr "海達語"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "海地"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "海提語"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "Hal 例外"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "HalContext 未連接"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "HalDrive 未啟始化"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "HalVolume 未啟始化"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
-msgstr "豪沙語"
-
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr "是否已啟用所有要求的儲存庫?"
+msgstr "豪薩語"
 
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "夏威夷語"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "赫德島及麥當勞群島"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
-msgstr "希伯來"
+msgstr "希伯來"
 
 #. language code: her hz
 #: zypp/LanguageCode.cc:521
@@ -1944,16 +2733,6 @@ msgstr "赫馬查理語"
 msgid "Hindi"
 msgstr "北印度語"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "希裡莫圖語"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-msgid "History:"
-msgstr "歷程記錄:"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1964,31 +2743,21 @@ msgstr "西台語"
 msgid "Hmong"
 msgstr "赫蒙語"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "梵帝崗"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "宏都拉斯"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "希裡莫圖語"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "é¦\99港"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "é«\98å\9c°ç´¢å¸\83èª\9e"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "匈牙利語"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "匈牙利"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1999,10 +2768,10 @@ msgstr "胡帕語"
 msgid "Iban"
 msgstr "伊班語"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "冰島"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "伊博語"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -2014,250 +2783,105 @@ msgstr "冰島語"
 msgid "Ido"
 msgstr "伊多語"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "伊博語"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "西川易語"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "伊喬語"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "伊奴伊特語"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "人工國際語"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "伊洛幹諾語"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "伊納里薩米語"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "印度"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "英特林瓜語 (國際輔助語)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "印度語 (其他)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "印歐語 (其他)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "印尼"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "印尼語"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "印歐語 (其他)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "印古什語"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "安裝已如指示中止。"
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "英特林瓜語 (國際輔助語)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "人工國際語"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "伊奴伊特語"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "因努皮雅克語"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "無效的 %s 元件"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "無效的 %s 元件「%s」"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "無效的 LDAP URL 查詢參數「%s」"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "無效的 LDAP URL 查詢字串"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "無效的 Url 規劃「%s」"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "無效的空白 Url 物件參照"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "無效的主機元件「%s」"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "無效的參數陣列加入分隔符號字元"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "無效的參數陣列分割分隔符號字元"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "無效的參數映射分割分隔符號字元"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "無效的連接埠元件「%s」"
-
-#: zypp/base/StrMatcher.cc:158
-#, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "規則運算式「%s」無效"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr "規則運算式「%s」無效︰regcomp 傳回 %d"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "「%s」處的儲存庫檔案名稱無效"
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "伊朗"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "伊朗語 (其他)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "伊拉克"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "愛爾蘭"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "愛爾蘭語"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "愛爾蘭語,中古世紀 (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "古愛爾蘭語 (至 900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "伊洛古歐安語"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr "曼島"
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "以色列"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "義大利語"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "義大利"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "牙買加"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "爪哇語"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "日本"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "邏輯語"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "日語"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "爪哇語"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr "澤西"
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "約旦"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "猶太-波斯語"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "猶太-阿拉伯語"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "猶太-波斯語"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "卡巴爾達語"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "卡拉卡爾帕克語"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2274,11 +2898,6 @@ msgstr "卡欽語"
 msgid "Kalaallisut"
 msgstr "卡拉利蘇特語"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "卡爾梅克語"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2287,22 +2906,7 @@ msgstr "卡姆帕語"
 #. language code: kan kn
 #: zypp/LanguageCode.cc:599
 msgid "Kannada"
-msgstr "坎那達語"
-
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "卡努里語"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "卡拉卡爾帕克語"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "卡拉契巴卡語"
+msgstr "坎那達文"
 
 #. language code: kar
 #: zypp/LanguageCode.cc:601
@@ -2314,10 +2918,10 @@ msgstr "克倫語"
 msgid "Kashmiri"
 msgstr "喀什米爾語"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "卡舒布語"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "卡努里語"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2329,31 +2933,26 @@ msgstr "卡威語"
 msgid "Kazakh"
 msgstr "哈薩克語"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "哈薩克"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "肯亞"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "卡巴爾達語"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
 msgstr "卡西語"
 
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "高棉語"
-
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "科依桑語 (其他)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "高棉文"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2364,11 +2963,6 @@ msgstr "和闐語"
 msgid "Kikuyu"
 msgstr "吉庫猶語"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "金本杜語"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2379,15 +2973,15 @@ msgstr "金雅爾王達語"
 msgid "Kirghiz"
 msgstr "吉爾吉斯語"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "吉里巴斯"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "金本杜語"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "å\85\8bæ\9e\97è²¢語"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "å\89\9bå\8d¡å°¼語"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2399,11 +2993,6 @@ msgstr "科密語"
 msgid "Kongo"
 msgstr "剛果語"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "剛卡尼語"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2419,11 +3008,21 @@ msgstr "科西嘉語"
 msgid "Kpelle"
 msgstr "克帕勒語"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "卡拉契巴卡語"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "克魯語"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "庫魯科語"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2439,26 +3038,11 @@ msgstr "庫密克語"
 msgid "Kurdish"
 msgstr "庫德語"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "庫魯科語"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "庫特內語"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "科威特"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "吉爾吉斯"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2477,70 +3061,23 @@ msgstr "蘭姆巴語"
 #. language code: lao lo
 #: zypp/LanguageCode.cc:661
 msgid "Lao"
-msgstr "寮語"
-
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "寮人民民主共和國"
+msgstr "寮文"
 
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
-msgstr "拉丁語"
-
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "拉脫維亞"
+msgstr "拉丁文"
 
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "拉脫維亞語"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "黎巴嫩"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "賴索托"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr "層級 1"
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr "層級 2"
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr "層級 3"
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "雷格西安語"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "賴比瑞亞"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "利比亞"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "列支敦斯登"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2551,61 +3088,46 @@ msgstr "林柏格安語"
 msgid "Lingala"
 msgstr "林加拉語"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "立陶宛"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "立陶宛語"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr "位置「%s」暫時無法存取。"
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "邏輯語"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "低地德語"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "下文德語"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "蒙古語"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "羅利語"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "盧巴卡丹咖語"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "盧森堡語"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "盧巴盧路拉語"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "盧巴卡丹咖語"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "干達語"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "盧伊塞諾語"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "魯爾薩米語"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2621,35 +3143,11 @@ msgstr "盧奧語 (肯亞與坦桑尼亞)"
 msgid "Lushai"
 msgstr "盧夏語"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "盧森堡"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "盧森堡語"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "澳門"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "馬其頓"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "馬其頓語"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "馬達加斯加"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2660,6 +3158,11 @@ msgstr "馬都拉語"
 msgid "Magahi"
 msgstr "馬加伊語"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "馬紹爾語"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2670,178 +3173,60 @@ msgstr "彌濕羅語"
 msgid "Makasar"
 msgstr "滿加撒語"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "馬達加斯加語"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "馬拉威"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "馬來語"
-
 #. language code: mal ml
 #: zypp/LanguageCode.cc:709
 msgid "Malayalam"
-msgstr "馬來亞拉姆語"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "馬來西亞"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "馬爾地夫"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr "格式錯誤的 URI"
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "馬利"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "馬爾他"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "馬爾他語"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "滿族語"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "門德語"
+msgstr "馬來亞拉姆文"
 
 #. language code: man
 #: zypp/LanguageCode.cc:711
 msgid "Mandingo"
 msgstr "曼丁果語"
 
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "曼利普裏語"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "馬諾伯語"
-
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "曼島語"
-
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "毛利語"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "南島語系 (其他)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "馬拉地語"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "麻里語"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "馬紹爾群島"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "馬紹爾語"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "馬丁尼克"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "馬爾瓦爾語"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "馬塞語"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "茅利塔尼亞"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "模里西斯"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "瑪雅語"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "馬約特島"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr "媒體來源「%s」未包含所需的媒體"
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr "媒體「%s」正被其他例項使用"
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "馬來語"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr "未附加媒體"
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "莫克夏語"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr "嘗試執行動作「%s」時未開啟媒體。"
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "門德語"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "門迪語"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "法屬美特羅波利坦"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "墨西哥"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "愛爾蘭語,中古世紀 (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2853,300 +3238,206 @@ msgstr "密克馬克語"
 msgid "Minangkabau"
 msgstr "米南卡保語"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "米蘭德斯語"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "其他語言"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "孟-高棉語 (其他)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "馬拉加西語"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "馬爾他語"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "滿族語"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "曼利普裏語"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "馬諾伯語"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "摩哈克語"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "莫克夏語"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
-msgstr "摩爾多瓦語"
-
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "摩爾多瓦"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "孟-高棉語 (其他)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "摩納哥"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "蒙古語"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "蒙古"
+msgstr "摩爾達維亞語"
 
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
-msgstr "蒙古語"
-
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-msgid "Montenegro"
-msgstr "蒙特內哥羅"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "蒙特色拉特島"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "摩洛哥"
+msgstr "蒙古文"
 
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "莫西語"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "莫三比克"
+#. language code: mul
+#: zypp/LanguageCode.cc:761
+msgid "Multiple Languages"
+msgstr "多重語言"
+
+#. language code: mun
+#: zypp/LanguageCode.cc:763
+msgid "Munda languages"
+msgstr "蒙達語"
+
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "克里克語"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "米蘭德斯語"
 
-#. language code: mul
-#: zypp/LanguageCode.cc:761
-msgid "Multiple Languages"
-msgstr "多重語言"
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "馬爾瓦爾語"
 
-#. language code: mun
-#: zypp/LanguageCode.cc:763
-msgid "Munda languages"
-msgstr "蒙達語"
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "瑪雅語"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "緬甸語"
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "愛斯亞語"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "那瓦特語"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "那米比亞"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "北美印地安"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "諾魯"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "紐波利頓語"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
-msgstr "納瓦霍"
-
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "北恩德貝勒語"
+msgstr "納瓦伙語"
 
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "南恩德貝勒語"
 
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "北恩德貝勒語"
+
 #. language code: ndo ng
 #: zypp/LanguageCode.cc:789
 msgid "Ndonga"
 msgstr "恩敦加語"
 
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "紐波利頓語"
-
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "尼泊爾"
-
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "尼伯爾跋娑語"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "低地德語"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "尼泊爾語"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "荷蘭"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "荷屬安第列斯群島"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "新喀里多尼亞群島"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "紐西蘭"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr "新的更新訊息"
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "尼伯爾跋娑語"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "尼亞斯語"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "尼加拉瓜"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "尼日"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "尼日-科爾多凡語 (其他)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "奈及利亞"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "尼羅--撒哈拉語 (其他)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "紐威島"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "紐埃語"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "沒有程式碼"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "挪威耐諾斯克語"
 
-#: zypp/repo/RepoProvideFile.cc:265
-msgid "No url in repository."
-msgstr "儲存庫中沒有 url。"
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "挪威巴克摩語"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "諾蓋語"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "諾福克島"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "古諾爾斯語"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "北美印地安"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "北韓"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "北馬里安納群島"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "北薩米語"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "北索索語"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "挪威"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "挪威語"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "挪威巴克摩語"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "挪威耐諾斯克語"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "不是光碟機"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "北索索語"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "努比亞語"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "尼瓦爾語"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "齊切瓦語"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3167,38 +3458,20 @@ msgstr "尼奧羅語"
 msgid "Nzima"
 msgstr "恩濟馬語"
 
-#: zypp/Dep.cc:100
-msgid "Obsoletes"
-msgstr "過時"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
-msgstr "奧西坦語 (1500 之後)"
+msgstr "奧克騰語 (中世記法國南部語言)"
 
 #. language code: oji oj
 #: zypp/LanguageCode.cc:831
 msgid "Ojibwa"
 msgstr "奧吉布瓦語"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "阿曼"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr "需要「%s」及「%s」屬性或兩者之一。"
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr "媒體不支援該操作"
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
-msgstr "歐利亞"
+msgstr "歐利亞"
 
 #. language code: orm om
 #: zypp/LanguageCode.cc:835
@@ -3215,64 +3488,36 @@ msgstr "歐塞奇語"
 msgid "Ossetian"
 msgstr "奧塞梯語"
 
-#. language code: oto
-#: zypp/LanguageCode.cc:843
-msgid "Otomian Languages"
-msgstr "鄂圖曼語"
-
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr "套件 %s 可能在傳輸期間已毀損。是否要重試取回操作?"
-
-#. language code: pal
-#: zypp/LanguageCode.cc:849
-msgid "Pahlavi"
-msgstr "巴勒維語"
-
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "巴基斯坦"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "帛琉"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "帛琉語"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "巴勒斯坦領土"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "巴利語"
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "土耳其,鄂圖曼 (1500-1928)"
 
-#. language code: pam
-#: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "é\82¦å¹«å\92\96語"
+#. language code: oto
+#: zypp/LanguageCode.cc:843
+msgid "Otomian Languages"
+msgstr "é\84\82å\9c\96æ\9b¼語"
 
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "巴拿馬"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "巴布亞語 (其他)"
 
 #. language code: pag
 #: zypp/LanguageCode.cc:847
 msgid "Pangasinan"
 msgstr "邦卡西南語"
 
+#. language code: pal
+#: zypp/LanguageCode.cc:849
+msgid "Pahlavi"
+msgstr "巴勒維語"
+
+#. language code: pam
+#: zypp/LanguageCode.cc:851
+msgid "Pampanga"
+msgstr "邦幫咖語"
+
 #. language code: pan pa
 #: zypp/LanguageCode.cc:853
 msgid "Panjabi"
@@ -3283,94 +3528,45 @@ msgstr "旁遮普語"
 msgid "Papiamento"
 msgstr "帕皮阿門托語"
 
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "巴布亞新幾內亞"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "巴布亞語 (其他)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "巴拉圭"
-
-#: zypp/media/MediaException.cc:106
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "路徑「%s」(媒體「%s」上) 不是目錄。"
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr "路徑「%s」(媒體「%s」上) 不是檔案。"
-
-#: zypp/media/MediaException.cc:199
-#, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "存取「%s」的許可被拒。"
-
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "波斯語"
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "帛琉語"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "古波斯語 (大約西元前 600-400)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "秘魯"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "波斯語"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "菲律賓語 (其他)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "菲律賓"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "腓尼基語"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "皮特康"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr "請先安裝套件「lsof」。"
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "波那貝語"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "波蘭"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "巴利語"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "波蘭語"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "葡萄牙"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "波那貝語"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3382,83 +3578,21 @@ msgstr "葡萄牙語"
 msgid "Prakrit Languages"
 msgstr "普拉克里特語"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr "必要條件"
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-"問題確定,即用於提供相容性資訊、安裝協助、使用支援、進行中維護與基本疑難排解"
-"的技術支援。「層級 1 支援」不能修正產品缺陷錯誤。"
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-"問題隔離,即用於複製客戶問題、隔離問題區域並提供相關問題 (層級 1 支援無法解"
-"決) 解決方法的技術支援。"
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-"問題解決,即用於透過工程方法解決層級 2 支援所識別的產品缺陷來解決複雜問題的技"
-"術支援。"
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "古普羅凡斯語 (至 1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr "提供"
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "波多黎各"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "普什圖語"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "卡達"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "蓋楚瓦語"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "此 URL 不支援查詢字串分析"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-msgid "RPM failed: "
-msgstr "RPM 失敗: "
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "里托羅曼語"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3474,134 +3608,35 @@ msgstr "拉巴怒伊語"
 msgid "Rarotongan"
 msgstr "拉羅通加語"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr "推薦"
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "如果授權存在,則不允許相對路徑"
-
-#: zypp/RepoManager.cc:1740
-#, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "正在移除儲存庫 %s"
-
-#: zypp/RepoManager.cc:338
-msgid "Repository alias cannot start with dot."
-msgstr "儲存庫別名不得以句點開頭。"
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr "缺少所需的屬性「%s」。"
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr "需要"
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "留尼旺島"
-
-#. language code: roa
-#: zypp/LanguageCode.cc:891
-msgid "Romance (Other)"
-msgstr "羅曼語 (其他)"
-
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "羅馬尼亞"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "羅馬尼亞語"
-
-#. language code: rom
-#: zypp/LanguageCode.cc:895
-msgid "Romany"
-msgstr "羅曼尼語"
-
-#. language code: run rn
-#: zypp/LanguageCode.cc:901
-msgid "Rundi"
-msgstr "隆迪語"
-
-#. language code: rus ru
-#: zypp/LanguageCode.cc:903
-msgid "Russian"
-msgstr "俄語"
-
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "俄羅斯聯邦"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "盧安達"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "聖赫勒拿島"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "聖克里斯多福及尼維斯"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "聖露西亞"
-
-#: zypp/CountryCode.cc:297
-msgid "Saint Martin"
-msgstr "聖馬爾坦"
-
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "聖皮瑞及麥克隆"
-
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "聖文森及格瑞那丁"
-
-#. language code: sal
-#: zypp/LanguageCode.cc:913
-msgid "Salishan Languages"
-msgstr "薩利什語"
+#. language code: roa
+#: zypp/LanguageCode.cc:891
+msgid "Romance (Other)"
+msgstr "羅曼語 (其他)"
 
-#. language code: sam
-#: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "薩瑪利亞語"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "里托羅曼語"
 
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "薩米語 (其他)"
+#. language code: rom
+#: zypp/LanguageCode.cc:895
+msgid "Romany"
+msgstr "羅曼尼語"
 
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "è\96©æ\91©äº\9e"
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "ç¾\85馬尼äº\9eèª\9e"
 
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "薩摩亞語"
+#. language code: run rn
+#: zypp/LanguageCode.cc:901
+msgid "Rundi"
+msgstr "隆迪語"
 
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "聖馬利諾"
+#. language code: rus ru
+#: zypp/LanguageCode.cc:903
+msgid "Russian"
+msgstr "俄語"
 
 #. language code: sad
 #: zypp/LanguageCode.cc:905
@@ -3613,41 +3648,61 @@ msgstr "桑達韋語"
 msgid "Sango"
 msgstr "桑戈語"
 
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "雅庫特語"
+
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "南美洲印地安 (其他)"
+
+#. language code: sal
+#: zypp/LanguageCode.cc:913
+msgid "Salishan Languages"
+msgstr "薩利什語"
+
+#. language code: sam
+#: zypp/LanguageCode.cc:915
+msgid "Samaritan Aramaic"
+msgstr "薩瑪利亞語"
+
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "梵語"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "沙沙克語"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "山塔利語"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "聖多美及普林西比"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "薩丁尼亞語"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "沙沙克語"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "塞爾維亞語"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "沙烏地阿拉伯"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "西西里語"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "蘇格蘭語"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "克羅埃西亞語"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3658,142 +3713,40 @@ msgstr "瑟爾卡普語"
 msgid "Semitic (Other)"
 msgstr "閃語 (其他)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "塞內加爾"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-msgid "Serbia"
-msgstr "塞爾維亞"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "塞爾維亞語"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "塞雷爾語"
-
-#: zypp/RepoManager.cc:349
-msgid "Service alias cannot start with dot."
-msgstr "服務別名不得以句點開頭。"
-
-#: zypp/repo/RepoException.cc:129
-msgid "Service plugin does not support changing an attribute."
-msgstr "服務外掛程式不支援變更屬性。"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "古愛爾蘭語 (至 900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "塞席爾群島"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "符號語言"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "撣語"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "紹納語"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "西川易語"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "西西里語"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "希達摩語"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "獅子山"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "符號語言"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-msgid "Signature does not verify"
-msgstr "簽名無法驗證"
-
-#: zypp/KeyRing.cc:575
-#, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "找不到簽名檔 %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-msgid "Signature is OK"
-msgstr "簽名驗證正確"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-msgid "Signature is OK, but key is not trusted"
-msgstr "簽名驗證正確,然而金鑰不可信"
-
-#: zypp/repo/PackageProvider.cc:216
-msgid "Signature verification failed"
-msgstr "簽名驗證失敗"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr "簽名公用金鑰不可用"
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "西克西卡"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "信德語"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "新加坡"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
-msgstr "錫蘭語"
-
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "漢藏語 (其他)"
+msgstr "錫蘭文"
 
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "蘇語語系"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "斯克特薩米語"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "斯拉夫語 (阿薩巴斯卡)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "漢藏語 (其他)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3805,211 +3758,140 @@ msgstr "斯拉夫語 (其他)"
 msgid "Slovak"
 msgstr "斯洛伐克語"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "斯洛伐克"
+#. language code: slv sl
+#: zypp/LanguageCode.cc:959
+msgid "Slovenian"
+msgstr "斯洛維尼亞語"
+
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "南薩米語"
+
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "北薩米語"
+
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "薩米語 (其他)"
+
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "魯爾薩米語"
+
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "伊納里薩米語"
+
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "薩摩亞語"
+
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "斯克特薩米語"
 
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "æ\96¯æ´\9b維尼äº\9e"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "ç´¹ç´\8dèª\9e"
 
-#. language code: slv sl
-#: zypp/LanguageCode.cc:959
-msgid "Slovenian"
-msgstr "斯洛維尼亞語"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "信德語"
+
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "索寧克語"
 
 #. language code: sog
 #: zypp/LanguageCode.cc:981
 msgid "Sogdian"
 msgstr "粟特語"
 
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "所羅門群島"
-
 #. language code: som so
 #: zypp/LanguageCode.cc:983
 msgid "Somali"
 msgstr "索馬利語"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "索馬利亞"
-
 #. language code: son
 #: zypp/LanguageCode.cc:985
 msgid "Songhai"
 msgstr "桑海語"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "索寧克語"
-
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "索布語"
-
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr "抱歉,此版本的 libzypp 不支援 HAL。"
-
 #. language code: sot st
 #: zypp/LanguageCode.cc:987
 msgid "Sotho, Southern"
 msgstr "南索索語"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "南非"
-
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "南美洲印地安 (其他)"
-
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "南喬治亞及南三明治群島"
-
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "南韓"
-
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "南方阿爾泰語"
-
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "南薩米語"
-
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "西班牙"
-
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "西班牙語"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "斯里蘭卡"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "薩丁尼亞語"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "蘇丹"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "塞雷爾語"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr "建議"
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "尼羅--撒哈拉語 (其他)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "斯瓦特語"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "蘇庫馬語"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "蘇美語"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
-msgstr "巽丹語"
-
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr "補充"
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "蘇利南"
+msgstr "巽他人語"
 
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "蘇蘇語"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "冷岸及央棉群島"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "蘇美語"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "斯華西里語"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "西斯瓦提語"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "史瓦濟蘭"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "瑞典"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "瑞典語"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "瑞士"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "敘利亞"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
-msgstr "敘利亞語"
-
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr "發生系統例外「%s」(媒體「%s」上)。"
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-"系統管理已被 pid 為 %d (%s) 的應用程式鎖定。\n"
-"請關閉此應用程式,然後重試。"
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "塔加拉族語"
+msgstr "敘利亞文"
 
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
@@ -4021,35 +3903,10 @@ msgstr "塔希提語"
 msgid "Tai (Other)"
 msgstr "泰語 (其他)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "台灣"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "塔吉克語"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "塔吉克"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "泰瑪歇克語"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
-msgstr "坦米爾語"
-
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "坦尚尼亞"
+msgstr "坦米爾文"
 
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
@@ -4059,7 +3916,12 @@ msgstr "韃靼語"
 #. language code: tel te
 #: zypp/LanguageCode.cc:1021
 msgid "Telugu"
-msgstr "特拉古語"
+msgstr "特拉古文"
+
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "堤姆奈語"
 
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
@@ -4071,37 +3933,25 @@ msgstr "特崙諾語"
 msgid "Tetum"
 msgstr "德頓語"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "塔吉克語"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "塔加拉族語"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "泰文"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "泰國"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr "未指定支援層級"
-
-#: zypp/VendorSupportOptions.cc:42
-msgid "The vendor does not provide support."
-msgstr "廠商不提供支援。"
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr "此動作已由其他程式執行。"
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-msgid "This request will break your system!"
-msgstr "此要求將會破壞您的系統!"
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
-msgstr "西藏"
+msgstr "西藏"
 
 #. language code: tig
 #: zypp/LanguageCode.cc:1039
@@ -4113,46 +3963,25 @@ msgstr "泰格瑞語"
 msgid "Tigrinya"
 msgstr "提格利尼亞語"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr "存取「%s」時超出限定時間。"
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "堤姆奈語"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "提夫語"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "克林貢語"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
-msgstr "特林吉特語"
-
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "多哥"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "托比辛語"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "托克勞群島"
+msgstr "特林吉特語"
 
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "æ\9d±å\8a "
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "æ³°ç\91ªæ­\87å\85\8bèª\9e"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4164,103 +3993,66 @@ msgstr "東加語 (尼亞沙)"
 msgid "Tonga (Tonga Islands)"
 msgstr "東加語 (東加群島)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr "嘗試將不存在的金鑰 %s 輸入金鑰圈 %s"
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "千里達及托巴哥"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "托比辛語"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "欽西安語"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "南非班圖族語"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
-msgstr "加語"
+msgstr "加語"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "班圖語"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "土庫曼語"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "通布卡語"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "突尼西亞"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "圖皮語"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "土耳其"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "土耳其語"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "土耳其,鄂圖曼 (1500-1928)"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "土庫曼語"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "土庫曼"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "土克斯及開科斯群島"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "阿爾泰語 (其他)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "吐瓦魯"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "契維語"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "圖瓦尼安語"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "契維語"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "烏德穆爾特語"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "烏干達"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4271,11 +4063,6 @@ msgstr "烏嘎利特語"
 msgid "Uighur"
 msgstr "維吾爾語"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "烏克蘭"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4286,561 +4073,811 @@ msgstr "烏克蘭語"
 msgid "Umbundu"
 msgstr "姆崩杜語"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "無法複製 Url 物件"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "無法建立 dbus 連接"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "無法啟始化 HAL 網路位置 -- hald 尚未執行嗎?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "無法分析 Url 元件"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "未確定的"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr "未處理的儲存庫類型"
+#. language code: urd ur
+#: zypp/LanguageCode.cc:1093
+msgid "Urdu"
+msgstr "烏都語"
 
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "阿拉伯聯合大公國"
+#. language code: uzb uz
+#: zypp/LanguageCode.cc:1095
+msgid "Uzbek"
+msgstr "烏茲別克語"
 
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "英國"
+#. language code: vai
+#: zypp/LanguageCode.cc:1097
+msgid "Vai"
+msgstr "埃語"
 
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "美國"
+#. language code: ven ve
+#: zypp/LanguageCode.cc:1099
+msgid "Venda"
+msgstr "溫達語"
 
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "美國外島"
+#. language code: vie vi
+#: zypp/LanguageCode.cc:1101
+msgid "Vietnamese"
+msgstr "越南語"
 
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "未知國家:"
+#. language code: vol vo
+#: zypp/LanguageCode.cc:1103
+msgid "Volapuk"
+msgstr "沃拉普克語"
+
+#. language code: vot
+#: zypp/LanguageCode.cc:1105
+msgid "Votic"
+msgstr "沃提克語"
+
+#. language code: wak
+#: zypp/LanguageCode.cc:1107
+msgid "Wakashan Languages"
+msgstr "瓦卡時語"
+
+#. language code: wal
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "瓦拉莫語"
+
+#. language code: war
+#: zypp/LanguageCode.cc:1111
+msgid "Waray"
+msgstr "瓦瑞語"
+
+#. language code: was
+#: zypp/LanguageCode.cc:1113
+msgid "Washo"
+msgstr "瓦紹語"
+
+#. language code: wel cym cy
+#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
+msgid "Welsh"
+msgstr "威爾斯語"
+
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "索布語"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "瓦隆語"
+
+#. language code: wol wo
+#: zypp/LanguageCode.cc:1123
+msgid "Wolof"
+msgstr "沃洛夫語"
+
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "卡爾梅克語"
+
+#. language code: xho xh
+#: zypp/LanguageCode.cc:1127
+msgid "Xhosa"
+msgstr "科薩語"
+
+#. language code: yao
+#: zypp/LanguageCode.cc:1129
+msgid "Yao"
+msgstr "瑤語"
+
+#. language code: yap
+#: zypp/LanguageCode.cc:1131
+msgid "Yapese"
+msgstr "雅蒲語"
+
+#. language code: yid yi
+#: zypp/LanguageCode.cc:1133
+msgid "Yiddish"
+msgstr "意第緒語"
+
+#. language code: yor yo
+#: zypp/LanguageCode.cc:1135
+msgid "Yoruba"
+msgstr "優魯巴語"
+
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "尤皮克語"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "薩波特克語"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "澤納加語"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "壯語"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "贊德語"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "祖魯語"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "祖尼語"
 
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
 #, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "讀取「%s」時發生未知錯誤。"
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr "嘗試匯入不存在的金鑰 %s 到鑰匙圈 %s"
 
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "未知的語言:"
+#: zypp/KeyRing.cc:566
+msgid "Failed to delete key."
+msgstr "刪除金鑰失敗。"
 
-#: zypp/base/StrMatcher.cc:152
+#: zypp/KeyRing.cc:575
 #, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "æ\9cªç\9f¥ç\9a\84ç\9b¸ç¬¦æ¨¡å¼\8fã\80\8c%sã\80\8d"
+msgid "Signature file %s not found"
+msgstr "æ\89¾ä¸\8då\88°ç°½ç« æª\94 '%s'"
 
-#: zypp/base/StrMatcher.cc:153
+#: zypp/repo/RepoProvideFile.cc:259
 #, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr "未知的相符模式「%s」(針對樣式「%s」)"
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr "「%1%」服務未知︰正在移除孤立的服務儲存庫「%2%」"
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "檔案 '%s' 無法由套件庫 '%s' 提供"
 
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr "未知的支援選項。沒有相關描述"
+#: zypp/repo/RepoProvideFile.cc:265
+msgid "No url in repository."
+msgstr "套件庫中沒有 url。"
 
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr "未知的簽名類型"
+#: zypp/repo/RepoException.cc:129
+msgid "Service plugin does not support changing an attribute."
+msgstr "服務外掛不支援屬性的修改。"
 
-#: zypp/media/MediaUserAuth.cc:136
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
 #, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr "不受支援的 HTTP 驗證方式 %s"
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr "套件 %s 似乎在傳輸過程中被打斷。 您要重新下載嗎?"
 
-#: zypp/media/MediaException.cc:140
+#: zypp/repo/PackageProvider.cc:216
+msgid "Signature verification failed"
+msgstr "簽章驗證失敗"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
 #, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "「%s」中存在不受支援的 URI 綱要。"
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr "無法提供套件 %s。您要嘗試重新取得嗎?"
 
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "高地索布語"
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "applydeltarpm 檢查失敗。"
 
-#. language code: urd ur
-#: zypp/LanguageCode.cc:1093
-msgid "Urdu"
-msgstr "烏都語"
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "applydeltarpm 失敗。"
 
-#: zypp/url/UrlBase.cc:154
+#: zypp/ZYppFactory.cc:394
 #, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Url 規劃不允許 %s"
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+"系統管理被應用程式 pid %d (%s)鎖定。\n"
+"再次嘗試之前請先關閉此應用程式。"
 
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Url 規劃不允許主機元件"
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr "%s 不屬於一個版本升級套件庫"
 
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Url 規劃不允許密碼"
+#: zypp/solver/detail/SATResolver.cc:979
+#, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s 有次要架構"
 
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Url 規劃不允許連接埠"
+#: zypp/solver/detail/SATResolver.cc:983
+#, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "已安裝的套件 %s 發生問題"
 
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Url 規劃不允許使用者名稱"
+#: zypp/solver/detail/SATResolver.cc:986
+msgid "conflicting requests"
+msgstr "衝突的要求"
 
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "url 規劃為必要元件"
+#: zypp/solver/detail/SATResolver.cc:989
+msgid "some dependency problem"
+msgstr "有些相依性問題"
 
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Url 規劃中必須要有主機元件"
+#: zypp/solver/detail/SATResolver.cc:992
+#, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "無法提供所需的 %s"
 
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Url 規劃必須要有路徑名稱"
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr "請問您已啟用所需的套件庫了嗎?"
 
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "烏拉圭"
+#: zypp/solver/detail/SATResolver.cc:996
+#, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "套件 %s 不存在"
 
-#. language code: uzb uz
-#: zypp/LanguageCode.cc:1095
-msgid "Uzbek"
-msgstr "烏茲別克語"
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr "不支援的需求"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "烏茲別克"
+#: zypp/solver/detail/SATResolver.cc:1003
+#, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s 是由系統提供,且無法被清除。"
 
-#. language code: vai
-#: zypp/LanguageCode.cc:1097
-msgid "Vai"
-msgstr "埃語"
+#: zypp/solver/detail/SATResolver.cc:1007
+#, c-format, boost-format
+msgid "%s is not installable"
+msgstr "%s 無法安裝"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
+#: zypp/solver/detail/SATResolver.cc:1012
+#, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "無法提供 %s 這是被 %s 所需要的"
 
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "萬那杜"
+#: zypp/solver/detail/SATResolver.cc:1017
+#, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "無法同時安裝 %s 和 %s"
 
-#. language code: ven ve
-#: zypp/LanguageCode.cc:1099
-msgid "Venda"
-msgstr "溫達語"
+#: zypp/solver/detail/SATResolver.cc:1022
+#, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s 與 %s 衝突(由 %s 提供)"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "委內瑞拉"
+#: zypp/solver/detail/SATResolver.cc:1027
+#, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s 汰換 %s (由 %s 提供)"
 
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "越南"
+#: zypp/solver/detail/SATResolver.cc:1032
+#, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "安裝 %s 汰換 %s (由 %s 提供)"
 
-#. language code: vie vi
-#: zypp/LanguageCode.cc:1101
-msgid "Vietnamese"
-msgstr "è\8aå\8d\97èª\9e"
+#: zypp/solver/detail/SATResolver.cc:1036
+#, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "解決æ\96¹æ¡\88 %s è\88\87 %s è¡\9dçª\81\94±è\87ªå·±æ\8f\90ä¾\9b)"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "美屬維爾京群島"
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr "%s 需要 %s,但無法提供此需求"
 
-#: zypp/media/MediaCurl.cc:1008
+#: zypp/solver/detail/SATResolver.cc:1070
+msgid "deleted providers: "
+msgstr "刪除提供者: "
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
 msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr "請造訪 Novell Customer Center,檢查您的註冊是否有效且是否未過期。"
+"\n"
+"uninstallable providers: "
+msgstr ""
+"\n"
+"無法安裝的提供者: "
 
-#. language code: vol vo
-#: zypp/LanguageCode.cc:1103
-msgid "Volapuk"
-msgstr "沃拉普克語"
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+msgid "uninstallable providers: "
+msgstr "無法安裝的提供者: "
 
-#. language code: vot
-#: zypp/LanguageCode.cc:1105
-msgid "Votic"
-msgstr "沃提克語"
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr "解除鎖定以允許移除 %s"
 
-#. language code: wak
-#: zypp/LanguageCode.cc:1107
-msgid "Wakashan Languages"
-msgstr "瓦卡時語"
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "請勿安裝 %s"
 
-#. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "瓦拉莫語"
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "保留 %s"
 
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "瓦利斯及福杜納"
+#: zypp/solver/detail/SATResolver.cc:1166
+#, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "解除鎖定以允許安裝 %s"
 
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "瓦隆語"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+msgid "This request will break your system!"
+msgstr "此要求將破壞您的系統!"
 
-#. language code: war
-#: zypp/LanguageCode.cc:1111
-msgid "Waray"
-msgstr "瓦瑞語"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr "忽略破壞系統警告"
 
-#. language code: was
-#: zypp/LanguageCode.cc:1113
-msgid "Washo"
-msgstr "瓦紹語"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "請勿要求安裝提供 %s 的解決方案"
 
-#. language code: wel cym cy
-#: zypp/LanguageCode.cc:1115 zypp/LanguageCode.cc:1117
-msgid "Welsh"
-msgstr "威爾斯語"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "請勿要求刪除所有提供 %s 的解決方案"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "西æ\92\92å\93\88æ\8b\89"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr "è«\8bå\8b¿å®\89è£\9dæ\9c\80æ\96°ç\89\88æ\9c¬ç\9a\84 %s"
 
-#. language code: wol wo
-#: zypp/LanguageCode.cc:1123
-msgid "Wolof"
-msgstr "沃洛夫語"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "保存 %s 忽略次要架構"
 
-#. language code: xho xh
-#: zypp/LanguageCode.cc:1127
-msgid "Xhosa"
-msgstr "å»\93è\96©èª\9e"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "å®\89è£\9d %sï¼\8c忽ç\95¥æ¬¡è¦\81æ\9e¶æ§\8b"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "雅庫特語"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "保留過期的 %s"
 
-#. language code: yao
-#: zypp/LanguageCode.cc:1129
-msgid "Yao"
-msgstr "ç\91¤èª\9e"
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr "ç\94±æ\8e\92é\99¤ç\9a\84å¥\97件庫中å®\89è£\9d %s"
 
-#. language code: yap
-#: zypp/LanguageCode.cc:1131
-msgid "Yapese"
-msgstr "é\9b\85è\92²èª\9e"
+#: zypp/solver/detail/SATResolver.cc:1318
+#, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "é\99\8dç´\9a %s å\88° %s"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "葉門"
+#: zypp/solver/detail/SATResolver.cc:1325
+#, c-format, boost-format
+msgid "architecture change of %s to %s"
+msgstr "架構由 %s 變更為 %s"
 
-#. language code: yid yi
-#: zypp/LanguageCode.cc:1133
-msgid "Yiddish"
-msgstr "意第緒語"
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+"安裝 %s (並變更廠商)\n"
+"  %s  -->  %s"
 
-#. language code: yor yo
-#: zypp/LanguageCode.cc:1135
-msgid "Yoruba"
-msgstr "å\84ªé­¯å·´èª\9e"
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr "å\8f\96代 %s ä»¥ %s"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "å°¤ç\9a®å\85\8bèª\9e"
+#: zypp/solver/detail/SATResolver.cc:1354
+#, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "å\8f\8då®\89è£\9d %s"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "尚比亞"
+#. TranslatorExplanation %s = name of package, patch, selection ...
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#, c-format, boost-format
+msgid "break %s by ignoring some of its dependencies"
+msgstr "藉由忽略某些它的相依性以破壞 %s "
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "贊德語"
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+msgid "generally ignore of some dependencies"
+msgstr "一般忽略某些相依性"
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "薩波特克語"
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr "需要的屬性 '%s' 遺失。"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "澤納加語"
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr "需要 '%s' 或 '%s' 其中一個或兩者的屬性。"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "壯語"
+#: zypp/base/InterProcessMutex.cc:83
+#, c-format, boost-format
+msgid "Can't open lock file: %s"
+msgstr "無法開啟鎖定檔案: %s"
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "辛巴威"
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr "此行動已被其他程式執行。"
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "祖魯語"
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
+msgid "History:"
+msgstr "歷史記錄:"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "祖尼語"
+#: zypp/base/StrMatcher.cc:152
+#, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "未知的符合模式 '%s'"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "applydeltarpm 檢查失敗。"
+#: zypp/base/StrMatcher.cc:153
+#, c-format, boost-format
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr "未知的符合模式 '%s' 為樣式 '%s'"
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "applydeltarpm 失敗。"
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr "不正確的正規表示法 '%s': regcomp 回應 %d"
 
-#: zypp/solver/detail/SATResolver.cc:1325
+#: zypp/base/StrMatcher.cc:158
 #, c-format, boost-format
-msgid "architecture change of %s to %s"
-msgstr "架構由 %s 變更為 %s"
+msgid "Invalid regular expression '%s'"
+msgstr "不適用的正規表示法 '%s'"
 
-#. TranslatorExplanation %s = name of package, patch, selection ...
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:42
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr "請先安裝套件 'lsof'。"
+
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
 #, c-format, boost-format
-msgid "break %s by ignoring some of its dependencies"
-msgstr "è\97\89ç\94±å¿½ç\95¥å®\83ç\9a\84æ\9f\90äº\9bç\9b¸ä¾\9dæ\80§ç ´å£\9e %s"
+msgid "Authentication required for '%s'"
+msgstr "è¦\81æ±\82 '%s' ç\9a\84é©\97è­\89"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/media/MediaException.cc:31
 #, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "無法同時安裝 %s 和 %s"
+msgid "Failed to mount %s on %s"
+msgstr "載掛 %s 在 %s 失敗"
 
-#: zypp/solver/detail/SATResolver.cc:986
-msgid "conflicting requests"
-msgstr "衝突的要求"
+#: zypp/media/MediaException.cc:41
+#, c-format, boost-format
+msgid "Failed to unmount %s"
+msgstr "卸載 %s 失敗"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "已建立備份 %s"
+msgid "Bad file name: %s"
+msgstr "錯的檔案名稱: %s"
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "反安裝 %s"
+msgid "Medium not opened when trying to perform action '%s'."
+msgstr "當嘗試進行 '%s' 時媒體未開啟。"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-msgid "deleted providers: "
-msgstr "已刪除的提供者: "
+#: zypp/media/MediaException.cc:60
+#, c-format, boost-format
+msgid "File '%s' not found on medium '%s'"
+msgstr "檔案 '%s' 無法在媒體 '%s' 中找到"
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#: zypp/media/MediaException.cc:67
 #, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "請勿要求刪除所有提供 %s 的解決方案"
+msgid "Cannot write file '%s'."
+msgstr "無法寫入檔案 '%s'。"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr "媒體未加入"
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr "錯的媒體附載點"
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
 #, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "請勿要求安裝提供 %s 的解決方案"
+msgid "Download (curl) initialization failed for '%s'"
+msgstr "'%s' 下載 (curl) 初始化失敗"
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:91
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "請勿安裝 %s"
+msgid "System exception '%s' on medium '%s'."
+msgstr "系統排除 '%s' 在媒體 '%s'。"
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:98
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
-msgstr "è«\8bå\8b¿å®\89è£\9dæ\9c\80æ\96°ç\89\88æ\9c¬ç\9a\84 %s"
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr "è·¯å¾\91 '%s' å\9c¨åª\92é«\94 '%s' ä¸\8dæ\98¯ä¸\80å\80\8bæª\94æ¡\88ã\80\82"
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:106
 #, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "降級 %s 到 %s"
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "路徑 '%s' 在媒體 '%s' 不是一個目錄。"
+
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr "扭曲的位址"
+
+#: zypp/media/MediaException.cc:125
+msgid "Empty host name in URI"
+msgstr "空白的主機名稱在位址中"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr "空白的檔案系統在位址中"
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr "空白的目標在位址中"
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-msgid "generally ignore of some dependencies"
-msgstr "一般忽略某些相依性"
+#: zypp/media/MediaException.cc:140
+#, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "不支援的位址規畫在 '%s'。"
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
-msgstr "忽略損毀系統的警告"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
+msgstr "媒體不支援此操作"
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
-"安裝 %s (並變更廠商)\n"
-"  %s  -->  %s"
+"'%s' 下載 (curl) 錯誤:\n"
+"錯誤碼: %s\n"
+"錯誤訊息: %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1284
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "安裝 %s,忽略次要架構"
+msgid "Error occurred while setting download (curl) options for '%s':"
+msgstr "為 '%s' 設定下載(curl)參數時發生錯誤:"
 
-#: zypp/solver/detail/SATResolver.cc:1298
+#: zypp/media/MediaException.cc:169
 #, c-format, boost-format
-msgid "install %s from excluded repository"
-msgstr "自排除的儲存庫中安裝 %s"
+msgid "Media source '%s' does not contain the desired medium"
+msgstr "媒體來源 '%s' 不包含所需的媒體"
 
-#: zypp/solver/detail/SATResolver.cc:1032
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "å®\89è£\9dç\9a\84 %s æ\9c\83æ±°æ\8f\9b %s (ç\94± %s æ\8f\90ä¾\9b)"
+msgid "Medium '%s' is in use by another instance"
+msgstr "åª\92é«\94 '%s' æ­£å\9c¨å\85¶ä»\96å\9c°æ\96¹è¢«ä½¿ç\94¨"
 
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
-msgstr "ç\84¡æ\95\88"
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr "ç\84¡æ³\95é\80\80å\87ºä»»ä½\95åª\92é«\94"
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:184
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "保留 %s"
+msgid "Cannot eject media '%s'"
+msgstr "無法退出媒體 '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:199
 #, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "保留 %s,忽略次要架構"
+msgid "Permission to access '%s' denied."
+msgstr "存取 '%s' 的權限被拒絕。"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:207
 #, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "保留過時的 %s"
-
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "libhal_ctx_new: 無法建立 libhal 網路位置"
-
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "libhal_set_dbus_connection: 無法設定 dbus 連接"
+msgid "Timeout exceeded when accessing '%s'."
+msgstr "存取 '%s' 超出限定時間。"
 
-#: zypp/solver/detail/SATResolver.cc:1012
+#: zypp/media/MediaException.cc:215
 #, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "無法提供 %s (%s 需要此項目)"
+msgid "Location '%s' is temporarily unaccessible."
+msgstr "位置 '%s' 暫時無法存取。"
 
-#: zypp/solver/detail/SATResolver.cc:992
+#: zypp/media/MediaException.cc:223
 #, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "無法提供所需的 %s"
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr " SSL 驗證問題,確認 '%s' 的 CA 憑證是正確的。"
 
-#: zypp/solver/detail/SATResolver.cc:996
+#: zypp/media/MediaException.cc:231
 #, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "套件 %s 不存在"
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr "無法找到可用的 loop 裝置來掛載從 '%s' 的影像檔"
 
-#: zypp/solver/detail/SATResolver.cc:983
+#: zypp/media/MediaUserAuth.cc:136
 #, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "已安裝的套件 %s 發生問題"
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr "不支援的 HTTP 驗證方式 '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "解除鎖定以允許安裝 %s"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr "請造訪 Novell 客戶服務中心確認您的註冊有效及並未過期。"
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
-msgstr "解除鎖定以允許移除 %s"
+#: zypp/sat/detail/PoolImpl.cc:184
+msgid "Can not create sat-pool."
+msgstr "無法建立 sat-pool。"
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
-msgstr "取代 %s  (以 %s)"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
+"檔案 %1%\n"
+"  來自以下套件\n"
+"     %2%\n"
+"  與來自下列套件的檔案相衝突\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "rpm 已將 %s 建立為 %s,但看不出差異"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"檔案 %1%\n"
+"  來自以下套件\n"
+"     %2%\n"
+"  與來自下列安裝的檔案相衝突\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
-"rpm 已將 %s 建立為 %s。\n"
-"這是前 25 行差異:\n"
+"檔案 %1%\n"
+"  來自以下的安裝\n"
+"     %2%\n"
+"  與來自下列套件的檔案相衝突\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "rpm 已將 %s 儲存為 %s,但看不出差異"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
+msgstr ""
+"檔案 %1%\n"
+"  來自以下的安裝\n"
+"     %2%\n"
+"  與來自下列安裝的檔案相衝突\n"
+"     %3%"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
 msgstr ""
-"rpm 已將 %s 儲存為 %s。\n"
-"這是前 25 行差異:\n"
+"檔案 %1%\n"
+"  來自以下套件\n"
+"     %2%\n"
+"  與下列檔案相衝突\n"
+"     %3%\n"
+"  來自以下套件\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "解決 %s 與 %s 之間的衝突 (由自己提供)"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"檔案 %1%\n"
+"  來自以下套件\n"
+"     %2%\n"
+"  與下列檔案相衝突\n"
+"     %3%\n"
+"  來自以下安裝\n"
+"     %4%"
 
-#: zypp/solver/detail/SATResolver.cc:989
-msgid "some dependency problem"
-msgstr "一些相依性問題"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
+"檔案 %1%\n"
+"  來自以下的安裝\n"
+"     %2%\n"
+"  與下列檔案發生衝突\n"
+"     %3%\n"
+"  來自以下套件\n"
+"     %4%"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
-msgid "uninstallable providers: "
-msgstr "無法安裝的提供者: "
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
+"檔案 %1%\n"
+"  來自以下的安裝\n"
+"     %2%\n"
+"  與下列檔案發生衝突\n"
+"     %3%\n"
+"  來自以下的安裝\n"
+"     %4%"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "未知"
+#~ msgid "Cannot create public key %s from %s keyring to file %s"
+#~ msgstr "無法建立公開金鑰 %s 從 %s 鑰匙圈到檔案 %s"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr "不受支援"
+#~ msgid "Download (Metalink curl) initialization failed for '%s'"
+#~ msgstr "'%s' 下載 (Metalink curl) 初始化失敗"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr "不支援的要求"
+#~ msgid ""
+#~ "Download (metalink curl) error for '%s':\n"
+#~ "Error code: %s\n"
+#~ "Error message: %s\n"
+#~ msgstr ""
+#~ "'%s' 下載 (Metalink curl) 錯誤:\n"
+#~ "錯誤碼: %s\n"
+#~ "錯誤訊息: %s\n"
+
+#~ msgid "Download interrupted at %d%%"
+#~ msgstr "下載中斷在 %d%%"
+
+#~ msgid "Download interrupted by user"
+#~ msgstr "使用者中斷下載"
+
+#~ msgid ""
+#~ "Error occurred while setting download (metalink curl) options for '%s':"
+#~ msgstr "為 '%s' 設定下載(metalink curl)參數時發生錯誤:"
+
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "下載 %s 從 %s 失敗"
+
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "塞爾維亞和芒特尼格羅共和國"
index 2b7eaee..2893de8 100644 (file)
--- a/po/zu.po
+++ b/po/zu.po
@@ -14,17 +14,93 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1081
+#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
+#: zypp/target/hal/HalException.h:64
+msgid "Hal Exception"
+msgstr "I-Hal Exception"
+
+#: zypp/Url.cc:114
+msgid "Invalid LDAP URL query string"
+msgstr "Uhlu lombuzo lwe-LDAP URL olunganembile"
+
+#: zypp/Url.cc:153
+#, c-format, boost-format
+msgid "Invalid LDAP URL query parameter '%s'"
+msgstr "Ipharamitha yombuzo ye-LDAP URL enganembile '%s'"
+
+#: zypp/Url.cc:300
+msgid "Unable to clone Url object"
+msgstr "Ayikwazi ukukopisha into ye-Url"
+
+#: zypp/Url.cc:313
+msgid "Invalid empty Url object reference"
+msgstr "Into engenalutho ye-Url okubhekiselwe kuyo ayinembile"
+
+#: zypp/Url.cc:326 zypp/Url.cc:340
+msgid "Unable to parse Url components"
+msgstr "Ayikwazi ukucaza izingxenyana ze-Url"
+
+#: zypp/thread/Mutex.cc:33
+msgid "Can't initialize mutex attributes"
+msgstr "Ayikwazi ukulungela ukuqalisa ama-attribute e-mutex"
+
+#: zypp/thread/Mutex.cc:40
+msgid "Can't set recursive mutex attribute"
+msgstr "Ayikwazi ukusetha ama-attribute e-mutex"
+
+#: zypp/thread/Mutex.cc:47
+msgid "Can't initialize recursive mutex"
+msgstr "Ayikwazi ukulungiselela ukuqalisa i-recursive mutex"
+
+#: zypp/thread/Mutex.cc:77
+msgid "Can't acquire the mutex lock"
+msgstr "Ayikwazi ukuthola isihluthulelo se-mutex"
+
+#: zypp/thread/Mutex.cc:87
+msgid "Can't release the mutex lock"
+msgstr "Ayikwazi ukukhulula isihluthulelo se-mutex"
+
+#: zypp/Dep.cc:96
+msgid "Provides"
+msgstr ""
+
+#: zypp/Dep.cc:97
+msgid "Prerequires"
+msgstr ""
+
+#: zypp/Dep.cc:98
+msgid "Requires"
+msgstr ""
+
+#: zypp/Dep.cc:99
+msgid "Conflicts"
+msgstr ""
+
+#: zypp/Dep.cc:100
 #, fuzzy
-msgid ""
-"\n"
-"uninstallable providers: "
-msgstr "Abekho abanye abaphakeli abafakiwe be-%s"
+msgid "Obsoletes"
+msgstr "%s yenza zingasebenzi:%s"
 
-#: zypp/media/MediaException.cc:223
+#: zypp/Dep.cc:101
+msgid "Recommends"
+msgstr ""
+
+#: zypp/Dep.cc:102
+msgid "Suggests"
+msgstr ""
+
+#: zypp/Dep.cc:103
+msgid "Enhances"
+msgstr ""
+
+#: zypp/Dep.cc:104
+msgid "Supplements"
+msgstr ""
+
+#. dubious: Throw on malformed known types, otherwise log a warning.
+#: zypp/CheckSum.cc:136
 #, c-format, boost-format
-msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgid "Dubious type '%s' for %u byte checksum '%s'"
 msgstr ""
 
 #: zypp/target/TargetImpl.cc:310
@@ -37,10 +113,6 @@ msgstr "Qalisa"
 msgid " execution failed"
 msgstr "DBI Execution failed: %s"
 
-#: zypp/target/TargetImpl.cc:459
-msgid " execution skipped while aborting"
-msgstr ""
-
 #. translators: We may find the same script content in files with different names.
 #. Only the first occurence is executed, subsequent ones are skipped. It's a one-line
 #. message for a log file. Preferably start translation with "%s"
@@ -49,93 +121,121 @@ msgstr ""
 msgid "%s already executed as %s)"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1022
-#, fuzzy, c-format, boost-format
-msgid "%s conflicts with %s provided by %s"
-msgstr "%s ixabana ne- %s"
+#: zypp/target/TargetImpl.cc:459
+msgid " execution skipped while aborting"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:975
-#, c-format, boost-format
-msgid "%s does not belong to a distupgrade repository"
+#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
+#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
+#: zypp/target/TargetImpl.cc:607
+#, fuzzy
+msgid "Error sending update message notification."
+msgstr "Kwenzeke iphutha ngesikhathi kufakwa amakhodi okuphepha."
+
+#: zypp/target/TargetImpl.cc:658
+msgid "New update message"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:979
-#, fuzzy, c-format, boost-format
-msgid "%s has inferior architecture"
-msgstr "%s ihlinzeka nge-%s, kodwa inobunye ubuciko bomklamo."
+#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
+#: zypp/target/TargetImpl.cc:1640
+#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
+msgid "Installation has been aborted as directed."
+msgstr "Ukufaka kuyekiwe njengoba kunikezwe isiqondiso."
 
-#: zypp/solver/detail/SATResolver.cc:1007
-#, fuzzy, c-format, boost-format
-msgid "%s is not installable"
-msgstr "alufakiwe"
+#: zypp/target/hal/HalContext.cc:24
+msgid "Sorry, but this version of libzypp was built without HAL support."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1003
-#, fuzzy, c-format, boost-format
-msgid "%s is provided by the system and cannot be erased"
-msgstr "%s ihluthulelwe futhi ngeke ikwazi ukukhipheka."
+#: zypp/target/hal/HalContext.cc:117
+msgid "HalContext not connected"
+msgstr "I-HalContext ayixhumekile"
 
-#: zypp/solver/detail/SATResolver.cc:1027
-#, fuzzy, c-format, boost-format
-msgid "%s obsoletes %s provided by %s"
-msgstr "%s yenza zingasebenzi %s"
+#: zypp/target/hal/HalContext.cc:127
+msgid "HalDrive not initialized"
+msgstr "I-HalDrive ayizange ilungiselelwe ukuqalisa"
 
-#: zypp/solver/detail/SATResolver.cc:1068
-#, c-format, boost-format
-msgid "%s requires %s, but this requirement cannot be provided"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:137
+msgid "HalVolume not initialized"
+msgstr "I-HalVolume ayizange ilungiselelwe ukuqalisa"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:125
-msgid "(EXPIRED)"
-msgstr ""
+#: zypp/target/hal/HalContext.cc:229
+msgid "Unable to create dbus connection"
+msgstr "Ayikwazanga ukwakha ukuxhumana nge-dbus"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:116
+#: zypp/target/hal/HalContext.cc:242
+msgid "libhal_ctx_new: Can't create libhal context"
+msgstr "I-libhal_ctx_new: Ayikwazi ukwakha i-libhal context"
+
+#: zypp/target/hal/HalContext.cc:257
+msgid "libhal_set_dbus_connection: Can't set dbus connection"
+msgstr "I-libhal_set_dbus_connection: Ayikwazi ukwakha ukuxhumana kwe-dbus"
+
+#: zypp/target/hal/HalContext.cc:272
+msgid "Unable to initalize HAL context -- hald not running?"
+msgstr "Ayikwazi ukuqalisa i-HAL context --i-hald ayisebenzi?"
+
+#: zypp/target/hal/HalContext.cc:851
+msgid "Not a CDROM drive"
+msgstr "Akuyona i-CDROM drive"
+
+#. TranslatorExplanation after semicolon is error message
+#. TranslatorExplanation the colon is followed by an error message
+#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
+#: zypp/target/rpm/RpmDb.cc:2189
 #, fuzzy
-msgid "(does not expire)"
-msgstr "'I-o%1' ayitholakali."
+msgid "RPM failed: "
+msgstr "ayiphumelelanga"
 
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:133
+#. TranslatorExplanation first %s is file name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1124
 #, c-format, boost-format
-msgid "(expires in %d day)"
-msgid_plural "(expires in %d days)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. translators: an annotation to a gpg keys expiry date
-#: zypp/PublicKey.cc:129
-msgid "(expires within 24h)"
+msgid "Failed to import public key from file %s: %s"
 msgstr ""
 
-#. language code: abk ab
-#: zypp/LanguageCode.cc:163
-msgid "Abkhazian"
-msgstr "Isi-Abkhazia"
-
-#. language code: ace
-#: zypp/LanguageCode.cc:165
-msgid "Achinese"
-msgstr "Isi-Achinese"
+#. TranslatorExplanation first %s is key name, second is error message
+#: zypp/target/rpm/RpmDb.cc:1195
+#, fuzzy, c-format, boost-format
+msgid "Failed to remove public key %s: %s"
+msgstr "Ayikwazi ukuthola isikhiye sikawonk’ uwonke."
 
-#. language code: ach
-#: zypp/LanguageCode.cc:167
-msgid "Acoli"
-msgstr "Isi-Acoli"
+#. Translator: %s = name of an rpm package. A list of diffs follows
+#. this message.
+#: zypp/target/rpm/RpmDb.cc:1848
+#, c-format, boost-format
+msgid "Changed configuration files for %s:"
+msgstr "Amafayela okuhlela ashintshile e-%s:"
 
-#. language code: ada
-#: zypp/LanguageCode.cc:169
-msgid "Adangme"
-msgstr "Isi-Adangme"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2024
+#, fuzzy, c-format, boost-format
+msgid "rpm saved %s as %s, but it was impossible to determine the difference"
+msgstr "I-rpm igcine %s njenge-%s kodwa bekungenakwenzeka ukubona umehluko"
 
-#: zypp/RepoManager.cc:1611
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2026
 #, c-format, boost-format
-msgid "Adding repository '%s'"
+msgid ""
+"rpm saved %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"I-rpm igcine i-%s njenge-%s.\n"
+"Nansi imigqa yokuqala engu-25 yomehluko:\n"
 
-#: zypp/VendorSupportOptions.cc:29
-msgid "Additional Customer Contract Necessary"
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2029
+#, fuzzy, c-format, boost-format
+msgid "rpm created %s as %s, but it was impossible to determine the difference"
+msgstr "I-rpm yakhe %s njenge-%s kodwa bekungenakwenzeka ukubona umehluko"
+
+#. %s = filenames
+#: zypp/target/rpm/RpmDb.cc:2031
+#, c-format, boost-format
+msgid ""
+"rpm created %s as %s.\n"
+"Here are the first 25 lines of difference:\n"
 msgstr ""
+"I-rpm yakhe i-%s njenge-%s.\n"
+"Nansi imigqa yokuqala engu-25 yomehluko:\n"
 
 #. report additional rpm output in finish
 #. TranslatorExplanation Text is followed by a ':'  and the actual output.
@@ -144,20 +244,1671 @@ msgstr ""
 msgid "Additional rpm output"
 msgstr "Okunye okukhishiwe kwe-rpm:"
 
-#. language code: ady
-#: zypp/LanguageCode.cc:171
-msgid "Adyghe"
-msgstr "Isi-Adyghe"
+#: zypp/target/rpm/RpmDb.cc:2344
+#, c-format, boost-format
+msgid "created backup %s"
+msgstr "yakhe i-backup %s"
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2365
+#, fuzzy
+msgid "Signature is OK"
+msgstr "Into ayitholakali."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2367
+msgid "Unknown type of signature"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2369
+#, fuzzy
+msgid "Signature does not verify"
+msgstr "Into ayitholakali."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2371
+#, fuzzy
+msgid "Signature is OK, but key is not trusted"
+msgstr "Into ayitholakali."
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2373
+msgid "Signatures public key is not available"
+msgstr ""
+
+#. translators: possible rpm package signature check result [brief]
+#: zypp/target/rpm/RpmDb.cc:2375
+msgid "File does not exist or signature can't be checked"
+msgstr ""
+
+#: zypp/ProblemSolution.cc:114
+msgid "Following actions will be done:"
+msgstr ""
+
+#: zypp/RepoManager.cc:297
+#, boost-format
+msgid "Cannot read repo directory '%1%': Permission denied"
+msgstr ""
+
+#. TranslatorExplanation '%s' is a pathname
+#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
+#: zypp/repo/PluginServices.cc:49
+#, fuzzy, c-format, boost-format
+msgid "Failed to read directory '%s'"
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:315
+#, boost-format
+msgid "Cannot read repo file '%1%': Permission denied"
+msgstr ""
+
+#: zypp/RepoManager.cc:338
+#, fuzzy
+msgid "Repository alias cannot start with dot."
+msgstr "Igama le-VM alikwazi ukuqala ngenombolo."
+
+#: zypp/RepoManager.cc:349
+#, fuzzy
+msgid "Service alias cannot start with dot."
+msgstr "Igama le-VM alikwazi ukuqala ngenombolo."
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
+#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
+#, fuzzy, c-format, boost-format
+msgid "Can't open file '%s' for writing."
+msgstr "Ayikwazi ukuvula ifayela ukuze ibhale."
+
+#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
+#. %1% = service name
+#. %2% = repository name
+#: zypp/RepoManager.cc:849
+#, boost-format
+msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
+msgstr ""
+
+#. we will throw this later if no URL checks out fine
+#: zypp/RepoManager.cc:1082
+msgid "Valid metadata not found at specified URL"
+msgid_plural "Valid metadata not found at specified URLs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
+#, fuzzy, c-format, boost-format
+msgid "Can't create %s"
+msgstr "Ayikwazi ukuvula into esesendlalelweni (desktop) '%s'"
+
+#: zypp/RepoManager.cc:1140
+#, fuzzy
+msgid "Can't create metadata cache directory."
+msgstr "Ayikwazi ukwakha i-directory '%1'. %2."
+
+#: zypp/RepoManager.cc:1282
+#, c-format, boost-format
+msgid "Building repository '%s' cache"
+msgstr ""
+
+#: zypp/RepoManager.cc:1302
+#, c-format, boost-format
+msgid "Can't create cache at %s - no writing permissions."
+msgstr ""
+
+#: zypp/RepoManager.cc:1366
+#, fuzzy, c-format, boost-format
+msgid "Failed to cache repo (%d)."
+msgstr "Failed to parse: %s."
+
+#: zypp/RepoManager.cc:1377
+msgid "Unhandled repository type"
+msgstr ""
+
+#. prepare exception to be thrown if the type could not be determined
+#. due to a media exception. We can't throw right away, because of some
+#. problems with proxy servers returning an incorrect error
+#. on ftp file-not-found(bnc #335906). Instead we'll check another types
+#. before throwing.
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
+#, c-format, boost-format
+msgid "Error trying to read from '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
+#, fuzzy, c-format, boost-format
+msgid "Unknown error reading from '%s'"
+msgstr "Kwenzeke iphutha lapho ifunda iflophi diski."
+
+#: zypp/RepoManager.cc:1611
+#, c-format, boost-format
+msgid "Adding repository '%s'"
+msgstr ""
+
+#. TranslatorExplanation '%s' is an URL
+#: zypp/RepoManager.cc:1701
+#, fuzzy, c-format, boost-format
+msgid "Invalid repo file name at '%s'"
+msgstr "Igama lefayela yokuthekelisa engekho emthethweni."
+
+#: zypp/RepoManager.cc:1740
+#, fuzzy, c-format, boost-format
+msgid "Removing repository '%s'"
+msgstr "Ukubuyisela imithombo yokwaziswa"
+
+#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
+msgid "Can't figure out where the repo is stored."
+msgstr ""
+
+#. TranslatorExplanation '%s' is a filename
+#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
+#, fuzzy, c-format, boost-format
+msgid "Can't delete '%s'"
+msgstr "Ayikwazi ukuvula into esesendlalelweni (desktop) '%s'"
+
+#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
+msgid "Can't figure out where the service is stored."
+msgstr ""
+
+#: zypp/url/UrlBase.cc:154
+#, c-format, boost-format
+msgid "Url scheme does not allow a %s"
+msgstr "Uhlelo lwe-URL aluyivumeli i-%s"
+
+#: zypp/url/UrlBase.cc:173
+#, c-format, boost-format
+msgid "Invalid %s component '%s'"
+msgstr "Ingxenyana '%s' engekho emthethweni %s"
+
+#: zypp/url/UrlBase.cc:180
+#, c-format, boost-format
+msgid "Invalid %s component"
+msgstr "Ingxenyana engekho emthethweni %s"
+
+#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
+msgid "Query string parsing not supported for this URL"
+msgstr "Ukucazwa kohlu lwemibuzo akusekelwa kule-URL"
+
+#: zypp/url/UrlBase.cc:824
+msgid "Url scheme is a required component"
+msgstr "Uhlelo lwe-Url luyingxenyana edingekayo"
+
+#: zypp/url/UrlBase.cc:830
+#, c-format, boost-format
+msgid "Invalid Url scheme '%s'"
+msgstr "Uhlelo lwe-Url olungekho emthethweni '%s'"
+
+#: zypp/url/UrlBase.cc:949
+msgid "Url scheme does not allow a username"
+msgstr "Uhlelo lwe-URL alulivumeli igama lomsebenzisi"
+
+#: zypp/url/UrlBase.cc:983
+msgid "Url scheme does not allow a password"
+msgstr "Uhlelo lwe-URL aluyivumeli iphasiwedi"
+
+#: zypp/url/UrlBase.cc:1012
+msgid "Url scheme requires a host component"
+msgstr "Uhlelo lwe-Url ludinga ingxenyana yesiphakeli"
+
+#: zypp/url/UrlBase.cc:1022
+msgid "Url scheme does not allow a host component"
+msgstr "Uhlelo lwe-URL aluyivumeli ingxenyana yesiphakeli"
+
+#: zypp/url/UrlBase.cc:1049
+#, c-format, boost-format
+msgid "Invalid host component '%s'"
+msgstr "Ingxenyana engekho emthethweni '%s'"
+
+#: zypp/url/UrlBase.cc:1070
+msgid "Url scheme does not allow a port"
+msgstr "Uhlelo lwe-URL aluyivumeli iphasiwedi"
+
+#: zypp/url/UrlBase.cc:1081
+#, c-format, boost-format
+msgid "Invalid port component '%s'"
+msgstr "Ingxenyana engekho emthethweni '%s'"
+
+#: zypp/url/UrlBase.cc:1098
+msgid "Url scheme requires path name"
+msgstr "Uhlelo lwe-Url ludinga igama lomgudu"
+
+#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
+msgid "Relative path not allowed if authority exists"
+msgstr "Umgudu ongaphelele awuvunyelwe uma kunegunya"
+
+#: zypp/url/UrlUtils.cc:111
+msgid "Encoded string contains a NUL byte"
+msgstr "Uhlu olufakwe amakhodi okuphepha lune-NUL byte"
+
+#: zypp/url/UrlUtils.cc:173
+msgid "Invalid parameter array split separator character"
+msgstr "Iqoqo lepharamitha elinganembile lihlakaza uhlamvu oluhlukanisayo"
+
+#: zypp/url/UrlUtils.cc:213
+msgid "Invalid parameter map split separator character"
+msgstr "Ibalazwe lepharamitha elinganembile lihlakaza uhlamvu oluhlukanisayo"
+
+#: zypp/url/UrlUtils.cc:283
+msgid "Invalid parameter array join separator character"
+msgstr "Iqoqo lepharamitha elinganembile lihlanganisa uhlamvu oluhlukanisayo"
+
+#: zypp/ExternalProgram.cc:258
+#, fuzzy, c-format, boost-format
+msgid "Can't open pty (%s)."
+msgstr "Couldn't open file: %s."
+
+#: zypp/ExternalProgram.cc:269
+#, fuzzy, c-format, boost-format
+msgid "Can't open pipe (%s)."
+msgstr "Ayikwazi ukuvula ifayela %1."
+
+#: zypp/ExternalProgram.cc:350
+#, c-format, boost-format
+msgid "Can't chroot to '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:360
+#, c-format, boost-format
+msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:361
+#, fuzzy, c-format, boost-format
+msgid "Can't chdir to '%s' (%s)."
+msgstr "Ayiyitholi i-%s."
+
+#. don't want to get here
+#: zypp/ExternalProgram.cc:373
+#, c-format, boost-format
+msgid "Can't exec '%s' (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:381
+#, fuzzy, c-format, boost-format
+msgid "Can't fork (%s)."
+msgstr "Ayiyitholi i-%s."
+
+#: zypp/ExternalProgram.cc:507
+#, c-format, boost-format
+msgid "Command exited with status %d."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:527
+#, c-format, boost-format
+msgid "Command was killed by signal %d (%s)."
+msgstr ""
+
+#: zypp/ExternalProgram.cc:532
+#, fuzzy
+msgid "Command exited with unknown error."
+msgstr "Ikhomandi ekhishwa lapho ixhumeka"
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:116
+#, fuzzy
+msgid "(does not expire)"
+msgstr "'I-o%1' ayitholakali."
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:125
+msgid "(EXPIRED)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:129
+msgid "(expires within 24h)"
+msgstr ""
+
+#. translators: an annotation to a gpg keys expiry date
+#: zypp/PublicKey.cc:133
+#, c-format, boost-format
+msgid "(expires in %d day)"
+msgid_plural "(expires in %d days)"
+msgstr[0] ""
+msgstr[1] ""
+
+#: zypp/VendorSupportOptions.cc:14
+msgid "unknown"
+msgstr "akwaziwa"
+
+#: zypp/VendorSupportOptions.cc:17
+msgid "unsupported"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:20
+msgid "Level 1"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:23
+msgid "Level 2"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:26
+msgid "Level 3"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:29
+msgid "Additional Customer Contract Necessary"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:31
+msgid "invalid"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:39
+msgid "The level of support is unspecified"
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:42
+#, fuzzy
+msgid "The vendor does not provide support."
+msgstr "Idiski ayikho."
+
+#: zypp/VendorSupportOptions.cc:45
+msgid ""
+"Problem determination, which means technical support designed to provide "
+"compatibility information, installation assistance, usage support, on-going "
+"maintenance and basic troubleshooting. Level 1 Support is not intended to "
+"correct product defect errors."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:48
+msgid ""
+"Problem isolation, which means technical support designed to duplicate "
+"customer problems, isolate problem area and provide resolution for problems "
+"not resolved by Level 1 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:51
+msgid ""
+"Problem resolution, which means technical support designed to resolve "
+"complex problems by engaging engineering in resolution of product defects "
+"which have been identified by Level 2 Support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:54
+msgid "An additional customer contract is necessary for getting support."
+msgstr ""
+
+#: zypp/VendorSupportOptions.cc:56
+msgid "Unknown support option. Description not available"
+msgstr ""
+
+#: zypp/CountryCode.cc:50
+msgid "Unknown country: "
+msgstr "Izwe elingaziwa:"
+
+#. Defined CountryCode constants
+#. Defined LanguageCode constants
+#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
+msgid "No Code"
+msgstr "Ayikho Ikhodi"
+
+#: zypp/CountryCode.cc:158
+msgid "Andorra"
+msgstr "Andorra"
+
+#. :AND:020:
+#: zypp/CountryCode.cc:159
+msgid "United Arab Emirates"
+msgstr "United Arab Emirates"
+
+#. :ARE:784:
+#: zypp/CountryCode.cc:160
+msgid "Afghanistan"
+msgstr "Afghanistan"
+
+#. :AFG:004:
+#: zypp/CountryCode.cc:161
+msgid "Antigua and Barbuda"
+msgstr "Antigua and Barbuda"
+
+#. :ATG:028:
+#: zypp/CountryCode.cc:162
+msgid "Anguilla"
+msgstr "Anguilla"
+
+#. :AIA:660:
+#: zypp/CountryCode.cc:163
+msgid "Albania"
+msgstr "Albania"
+
+#. :ALB:008:
+#: zypp/CountryCode.cc:164
+msgid "Armenia"
+msgstr "Armenia"
+
+#. :ARM:051:
+#: zypp/CountryCode.cc:165
+msgid "Netherlands Antilles"
+msgstr "Netherlands Antilles"
+
+#. :ANT:530:
+#: zypp/CountryCode.cc:166
+msgid "Angola"
+msgstr "Angola"
+
+#. :AGO:024:
+#: zypp/CountryCode.cc:167
+msgid "Antarctica"
+msgstr "Antarctica"
+
+#. :ATA:010:
+#: zypp/CountryCode.cc:168
+msgid "Argentina"
+msgstr "Argentina"
+
+#. :ARG:032:
+#: zypp/CountryCode.cc:169
+msgid "American Samoa"
+msgstr "American Samoa"
+
+#. :ASM:016:
+#: zypp/CountryCode.cc:170
+msgid "Austria"
+msgstr "Austria"
+
+#. :AUT:040:
+#: zypp/CountryCode.cc:171
+msgid "Australia"
+msgstr "Australia"
+
+#. :AUS:036:
+#: zypp/CountryCode.cc:172
+msgid "Aruba"
+msgstr "Aruba"
+
+#. :ABW:533:
+#: zypp/CountryCode.cc:173
+msgid "Aland Islands"
+msgstr "Aland Islands"
+
+#. :ALA:248:
+#: zypp/CountryCode.cc:174
+msgid "Azerbaijan"
+msgstr "Azerbaijan"
+
+#. :AZE:031:
+#: zypp/CountryCode.cc:175
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnia ne-Herzegowina"
+
+#. :BIH:070:
+#: zypp/CountryCode.cc:176
+msgid "Barbados"
+msgstr "Barbados"
+
+#. :BRB:052:
+#: zypp/CountryCode.cc:177
+msgid "Bangladesh"
+msgstr "Bangladesh"
+
+#. :BGD:050:
+#: zypp/CountryCode.cc:178
+msgid "Belgium"
+msgstr "Belgium"
+
+#. :BEL:056:
+#: zypp/CountryCode.cc:179
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#. :BFA:854:
+#: zypp/CountryCode.cc:180
+msgid "Bulgaria"
+msgstr "Bulgaria"
+
+#. :BGR:100:
+#: zypp/CountryCode.cc:181
+msgid "Bahrain"
+msgstr "Bahrain"
+
+#. :BHR:048:
+#: zypp/CountryCode.cc:182
+msgid "Burundi"
+msgstr "Burundi"
+
+#. :BDI:108:
+#: zypp/CountryCode.cc:183
+msgid "Benin"
+msgstr "Benin"
+
+#. :BEN:204:
+#: zypp/CountryCode.cc:184
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#. :BMU:060:
+#: zypp/CountryCode.cc:185
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+
+#. :BRN:096:
+#: zypp/CountryCode.cc:186
+msgid "Bolivia"
+msgstr "Bolivia"
+
+#. :BOL:068:
+#: zypp/CountryCode.cc:187
+msgid "Brazil"
+msgstr "Brazil"
+
+#. :BRA:076:
+#: zypp/CountryCode.cc:188
+msgid "Bahamas"
+msgstr "Bahamas"
+
+#. :BHS:044:
+#: zypp/CountryCode.cc:189
+msgid "Bhutan"
+msgstr "Bhutan"
+
+#. :BTN:064:
+#: zypp/CountryCode.cc:190
+msgid "Bouvet Island"
+msgstr "Bouvet Island"
+
+#. :BVT:074:
+#: zypp/CountryCode.cc:191
+msgid "Botswana"
+msgstr "Botswana"
+
+#. :BWA:072:
+#: zypp/CountryCode.cc:192
+msgid "Belarus"
+msgstr "Belarus"
+
+#. :BLR:112:
+#: zypp/CountryCode.cc:193
+msgid "Belize"
+msgstr "Belize"
+
+#. :BLZ:084:
+#: zypp/CountryCode.cc:194
+msgid "Canada"
+msgstr "Canada"
+
+#. :CAN:124:
+#: zypp/CountryCode.cc:195
+msgid "Cocos (Keeling) Islands"
+msgstr "Cocos (Keeling) Islands"
+
+#. :CCK:166:
+#. :CAF:140:
+#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
+msgid "Congo"
+msgstr "Congo"
+
+#. :COD:180:
+#: zypp/CountryCode.cc:197
+msgid "Central African Republic"
+msgstr "Centruual African Republic"
+
+#. :COG:178:
+#: zypp/CountryCode.cc:199
+msgid "Switzerland"
+msgstr "Switzerland"
+
+#. :CHE:756:
+#: zypp/CountryCode.cc:200
+msgid "Cote D'Ivoire"
+msgstr "Cote D'Ivoire"
+
+#. :CIV:384:
+#: zypp/CountryCode.cc:201
+msgid "Cook Islands"
+msgstr "Cook Islands"
+
+#. :COK:184:
+#: zypp/CountryCode.cc:202
+msgid "Chile"
+msgstr "Chile"
+
+#. :CHL:152:
+#: zypp/CountryCode.cc:203
+msgid "Cameroon"
+msgstr "Cameroon"
+
+#. :CMR:120:
+#: zypp/CountryCode.cc:204
+msgid "China"
+msgstr "China"
+
+#. :CHN:156:
+#: zypp/CountryCode.cc:205
+msgid "Colombia"
+msgstr "Colombia"
+
+#. :COL:170:
+#: zypp/CountryCode.cc:206
+msgid "Costa Rica"
+msgstr "Costa Rica"
+
+#. :CRI:188:
+#: zypp/CountryCode.cc:207
+msgid "Cuba"
+msgstr "Cuba"
+
+#. :CUB:192:
+#: zypp/CountryCode.cc:208
+msgid "Cape Verde"
+msgstr "Cape Verde"
+
+#. :CPV:132:
+#: zypp/CountryCode.cc:209
+msgid "Christmas Island"
+msgstr "Christmas Island"
+
+#. :CXR:162:
+#: zypp/CountryCode.cc:210
+msgid "Cyprus"
+msgstr "Cyprus"
+
+#. :CYP:196:
+#: zypp/CountryCode.cc:211
+msgid "Czech Republic"
+msgstr "Czech Republic"
+
+#. :CZE:203:
+#: zypp/CountryCode.cc:212
+msgid "Germany"
+msgstr "Germany"
+
+#. :DEU:276:
+#: zypp/CountryCode.cc:213
+msgid "Djibouti"
+msgstr "Djibouti"
+
+#. :DJI:262:
+#: zypp/CountryCode.cc:214
+msgid "Denmark"
+msgstr "Denmark"
+
+#. :DNK:208:
+#: zypp/CountryCode.cc:215
+msgid "Dominica"
+msgstr "Dominica"
+
+#. :DMA:212:
+#: zypp/CountryCode.cc:216
+msgid "Dominican Republic"
+msgstr "Dominican Republic"
+
+#. :DOM:214:
+#: zypp/CountryCode.cc:217
+msgid "Algeria"
+msgstr "Algeria"
+
+#. :DZA:012:
+#: zypp/CountryCode.cc:218
+msgid "Ecuador"
+msgstr "Ecuador"
+
+#. :ECU:218:
+#: zypp/CountryCode.cc:219
+msgid "Estonia"
+msgstr "Estonia"
+
+#. :EST:233:
+#: zypp/CountryCode.cc:220
+msgid "Egypt"
+msgstr "Egypt"
+
+#. :EGY:818:
+#: zypp/CountryCode.cc:221
+msgid "Western Sahara"
+msgstr "Western Sahara"
+
+#. :ESH:732:
+#: zypp/CountryCode.cc:222
+msgid "Eritrea"
+msgstr "Eritrea"
+
+#. :ERI:232:
+#: zypp/CountryCode.cc:223
+msgid "Spain"
+msgstr "Spain"
+
+#. :ESP:724:
+#: zypp/CountryCode.cc:224
+msgid "Ethiopia"
+msgstr "Ethiopia"
+
+#. :ETH:231:
+#: zypp/CountryCode.cc:225
+msgid "Finland"
+msgstr "Finland"
+
+#. :FIN:246:
+#: zypp/CountryCode.cc:226
+msgid "Fiji"
+msgstr "Fiji"
+
+#. :FJI:242:
+#: zypp/CountryCode.cc:227
+msgid "Falkland Islands (Malvinas)"
+msgstr "Falkland Islands (Malvinas)"
+
+#. :FLK:238:
+#: zypp/CountryCode.cc:228
+msgid "Federated States of Micronesia"
+msgstr "Federated States of Micronesia"
+
+#. :FSM:583:
+#: zypp/CountryCode.cc:229
+msgid "Faroe Islands"
+msgstr "Faroe Islands"
+
+#. :FRO:234:
+#: zypp/CountryCode.cc:230
+msgid "France"
+msgstr "France"
+
+#. :FRA:250:
+#: zypp/CountryCode.cc:231
+msgid "Metropolitan France"
+msgstr "Metropolitan France"
+
+#. :FXX:249:
+#: zypp/CountryCode.cc:232
+msgid "Gabon"
+msgstr "Gabon"
+
+#. :GAB:266:
+#: zypp/CountryCode.cc:233
+msgid "United Kingdom"
+msgstr "United Kingdom"
+
+#. :GBR:826:
+#: zypp/CountryCode.cc:234
+msgid "Grenada"
+msgstr "Grenada"
+
+#. :GRD:308:
+#: zypp/CountryCode.cc:235
+msgid "Georgia"
+msgstr "Georgia"
+
+#. :GEO:268:
+#: zypp/CountryCode.cc:236
+msgid "French Guiana"
+msgstr "French Guiana"
+
+#. :GUF:254:
+#: zypp/CountryCode.cc:237
+#, fuzzy
+msgid "Guernsey"
+msgstr "Germany"
+
+#: zypp/CountryCode.cc:238
+msgid "Ghana"
+msgstr "Ghana"
+
+#. :GHA:288:
+#: zypp/CountryCode.cc:239
+msgid "Gibraltar"
+msgstr "Gibraltar"
+
+#. :GIB:292:
+#: zypp/CountryCode.cc:240
+msgid "Greenland"
+msgstr "Greenland"
+
+#. :GRL:304:
+#: zypp/CountryCode.cc:241
+msgid "Gambia"
+msgstr "Gambia"
+
+#. :GMB:270:
+#: zypp/CountryCode.cc:242
+msgid "Guinea"
+msgstr "Guinea"
+
+#. :GIN:324:
+#: zypp/CountryCode.cc:243
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+
+#. :GLP:312:
+#: zypp/CountryCode.cc:244
+msgid "Equatorial Guinea"
+msgstr "Equatorial Guinea"
+
+#. :GNQ:226:
+#: zypp/CountryCode.cc:245
+msgid "Greece"
+msgstr "Greece"
+
+#. :GRC:300:
+#: zypp/CountryCode.cc:246
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "South Georgia kanye ne-South Sandwich Islands"
+
+#. :SGS:239:
+#: zypp/CountryCode.cc:247
+msgid "Guatemala"
+msgstr "Guatemala"
+
+#. :GTM:320:
+#: zypp/CountryCode.cc:248
+msgid "Guam"
+msgstr "Guam"
+
+#. :GUM:316:
+#: zypp/CountryCode.cc:249
+msgid "Guinea-Bissau"
+msgstr "Guinea-Bissau"
+
+#. :GNB:624:
+#: zypp/CountryCode.cc:250
+msgid "Guyana"
+msgstr "Guyana"
+
+#. :GUY:328:
+#: zypp/CountryCode.cc:251
+msgid "Hong Kong"
+msgstr "Hong Kong"
+
+#. :HKG:344:
+#: zypp/CountryCode.cc:252
+msgid "Heard Island and McDonald Islands"
+msgstr "Heard Island kanye ne-McDonald Islands"
+
+#. :HMD:334:
+#: zypp/CountryCode.cc:253
+msgid "Honduras"
+msgstr "Honduras"
+
+#. :HND:340:
+#: zypp/CountryCode.cc:254
+msgid "Croatia"
+msgstr "Croatia"
+
+#. :HRV:191:
+#: zypp/CountryCode.cc:255
+msgid "Haiti"
+msgstr "Haiti"
+
+#. :HTI:332:
+#: zypp/CountryCode.cc:256
+msgid "Hungary"
+msgstr "Hungary"
+
+#. :HUN:348:
+#: zypp/CountryCode.cc:257
+msgid "Indonesia"
+msgstr "Indonesia"
+
+#. :IDN:360:
+#: zypp/CountryCode.cc:258
+msgid "Ireland"
+msgstr "Ireland"
+
+#. :IRL:372:
+#: zypp/CountryCode.cc:259
+msgid "Israel"
+msgstr "Israel"
+
+#. :ISR:376:
+#: zypp/CountryCode.cc:260
+msgid "Isle of Man"
+msgstr ""
+
+#: zypp/CountryCode.cc:261
+msgid "India"
+msgstr "India"
+
+#. :IND:356:
+#: zypp/CountryCode.cc:262
+msgid "British Indian Ocean Territory"
+msgstr "British Indian Ocean Territory"
+
+#. :IOT:086:
+#: zypp/CountryCode.cc:263
+msgid "Iraq"
+msgstr "Iraq"
+
+#. :IRQ:368:
+#: zypp/CountryCode.cc:264
+msgid "Iran"
+msgstr "Iran"
+
+#. :IRN:364:
+#: zypp/CountryCode.cc:265
+msgid "Iceland"
+msgstr "Iceland"
+
+#. :ISL:352:
+#: zypp/CountryCode.cc:266
+msgid "Italy"
+msgstr "Italy"
+
+#. :ITA:380:
+#: zypp/CountryCode.cc:267
+msgid "Jersey"
+msgstr ""
+
+#: zypp/CountryCode.cc:268
+msgid "Jamaica"
+msgstr "Jamaica"
+
+#. :JAM:388:
+#: zypp/CountryCode.cc:269
+msgid "Jordan"
+msgstr "Jordan"
+
+#. :JOR:400:
+#: zypp/CountryCode.cc:270
+msgid "Japan"
+msgstr "Japan"
+
+#. :JPN:392:
+#: zypp/CountryCode.cc:271
+msgid "Kenya"
+msgstr "Kenya"
+
+#. :KEN:404:
+#: zypp/CountryCode.cc:272
+msgid "Kyrgyzstan"
+msgstr "Kyrgyzstan"
+
+#. :KGZ:417:
+#: zypp/CountryCode.cc:273
+msgid "Cambodia"
+msgstr "Cambodia"
+
+#. :KHM:116:
+#: zypp/CountryCode.cc:274
+msgid "Kiribati"
+msgstr "Kiribati"
+
+#. :KIR:296:
+#: zypp/CountryCode.cc:275
+msgid "Comoros"
+msgstr "Comoros"
+
+#. :COM:174:
+#: zypp/CountryCode.cc:276
+msgid "Saint Kitts and Nevis"
+msgstr "Saint Kitts ne-Nevis"
+
+#. :KNA:659:
+#: zypp/CountryCode.cc:277
+msgid "North Korea"
+msgstr "North Korea"
+
+#. :PRK:408:
+#: zypp/CountryCode.cc:278
+msgid "South Korea"
+msgstr "South Korea"
+
+#. :KOR:410:
+#: zypp/CountryCode.cc:279
+msgid "Kuwait"
+msgstr "Kuwait"
+
+#. :KWT:414:
+#: zypp/CountryCode.cc:280
+msgid "Cayman Islands"
+msgstr "Cayman Islands"
+
+#. :CYM:136:
+#: zypp/CountryCode.cc:281
+msgid "Kazakhstan"
+msgstr "Kazakhstan"
+
+#. :KAZ:398:
+#: zypp/CountryCode.cc:282
+msgid "Lao People's Democratic Republic"
+msgstr "Lao People's Democratic Republic"
+
+#. :LAO:418:
+#: zypp/CountryCode.cc:283
+msgid "Lebanon"
+msgstr "Lebanon"
+
+#. :LBN:422:
+#: zypp/CountryCode.cc:284
+msgid "Saint Lucia"
+msgstr "Saint Lucia"
+
+#. :LCA:662:
+#: zypp/CountryCode.cc:285
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+
+#. :LIE:438:
+#: zypp/CountryCode.cc:286
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#. :LKA:144:
+#: zypp/CountryCode.cc:287
+msgid "Liberia"
+msgstr "Liberia"
+
+#. :LBR:430:
+#: zypp/CountryCode.cc:288
+msgid "Lesotho"
+msgstr "Lesotho"
+
+#. :LSO:426:
+#: zypp/CountryCode.cc:289
+msgid "Lithuania"
+msgstr "Lithuania"
+
+#. :LTU:440:
+#: zypp/CountryCode.cc:290
+msgid "Luxembourg"
+msgstr "Luxembourg"
+
+#. :LUX:442:
+#: zypp/CountryCode.cc:291
+msgid "Latvia"
+msgstr "Latvia"
+
+#. :LVA:428:
+#: zypp/CountryCode.cc:292
+msgid "Libya"
+msgstr "Libya"
+
+#. :LBY:434:
+#: zypp/CountryCode.cc:293
+msgid "Morocco"
+msgstr "Morocco"
+
+#. :MAR:504:
+#: zypp/CountryCode.cc:294
+msgid "Monaco"
+msgstr "Monaco"
+
+#. :MCO:492:
+#: zypp/CountryCode.cc:295
+msgid "Moldova"
+msgstr "Moldova"
+
+#. :MDA:498:
+#: zypp/CountryCode.cc:296
+#, fuzzy
+msgid "Montenegro"
+msgstr "IsiMongo"
+
+#: zypp/CountryCode.cc:297
+#, fuzzy
+msgid "Saint Martin"
+msgstr "San Marino"
+
+#: zypp/CountryCode.cc:298
+msgid "Madagascar"
+msgstr "Madagascar"
+
+#. :MDG:450:
+#: zypp/CountryCode.cc:299
+msgid "Marshall Islands"
+msgstr "Marshall Islands"
+
+#. :MHL:584:
+#: zypp/CountryCode.cc:300
+msgid "Macedonia"
+msgstr "Macedonia"
+
+#. :MKD:807:
+#: zypp/CountryCode.cc:301
+msgid "Mali"
+msgstr "Mali"
+
+#. :MLI:466:
+#: zypp/CountryCode.cc:302
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#. :MMR:104:
+#: zypp/CountryCode.cc:303
+msgid "Mongolia"
+msgstr "Mongolia"
+
+#. :MNG:496:
+#: zypp/CountryCode.cc:304
+msgid "Macao"
+msgstr "Macao"
+
+#. :MAC:446:
+#: zypp/CountryCode.cc:305
+msgid "Northern Mariana Islands"
+msgstr "Northern Mariana Islands"
+
+#. :MNP:580:
+#: zypp/CountryCode.cc:306
+msgid "Martinique"
+msgstr "Martinique"
+
+#. :MTQ:474:
+#: zypp/CountryCode.cc:307
+msgid "Mauritania"
+msgstr "Mauritania"
+
+#. :MRT:478:
+#: zypp/CountryCode.cc:308
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#. :MSR:500:
+#: zypp/CountryCode.cc:309
+msgid "Malta"
+msgstr "Malta"
+
+#. :MLT:470:
+#: zypp/CountryCode.cc:310
+msgid "Mauritius"
+msgstr "Mauritius"
+
+#. :MUS:480:
+#: zypp/CountryCode.cc:311
+msgid "Maldives"
+msgstr "Maldives"
+
+#. :MDV:462:
+#: zypp/CountryCode.cc:312
+msgid "Malawi"
+msgstr "Malawi"
+
+#. :MWI:454:
+#: zypp/CountryCode.cc:313
+msgid "Mexico"
+msgstr "Mexico"
+
+#. :MEX:484:
+#: zypp/CountryCode.cc:314
+msgid "Malaysia"
+msgstr "Malaysia"
+
+#. :MYS:458:
+#: zypp/CountryCode.cc:315
+msgid "Mozambique"
+msgstr "Mozambique"
+
+#. :MOZ:508:
+#: zypp/CountryCode.cc:316
+msgid "Namibia"
+msgstr "Namibia"
+
+#. :NAM:516:
+#: zypp/CountryCode.cc:317
+msgid "New Caledonia"
+msgstr "New Caledonia"
+
+#. :NCL:540:
+#: zypp/CountryCode.cc:318
+msgid "Niger"
+msgstr "Niger"
+
+#. :NER:562:
+#: zypp/CountryCode.cc:319
+msgid "Norfolk Island"
+msgstr "Norfolk Island"
+
+#. :NFK:574:
+#: zypp/CountryCode.cc:320
+msgid "Nigeria"
+msgstr "Nigeria"
+
+#. :NGA:566:
+#: zypp/CountryCode.cc:321
+msgid "Nicaragua"
+msgstr "Nicaragua"
+
+#. :NIC:558:
+#: zypp/CountryCode.cc:322
+msgid "Netherlands"
+msgstr "Netherlands"
+
+#. :NLD:528:
+#: zypp/CountryCode.cc:323
+msgid "Norway"
+msgstr "Norway"
+
+#. :NOR:578:
+#: zypp/CountryCode.cc:324
+msgid "Nepal"
+msgstr "Nepal"
+
+#. :NPL:524:
+#. language code: nau na
+#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
+msgid "Nauru"
+msgstr "Nauru"
+
+#. :NRU:520:
+#: zypp/CountryCode.cc:326
+msgid "Niue"
+msgstr "Niue"
+
+#. :NIU:570:
+#: zypp/CountryCode.cc:327
+msgid "New Zealand"
+msgstr "New Zealand"
+
+#. :NZL:554:
+#: zypp/CountryCode.cc:328
+msgid "Oman"
+msgstr "Oman"
+
+#. :OMN:512:
+#: zypp/CountryCode.cc:329
+msgid "Panama"
+msgstr "Panama"
+
+#. :PAN:591:
+#: zypp/CountryCode.cc:330
+msgid "Peru"
+msgstr "Peru"
+
+#. :PER:604:
+#: zypp/CountryCode.cc:331
+msgid "French Polynesia"
+msgstr "French Polynesia"
+
+#. :PYF:258:
+#: zypp/CountryCode.cc:332
+msgid "Papua New Guinea"
+msgstr "Papua New Guinea"
+
+#. :PNG:598:
+#: zypp/CountryCode.cc:333
+msgid "Philippines"
+msgstr "Philippines"
+
+#. :PHL:608:
+#: zypp/CountryCode.cc:334
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#. :PAK:586:
+#: zypp/CountryCode.cc:335
+msgid "Poland"
+msgstr "Poland"
+
+#. :POL:616:
+#: zypp/CountryCode.cc:336
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint Pierre ne-Miquelon"
+
+#. :SPM:666:
+#: zypp/CountryCode.cc:337
+msgid "Pitcairn"
+msgstr "Pitcairn"
+
+#. :PCN:612:
+#: zypp/CountryCode.cc:338
+msgid "Puerto Rico"
+msgstr "Puerto Rico"
+
+#. :PRI:630:
+#: zypp/CountryCode.cc:339
+msgid "Palestinian Territory"
+msgstr "Palestinian Territory"
+
+#. :PSE:275:
+#: zypp/CountryCode.cc:340
+msgid "Portugal"
+msgstr "Portugal"
+
+#. :PRT:620:
+#: zypp/CountryCode.cc:341
+msgid "Palau"
+msgstr "Palau"
+
+#. :PLW:585:
+#: zypp/CountryCode.cc:342
+msgid "Paraguay"
+msgstr "Paraguay"
+
+#. :PRY:600:
+#: zypp/CountryCode.cc:343
+msgid "Qatar"
+msgstr "Qatar"
+
+#. :QAT:634:
+#: zypp/CountryCode.cc:344
+msgid "Reunion"
+msgstr "Reunion"
+
+#. :REU:638:
+#: zypp/CountryCode.cc:345
+msgid "Romania"
+msgstr "Romania"
+
+#. :ROU:642:
+#: zypp/CountryCode.cc:346
+#, fuzzy
+msgid "Serbia"
+msgstr "IsiSerbia"
+
+#: zypp/CountryCode.cc:347
+msgid "Russian Federation"
+msgstr "Russian Federation"
+
+#. :RUS:643:
+#: zypp/CountryCode.cc:348
+msgid "Rwanda"
+msgstr "Rwanda"
+
+#. :RWA:646:
+#: zypp/CountryCode.cc:349
+msgid "Saudi Arabia"
+msgstr "Saudi Arabia"
+
+#. :SAU:682:
+#: zypp/CountryCode.cc:350
+msgid "Solomon Islands"
+msgstr "Solomon Islands"
+
+#. :SLB:090:
+#: zypp/CountryCode.cc:351
+msgid "Seychelles"
+msgstr "Seychelles"
+
+#. :SYC:690:
+#: zypp/CountryCode.cc:352
+msgid "Sudan"
+msgstr "Sudan"
+
+#. :SDN:736:
+#: zypp/CountryCode.cc:353
+msgid "Sweden"
+msgstr "Sweden"
+
+#. :SWE:752:
+#: zypp/CountryCode.cc:354
+msgid "Singapore"
+msgstr "Singapore"
+
+#. :SGP:702:
+#: zypp/CountryCode.cc:355
+msgid "Saint Helena"
+msgstr "Saint Helena"
+
+#. :SHN:654:
+#: zypp/CountryCode.cc:356
+msgid "Slovenia"
+msgstr "Slovenia"
+
+#. :SVN:705:
+#: zypp/CountryCode.cc:357
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard ne-Jan Mayen"
+
+#. :SJM:744:
+#: zypp/CountryCode.cc:358
+msgid "Slovakia"
+msgstr "Slovakia"
+
+#. :SVK:703:
+#: zypp/CountryCode.cc:359
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+
+#. :SLE:694:
+#: zypp/CountryCode.cc:360
+msgid "San Marino"
+msgstr "San Marino"
+
+#. :SMR:674:
+#: zypp/CountryCode.cc:361
+msgid "Senegal"
+msgstr "Senegal"
+
+#. :SEN:686:
+#: zypp/CountryCode.cc:362
+msgid "Somalia"
+msgstr "Somalia"
+
+#. :SOM:706:
+#: zypp/CountryCode.cc:363
+msgid "Suriname"
+msgstr "Suriname"
+
+#. :SUR:740:
+#: zypp/CountryCode.cc:364
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome ne-Principe"
+
+#. :STP:678:
+#: zypp/CountryCode.cc:365
+msgid "El Salvador"
+msgstr "El Salvador"
+
+#. :SLV:222:
+#: zypp/CountryCode.cc:366
+msgid "Syria"
+msgstr "Syria"
+
+#. :SYR:760:
+#: zypp/CountryCode.cc:367
+msgid "Swaziland"
+msgstr "Swaziland"
+
+#. :SWZ:748:
+#: zypp/CountryCode.cc:368
+msgid "Turks and Caicos Islands"
+msgstr "Turks ne-Caicos Islands"
+
+#. :TCA:796:
+#: zypp/CountryCode.cc:369
+msgid "Chad"
+msgstr "Chad"
+
+#. :TCD:148:
+#: zypp/CountryCode.cc:370
+msgid "French Southern Territories"
+msgstr "French Southern Territories"
+
+#. :ATF:260:
+#: zypp/CountryCode.cc:371
+msgid "Togo"
+msgstr "Togo"
+
+#. :TGO:768:
+#: zypp/CountryCode.cc:372
+msgid "Thailand"
+msgstr "Thailand"
+
+#. :THA:764:
+#: zypp/CountryCode.cc:373
+msgid "Tajikistan"
+msgstr "Tajikistan"
+
+#. :TJK:762:
+#. language code: tkl
+#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
+msgid "Tokelau"
+msgstr "IsiTokelau"
+
+#. :TKL:772:
+#: zypp/CountryCode.cc:375
+msgid "Turkmenistan"
+msgstr "Turkmenistan"
+
+#. :TKM:795:
+#: zypp/CountryCode.cc:376
+msgid "Tunisia"
+msgstr "Tunisia"
+
+#. :TUN:788:
+#: zypp/CountryCode.cc:377
+msgid "Tonga"
+msgstr "Tonga"
+
+#. :TON:776:
+#: zypp/CountryCode.cc:378
+msgid "East Timor"
+msgstr "East Timor"
+
+#. :TLS:626:
+#: zypp/CountryCode.cc:379
+msgid "Turkey"
+msgstr "Turkey"
+
+#. :TUR:792:
+#: zypp/CountryCode.cc:380
+msgid "Trinidad and Tobago"
+msgstr "Trinidad ne-Tobago"
+
+#. :TTO:780:
+#. language code: tvl
+#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
+msgid "Tuvalu"
+msgstr "IsiTuvalu"
+
+#. :TUV:798:
+#: zypp/CountryCode.cc:382
+msgid "Taiwan"
+msgstr "Taiwan"
+
+#. :TWN:158:
+#: zypp/CountryCode.cc:383
+msgid "Tanzania"
+msgstr "Tanzania"
+
+#. :TZA:834:
+#: zypp/CountryCode.cc:384
+msgid "Ukraine"
+msgstr "Ukraine"
+
+#. :UKR:804:
+#: zypp/CountryCode.cc:385
+msgid "Uganda"
+msgstr "Uganda"
+
+#. :UGA:800:
+#: zypp/CountryCode.cc:386
+msgid "United States Minor Outlying Islands"
+msgstr "United States Minor Outlying Islands"
+
+#. :UMI:581:
+#: zypp/CountryCode.cc:387
+msgid "United States"
+msgstr "United States"
+
+#. :USA:840:
+#: zypp/CountryCode.cc:388
+msgid "Uruguay"
+msgstr "Uruguay"
+
+#. :URY:858:
+#: zypp/CountryCode.cc:389
+msgid "Uzbekistan"
+msgstr "Uzbekistan"
+
+#. :UZB:860:
+#: zypp/CountryCode.cc:390
+msgid "Holy See (Vatican City State)"
+msgstr "Holy See (Vatican City State)"
+
+#. :VAT:336:
+#: zypp/CountryCode.cc:391
+msgid "Saint Vincent and the Grenadines"
+msgstr "Saint Vincent and the Grenadines"
+
+#. :VCT:670:
+#: zypp/CountryCode.cc:392
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#. :VEN:862:
+#: zypp/CountryCode.cc:393
+msgid "British Virgin Islands"
+msgstr "British Virgin Islands"
+
+#. :VGB:092:
+#: zypp/CountryCode.cc:394
+msgid "Virgin Islands, U.S."
+msgstr "Virgin Islands, U.S."
+
+#. :VIR:850:
+#: zypp/CountryCode.cc:395
+msgid "Vietnam"
+msgstr "Vietnam"
+
+#. :VNM:704:
+#: zypp/CountryCode.cc:396
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#. :VUT:548:
+#: zypp/CountryCode.cc:397
+msgid "Wallis and Futuna"
+msgstr "Wallis ne-Futuna"
+
+#. :WLF:876:
+#: zypp/CountryCode.cc:398
+msgid "Samoa"
+msgstr "Samoa"
+
+#. :WSM:882:
+#: zypp/CountryCode.cc:399
+msgid "Yemen"
+msgstr "Yemen"
+
+#. :YEM:887:
+#: zypp/CountryCode.cc:400
+msgid "Mayotte"
+msgstr "Mayotte"
+
+#. :MYT:175:
+#: zypp/CountryCode.cc:401
+msgid "South Africa"
+msgstr "South Africa"
+
+#. :ZAF:710:
+#: zypp/CountryCode.cc:402
+msgid "Zambia"
+msgstr "Zambia"
+
+#. :ZMB:894:
+#: zypp/CountryCode.cc:403
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+
+#: zypp/LanguageCode.cc:49
+msgid "Unknown language: "
+msgstr "Ulimi olungaziwa:"
 
 #. language code: aar aa
 #: zypp/LanguageCode.cc:161
 msgid "Afar"
 msgstr "Isi-Afar"
 
-#. :ARE:784:
-#: zypp/CountryCode.cc:160
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#. language code: abk ab
+#: zypp/LanguageCode.cc:163
+msgid "Abkhazian"
+msgstr "Isi-Abkhazia"
+
+#. language code: ace
+#: zypp/LanguageCode.cc:165
+msgid "Achinese"
+msgstr "Isi-Achinese"
+
+#. language code: ach
+#: zypp/LanguageCode.cc:167
+msgid "Acoli"
+msgstr "Isi-Acoli"
+
+#. language code: ada
+#: zypp/LanguageCode.cc:169
+msgid "Adangme"
+msgstr "Isi-Adangme"
+
+#. language code: ady
+#: zypp/LanguageCode.cc:171
+msgid "Adyghe"
+msgstr "Isi-Adyghe"
+
+#. language code: afa
+#: zypp/LanguageCode.cc:173
+msgid "Afro-Asiatic (Other)"
+msgstr "Isi-Asia Esiyisi-Afro (Esinye)"
 
 #. language code: afh
 #: zypp/LanguageCode.cc:175
@@ -169,11 +1920,6 @@ msgstr "Isi-Afrihili"
 msgid "Afrikaans"
 msgstr "IsiBhunu"
 
-#. language code: afa
-#: zypp/LanguageCode.cc:173
-msgid "Afro-Asiatic (Other)"
-msgstr "Isi-Asia Esiyisi-Afro (Esinye)"
-
 #. language code: ain
 #: zypp/LanguageCode.cc:179
 msgid "Ainu"
@@ -189,16 +1935,6 @@ msgstr "Isi-Akan"
 msgid "Akkadian"
 msgstr "Isi-Akkad"
 
-#. :ABW:533:
-#: zypp/CountryCode.cc:173
-msgid "Aland Islands"
-msgstr "Aland Islands"
-
-#. :AIA:660:
-#: zypp/CountryCode.cc:163
-msgid "Albania"
-msgstr "Albania"
-
 #. language code: alb sqi sq
 #: zypp/LanguageCode.cc:185 zypp/LanguageCode.cc:187
 msgid "Albanian"
@@ -209,58 +1945,25 @@ msgstr "Isi-Albania"
 msgid "Aleut"
 msgstr "Isi-Aleut"
 
-#. :DOM:214:
-#: zypp/CountryCode.cc:217
-msgid "Algeria"
-msgstr "Algeria"
-
 #. language code: alg
 #: zypp/LanguageCode.cc:191
 msgid "Algonquian Languages"
 msgstr "Izilimi Zama-Algonquia"
 
-#. language code: tut
-#: zypp/LanguageCode.cc:1073
-msgid "Altaic (Other)"
-msgstr "Isi-Atlaic (Esinye)"
-
-#. :ARG:032:
-#: zypp/CountryCode.cc:169
-msgid "American Samoa"
-msgstr "American Samoa"
+#. language code: alt
+#: zypp/LanguageCode.cc:193
+msgid "Southern Altai"
+msgstr "Isi-Altai SaseNingizimu"
 
 #. language code: amh am
 #: zypp/LanguageCode.cc:195
 msgid "Amharic"
 msgstr "Isi-Amhari"
 
-#: zypp/VendorSupportOptions.cc:54
-msgid "An additional customer contract is necessary for getting support."
-msgstr ""
-
-#: zypp/CountryCode.cc:158
-msgid "Andorra"
-msgstr "Andorra"
-
-#. :ANT:530:
-#: zypp/CountryCode.cc:166
-msgid "Angola"
-msgstr "Angola"
-
-#. :ATG:028:
-#: zypp/CountryCode.cc:162
-msgid "Anguilla"
-msgstr "Anguilla"
-
-#. :AGO:024:
-#: zypp/CountryCode.cc:167
-msgid "Antarctica"
-msgstr "Antarctica"
-
-#. :AFG:004:
-#: zypp/CountryCode.cc:161
-msgid "Antigua and Barbuda"
-msgstr "Antigua and Barbuda"
+#. language code: ang
+#: zypp/LanguageCode.cc:197
+msgid "English, Old (ca.450-1100)"
+msgstr "IsiNgisi, Esidala (ca.450-1100)"
 
 #. language code: apa
 #: zypp/LanguageCode.cc:199
@@ -272,55 +1975,40 @@ msgstr "Izilimi Zama-Apache"
 msgid "Arabic"
 msgstr "Isi-Arabhu"
 
-#. language code: arg an
-#: zypp/LanguageCode.cc:205
-msgid "Aragonese"
-msgstr "Isi-Aragoni"
-
 #. language code: arc
 #: zypp/LanguageCode.cc:203
 msgid "Aramaic"
 msgstr "Isi-Aramu"
 
-#. language code: arp
-#: zypp/LanguageCode.cc:213
-msgid "Arapaho"
-msgstr "Isi-Arapaho"
+#. language code: arg an
+#: zypp/LanguageCode.cc:205
+msgid "Aragonese"
+msgstr "Isi-Aragoni"
+
+#. language code: arm hye hy
+#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
+msgid "Armenian"
+msgstr "Isi-Armenia"
 
 #. language code: arn
 #: zypp/LanguageCode.cc:211
 msgid "Araucanian"
 msgstr "Isi-Araucania"
 
-#. language code: arw
-#: zypp/LanguageCode.cc:217
-msgid "Arawak"
-msgstr "Isi-Arawak"
-
-#. :ATA:010:
-#: zypp/CountryCode.cc:168
-msgid "Argentina"
-msgstr "Argentina"
-
-#. :ALB:008:
-#: zypp/CountryCode.cc:164
-msgid "Armenia"
-msgstr "Armenia"
-
-#. language code: arm hye hy
-#: zypp/LanguageCode.cc:207 zypp/LanguageCode.cc:209
-msgid "Armenian"
-msgstr "Isi-Armenia"
+#. language code: arp
+#: zypp/LanguageCode.cc:213
+msgid "Arapaho"
+msgstr "Isi-Arapaho"
 
 #. language code: art
 #: zypp/LanguageCode.cc:215
 msgid "Artificial (Other)"
 msgstr "Isi-Artificial (Esinye)"
 
-#. :AUS:036:
-#: zypp/CountryCode.cc:172
-msgid "Aruba"
-msgstr "Aruba"
+#. language code: arw
+#: zypp/LanguageCode.cc:217
+msgid "Arawak"
+msgstr "Isi-Arawak"
 
 #. language code: asm as
 #: zypp/LanguageCode.cc:219
@@ -337,32 +2025,11 @@ msgstr "Isi-Asturia"
 msgid "Athapascan Languages"
 msgstr "Izilimi Zama-Athapasca"
 
-#. :AUT:040:
-#: zypp/CountryCode.cc:171
-msgid "Australia"
-msgstr "Australia"
-
 #. language code: aus
 #: zypp/LanguageCode.cc:225
 msgid "Australian Languages"
 msgstr "Izilimi Zase-Australia"
 
-#. :ASM:016:
-#: zypp/CountryCode.cc:170
-msgid "Austria"
-msgstr "Austria"
-
-#. language code: map
-#: zypp/LanguageCode.cc:717
-msgid "Austronesian (Other)"
-msgstr "Isi-Austronesia (Esinye)"
-
-#. !\todo add comma to the message for the next release
-#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
-#, c-format, boost-format
-msgid "Authentication required for '%s'"
-msgstr ""
-
 #. language code: ava av
 #: zypp/LanguageCode.cc:227
 msgid "Avaric"
@@ -383,125 +2050,66 @@ msgstr "Isi-Awadhi"
 msgid "Aymara"
 msgstr "Isi-Aymara"
 
-#. :ALA:248:
-#: zypp/CountryCode.cc:174
-msgid "Azerbaijan"
-msgstr "Azerbaijan"
-
 #. language code: aze az
 #: zypp/LanguageCode.cc:235
 msgid "Azerbaijani"
 msgstr "Isi-Azerbaijani"
 
-#: zypp/media/MediaException.cc:47
-#, c-format, boost-format
-msgid "Bad file name: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:77
-msgid "Bad media attach point"
-msgstr ""
-
-#. :BRA:076:
-#: zypp/CountryCode.cc:188
-msgid "Bahamas"
-msgstr "Bahamas"
-
-#. :BGR:100:
-#: zypp/CountryCode.cc:181
-msgid "Bahrain"
-msgstr "Bahrain"
-
-#. language code: ban
-#: zypp/LanguageCode.cc:247
-msgid "Balinese"
-msgstr "IsiBaline"
-
-#. language code: bat
-#: zypp/LanguageCode.cc:255
-msgid "Baltic (Other)"
-msgstr "Isi-Baltic (Esinye)"
-
-#. language code: bal
-#: zypp/LanguageCode.cc:243
-msgid "Baluchi"
-msgstr "IsiBaluchi"
-
-#. language code: bam bm
-#: zypp/LanguageCode.cc:245
-msgid "Bambara"
-msgstr "IsiBambara"
-
-#. language code: bai
-#: zypp/LanguageCode.cc:239
-msgid "Bamileke Languages"
-msgstr "Izilimi ZamaBalimeke"
-
 #. language code: bad
 #: zypp/LanguageCode.cc:237
 msgid "Banda"
 msgstr "IsiBanda"
 
-#. :BRB:052:
-#: zypp/CountryCode.cc:177
-msgid "Bangladesh"
-msgstr "Bangladesh"
+#. language code: bai
+#: zypp/LanguageCode.cc:239
+msgid "Bamileke Languages"
+msgstr "Izilimi ZamaBalimeke"
 
-#. language code: bnt
-#: zypp/LanguageCode.cc:279
-msgid "Bantu (Other)"
-msgstr "Izilimi Zabomdabu (Ezinye)"
+#. language code: bak ba
+#: zypp/LanguageCode.cc:241
+msgid "Bashkir"
+msgstr "IsiBashkir"
 
-#. :BIH:070:
-#: zypp/CountryCode.cc:176
-msgid "Barbados"
-msgstr "Barbados"
+#. language code: bal
+#: zypp/LanguageCode.cc:243
+msgid "Baluchi"
+msgstr "IsiBaluchi"
 
-#. language code: bas
-#: zypp/LanguageCode.cc:253
-msgid "Basa"
-msgstr "IsiBasa"
+#. language code: bam bm
+#: zypp/LanguageCode.cc:245
+msgid "Bambara"
+msgstr "IsiBambara"
 
-#. language code: bak ba
-#: zypp/LanguageCode.cc:241
-msgid "Bashkir"
-msgstr "IsiBashkir"
+#. language code: ban
+#: zypp/LanguageCode.cc:247
+msgid "Balinese"
+msgstr "IsiBaline"
 
 #. language code: baq eus eu
 #: zypp/LanguageCode.cc:249 zypp/LanguageCode.cc:251
 msgid "Basque"
 msgstr "IsiBasque"
 
-#. language code: btk
-#: zypp/LanguageCode.cc:287
-msgid "Batak (Indonesia)"
-msgstr "IsiBatak (Indonesia)"
+#. language code: bas
+#: zypp/LanguageCode.cc:253
+msgid "Basa"
+msgstr "IsiBasa"
+
+#. language code: bat
+#: zypp/LanguageCode.cc:255
+msgid "Baltic (Other)"
+msgstr "Isi-Baltic (Esinye)"
 
 #. language code: bej
 #: zypp/LanguageCode.cc:257
 msgid "Beja"
 msgstr "IsiBeja"
 
-#. :BWA:072:
-#: zypp/CountryCode.cc:192
-msgid "Belarus"
-msgstr "Belarus"
-
 #. language code: bel be
 #: zypp/LanguageCode.cc:259
 msgid "Belarusian"
 msgstr "IsiBelarusia"
 
-#. :BGD:050:
-#: zypp/CountryCode.cc:178
-msgid "Belgium"
-msgstr "Belgium"
-
-#. :BLR:112:
-#: zypp/CountryCode.cc:193
-msgid "Belize"
-msgstr "Belize"
-
 #. language code: bem
 #: zypp/LanguageCode.cc:261
 msgid "Bemba"
@@ -512,311 +2120,100 @@ msgstr "IsiBemba"
 msgid "Bengali"
 msgstr "IsiBengali"
 
-#. :BDI:108:
-#: zypp/CountryCode.cc:183
-msgid "Benin"
-msgstr "Benin"
-
 #. language code: ber
 #: zypp/LanguageCode.cc:265
 msgid "Berber (Other)"
 msgstr "Isi-Barber (Esinye)"
 
-#. :BEN:204:
-#: zypp/CountryCode.cc:184
-msgid "Bermuda"
-msgstr "Bermuda"
-
 #. language code: bho
 #: zypp/LanguageCode.cc:267
 msgid "Bhojpuri"
 msgstr "IsiBhojpuri"
 
-#. :BHS:044:
-#: zypp/CountryCode.cc:189
-msgid "Bhutan"
-msgstr "Bhutan"
-
 #. language code: bih bh
 #: zypp/LanguageCode.cc:269
 msgid "Bihari"
 msgstr "IsiBihari"
 
-#. language code: bik
-#: zypp/LanguageCode.cc:271
-msgid "Bikol"
-msgstr "IsiBikol"
-
-#. language code: bin
-#: zypp/LanguageCode.cc:273
-msgid "Bini"
-msgstr "IsiBini"
-
-#. language code: bis bi
-#: zypp/LanguageCode.cc:275
-msgid "Bislama"
-msgstr "IsiBislama"
-
-#. language code: byn
-#: zypp/LanguageCode.cc:299
-msgid "Blin"
-msgstr "IsiBlin"
-
-#. :BRN:096:
-#: zypp/CountryCode.cc:186
-msgid "Bolivia"
-msgstr "Bolivia"
-
-#. :AZE:031:
-#: zypp/CountryCode.cc:175
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia ne-Herzegowina"
-
-#. language code: bos bs
-#: zypp/LanguageCode.cc:281
-msgid "Bosnian"
-msgstr "IsiBosnia"
-
-#. :BVT:074:
-#: zypp/CountryCode.cc:191
-msgid "Botswana"
-msgstr "Botswana"
-
-#. :BTN:064:
-#: zypp/CountryCode.cc:190
-msgid "Bouvet Island"
-msgstr "Bouvet Island"
-
-#. language code: bra
-#: zypp/LanguageCode.cc:283
-msgid "Braj"
-msgstr "IsiBraj"
-
-#. :BOL:068:
-#: zypp/CountryCode.cc:187
-msgid "Brazil"
-msgstr "Brazil"
-
-#. language code: bre br
-#: zypp/LanguageCode.cc:285
-msgid "Breton"
-msgstr "IsiBreton"
-
-#. :IND:356:
-#: zypp/CountryCode.cc:262
-msgid "British Indian Ocean Territory"
-msgstr "British Indian Ocean Territory"
-
-#. :VEN:862:
-#: zypp/CountryCode.cc:393
-msgid "British Virgin Islands"
-msgstr "British Virgin Islands"
-
-#. :BMU:060:
-#: zypp/CountryCode.cc:185
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
-
-#. language code: bug
-#: zypp/LanguageCode.cc:291
-msgid "Buginese"
-msgstr "IsiBuginese"
-
-#: zypp/RepoManager.cc:1282
-#, c-format, boost-format
-msgid "Building repository '%s' cache"
-msgstr ""
-
-#. :BFA:854:
-#: zypp/CountryCode.cc:180
-msgid "Bulgaria"
-msgstr "Bulgaria"
-
-#. language code: bul bg
-#: zypp/LanguageCode.cc:293
-msgid "Bulgarian"
-msgstr "IsiBulgaria"
-
-#. language code: bua
-#: zypp/LanguageCode.cc:289
-msgid "Buriat"
-msgstr "IsiBuriat"
-
-#. :BEL:056:
-#: zypp/CountryCode.cc:179
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#. language code: bur mya my
-#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
-msgid "Burmese"
-msgstr "IsiBurmese"
-
-#. :BHR:048:
-#: zypp/CountryCode.cc:182
-msgid "Burundi"
-msgstr "Burundi"
-
-#. language code: cad
-#: zypp/LanguageCode.cc:301
-msgid "Caddo"
-msgstr "IsiCaddo"
-
-#. :KGZ:417:
-#: zypp/CountryCode.cc:273
-msgid "Cambodia"
-msgstr "Cambodia"
-
-#. :CHL:152:
-#: zypp/CountryCode.cc:203
-msgid "Cameroon"
-msgstr "Cameroon"
-
-#: zypp/sat/detail/PoolImpl.cc:184
-#, fuzzy
-msgid "Can not create sat-pool."
-msgstr "Ayikwazi ukwakha ifayela."
-
-#: zypp/thread/Mutex.cc:77
-msgid "Can't acquire the mutex lock"
-msgstr "Ayikwazi ukuthola isihluthulelo se-mutex"
-
-#: zypp/ExternalProgram.cc:361
-#, fuzzy, c-format, boost-format
-msgid "Can't chdir to '%s' (%s)."
-msgstr "Ayiyitholi i-%s."
-
-#: zypp/ExternalProgram.cc:360
-#, c-format, boost-format
-msgid "Can't chdir to '%s' inside chroot '%s' (%s)."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:350
-#, c-format, boost-format
-msgid "Can't chroot to '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1132 zypp/RepoManager.cc:1240 zypp/RepoManager.cc:1296
-#, fuzzy, c-format, boost-format
-msgid "Can't create %s"
-msgstr "Ayikwazi ukuvula into esesendlalelweni (desktop) '%s'"
-
-#: zypp/RepoManager.cc:1302
-#, c-format, boost-format
-msgid "Can't create cache at %s - no writing permissions."
-msgstr ""
-
-#: zypp/RepoManager.cc:1140
-#, fuzzy
-msgid "Can't create metadata cache directory."
-msgstr "Ayikwazi ukwakha i-directory '%1'. %2."
-
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:1771 zypp/RepoManager.cc:1963
-#, fuzzy, c-format, boost-format
-msgid "Can't delete '%s'"
-msgstr "Ayikwazi ukuvula into esesendlalelweni (desktop) '%s'"
-
-#. don't want to get here
-#: zypp/ExternalProgram.cc:373
-#, c-format, boost-format
-msgid "Can't exec '%s' (%s)."
-msgstr ""
-
-#: zypp/RepoManager.cc:1759 zypp/RepoManager.cc:1835
-msgid "Can't figure out where the repo is stored."
-msgstr ""
-
-#: zypp/RepoManager.cc:1951 zypp/RepoManager.cc:2395
-msgid "Can't figure out where the service is stored."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:381
-#, fuzzy, c-format, boost-format
-msgid "Can't fork (%s)."
-msgstr "Ayiyitholi i-%s."
-
-#: zypp/thread/Mutex.cc:33
-msgid "Can't initialize mutex attributes"
-msgstr "Ayikwazi ukulungela ukuqalisa ama-attribute e-mutex"
-
-#: zypp/thread/Mutex.cc:47
-msgid "Can't initialize recursive mutex"
-msgstr "Ayikwazi ukulungiselela ukuqalisa i-recursive mutex"
+#. language code: bik
+#: zypp/LanguageCode.cc:271
+msgid "Bikol"
+msgstr "IsiBikol"
 
-#. TranslatorExplanation '%s' is a filename
-#: zypp/RepoManager.cc:722 zypp/RepoManager.cc:1650 zypp/RepoManager.cc:1715
-#: zypp/RepoManager.cc:1789 zypp/RepoManager.cc:1854 zypp/RepoManager.cc:1975
-#, fuzzy, c-format, boost-format
-msgid "Can't open file '%s' for writing."
-msgstr "Ayikwazi ukuvula ifayela ukuze ibhale."
+#. language code: bin
+#: zypp/LanguageCode.cc:273
+msgid "Bini"
+msgstr "IsiBini"
 
-#: zypp/base/InterProcessMutex.cc:83
-#, fuzzy, c-format, boost-format
-msgid "Can't open lock file: %s"
-msgstr "Ayikwazi ukuvula ifayela %1."
+#. language code: bis bi
+#: zypp/LanguageCode.cc:275
+msgid "Bislama"
+msgstr "IsiBislama"
 
-#: zypp/ExternalProgram.cc:269
-#, fuzzy, c-format, boost-format
-msgid "Can't open pipe (%s)."
-msgstr "Ayikwazi ukuvula ifayela %1."
+#. language code: bla
+#: zypp/LanguageCode.cc:277
+msgid "Siksika"
+msgstr "IsiSiksika"
 
-#: zypp/ExternalProgram.cc:258
-#, fuzzy, c-format, boost-format
-msgid "Can't open pty (%s)."
-msgstr "Couldn't open file: %s."
+#. language code: bnt
+#: zypp/LanguageCode.cc:279
+msgid "Bantu (Other)"
+msgstr "Izilimi Zabomdabu (Ezinye)"
 
-#: zypp/repo/RepoProvideFile.cc:259
-#, fuzzy, c-format, boost-format
-msgid "Can't provide file '%s' from repository '%s'"
-msgstr "Ayikwazi ukuhlinzeka nge-%s kwi-%s"
+#. language code: bos bs
+#: zypp/LanguageCode.cc:281
+msgid "Bosnian"
+msgstr "IsiBosnia"
 
-#: zypp/thread/Mutex.cc:87
-msgid "Can't release the mutex lock"
-msgstr "Ayikwazi ukukhulula isihluthulelo se-mutex"
+#. language code: bra
+#: zypp/LanguageCode.cc:283
+msgid "Braj"
+msgstr "IsiBraj"
 
-#: zypp/thread/Mutex.cc:40
-msgid "Can't set recursive mutex attribute"
-msgstr "Ayikwazi ukusetha ama-attribute e-mutex"
+#. language code: bre br
+#: zypp/LanguageCode.cc:285
+msgid "Breton"
+msgstr "IsiBreton"
 
-#. :BLZ:084:
-#: zypp/CountryCode.cc:194
-msgid "Canada"
-msgstr "Canada"
+#. language code: btk
+#: zypp/LanguageCode.cc:287
+msgid "Batak (Indonesia)"
+msgstr "IsiBatak (Indonesia)"
 
-#: zypp/media/MediaException.cc:182
-msgid "Cannot eject any media"
-msgstr ""
+#. language code: bua
+#: zypp/LanguageCode.cc:289
+msgid "Buriat"
+msgstr "IsiBuriat"
 
-#: zypp/media/MediaException.cc:184
-#, fuzzy, c-format, boost-format
-msgid "Cannot eject media '%s'"
-msgstr "Ayikwazi ukuvula into esesendlalelweni (desktop) '%s'"
+#. language code: bug
+#: zypp/LanguageCode.cc:291
+msgid "Buginese"
+msgstr "IsiBuginese"
 
-#: zypp/media/MediaException.cc:231
-#, c-format, boost-format
-msgid "Cannot find available loop device to mount the image file from '%s'"
-msgstr ""
+#. language code: bul bg
+#: zypp/LanguageCode.cc:293
+msgid "Bulgarian"
+msgstr "IsiBulgaria"
 
-#: zypp/RepoManager.cc:297
-#, boost-format
-msgid "Cannot read repo directory '%1%': Permission denied"
-msgstr ""
+#. language code: bur mya my
+#: zypp/LanguageCode.cc:295 zypp/LanguageCode.cc:297
+msgid "Burmese"
+msgstr "IsiBurmese"
 
-#: zypp/RepoManager.cc:315
-#, boost-format
-msgid "Cannot read repo file '%1%': Permission denied"
-msgstr ""
+#. language code: byn
+#: zypp/LanguageCode.cc:299
+msgid "Blin"
+msgstr "IsiBlin"
 
-#: zypp/media/MediaException.cc:67
-#, fuzzy, c-format, boost-format
-msgid "Cannot write file '%s'."
-msgstr "Ayikwazi ukubhala efayeleni %1."
+#. language code: cad
+#: zypp/LanguageCode.cc:301
+msgid "Caddo"
+msgstr "IsiCaddo"
 
-#. :CUB:192:
-#: zypp/CountryCode.cc:208
-msgid "Cape Verde"
-msgstr "Cape Verde"
+#. language code: cai
+#: zypp/LanguageCode.cc:303
+msgid "Central American Indian (Other)"
+msgstr "Isindiya SaseMelika Ephakathi (Esinye)"
 
 #. language code: car
 #: zypp/LanguageCode.cc:305
@@ -833,11 +2230,6 @@ msgstr "IsiCatal"
 msgid "Caucasian (Other)"
 msgstr "Isi-Caucasia (Esinye)"
 
-#. :KWT:414:
-#: zypp/CountryCode.cc:280
-msgid "Cayman Islands"
-msgstr "Cayman Islands"
-
 #. language code: ceb
 #: zypp/LanguageCode.cc:311
 msgid "Cebuano"
@@ -848,167 +2240,80 @@ msgstr "IsiCebuano"
 msgid "Celtic (Other)"
 msgstr "Isi-Celt (Esinye)"
 
-#. :COD:180:
-#: zypp/CountryCode.cc:197
-msgid "Central African Republic"
-msgstr "Centruual African Republic"
-
-#. language code: cai
-#: zypp/LanguageCode.cc:303
-msgid "Central American Indian (Other)"
-msgstr "Isindiya SaseMelika Ephakathi (Esinye)"
-
-#. :TCA:796:
-#: zypp/CountryCode.cc:369
-msgid "Chad"
-msgstr "Chad"
-
-#. language code: chg
-#: zypp/LanguageCode.cc:321
-msgid "Chagatai"
-msgstr "IsiChagatai"
-
-#. language code: cmc
-#: zypp/LanguageCode.cc:345
-msgid "Chamic Languages"
-msgstr "Izilimi ZamaChami"
-
 #. language code: cha ch
 #: zypp/LanguageCode.cc:315
 msgid "Chamorro"
 msgstr "IsiChamorro"
 
-#. Translator: %s = name of an rpm package. A list of diffs follows
-#. this message.
-#: zypp/target/rpm/RpmDb.cc:1848
-#, c-format, boost-format
-msgid "Changed configuration files for %s:"
-msgstr "Amafayela okuhlela ashintshile e-%s:"
-
-#. language code: che ce
-#: zypp/LanguageCode.cc:319
-msgid "Chechen"
-msgstr "IsiChechen"
-
-#. language code: chr
-#: zypp/LanguageCode.cc:337
-msgid "Cherokee"
-msgstr "IsiCherokee"
-
-#. language code: chy
-#: zypp/LanguageCode.cc:343
-msgid "Cheyenne"
-msgstr "IsiCheyenne"
-
 #. language code: chb
 #: zypp/LanguageCode.cc:317
 msgid "Chibcha"
 msgstr "IsiChibcha"
 
-#. language code: nya ny
-#: zypp/LanguageCode.cc:819
-msgid "Chichewa"
-msgstr "IsiChewa"
-
-#. :COK:184:
-#: zypp/CountryCode.cc:202
-msgid "Chile"
-msgstr "Chile"
+#. language code: che ce
+#: zypp/LanguageCode.cc:319
+msgid "Chechen"
+msgstr "IsiChechen"
 
-#. :CMR:120:
-#: zypp/CountryCode.cc:204
-msgid "China"
-msgstr "China"
+#. language code: chg
+#: zypp/LanguageCode.cc:321
+msgid "Chagatai"
+msgstr "IsiChagatai"
 
 #. language code: chi zho zh
 #: zypp/LanguageCode.cc:323 zypp/LanguageCode.cc:325
 msgid "Chinese"
 msgstr "IsiShayina"
 
+#. language code: chk
+#: zypp/LanguageCode.cc:327
+msgid "Chuukese"
+msgstr "IsiChuukese"
+
+#. language code: chm
+#: zypp/LanguageCode.cc:329
+msgid "Mari"
+msgstr "IsiMari"
+
 #. language code: chn
 #: zypp/LanguageCode.cc:331
 msgid "Chinook Jargon"
 msgstr "Ingxubevange YesiChinook"
 
-#. language code: chp
-#: zypp/LanguageCode.cc:335
-msgid "Chipewyan"
-msgstr "IsiChipewyan"
-
 #. language code: cho
 #: zypp/LanguageCode.cc:333
 msgid "Choctaw"
 msgstr "IsiChoctaw"
 
-#. :CPV:132:
-#: zypp/CountryCode.cc:209
-msgid "Christmas Island"
-msgstr "Christmas Island"
-
-#. language code: chu cu
-#: zypp/LanguageCode.cc:339
-msgid "Church Slavic"
-msgstr "IsiSlav SaseSontweni"
-
-#. language code: chk
-#: zypp/LanguageCode.cc:327
-msgid "Chuukese"
-msgstr "IsiChuukese"
-
-#. language code: chv cv
-#: zypp/LanguageCode.cc:341
-msgid "Chuvash"
-msgstr "IsiChuvash"
-
-#. language code: nwc
-#: zypp/LanguageCode.cc:817
-msgid "Classical Newari"
-msgstr "IsiNewari Sendabuko"
-
-#. :CAN:124:
-#: zypp/CountryCode.cc:195
-msgid "Cocos (Keeling) Islands"
-msgstr "Cocos (Keeling) Islands"
-
-#. :CHN:156:
-#: zypp/CountryCode.cc:205
-msgid "Colombia"
-msgstr "Colombia"
-
-#: zypp/ExternalProgram.cc:507
-#, c-format, boost-format
-msgid "Command exited with status %d."
-msgstr ""
-
-#: zypp/ExternalProgram.cc:532
-#, fuzzy
-msgid "Command exited with unknown error."
-msgstr "Ikhomandi ekhishwa lapho ixhumeka"
+#. language code: chp
+#: zypp/LanguageCode.cc:335
+msgid "Chipewyan"
+msgstr "IsiChipewyan"
 
-#: zypp/ExternalProgram.cc:527
-#, c-format, boost-format
-msgid "Command was killed by signal %d (%s)."
-msgstr ""
+#. language code: chr
+#: zypp/LanguageCode.cc:337
+msgid "Cherokee"
+msgstr "IsiCherokee"
 
-#. :KIR:296:
-#: zypp/CountryCode.cc:275
-msgid "Comoros"
-msgstr "Comoros"
+#. language code: chu cu
+#: zypp/LanguageCode.cc:339
+msgid "Church Slavic"
+msgstr "IsiSlav SaseSontweni"
 
-#: zypp/Dep.cc:99
-msgid "Conflicts"
-msgstr ""
+#. language code: chv cv
+#: zypp/LanguageCode.cc:341
+msgid "Chuvash"
+msgstr "IsiChuvash"
 
-#. :CCK:166:
-#. :CAF:140:
-#: zypp/CountryCode.cc:196 zypp/CountryCode.cc:198
-msgid "Congo"
-msgstr "Congo"
+#. language code: chy
+#: zypp/LanguageCode.cc:343
+msgid "Cheyenne"
+msgstr "IsiCheyenne"
 
-#. :CIV:384:
-#: zypp/CountryCode.cc:201
-msgid "Cook Islands"
-msgstr "Cook Islands"
+#. language code: cmc
+#: zypp/LanguageCode.cc:345
+msgid "Chamic Languages"
+msgstr "Izilimi ZamaChami"
 
 #. language code: cop
 #: zypp/LanguageCode.cc:347
@@ -1025,31 +2330,6 @@ msgstr "IsiCorni"
 msgid "Corsican"
 msgstr "IsiCorsic"
 
-#. :COL:170:
-#: zypp/CountryCode.cc:206
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#. :CHE:756:
-#: zypp/CountryCode.cc:200
-msgid "Cote D'Ivoire"
-msgstr "Cote D'Ivoire"
-
-#. language code: cre cr
-#: zypp/LanguageCode.cc:359
-msgid "Cree"
-msgstr "IsiCree"
-
-#. language code: mus
-#: zypp/LanguageCode.cc:765
-msgid "Creek"
-msgstr "IsiCreek"
-
-#. language code: crp
-#: zypp/LanguageCode.cc:363
-msgid "Creoles and Pidgins (Other)"
-msgstr "Ama-Creole namaPidgin (Ezinye)"
-
 #. language code: cpe
 #: zypp/LanguageCode.cc:353
 msgid "Creoles and Pidgins, English-Based (Other)"
@@ -1065,46 +2345,36 @@ msgstr "AmaCreoles namaPidgin, Ezisekelwe EsiFulentshini (Ezinye)"
 msgid "Creoles and Pidgins, Portuguese-Based (Other)"
 msgstr "AmaCreoles namaPidgin, Ezisekelwe EsiPutukezini (Ezinye)"
 
+#. language code: cre cr
+#: zypp/LanguageCode.cc:359
+msgid "Cree"
+msgstr "IsiCree"
+
 #. language code: crh
 #: zypp/LanguageCode.cc:361
 msgid "Crimean Tatar"
 msgstr "Isi-Tatar SaseCrimea"
 
-#. :HND:340:
-#: zypp/CountryCode.cc:254
-msgid "Croatia"
-msgstr "Croatia"
-
-#. language code: scr hrv hr
-#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
-msgid "Croatian"
-msgstr "IsiCroatia"
+#. language code: crp
+#: zypp/LanguageCode.cc:363
+msgid "Creoles and Pidgins (Other)"
+msgstr "Ama-Creole namaPidgin (Ezinye)"
 
-#. :CRI:188:
-#: zypp/CountryCode.cc:207
-msgid "Cuba"
-msgstr "Cuba"
+#. language code: csb
+#: zypp/LanguageCode.cc:365
+msgid "Kashubian"
+msgstr "IsiKashubi"
 
 #. language code: cus
 #: zypp/LanguageCode.cc:367
 msgid "Cushitic (Other)"
 msgstr "Isi-Cushiti (Esinye)"
 
-#. :CXR:162:
-#: zypp/CountryCode.cc:210
-msgid "Cyprus"
-msgstr "Cyprus"
-
 #. language code: cze ces cs
 #: zypp/LanguageCode.cc:369 zypp/LanguageCode.cc:371
 msgid "Czech"
 msgstr "IsiCzech"
 
-#. :CYP:196:
-#: zypp/CountryCode.cc:211
-msgid "Czech Republic"
-msgstr "Czech Republic"
-
 #. language code: dak
 #: zypp/LanguageCode.cc:373
 msgid "Dakota"
@@ -1130,10 +2400,15 @@ msgstr "IsiDayak"
 msgid "Delaware"
 msgstr "IsiDelaware"
 
-#. :DJI:262:
-#: zypp/CountryCode.cc:214
-msgid "Denmark"
-msgstr "Denmark"
+#. language code: den
+#: zypp/LanguageCode.cc:383
+msgid "Slave (Athapascan)"
+msgstr "IsiSlave (Sesi-Athapasca)"
+
+#. language code: dgr
+#: zypp/LanguageCode.cc:385
+msgid "Dogrib"
+msgstr "IsiDogrib"
 
 #. language code: din
 #: zypp/LanguageCode.cc:387
@@ -1145,71 +2420,36 @@ msgstr "IsiDinka"
 msgid "Divehi"
 msgstr "IsiDivehi"
 
-#. :DEU:276:
-#: zypp/CountryCode.cc:213
-msgid "Djibouti"
-msgstr "Djibouti"
-
 #. language code: doi
 #: zypp/LanguageCode.cc:391
 msgid "Dogri"
 msgstr "IsiDogri"
 
-#. language code: dgr
-#: zypp/LanguageCode.cc:385
-msgid "Dogrib"
-msgstr "IsiDogrib"
-
-#. :DNK:208:
-#: zypp/CountryCode.cc:215
-msgid "Dominica"
-msgstr "Dominica"
-
-#. :DMA:212:
-#: zypp/CountryCode.cc:216
-msgid "Dominican Republic"
-msgstr "Dominican Republic"
-
-#: zypp/media/MediaException.cc:152
-#, c-format, boost-format
-msgid ""
-"Download (curl) error for '%s':\n"
-"Error code: %s\n"
-"Error message: %s\n"
-msgstr ""
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:84
-#, c-format, boost-format
-msgid "Download (curl) initialization failed for '%s'"
-msgstr ""
-
 #. language code: dra
 #: zypp/LanguageCode.cc:393
 msgid "Dravidian (Other)"
 msgstr "Isi-Dravid (Esinye)"
 
+#. language code: dsb
+#: zypp/LanguageCode.cc:395
+msgid "Lower Sorbian"
+msgstr "IsiSorbia Sangezansi"
+
 #. language code: dua
 #: zypp/LanguageCode.cc:397
 msgid "Duala"
 msgstr "IsiDuala"
 
-#. dubious: Throw on malformed known types, otherwise log a warning.
-#: zypp/CheckSum.cc:136
-#, c-format, boost-format
-msgid "Dubious type '%s' for %u byte checksum '%s'"
-msgstr ""
+#. language code: dum
+#: zypp/LanguageCode.cc:399
+msgid "Dutch, Middle (ca.1050-1350)"
+msgstr "IsiDashi, Maphakathi (ca.1050-1350)"
 
 #. language code: dut nld nl
 #: zypp/LanguageCode.cc:401 zypp/LanguageCode.cc:403
 msgid "Dutch"
 msgstr "IsiDashi"
 
-#. language code: dum
-#: zypp/LanguageCode.cc:399
-msgid "Dutch, Middle (ca.1050-1350)"
-msgstr "IsiDashi, Maphakathi (ca.1050-1350)"
-
 #. language code: dyu
 #: zypp/LanguageCode.cc:405
 msgid "Dyula"
@@ -1220,26 +2460,11 @@ msgstr "IsiDyula"
 msgid "Dzongkha"
 msgstr "IsiDzongkha"
 
-#. :TON:776:
-#: zypp/CountryCode.cc:378
-msgid "East Timor"
-msgstr "East Timor"
-
-#. :DZA:012:
-#: zypp/CountryCode.cc:218
-msgid "Ecuador"
-msgstr "Ecuador"
-
 #. language code: efi
 #: zypp/LanguageCode.cc:409
 msgid "Efik"
 msgstr "Isi-Efik"
 
-#. :EST:233:
-#: zypp/CountryCode.cc:220
-msgid "Egypt"
-msgstr "Egypt"
-
 #. language code: egy
 #: zypp/LanguageCode.cc:411
 msgid "Egyptian (Ancient)"
@@ -1247,114 +2472,34 @@ msgstr "IsiGibhithe (Sasendulo)"
 
 #. language code: eka
 #: zypp/LanguageCode.cc:413
-msgid "Ekajuk"
-msgstr "Isi-Ekajuk"
-
-#. :STP:678:
-#: zypp/CountryCode.cc:365
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#. language code: elx
-#: zypp/LanguageCode.cc:415
-msgid "Elamite"
-msgstr "Isi-Elami"
-
-#: zypp/media/MediaException.cc:135
-msgid "Empty destination in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:130
-msgid "Empty filesystem in URI"
-msgstr ""
-
-#: zypp/media/MediaException.cc:125
-#, fuzzy
-msgid "Empty host name in URI"
-msgstr "Igama le-CA elingenalutho"
-
-#: zypp/url/UrlUtils.cc:111
-msgid "Encoded string contains a NUL byte"
-msgstr "Uhlu olufakwe amakhodi okuphepha lune-NUL byte"
-
-#. language code: eng en
-#: zypp/LanguageCode.cc:417
-msgid "English"
-msgstr "IsiNgisi"
-
-#. language code: enm
-#: zypp/LanguageCode.cc:419
-msgid "English, Middle (1100-1500)"
-msgstr "IsiNgisi, Maphakathi (1100-1500)"
-
-#. language code: ang
-#: zypp/LanguageCode.cc:197
-msgid "English, Old (ca.450-1100)"
-msgstr "IsiNgisi, Esidala (ca.450-1100)"
-
-#: zypp/Dep.cc:103
-msgid "Enhances"
-msgstr ""
-
-#. :GLP:312:
-#: zypp/CountryCode.cc:244
-msgid "Equatorial Guinea"
-msgstr "Equatorial Guinea"
-
-#. :ESH:732:
-#: zypp/CountryCode.cc:222
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#. TranslatorExplanation: curl is the name of a library, don't translate
-#: zypp/media/MediaException.cc:161
-#, c-format, boost-format
-msgid "Error occurred while setting download (curl) options for '%s':"
-msgstr ""
-
-#: zypp/target/TargetImpl.cc:514 zypp/target/TargetImpl.cc:534
-#: zypp/target/TargetImpl.cc:562 zypp/target/TargetImpl.cc:599
-#: zypp/target/TargetImpl.cc:607
-#, fuzzy
-msgid "Error sending update message notification."
-msgstr "Kwenzeke iphutha ngesikhathi kufakwa amakhodi okuphepha."
+msgid "Ekajuk"
+msgstr "Isi-Ekajuk"
 
-#. prepare exception to be thrown if the type could not be determined
-#. due to a media exception. We can't throw right away, because of some
-#. problems with proxy servers returning an incorrect error
-#. on ftp file-not-found(bnc #335906). Instead we'll check another types
-#. before throwing.
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1414 zypp/RepoManager.cc:2464
-#, c-format, boost-format
-msgid "Error trying to read from '%s'"
-msgstr ""
+#. language code: elx
+#: zypp/LanguageCode.cc:415
+msgid "Elamite"
+msgstr "Isi-Elami"
 
-#. language code: myv
-#: zypp/LanguageCode.cc:773
-msgid "Erzya"
-msgstr "Isi-Erzya"
+#. language code: eng en
+#: zypp/LanguageCode.cc:417
+msgid "English"
+msgstr "IsiNgisi"
+
+#. language code: enm
+#: zypp/LanguageCode.cc:419
+msgid "English, Middle (1100-1500)"
+msgstr "IsiNgisi, Maphakathi (1100-1500)"
 
 #. language code: epo eo
 #: zypp/LanguageCode.cc:421
 msgid "Esperanto"
 msgstr "Isi-Esperanto"
 
-#. :ECU:218:
-#: zypp/CountryCode.cc:219
-msgid "Estonia"
-msgstr "Estonia"
-
 #. language code: est et
 #: zypp/LanguageCode.cc:423
 msgid "Estonian"
 msgstr "Isi-Estonia"
 
-#. :ESP:724:
-#: zypp/CountryCode.cc:224
-msgid "Ethiopia"
-msgstr "Ethiopia"
-
 #. language code: ewe ee
 #: zypp/LanguageCode.cc:425
 msgid "Ewe"
@@ -1365,211 +2510,31 @@ msgstr "Isi-Ewe"
 msgid "Ewondo"
 msgstr "Isi-Ewondo"
 
-#: zypp/RepoManager.cc:1366
-#, fuzzy, c-format, boost-format
-msgid "Failed to cache repo (%d)."
-msgstr "Failed to parse: %s."
-
-#: zypp/KeyRing.cc:566
-#, fuzzy
-msgid "Failed to delete key."
-msgstr "Ayikwazanga ukuqala i-VM."
-
-#. TranslatorExplanation first %s is file name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1124
-#, c-format, boost-format
-msgid "Failed to import public key from file %s: %s"
-msgstr ""
-
-#: zypp/media/MediaException.cc:31
-#, fuzzy, c-format, boost-format
-msgid "Failed to mount %s on %s"
-msgstr "Ayikwazi ukuvula %s - %s\n"
-
-#. TranslatorExplanation %s = name of the package being processed.
-#: zypp/repo/PackageProvider.cc:386
-#, fuzzy, c-format, boost-format
-msgid "Failed to provide Package %s. Do you want to retry retrieval?"
-msgstr ""
-"Iphakheji %s ihlulekile lapho ihlolwa ukuthembeka. Ufuna ukuphinde uzame "
-"ukuyilanda futhi?"
-
-#. TranslatorExplanation '%s' is a pathname
-#: zypp/RepoManager.cc:305 zypp/RepoManager.cc:767 zypp/RepoManager.cc:1523
-#: zypp/repo/PluginServices.cc:49
-#, fuzzy, c-format, boost-format
-msgid "Failed to read directory '%s'"
-msgstr "Failed to parse: %s."
-
-#. TranslatorExplanation first %s is key name, second is error message
-#: zypp/target/rpm/RpmDb.cc:1195
-#, fuzzy, c-format, boost-format
-msgid "Failed to remove public key %s: %s"
-msgstr "Ayikwazi ukuthola isikhiye sikawonk’ uwonke."
-
-#: zypp/media/MediaException.cc:41
-#, fuzzy, c-format, boost-format
-msgid "Failed to unmount %s"
-msgstr "Ihlulekile ukufaka imoduli \"%s\"."
-
-#. :FJI:242:
-#: zypp/CountryCode.cc:227
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falkland Islands (Malvinas)"
-
 #. language code: fan
 #: zypp/LanguageCode.cc:429
 msgid "Fang"
 msgstr "Isi-Fang"
 
-#. language code: fat
-#: zypp/LanguageCode.cc:433
-msgid "Fanti"
-msgstr "IsiFanti"
-
-#. :FSM:583:
-#: zypp/CountryCode.cc:229
-msgid "Faroe Islands"
-msgstr "Faroe Islands"
-
 #. language code: fao fo
 #: zypp/LanguageCode.cc:431
 msgid "Faroese"
 msgstr "IsiFaroese"
 
-#. :FLK:238:
-#: zypp/CountryCode.cc:228
-msgid "Federated States of Micronesia"
-msgstr "Federated States of Micronesia"
-
-#. :FIN:246:
-#: zypp/CountryCode.cc:226
-msgid "Fiji"
-msgstr "Fiji"
+#. language code: fat
+#: zypp/LanguageCode.cc:433
+msgid "Fanti"
+msgstr "IsiFanti"
 
 #. language code: fij fj
 #: zypp/LanguageCode.cc:435
 msgid "Fijian"
 msgstr "IsiFiji"
 
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:93
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:85
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:53
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:47
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from install of\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
-#: zypp/sat/FileConflicts.cc:76
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from install of\n"
-"     %4%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
-#: zypp/sat/FileConflicts.cc:68
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file\n"
-"     %3%\n"
-"  from package\n"
-"     %4%"
-msgstr ""
-
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:40
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from install of\n"
-"     %3%"
-msgstr ""
-
-#. [lhs][rhs] 0 = installed; 1 = to be installed
-#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
-#: zypp/sat/FileConflicts.cc:34
-#, boost-format
-msgid ""
-"File %1%\n"
-"  from package\n"
-"     %2%\n"
-"  conflicts with file from package\n"
-"     %3%"
-msgstr ""
-
-#: zypp/media/MediaException.cc:60
-#, fuzzy, c-format, boost-format
-msgid "File '%s' not found on medium '%s'"
-msgstr "Ifayela %1 ayitholakali enqolobaneni yamafayela."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2375
-msgid "File does not exist or signature can't be checked"
-msgstr ""
-
 #. language code: fil
 #: zypp/LanguageCode.cc:437
 msgid "Filipino"
 msgstr "IsiFilipino"
 
-#. :ETH:231:
-#: zypp/CountryCode.cc:225
-msgid "Finland"
-msgstr "Finland"
-
 #. language code: fin fi
 #: zypp/LanguageCode.cc:439
 msgid "Finnish"
@@ -1580,39 +2545,15 @@ msgstr "IsiFinishi"
 msgid "Finno-Ugrian (Other)"
 msgstr "Isi-Ugrio SesiFinno (Esinye)"
 
-#: zypp/ProblemSolution.cc:114
-msgid "Following actions will be done:"
-msgstr ""
-
-#. language code: fon
-#: zypp/LanguageCode.cc:443
-msgid "Fon"
-msgstr "IsiFon"
-
-#. :FRO:234:
-#: zypp/CountryCode.cc:230
-msgid "France"
-msgstr "France"
-
-#. language code: fre fra fr
-#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
-msgid "French"
-msgstr "IsiFulentshi"
-
-#. :GEO:268:
-#: zypp/CountryCode.cc:236
-msgid "French Guiana"
-msgstr "French Guiana"
-
-#. :PER:604:
-#: zypp/CountryCode.cc:331
-msgid "French Polynesia"
-msgstr "French Polynesia"
-
-#. :TCD:148:
-#: zypp/CountryCode.cc:370
-msgid "French Southern Territories"
-msgstr "French Southern Territories"
+#. language code: fon
+#: zypp/LanguageCode.cc:443
+msgid "Fon"
+msgstr "IsiFon"
+
+#. language code: fre fra fr
+#: zypp/LanguageCode.cc:445 zypp/LanguageCode.cc:447
+msgid "French"
+msgstr "IsiFulentshi"
 
 #. language code: frm
 #: zypp/LanguageCode.cc:449
@@ -1629,46 +2570,21 @@ msgstr "IsiFulentshi, Esidala (842-ca.1400)"
 msgid "Frisian"
 msgstr "IsiFrisia"
 
-#. language code: fur
-#: zypp/LanguageCode.cc:457
-msgid "Friulian"
-msgstr "IsiFriulia"
-
 #. language code: ful ff
 #: zypp/LanguageCode.cc:455
 msgid "Fulah"
 msgstr "IsiFulah"
 
+#. language code: fur
+#: zypp/LanguageCode.cc:457
+msgid "Friulian"
+msgstr "IsiFriulia"
+
 #. language code: gaa
 #: zypp/LanguageCode.cc:459
 msgid "Ga"
 msgstr "IsiGa"
 
-#. :FXX:249:
-#: zypp/CountryCode.cc:232
-msgid "Gabon"
-msgstr "Gabon"
-
-#. language code: gla gd
-#: zypp/LanguageCode.cc:479
-msgid "Gaelic"
-msgstr "IsiGaeli"
-
-#. language code: glg gl
-#: zypp/LanguageCode.cc:483
-msgid "Galician"
-msgstr "IsiGalicia"
-
-#. :GRL:304:
-#: zypp/CountryCode.cc:241
-msgid "Gambia"
-msgstr "Gambia"
-
-#. language code: lug lg
-#: zypp/LanguageCode.cc:685
-msgid "Ganda"
-msgstr "IsiGanda"
-
 #. language code: gay
 #: zypp/LanguageCode.cc:461
 msgid "Gayo"
@@ -1679,15 +2595,10 @@ msgstr "IsiGayo"
 msgid "Gbaya"
 msgstr "IsiGbaya"
 
-#. language code: gez
-#: zypp/LanguageCode.cc:475
-msgid "Geez"
-msgstr "IsiGeez"
-
-#. :GRD:308:
-#: zypp/CountryCode.cc:235
-msgid "Georgia"
-msgstr "Georgia"
+#. language code: gem
+#: zypp/LanguageCode.cc:465
+msgid "Germanic (Other)"
+msgstr "IsiJalimane (Esinye)"
 
 #. language code: geo kat ka
 #: zypp/LanguageCode.cc:467 zypp/LanguageCode.cc:469
@@ -1699,6 +2610,36 @@ msgstr "IsiGeorgia"
 msgid "German"
 msgstr "IsiJalimane"
 
+#. language code: gez
+#: zypp/LanguageCode.cc:475
+msgid "Geez"
+msgstr "IsiGeez"
+
+#. language code: gil
+#: zypp/LanguageCode.cc:477
+msgid "Gilbertese"
+msgstr "IsiGilbertese"
+
+#. language code: gla gd
+#: zypp/LanguageCode.cc:479
+msgid "Gaelic"
+msgstr "IsiGaeli"
+
+#. language code: gle ga
+#: zypp/LanguageCode.cc:481
+msgid "Irish"
+msgstr "Isi-Irish"
+
+#. language code: glg gl
+#: zypp/LanguageCode.cc:483
+msgid "Galician"
+msgstr "IsiGalicia"
+
+#. language code: glv gv
+#: zypp/LanguageCode.cc:485
+msgid "Manx"
+msgstr "IsiManx"
+
 #. language code: gmh
 #: zypp/LanguageCode.cc:487
 msgid "German, Middle High (ca.1050-1500)"
@@ -1709,30 +2650,6 @@ msgstr "IsiJalimane, Esiphezulu Maphakathi (ca.1050-1500)"
 msgid "German, Old High (ca.750-1050)"
 msgstr "IsiJalimane, Esiphezulu Sakudala (ca.1050-1050)"
 
-#. language code: gem
-#: zypp/LanguageCode.cc:465
-msgid "Germanic (Other)"
-msgstr "IsiJalimane (Esinye)"
-
-#. :CZE:203:
-#: zypp/CountryCode.cc:212
-msgid "Germany"
-msgstr "Germany"
-
-#: zypp/CountryCode.cc:238
-msgid "Ghana"
-msgstr "Ghana"
-
-#. :GHA:288:
-#: zypp/CountryCode.cc:239
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#. language code: gil
-#: zypp/LanguageCode.cc:477
-msgid "Gilbertese"
-msgstr "IsiGilbertese"
-
 #. language code: gon
 #: zypp/LanguageCode.cc:491
 msgid "Gondi"
@@ -1753,11 +2670,6 @@ msgstr "IsiGothic"
 msgid "Grebo"
 msgstr "IsiGrebo"
 
-#. :GNQ:226:
-#: zypp/CountryCode.cc:245
-msgid "Greece"
-msgstr "Greece"
-
 #. language code: grc
 #: zypp/LanguageCode.cc:499
 msgid "Greek, Ancient (to 1453)"
@@ -1768,62 +2680,16 @@ msgstr "IsiGriki, Sasendulo (kuya ku-1453)"
 msgid "Greek, Modern (1453-)"
 msgstr "IsiGriki, Sesimanje (1453-)"
 
-#. :GIB:292:
-#: zypp/CountryCode.cc:240
-msgid "Greenland"
-msgstr "Greenland"
-
-#. :GBR:826:
-#: zypp/CountryCode.cc:234
-msgid "Grenada"
-msgstr "Grenada"
-
-#. :GIN:324:
-#: zypp/CountryCode.cc:243
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#. :GTM:320:
-#: zypp/CountryCode.cc:248
-msgid "Guam"
-msgstr "Guam"
-
 #. language code: grn gn
 #: zypp/LanguageCode.cc:505
 msgid "Guarani"
 msgstr "IsiGuarani"
 
-#. :SGS:239:
-#: zypp/CountryCode.cc:247
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#. :GUF:254:
-#: zypp/CountryCode.cc:237
-#, fuzzy
-msgid "Guernsey"
-msgstr "Germany"
-
-#. :GMB:270:
-#: zypp/CountryCode.cc:242
-msgid "Guinea"
-msgstr "Guinea"
-
-#. :GUM:316:
-#: zypp/CountryCode.cc:249
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
 #. language code: guj gu
 #: zypp/LanguageCode.cc:507
 msgid "Gujarati"
 msgstr "IsiGujarati"
 
-#. :GNB:624:
-#: zypp/CountryCode.cc:250
-msgid "Guyana"
-msgstr "Guyana"
-
 #. language code: gwi
 #: zypp/LanguageCode.cc:509
 msgid "Gwich'in"
@@ -1834,52 +2700,21 @@ msgstr "IsiGwich'in"
 msgid "Haida"
 msgstr "IsiHaida"
 
-#. :HRV:191:
-#: zypp/CountryCode.cc:255
-msgid "Haiti"
-msgstr "Haiti"
-
 #. language code: hat ht
 #: zypp/LanguageCode.cc:513
 msgid "Haitian"
 msgstr "IsiHaiti"
 
-#: zypp/target/hal/HalException.h:46 zypp/target/hal/HalException.h:55
-#: zypp/target/hal/HalException.h:64
-msgid "Hal Exception"
-msgstr "I-Hal Exception"
-
-#: zypp/target/hal/HalContext.cc:117
-msgid "HalContext not connected"
-msgstr "I-HalContext ayixhumekile"
-
-#: zypp/target/hal/HalContext.cc:127
-msgid "HalDrive not initialized"
-msgstr "I-HalDrive ayizange ilungiselelwe ukuqalisa"
-
-#: zypp/target/hal/HalContext.cc:137
-msgid "HalVolume not initialized"
-msgstr "I-HalVolume ayizange ilungiselelwe ukuqalisa"
-
 #. language code: hau ha
 #: zypp/LanguageCode.cc:515
 msgid "Hausa"
 msgstr "IsiHausa"
 
-#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
-msgid "Have you enabled all requested repositories?"
-msgstr ""
-
 #. language code: haw
 #: zypp/LanguageCode.cc:517
 msgid "Hawaiian"
 msgstr "IsiHawaii"
 
-#. :HKG:344:
-#: zypp/CountryCode.cc:252
-msgid "Heard Island and McDonald Islands"
-msgstr "Heard Island kanye ne-McDonald Islands"
-
 #. language code: heb he
 #: zypp/LanguageCode.cc:519
 msgid "Hebrew"
@@ -1905,17 +2740,6 @@ msgstr "IsiHimachali"
 msgid "Hindi"
 msgstr "IsiHindi"
 
-#. language code: hmo ho
-#: zypp/LanguageCode.cc:533
-msgid "Hiri Motu"
-msgstr "IsiHiri Motu"
-
-#. TranslatorExplanation followed by the list of error messages that lead to this exception
-#: zypp/base/Exception.cc:107
-#, fuzzy
-msgid "History:"
-msgstr "Linganisa Umlando"
-
 #. language code: hit
 #: zypp/LanguageCode.cc:529
 msgid "Hittite"
@@ -1926,31 +2750,21 @@ msgstr "IsiHeti"
 msgid "Hmong"
 msgstr "IsiHmong"
 
-#. :UZB:860:
-#: zypp/CountryCode.cc:390
-msgid "Holy See (Vatican City State)"
-msgstr "Holy See (Vatican City State)"
-
-#. :HMD:334:
-#: zypp/CountryCode.cc:253
-msgid "Honduras"
-msgstr "Honduras"
+#. language code: hmo ho
+#: zypp/LanguageCode.cc:533
+msgid "Hiri Motu"
+msgstr "IsiHiri Motu"
 
-#. :GUY:328:
-#: zypp/CountryCode.cc:251
-msgid "Hong Kong"
-msgstr "Hong Kong"
+#. language code: hsb
+#: zypp/LanguageCode.cc:535
+msgid "Upper Sorbian"
+msgstr "IsiSorbia Sangenhla"
 
 #. language code: hun hu
 #: zypp/LanguageCode.cc:537
 msgid "Hungarian"
 msgstr "IsiHungary"
 
-#. :HTI:332:
-#: zypp/CountryCode.cc:256
-msgid "Hungary"
-msgstr "Hungary"
-
 #. language code: hup
 #: zypp/LanguageCode.cc:539
 msgid "Hupa"
@@ -1961,10 +2775,10 @@ msgstr "IsiHupa"
 msgid "Iban"
 msgstr "Isi-Iban"
 
-#. :IRN:364:
-#: zypp/CountryCode.cc:265
-msgid "Iceland"
-msgstr "Iceland"
+#. language code: ibo ig
+#: zypp/LanguageCode.cc:543
+msgid "Igbo"
+msgstr "Isi-Igbo"
 
 #. language code: ice isl is
 #: zypp/LanguageCode.cc:545 zypp/LanguageCode.cc:547
@@ -1976,250 +2790,105 @@ msgstr "Isi-Iceland"
 msgid "Ido"
 msgstr "Isi-Ido"
 
-#. language code: ibo ig
-#: zypp/LanguageCode.cc:543
-msgid "Igbo"
-msgstr "Isi-Igbo"
+#. language code: iii ii
+#: zypp/LanguageCode.cc:551
+msgid "Sichuan Yi"
+msgstr "IsiSichuan Yi"
 
 #. language code: ijo
 #: zypp/LanguageCode.cc:553
 msgid "Ijo"
 msgstr "Isi-Ijo"
 
+#. language code: iku iu
+#: zypp/LanguageCode.cc:555
+msgid "Inuktitut"
+msgstr "Isi-Inuktitut"
+
+#. language code: ile ie
+#: zypp/LanguageCode.cc:557
+msgid "Interlingue"
+msgstr "Isi-Interlingue"
+
 #. language code: ilo
 #: zypp/LanguageCode.cc:559
 msgid "Iloko"
 msgstr "Isi-Iloko"
 
-#. language code: smn
-#: zypp/LanguageCode.cc:969
-msgid "Inari Sami"
-msgstr "IsiSami Sama-Inari"
-
-#: zypp/CountryCode.cc:261
-msgid "India"
-msgstr "India"
+#. language code: ina ia
+#: zypp/LanguageCode.cc:561
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr "Isi-Interlingua (Inhlangano Yomhlaba Wonke Esiza Ngezilimi)"
 
 #. language code: inc
 #: zypp/LanguageCode.cc:563
 msgid "Indic (Other)"
 msgstr "Isi-Indi (Esinye)"
 
-#. language code: ine
-#: zypp/LanguageCode.cc:567
-msgid "Indo-European (Other)"
-msgstr "Isi-Indo-Europe (Esinye)"
-
-#. :HUN:348:
-#: zypp/CountryCode.cc:257
-msgid "Indonesia"
-msgstr "Indonesia"
-
 #. language code: ind id
 #: zypp/LanguageCode.cc:565
 msgid "Indonesian"
 msgstr "Isi-Indonesia"
 
+#. language code: ine
+#: zypp/LanguageCode.cc:567
+msgid "Indo-European (Other)"
+msgstr "Isi-Indo-Europe (Esinye)"
+
 #. language code: inh
 #: zypp/LanguageCode.cc:569
 msgid "Ingush"
 msgstr "Isi-Ingush"
 
-#: zypp/target/TargetImpl.cc:1219 zypp/target/TargetImpl.cc:1288
-#: zypp/target/TargetImpl.cc:1640
-#: zypp/target/TargetImpl.commitFindFileConflicts.cc:166
-msgid "Installation has been aborted as directed."
-msgstr "Ukufaka kuyekiwe njengoba kunikezwe isiqondiso."
-
-#. language code: ina ia
-#: zypp/LanguageCode.cc:561
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr "Isi-Interlingua (Inhlangano Yomhlaba Wonke Esiza Ngezilimi)"
-
-#. language code: ile ie
-#: zypp/LanguageCode.cc:557
-msgid "Interlingue"
-msgstr "Isi-Interlingue"
-
-#. language code: iku iu
-#: zypp/LanguageCode.cc:555
-msgid "Inuktitut"
-msgstr "Isi-Inuktitut"
-
 #. language code: ipk ik
 #: zypp/LanguageCode.cc:571
 msgid "Inupiaq"
 msgstr "Isi-Inupiaq"
 
-#: zypp/url/UrlBase.cc:180
-#, c-format, boost-format
-msgid "Invalid %s component"
-msgstr "Ingxenyana engekho emthethweni %s"
-
-#: zypp/url/UrlBase.cc:173
-#, c-format, boost-format
-msgid "Invalid %s component '%s'"
-msgstr "Ingxenyana '%s' engekho emthethweni %s"
-
-#: zypp/Url.cc:153
-#, c-format, boost-format
-msgid "Invalid LDAP URL query parameter '%s'"
-msgstr "Ipharamitha yombuzo ye-LDAP URL enganembile '%s'"
-
-#: zypp/Url.cc:114
-msgid "Invalid LDAP URL query string"
-msgstr "Uhlu lombuzo lwe-LDAP URL olunganembile"
-
-#: zypp/url/UrlBase.cc:830
-#, c-format, boost-format
-msgid "Invalid Url scheme '%s'"
-msgstr "Uhlelo lwe-Url olungekho emthethweni '%s'"
-
-#: zypp/Url.cc:313
-msgid "Invalid empty Url object reference"
-msgstr "Into engenalutho ye-Url okubhekiselwe kuyo ayinembile"
-
-#: zypp/url/UrlBase.cc:1049
-#, c-format, boost-format
-msgid "Invalid host component '%s'"
-msgstr "Ingxenyana engekho emthethweni '%s'"
-
-#: zypp/url/UrlUtils.cc:283
-msgid "Invalid parameter array join separator character"
-msgstr "Iqoqo lepharamitha elinganembile lihlanganisa uhlamvu oluhlukanisayo"
-
-#: zypp/url/UrlUtils.cc:173
-msgid "Invalid parameter array split separator character"
-msgstr "Iqoqo lepharamitha elinganembile lihlakaza uhlamvu oluhlukanisayo"
-
-#: zypp/url/UrlUtils.cc:213
-msgid "Invalid parameter map split separator character"
-msgstr "Ibalazwe lepharamitha elinganembile lihlakaza uhlamvu oluhlukanisayo"
-
-#: zypp/url/UrlBase.cc:1081
-#, c-format, boost-format
-msgid "Invalid port component '%s'"
-msgstr "Ingxenyana engekho emthethweni '%s'"
-
-#: zypp/base/StrMatcher.cc:158
-#, fuzzy, c-format, boost-format
-msgid "Invalid regular expression '%s'"
-msgstr "Uhlelo lwe-Url olungekho emthethweni '%s'"
-
-#: zypp/base/StrMatcher.cc:157
-#, c-format, boost-format
-msgid "Invalid regular expression '%s': regcomp returned %d"
-msgstr ""
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1701
-#, fuzzy, c-format, boost-format
-msgid "Invalid repo file name at '%s'"
-msgstr "Igama lefayela yokuthekelisa engekho emthethweni."
-
-#. :IRQ:368:
-#: zypp/CountryCode.cc:264
-msgid "Iran"
-msgstr "Iran"
-
 #. language code: ira
 #: zypp/LanguageCode.cc:573
 msgid "Iranian (Other)"
 msgstr "Isi-Irani (Esinye)"
 
-#. :IOT:086:
-#: zypp/CountryCode.cc:263
-msgid "Iraq"
-msgstr "Iraq"
-
-#. :IDN:360:
-#: zypp/CountryCode.cc:258
-msgid "Ireland"
-msgstr "Ireland"
-
-#. language code: gle ga
-#: zypp/LanguageCode.cc:481
-msgid "Irish"
-msgstr "Isi-Irish"
-
-#. language code: mga
-#: zypp/LanguageCode.cc:733
-msgid "Irish, Middle (900-1200)"
-msgstr "Isi-Irish, Maphakathi (900-1200)"
-
-#. language code: sga
-#: zypp/LanguageCode.cc:939
-msgid "Irish, Old (to 900)"
-msgstr "Isi-Irish, Esidala (ukuya ku-900)"
-
 #. language code: iro
 #: zypp/LanguageCode.cc:575
 msgid "Iroquoian Languages"
 msgstr "Izilimi Zase-Iraqi"
 
-#. :ISR:376:
-#: zypp/CountryCode.cc:260
-msgid "Isle of Man"
-msgstr ""
-
-#. :IRL:372:
-#: zypp/CountryCode.cc:259
-msgid "Israel"
-msgstr "Israel"
-
 #. language code: ita it
 #: zypp/LanguageCode.cc:577
 msgid "Italian"
 msgstr "IsiNtaliyane"
 
-#. :ISL:352:
-#: zypp/CountryCode.cc:266
-msgid "Italy"
-msgstr "Italy"
-
-#: zypp/CountryCode.cc:268
-msgid "Jamaica"
-msgstr "Jamaica"
+#. language code: jav jv
+#: zypp/LanguageCode.cc:579
+msgid "Javanese"
+msgstr "IsiJavani"
 
-#. :JOR:400:
-#: zypp/CountryCode.cc:270
-msgid "Japan"
-msgstr "Japan"
+#. language code: jbo
+#: zypp/LanguageCode.cc:581
+msgid "Lojban"
+msgstr "IsiLobja"
 
 #. language code: jpn ja
 #: zypp/LanguageCode.cc:583
 msgid "Japanese"
 msgstr "AmaJapane"
 
-#. language code: jav jv
-#: zypp/LanguageCode.cc:579
-msgid "Javanese"
-msgstr "IsiJavani"
-
-#. :ITA:380:
-#: zypp/CountryCode.cc:267
-msgid "Jersey"
-msgstr ""
-
-#. :JAM:388:
-#: zypp/CountryCode.cc:269
-msgid "Jordan"
-msgstr "Jordan"
+#. language code: jpr
+#: zypp/LanguageCode.cc:585
+msgid "Judeo-Persian"
+msgstr "IsiPheresiya EsiyisiJuda"
 
 #. language code: jrb
 #: zypp/LanguageCode.cc:587
 msgid "Judeo-Arabic"
 msgstr "Isi-Arabhu EsiyisiJuda"
 
-#. language code: jpr
-#: zypp/LanguageCode.cc:585
-msgid "Judeo-Persian"
-msgstr "IsiPheresiya EsiyisiJuda"
-
-#. language code: kbd
-#: zypp/LanguageCode.cc:611
-msgid "Kabardian"
-msgstr "IsiKabard"
+#. language code: kaa
+#: zypp/LanguageCode.cc:589
+msgid "Kara-Kalpak"
+msgstr "IsiKara-Kalpak"
 
 #. language code: kab
 #: zypp/LanguageCode.cc:591
@@ -2236,11 +2905,6 @@ msgstr "IsiKachin"
 msgid "Kalaallisut"
 msgstr "IsiKalaallisut"
 
-#. language code: xal
-#: zypp/LanguageCode.cc:1125
-msgid "Kalmyk"
-msgstr "IsiKalmyk"
-
 #. language code: kam
 #: zypp/LanguageCode.cc:597
 msgid "Kamba"
@@ -2251,21 +2915,6 @@ msgstr "IsiKamba"
 msgid "Kannada"
 msgstr "IsiKannada"
 
-#. language code: kau kr
-#: zypp/LanguageCode.cc:605
-msgid "Kanuri"
-msgstr "IsiKanuri"
-
-#. language code: kaa
-#: zypp/LanguageCode.cc:589
-msgid "Kara-Kalpak"
-msgstr "IsiKara-Kalpak"
-
-#. language code: krc
-#: zypp/LanguageCode.cc:641
-msgid "Karachay-Balkar"
-msgstr "IsiKarachay-Balkar"
-
 #. language code: kar
 #: zypp/LanguageCode.cc:601
 msgid "Karen"
@@ -2276,10 +2925,10 @@ msgstr "IsiKaren"
 msgid "Kashmiri"
 msgstr "IsiKashmiri"
 
-#. language code: csb
-#: zypp/LanguageCode.cc:365
-msgid "Kashubian"
-msgstr "IsiKashubi"
+#. language code: kau kr
+#: zypp/LanguageCode.cc:605
+msgid "Kanuri"
+msgstr "IsiKanuri"
 
 #. language code: kaw
 #: zypp/LanguageCode.cc:607
@@ -2291,31 +2940,26 @@ msgstr "IsiKawi"
 msgid "Kazakh"
 msgstr "IsiKazakh"
 
-#. :CYM:136:
-#: zypp/CountryCode.cc:281
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
-
-#. :JPN:392:
-#: zypp/CountryCode.cc:271
-msgid "Kenya"
-msgstr "Kenya"
+#. language code: kbd
+#: zypp/LanguageCode.cc:611
+msgid "Kabardian"
+msgstr "IsiKabard"
 
 #. language code: kha
 #: zypp/LanguageCode.cc:613
 msgid "Khasi"
-msgstr "IsiKhasi"
-
-#. language code: khm km
-#: zypp/LanguageCode.cc:617
-msgid "Khmer"
-msgstr "IsiKhmer"
+msgstr "IsiKhasi"
 
 #. language code: khi
 #: zypp/LanguageCode.cc:615
 msgid "Khoisan (Other)"
 msgstr "IsiKhoisan (Esinye)"
 
+#. language code: khm km
+#: zypp/LanguageCode.cc:617
+msgid "Khmer"
+msgstr "IsiKhmer"
+
 #. language code: kho
 #: zypp/LanguageCode.cc:619
 msgid "Khotanese"
@@ -2326,11 +2970,6 @@ msgstr "IsiKhotanese"
 msgid "Kikuyu"
 msgstr "IsiKikuyu"
 
-#. language code: kmb
-#: zypp/LanguageCode.cc:627
-msgid "Kimbundu"
-msgstr "IsiKimbundu"
-
 #. language code: kin rw
 #: zypp/LanguageCode.cc:623
 msgid "Kinyarwanda"
@@ -2341,15 +2980,15 @@ msgstr "IsiKinyarwanda"
 msgid "Kirghiz"
 msgstr "IsiKrghiz"
 
-#. :KHM:116:
-#: zypp/CountryCode.cc:274
-msgid "Kiribati"
-msgstr "Kiribati"
+#. language code: kmb
+#: zypp/LanguageCode.cc:627
+msgid "Kimbundu"
+msgstr "IsiKimbundu"
 
-#. language code: tlh
-#: zypp/LanguageCode.cc:1047
-msgid "Klingon"
-msgstr "IsiKlingon"
+#. language code: kok
+#: zypp/LanguageCode.cc:629
+msgid "Konkani"
+msgstr "IsiKonkani"
 
 #. language code: kom kv
 #: zypp/LanguageCode.cc:631
@@ -2361,11 +3000,6 @@ msgstr "IsiKomi"
 msgid "Kongo"
 msgstr "IsiKongo"
 
-#. language code: kok
-#: zypp/LanguageCode.cc:629
-msgid "Konkani"
-msgstr "IsiKonkani"
-
 #. language code: kor ko
 #: zypp/LanguageCode.cc:635
 msgid "Korean"
@@ -2381,11 +3015,21 @@ msgstr "IsiKosrae"
 msgid "Kpelle"
 msgstr "IsiKpelle"
 
+#. language code: krc
+#: zypp/LanguageCode.cc:641
+msgid "Karachay-Balkar"
+msgstr "IsiKarachay-Balkar"
+
 #. language code: kro
 #: zypp/LanguageCode.cc:643
 msgid "Kru"
 msgstr "IsiKru"
 
+#. language code: kru
+#: zypp/LanguageCode.cc:645
+msgid "Kurukh"
+msgstr "IsiKurukh"
+
 #. language code: kua kj
 #: zypp/LanguageCode.cc:647
 msgid "Kuanyama"
@@ -2401,26 +3045,11 @@ msgstr "IsiKumyk"
 msgid "Kurdish"
 msgstr "IsiKurdu"
 
-#. language code: kru
-#: zypp/LanguageCode.cc:645
-msgid "Kurukh"
-msgstr "IsiKurukh"
-
 #. language code: kut
 #: zypp/LanguageCode.cc:653
 msgid "Kutenai"
 msgstr "IsiKutenai"
 
-#. :KOR:410:
-#: zypp/CountryCode.cc:279
-msgid "Kuwait"
-msgstr "Kuwait"
-
-#. :KEN:404:
-#: zypp/CountryCode.cc:272
-msgid "Kyrgyzstan"
-msgstr "Kyrgyzstan"
-
 #. language code: lad
 #: zypp/LanguageCode.cc:655
 msgid "Ladino"
@@ -2441,68 +3070,21 @@ msgstr "IsiLamba"
 msgid "Lao"
 msgstr "IsiLao"
 
-#. :KAZ:398:
-#: zypp/CountryCode.cc:282
-msgid "Lao People's Democratic Republic"
-msgstr "Lao People's Democratic Republic"
-
 #. language code: lat la
 #: zypp/LanguageCode.cc:663
 msgid "Latin"
 msgstr "IsiLatini"
 
-#. :LUX:442:
-#: zypp/CountryCode.cc:291
-msgid "Latvia"
-msgstr "Latvia"
-
 #. language code: lav lv
 #: zypp/LanguageCode.cc:665
 msgid "Latvian"
 msgstr "IsiLatvia"
 
-#. :LAO:418:
-#: zypp/CountryCode.cc:283
-msgid "Lebanon"
-msgstr "Lebanon"
-
-#. :LBR:430:
-#: zypp/CountryCode.cc:288
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: zypp/VendorSupportOptions.cc:20
-msgid "Level 1"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:23
-msgid "Level 2"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:26
-msgid "Level 3"
-msgstr ""
-
 #. language code: lez
 #: zypp/LanguageCode.cc:667
 msgid "Lezghian"
 msgstr "IsiLezghia"
 
-#. :LKA:144:
-#: zypp/CountryCode.cc:287
-msgid "Liberia"
-msgstr "Liberia"
-
-#. :LVA:428:
-#: zypp/CountryCode.cc:292
-msgid "Libya"
-msgstr "Libya"
-
-#. :LCA:662:
-#: zypp/CountryCode.cc:285
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
 #. language code: lim li
 #: zypp/LanguageCode.cc:669
 msgid "Limburgan"
@@ -2513,61 +3095,46 @@ msgstr "IsiLimburg"
 msgid "Lingala"
 msgstr "IsiLingala"
 
-#. :LSO:426:
-#: zypp/CountryCode.cc:289
-msgid "Lithuania"
-msgstr "Lithuania"
-
 #. language code: lit lt
 #: zypp/LanguageCode.cc:673
 msgid "Lithuanian"
 msgstr "IsiLithania"
 
-#: zypp/media/MediaException.cc:215
-#, c-format, boost-format
-msgid "Location '%s' is temporarily unaccessible."
-msgstr ""
-
-#. language code: jbo
-#: zypp/LanguageCode.cc:581
-msgid "Lojban"
-msgstr "IsiLobja"
-
-#. language code: nds
-#: zypp/LanguageCode.cc:791
-msgid "Low German"
-msgstr "IsiJalimane Esiphansi"
-
-#. language code: dsb
-#: zypp/LanguageCode.cc:395
-msgid "Lower Sorbian"
-msgstr "IsiSorbia Sangezansi"
+#. language code: lol
+#: zypp/LanguageCode.cc:675
+msgid "Mongo"
+msgstr "IsiMongo"
 
 #. language code: loz
 #: zypp/LanguageCode.cc:677
 msgid "Lozi"
 msgstr "IsiLozi"
 
-#. language code: lub lu
-#: zypp/LanguageCode.cc:683
-msgid "Luba-Katanga"
-msgstr "IsiLuba-Katanga"
+#. language code: ltz lb
+#: zypp/LanguageCode.cc:679
+msgid "Luxembourgish"
+msgstr "IsiLuxembourg"
 
 #. language code: lua
 #: zypp/LanguageCode.cc:681
 msgid "Luba-Lulua"
 msgstr "IsiLuba-Lulua"
 
+#. language code: lub lu
+#: zypp/LanguageCode.cc:683
+msgid "Luba-Katanga"
+msgstr "IsiLuba-Katanga"
+
+#. language code: lug lg
+#: zypp/LanguageCode.cc:685
+msgid "Ganda"
+msgstr "IsiGanda"
+
 #. language code: lui
 #: zypp/LanguageCode.cc:687
 msgid "Luiseno"
 msgstr "IsiLuiseno"
 
-#. language code: smj
-#: zypp/LanguageCode.cc:967
-msgid "Lule Sami"
-msgstr "IsiSami SamaLule"
-
 #. language code: lun
 #: zypp/LanguageCode.cc:689
 msgid "Lunda"
@@ -2583,35 +3150,11 @@ msgstr "IsiLuo (Ekenya naseTanzania)"
 msgid "Lushai"
 msgstr "IsiLushai"
 
-#. :LTU:440:
-#: zypp/CountryCode.cc:290
-msgid "Luxembourg"
-msgstr "Luxembourg"
-
-#. language code: ltz lb
-#: zypp/LanguageCode.cc:679
-msgid "Luxembourgish"
-msgstr "IsiLuxembourg"
-
-#. :MNG:496:
-#: zypp/CountryCode.cc:304
-msgid "Macao"
-msgstr "Macao"
-
-#. :MHL:584:
-#: zypp/CountryCode.cc:300
-msgid "Macedonia"
-msgstr "Macedonia"
-
 #. language code: mac mkd mk
 #: zypp/LanguageCode.cc:695 zypp/LanguageCode.cc:697
 msgid "Macedonian"
 msgstr "IsiMacedonia"
 
-#: zypp/CountryCode.cc:298
-msgid "Madagascar"
-msgstr "Madagascar"
-
 #. language code: mad
 #: zypp/LanguageCode.cc:699
 msgid "Madurese"
@@ -2622,6 +3165,11 @@ msgstr "IsiMadurese"
 msgid "Magahi"
 msgstr "IsiMagahi"
 
+#. language code: mah mh
+#: zypp/LanguageCode.cc:703
+msgid "Marshallese"
+msgstr "IsiMarshall"
+
 #. language code: mai
 #: zypp/LanguageCode.cc:705
 msgid "Maithili"
@@ -2632,178 +3180,60 @@ msgstr "IsiMaithili"
 msgid "Makasar"
 msgstr "IsiMakasar"
 
-#. language code: mlg mg
-#: zypp/LanguageCode.cc:743
-msgid "Malagasy"
-msgstr "IsiMalagasy"
-
-#. :MDV:462:
-#: zypp/CountryCode.cc:312
-msgid "Malawi"
-msgstr "Malawi"
-
-#. language code: may msa ms
-#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
-msgid "Malay"
-msgstr "IsiMalay"
-
 #. language code: mal ml
-#: zypp/LanguageCode.cc:709
-msgid "Malayalam"
-msgstr "IsiMalayal"
-
-#. :MEX:484:
-#: zypp/CountryCode.cc:314
-msgid "Malaysia"
-msgstr "Malaysia"
-
-#. :MUS:480:
-#: zypp/CountryCode.cc:311
-msgid "Maldives"
-msgstr "Maldives"
-
-#: zypp/media/MediaException.cc:115
-msgid "Malformed URI"
-msgstr ""
-
-#. :MKD:807:
-#: zypp/CountryCode.cc:301
-msgid "Mali"
-msgstr "Mali"
-
-#. :MSR:500:
-#: zypp/CountryCode.cc:309
-msgid "Malta"
-msgstr "Malta"
-
-#. language code: mlt mt
-#: zypp/LanguageCode.cc:745
-msgid "Maltese"
-msgstr "IsiMaltese"
-
-#. language code: mnc
-#: zypp/LanguageCode.cc:747
-msgid "Manchu"
-msgstr "IsiManchu"
-
-#. language code: mdr
-#: zypp/LanguageCode.cc:729
-msgid "Mandar"
-msgstr "IsiMandar"
-
-#. language code: man
-#: zypp/LanguageCode.cc:711
-msgid "Mandingo"
-msgstr "IsiMandingo"
-
-#. language code: mni
-#: zypp/LanguageCode.cc:749
-msgid "Manipuri"
-msgstr "IsiManipuri"
-
-#. language code: mno
-#: zypp/LanguageCode.cc:751
-msgid "Manobo Languages"
-msgstr "Izilimi ZaManobo"
+#: zypp/LanguageCode.cc:709
+msgid "Malayalam"
+msgstr "IsiMalayal"
 
-#. language code: glv gv
-#: zypp/LanguageCode.cc:485
-msgid "Manx"
-msgstr "IsiManx"
+#. language code: man
+#: zypp/LanguageCode.cc:711
+msgid "Mandingo"
+msgstr "IsiMandingo"
 
 #. language code: mao mri mi
 #: zypp/LanguageCode.cc:713 zypp/LanguageCode.cc:715
 msgid "Maori"
 msgstr "IsiMaori"
 
+#. language code: map
+#: zypp/LanguageCode.cc:717
+msgid "Austronesian (Other)"
+msgstr "Isi-Austronesia (Esinye)"
+
 #. language code: mar mr
 #: zypp/LanguageCode.cc:719
 msgid "Marathi"
 msgstr "IsiMarathi"
 
-#. language code: chm
-#: zypp/LanguageCode.cc:329
-msgid "Mari"
-msgstr "IsiMari"
-
-#. :MDG:450:
-#: zypp/CountryCode.cc:299
-msgid "Marshall Islands"
-msgstr "Marshall Islands"
-
-#. language code: mah mh
-#: zypp/LanguageCode.cc:703
-msgid "Marshallese"
-msgstr "IsiMarshall"
-
-#. :MNP:580:
-#: zypp/CountryCode.cc:306
-msgid "Martinique"
-msgstr "Martinique"
-
-#. language code: mwr
-#: zypp/LanguageCode.cc:769
-msgid "Marwari"
-msgstr "IsiMarwari"
-
 #. language code: mas
 #: zypp/LanguageCode.cc:721
 msgid "Masai"
 msgstr "IsiMasai"
 
-#. :MTQ:474:
-#: zypp/CountryCode.cc:307
-msgid "Mauritania"
-msgstr "Mauritania"
-
-#. :MLT:470:
-#: zypp/CountryCode.cc:310
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#. language code: myn
-#: zypp/LanguageCode.cc:771
-msgid "Mayan Languages"
-msgstr "Izilimi ZamaMaya"
-
-#. :YEM:887:
-#: zypp/CountryCode.cc:400
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: zypp/media/MediaException.cc:169
-#, c-format, boost-format
-msgid "Media source '%s' does not contain the desired medium"
-msgstr ""
-
-#: zypp/media/MediaException.cc:175
-#, c-format, boost-format
-msgid "Medium '%s' is in use by another instance"
-msgstr ""
+#. language code: may msa ms
+#: zypp/LanguageCode.cc:723 zypp/LanguageCode.cc:725
+msgid "Malay"
+msgstr "IsiMalay"
 
-#: zypp/media/MediaException.cc:72
-msgid "Medium not attached"
-msgstr ""
+#. language code: mdf
+#: zypp/LanguageCode.cc:727
+msgid "Moksha"
+msgstr "IsiMoksha"
 
-#: zypp/media/MediaException.cc:53
-#, c-format, boost-format
-msgid "Medium not opened when trying to perform action '%s'."
-msgstr ""
+#. language code: mdr
+#: zypp/LanguageCode.cc:729
+msgid "Mandar"
+msgstr "IsiMandar"
 
 #. language code: men
 #: zypp/LanguageCode.cc:731
 msgid "Mende"
 msgstr "IsiMende"
 
-#. :FRA:250:
-#: zypp/CountryCode.cc:231
-msgid "Metropolitan France"
-msgstr "Metropolitan France"
-
-#. :MWI:454:
-#: zypp/CountryCode.cc:313
-msgid "Mexico"
-msgstr "Mexico"
+#. language code: mga
+#: zypp/LanguageCode.cc:733
+msgid "Irish, Middle (900-1200)"
+msgstr "Isi-Irish, Maphakathi (900-1200)"
 
 #. language code: mic
 #: zypp/LanguageCode.cc:735
@@ -2815,87 +3245,61 @@ msgstr "IsiMi'kmaq"
 msgid "Minangkabau"
 msgstr "IsiMinangkabau"
 
-#. language code: mwl
-#: zypp/LanguageCode.cc:767
-msgid "Mirandese"
-msgstr "IsiMirandese"
-
 #. language code: mis
 #: zypp/LanguageCode.cc:739
 msgid "Miscellaneous Languages"
 msgstr "Izilimi Eziyingxubevange"
 
+#. language code: mkh
+#: zypp/LanguageCode.cc:741
+msgid "Mon-Khmer (Other)"
+msgstr "IsiMon-Khmer (Ezinye)"
+
+#. language code: mlg mg
+#: zypp/LanguageCode.cc:743
+msgid "Malagasy"
+msgstr "IsiMalagasy"
+
+#. language code: mlt mt
+#: zypp/LanguageCode.cc:745
+msgid "Maltese"
+msgstr "IsiMaltese"
+
+#. language code: mnc
+#: zypp/LanguageCode.cc:747
+msgid "Manchu"
+msgstr "IsiManchu"
+
+#. language code: mni
+#: zypp/LanguageCode.cc:749
+msgid "Manipuri"
+msgstr "IsiManipuri"
+
+#. language code: mno
+#: zypp/LanguageCode.cc:751
+msgid "Manobo Languages"
+msgstr "Izilimi ZaManobo"
+
 #. language code: moh
 #: zypp/LanguageCode.cc:753
 msgid "Mohawk"
 msgstr "IsiMohawk"
 
-#. language code: mdf
-#: zypp/LanguageCode.cc:727
-msgid "Moksha"
-msgstr "IsiMoksha"
-
 #. language code: mol mo
 #: zypp/LanguageCode.cc:755
 msgid "Moldavian"
 msgstr "IsiMoldavia"
 
-#. :MCO:492:
-#: zypp/CountryCode.cc:295
-msgid "Moldova"
-msgstr "Moldova"
-
-#. language code: mkh
-#: zypp/LanguageCode.cc:741
-msgid "Mon-Khmer (Other)"
-msgstr "IsiMon-Khmer (Ezinye)"
-
-#. :MAR:504:
-#: zypp/CountryCode.cc:294
-msgid "Monaco"
-msgstr "Monaco"
-
-#. language code: lol
-#: zypp/LanguageCode.cc:675
-msgid "Mongo"
-msgstr "IsiMongo"
-
-#. :MMR:104:
-#: zypp/CountryCode.cc:303
-msgid "Mongolia"
-msgstr "Mongolia"
-
 #. language code: mon mn
 #: zypp/LanguageCode.cc:757
 msgid "Mongolian"
 msgstr "IsiMongolia"
 
-#. :MDA:498:
-#: zypp/CountryCode.cc:296
-#, fuzzy
-msgid "Montenegro"
-msgstr "IsiMongo"
-
-#. :MRT:478:
-#: zypp/CountryCode.cc:308
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#. :LBY:434:
-#: zypp/CountryCode.cc:293
-msgid "Morocco"
-msgstr "Morocco"
-
 #. language code: mos
 #: zypp/LanguageCode.cc:759
 msgid "Mossi"
 msgstr "IsiMossi"
 
-#. :MYS:458:
-#: zypp/CountryCode.cc:315
-msgid "Mozambique"
-msgstr "Mozambique"
-
 #. language code: mul
 #: zypp/LanguageCode.cc:761
 msgid "Multiple Languages"
@@ -2906,211 +3310,141 @@ msgstr "Izilimi Eziningi"
 msgid "Munda languages"
 msgstr "Izilimi ZamaMunda"
 
-#. :MLI:466:
-#: zypp/CountryCode.cc:302
-msgid "Myanmar"
-msgstr "Myanmar"
+#. language code: mus
+#: zypp/LanguageCode.cc:765
+msgid "Creek"
+msgstr "IsiCreek"
+
+#. language code: mwl
+#: zypp/LanguageCode.cc:767
+msgid "Mirandese"
+msgstr "IsiMirandese"
+
+#. language code: mwr
+#: zypp/LanguageCode.cc:769
+msgid "Marwari"
+msgstr "IsiMarwari"
+
+#. language code: myn
+#: zypp/LanguageCode.cc:771
+msgid "Mayan Languages"
+msgstr "Izilimi ZamaMaya"
+
+#. language code: myv
+#: zypp/LanguageCode.cc:773
+msgid "Erzya"
+msgstr "Isi-Erzya"
 
 #. language code: nah
 #: zypp/LanguageCode.cc:775
 msgid "Nahuatl"
 msgstr "IsiNahuatl"
 
-#. :MOZ:508:
-#: zypp/CountryCode.cc:316
-msgid "Namibia"
-msgstr "Namibia"
+#. language code: nai
+#: zypp/LanguageCode.cc:777
+msgid "North American Indian"
+msgstr "IsiNdiya SaseNyakatho Melika"
 
-#. :NPL:524:
-#. language code: nau na
-#: zypp/CountryCode.cc:325 zypp/LanguageCode.cc:781
-msgid "Nauru"
-msgstr "Nauru"
+#. language code: nap
+#: zypp/LanguageCode.cc:779
+msgid "Neapolitan"
+msgstr "IsiNeapoli"
 
 #. language code: nav nv
 #: zypp/LanguageCode.cc:783
 msgid "Navajo"
 msgstr "Navajo"
 
-#. language code: nde nd
-#: zypp/LanguageCode.cc:787
-msgid "Ndebele, North"
-msgstr "IsiNdebele, saseNyakatho"
-
 #. language code: nbl nr
 #: zypp/LanguageCode.cc:785
 msgid "Ndebele, South"
 msgstr "IsiNdebele, saseNingizimu"
 
-#. language code: ndo ng
-#: zypp/LanguageCode.cc:789
-msgid "Ndonga"
-msgstr "IsiNdonga"
-
-#. language code: nap
-#: zypp/LanguageCode.cc:779
-msgid "Neapolitan"
-msgstr "IsiNeapoli"
+#. language code: nde nd
+#: zypp/LanguageCode.cc:787
+msgid "Ndebele, North"
+msgstr "IsiNdebele, saseNyakatho"
 
-#. :NOR:578:
-#: zypp/CountryCode.cc:324
-msgid "Nepal"
-msgstr "Nepal"
+#. language code: ndo ng
+#: zypp/LanguageCode.cc:789
+msgid "Ndonga"
+msgstr "IsiNdonga"
 
-#. language code: new
-#: zypp/LanguageCode.cc:795
-msgid "Nepal Bhasa"
-msgstr "IsiNepali Bhasha"
+#. language code: nds
+#: zypp/LanguageCode.cc:791
+msgid "Low German"
+msgstr "IsiJalimane Esiphansi"
 
 #. language code: nep ne
 #: zypp/LanguageCode.cc:793
 msgid "Nepali"
 msgstr "IsiNepali"
 
-#. :NIC:558:
-#: zypp/CountryCode.cc:322
-msgid "Netherlands"
-msgstr "Netherlands"
-
-#. :ARM:051:
-#: zypp/CountryCode.cc:165
-msgid "Netherlands Antilles"
-msgstr "Netherlands Antilles"
-
-#. :NAM:516:
-#: zypp/CountryCode.cc:317
-msgid "New Caledonia"
-msgstr "New Caledonia"
-
-#. :NIU:570:
-#: zypp/CountryCode.cc:327
-msgid "New Zealand"
-msgstr "New Zealand"
-
-#: zypp/target/TargetImpl.cc:658
-msgid "New update message"
-msgstr ""
+#. language code: new
+#: zypp/LanguageCode.cc:795
+msgid "Nepal Bhasa"
+msgstr "IsiNepali Bhasha"
 
 #. language code: nia
 #: zypp/LanguageCode.cc:797
 msgid "Nias"
 msgstr "IsiNias"
 
-#. :NGA:566:
-#: zypp/CountryCode.cc:321
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#. :NCL:540:
-#: zypp/CountryCode.cc:318
-msgid "Niger"
-msgstr "Niger"
-
 #. language code: nic
 #: zypp/LanguageCode.cc:799
 msgid "Niger-Kordofanian (Other)"
 msgstr "IsiNiger-Kordofanian (Esinye)"
 
-#. :NFK:574:
-#: zypp/CountryCode.cc:320
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#. language code: ssa
-#: zypp/LanguageCode.cc:995
-msgid "Nilo-Saharan (Other)"
-msgstr "IsiSahara EsiyisiNilo (Esinye)"
-
-#. :NRU:520:
-#: zypp/CountryCode.cc:326
-msgid "Niue"
-msgstr "Niue"
-
 #. language code: niu
 #: zypp/LanguageCode.cc:801
 msgid "Niuean"
 msgstr "IsNiue"
 
-#. Defined CountryCode constants
-#. Defined LanguageCode constants
-#: zypp/CountryCode.cc:149 zypp/LanguageCode.cc:148
-msgid "No Code"
-msgstr "Ayikho Ikhodi"
+#. language code: nno nn
+#: zypp/LanguageCode.cc:803
+msgid "Norwegian Nynorsk"
+msgstr "IsiNynorsk SaseNorway"
 
-#: zypp/repo/RepoProvideFile.cc:265
-#, fuzzy
-msgid "No url in repository."
-msgstr "Ifayela %1 ayitholakali enqolobaneni yamafayela."
+#. language code: nob nb
+#: zypp/LanguageCode.cc:805
+msgid "Norwegian Bokmal"
+msgstr "IsiBokmal SaseNorway"
 
 #. language code: nog
 #: zypp/LanguageCode.cc:807
 msgid "Nogai"
 msgstr "IsiNogai"
 
-#. :NER:562:
-#: zypp/CountryCode.cc:319
-msgid "Norfolk Island"
-msgstr "Norfolk Island"
-
 #. language code: non
 #: zypp/LanguageCode.cc:809
 msgid "Norse, Old"
 msgstr "IsiNorse, Esidala"
 
-#. language code: nai
-#: zypp/LanguageCode.cc:777
-msgid "North American Indian"
-msgstr "IsiNdiya SaseNyakatho Melika"
-
-#. :KNA:659:
-#: zypp/CountryCode.cc:277
-msgid "North Korea"
-msgstr "North Korea"
-
-#. :MAC:446:
-#: zypp/CountryCode.cc:305
-msgid "Northern Mariana Islands"
-msgstr "Northern Mariana Islands"
-
-#. language code: sme se
-#: zypp/LanguageCode.cc:963
-msgid "Northern Sami"
-msgstr "IsiSami SaseNyakatho"
-
-#. language code: nso
-#: zypp/LanguageCode.cc:813
-msgid "Northern Sotho"
-msgstr "IsiSuthu SaseNyakatho (isiPedi)"
-
-#. :NLD:528:
-#: zypp/CountryCode.cc:323
-msgid "Norway"
-msgstr "Norway"
-
 #. language code: nor no
 #: zypp/LanguageCode.cc:811
 msgid "Norwegian"
 msgstr "IsiNorway"
 
-#. language code: nob nb
-#: zypp/LanguageCode.cc:805
-msgid "Norwegian Bokmal"
-msgstr "IsiBokmal SaseNorway"
-
-#. language code: nno nn
-#: zypp/LanguageCode.cc:803
-msgid "Norwegian Nynorsk"
-msgstr "IsiNynorsk SaseNorway"
-
-#: zypp/target/hal/HalContext.cc:851
-msgid "Not a CDROM drive"
-msgstr "Akuyona i-CDROM drive"
+#. language code: nso
+#: zypp/LanguageCode.cc:813
+msgid "Northern Sotho"
+msgstr "IsiSuthu SaseNyakatho (isiPedi)"
 
 #. language code: nub
 #: zypp/LanguageCode.cc:815
 msgid "Nubian Languages"
 msgstr "Izilimi zamaNubi"
 
+#. language code: nwc
+#: zypp/LanguageCode.cc:817
+msgid "Classical Newari"
+msgstr "IsiNewari Sendabuko"
+
+#. language code: nya ny
+#: zypp/LanguageCode.cc:819
+msgid "Chichewa"
+msgstr "IsiChewa"
+
 #. language code: nym
 #: zypp/LanguageCode.cc:821
 msgid "Nyamwezi"
@@ -3131,11 +3465,6 @@ msgstr "IsiNyoro"
 msgid "Nzima"
 msgstr "IsiNzima"
 
-#: zypp/Dep.cc:100
-#, fuzzy
-msgid "Obsoletes"
-msgstr "%s yenza zingasebenzi:%s"
-
 #. language code: oci oc
 #: zypp/LanguageCode.cc:829
 msgid "Occitan (post 1500)"
@@ -3146,20 +3475,6 @@ msgstr "Isi-Occitan (sangemva kuka-1500)"
 msgid "Ojibwa"
 msgstr "Isi-Ojibwa"
 
-#. :NZL:554:
-#: zypp/CountryCode.cc:328
-msgid "Oman"
-msgstr "Oman"
-
-#: zypp/parser/RepoindexFileReader.cc:209
-#, c-format, boost-format
-msgid "One or both of '%s' or '%s' attributes is required."
-msgstr ""
-
-#: zypp/media/MediaException.cc:145
-msgid "Operation not supported by medium"
-msgstr ""
-
 #. language code: ori or
 #: zypp/LanguageCode.cc:833
 msgid "Oriya"
@@ -3180,164 +3495,85 @@ msgstr "Isi-Osage"
 msgid "Ossetian"
 msgstr "Isi-Ossetian"
 
+#. language code: ota
+#: zypp/LanguageCode.cc:841
+msgid "Turkish, Ottoman (1500-1928)"
+msgstr "IsiTurkey, Isi-Ottoman (1500-1928"
+
 #. language code: oto
 #: zypp/LanguageCode.cc:843
 msgid "Otomian Languages"
 msgstr "Izilimi Zama-Otomia"
 
-#. TranslatorExplanation %s = package being checked for integrity
-#: zypp/repo/PackageProvider.cc:157
-#, fuzzy, c-format, boost-format
-msgid ""
-"Package %s seems to be corrupted during transfer. Do you want to retry "
-"retrieval?"
-msgstr ""
-"Iphakheji %s ihlulekile lapho ihlolwa ukuthembeka. Ufuna ukuphinde uzame "
-"ukuyilanda futhi?"
+#. language code: paa
+#: zypp/LanguageCode.cc:845
+msgid "Papuan (Other)"
+msgstr "IsiPapua (Esinye)"
+
+#. language code: pag
+#: zypp/LanguageCode.cc:847
+msgid "Pangasinan"
+msgstr "IsiPangasinan"
 
 #. language code: pal
 #: zypp/LanguageCode.cc:849
 msgid "Pahlavi"
 msgstr "IsiPahlavi"
 
-#. :PHL:608:
-#: zypp/CountryCode.cc:334
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#. :PRT:620:
-#: zypp/CountryCode.cc:341
-msgid "Palau"
-msgstr "Palau"
-
-#. language code: pau
-#: zypp/LanguageCode.cc:857
-msgid "Palauan"
-msgstr "IsiPalauan"
-
-#. :PRI:630:
-#: zypp/CountryCode.cc:339
-msgid "Palestinian Territory"
-msgstr "Palestinian Territory"
-
-#. language code: pli pi
-#: zypp/LanguageCode.cc:869
-msgid "Pali"
-msgstr "IsiPali"
-
 #. language code: pam
 #: zypp/LanguageCode.cc:851
-msgid "Pampanga"
-msgstr "IsiPampanga"
-
-#. :OMN:512:
-#: zypp/CountryCode.cc:329
-msgid "Panama"
-msgstr "Panama"
-
-#. language code: pag
-#: zypp/LanguageCode.cc:847
-msgid "Pangasinan"
-msgstr "IsiPangasinan"
-
-#. language code: pan pa
-#: zypp/LanguageCode.cc:853
-msgid "Panjabi"
-msgstr "IsiPanjabi"
-
-#. language code: pap
-#: zypp/LanguageCode.cc:855
-msgid "Papiamento"
-msgstr "IsiPapiamento"
-
-#. :PYF:258:
-#: zypp/CountryCode.cc:332
-msgid "Papua New Guinea"
-msgstr "Papua New Guinea"
-
-#. language code: paa
-#: zypp/LanguageCode.cc:845
-msgid "Papuan (Other)"
-msgstr "IsiPapua (Esinye)"
-
-#. :PLW:585:
-#: zypp/CountryCode.cc:342
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: zypp/media/MediaException.cc:106
-#, fuzzy, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a directory."
-msgstr "I-%1 ayiyona i-directory."
-
-#: zypp/media/MediaException.cc:98
-#, c-format, boost-format
-msgid "Path '%s' on medium '%s' is not a file."
-msgstr ""
+msgid "Pampanga"
+msgstr "IsiPampanga"
 
-#: zypp/media/MediaException.cc:199
-#, fuzzy, c-format, boost-format
-msgid "Permission to access '%s' denied."
-msgstr "Izimvume zinqatshiwe"
+#. language code: pan pa
+#: zypp/LanguageCode.cc:853
+msgid "Panjabi"
+msgstr "IsiPanjabi"
 
-#. language code: per fas fa
-#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
-msgid "Persian"
-msgstr "IsiPeresiya"
+#. language code: pap
+#: zypp/LanguageCode.cc:855
+msgid "Papiamento"
+msgstr "IsiPapiamento"
+
+#. language code: pau
+#: zypp/LanguageCode.cc:857
+msgid "Palauan"
+msgstr "IsiPalauan"
 
 #. language code: peo
 #: zypp/LanguageCode.cc:859
 msgid "Persian, Old (ca.600-400 B.C.)"
 msgstr "IsiPeresiya, Esidala (ca.600-400 B.C.)"
 
-#. :PAN:591:
-#: zypp/CountryCode.cc:330
-msgid "Peru"
-msgstr "Peru"
+#. language code: per fas fa
+#: zypp/LanguageCode.cc:861 zypp/LanguageCode.cc:863
+msgid "Persian"
+msgstr "IsiPeresiya"
 
 #. language code: phi
 #: zypp/LanguageCode.cc:865
 msgid "Philippine (Other)"
 msgstr "Isi-Philippine (Esinye)"
 
-#. :PNG:598:
-#: zypp/CountryCode.cc:333
-msgid "Philippines"
-msgstr "Philippines"
-
 #. language code: phn
 #: zypp/LanguageCode.cc:867
 msgid "Phoenician"
 msgstr "IsiPhoenicia"
 
-#. :SPM:666:
-#: zypp/CountryCode.cc:337
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: zypp/misc/CheckAccessDeleted.cc:242
-msgid "Please install package 'lsof' first."
-msgstr ""
-
-#. language code: pon
-#: zypp/LanguageCode.cc:873
-msgid "Pohnpeian"
-msgstr "IsiPohnpeian"
-
-#. :PAK:586:
-#: zypp/CountryCode.cc:335
-msgid "Poland"
-msgstr "Poland"
+#. language code: pli pi
+#: zypp/LanguageCode.cc:869
+msgid "Pali"
+msgstr "IsiPali"
 
 #. language code: pol pl
 #: zypp/LanguageCode.cc:871
 msgid "Polish"
 msgstr "IsiPolishi"
 
-#. :PSE:275:
-#: zypp/CountryCode.cc:340
-msgid "Portugal"
-msgstr "Portugal"
+#. language code: pon
+#: zypp/LanguageCode.cc:873
+msgid "Pohnpeian"
+msgstr "IsiPohnpeian"
 
 #. language code: por pt
 #: zypp/LanguageCode.cc:875
@@ -3349,78 +3585,21 @@ msgstr "IsiPutukezi"
 msgid "Prakrit Languages"
 msgstr "Izilimi ZesiPrakrit"
 
-#: zypp/Dep.cc:97
-msgid "Prerequires"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:45
-msgid ""
-"Problem determination, which means technical support designed to provide "
-"compatibility information, installation assistance, usage support, on-going "
-"maintenance and basic troubleshooting. Level 1 Support is not intended to "
-"correct product defect errors."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:48
-msgid ""
-"Problem isolation, which means technical support designed to duplicate "
-"customer problems, isolate problem area and provide resolution for problems "
-"not resolved by Level 1 Support."
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:51
-msgid ""
-"Problem resolution, which means technical support designed to resolve "
-"complex problems by engaging engineering in resolution of product defects "
-"which have been identified by Level 2 Support."
-msgstr ""
-
 #. language code: pro
 #: zypp/LanguageCode.cc:879
 msgid "Provencal, Old (to 1500)"
 msgstr "IsiProvencal, Esidala (ukuya ku-1500)"
 
-#: zypp/Dep.cc:96
-msgid "Provides"
-msgstr ""
-
-#. :PCN:612:
-#: zypp/CountryCode.cc:338
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
 #. language code: pus ps
 #: zypp/LanguageCode.cc:881
 msgid "Pushto"
 msgstr "IsiPushto"
 
-#. :PRY:600:
-#: zypp/CountryCode.cc:343
-msgid "Qatar"
-msgstr "Qatar"
-
 #. language code: que qu
 #: zypp/LanguageCode.cc:883
 msgid "Quechua"
 msgstr "IsiQuenchua"
 
-#: zypp/url/UrlBase.cc:786 zypp/url/UrlBase.cc:1231
-msgid "Query string parsing not supported for this URL"
-msgstr "Ukucazwa kohlu lwemibuzo akusekelwa kule-URL"
-
-#. TranslatorExplanation after semicolon is error message
-#. TranslatorExplanation the colon is followed by an error message
-#: zypp/target/rpm/RpmDb.cc:848 zypp/target/rpm/RpmDb.cc:2043
-#: zypp/target/rpm/RpmDb.cc:2189
-#, fuzzy
-msgid "RPM failed: "
-msgstr "ayiphumelelanga"
-
-#. language code: roh rm
-#: zypp/LanguageCode.cc:893
-msgid "Raeto-Romance"
-msgstr "IsiRaeto-Romance"
-
 #. language code: raj
 #: zypp/LanguageCode.cc:885
 msgid "Rajasthani"
@@ -3436,58 +3615,26 @@ msgstr "IsiRapanui"
 msgid "Rarotongan"
 msgstr "IsiRarotonga"
 
-#: zypp/Dep.cc:101
-msgid "Recommends"
-msgstr ""
-
-#: zypp/url/UrlBase.cc:1119 zypp/url/UrlBase.cc:1133
-msgid "Relative path not allowed if authority exists"
-msgstr "Umgudu ongaphelele awuvunyelwe uma kunegunya"
-
-#: zypp/RepoManager.cc:1740
-#, fuzzy, c-format, boost-format
-msgid "Removing repository '%s'"
-msgstr "Ukubuyisela imithombo yokwaziswa"
-
-#: zypp/RepoManager.cc:338
-#, fuzzy
-msgid "Repository alias cannot start with dot."
-msgstr "Igama le-VM alikwazi ukuqala ngenombolo."
-
-#: zypp/parser/RepoindexFileReader.cc:197
-#, c-format, boost-format
-msgid "Required attribute '%s' is missing."
-msgstr ""
-
-#: zypp/Dep.cc:98
-msgid "Requires"
-msgstr ""
-
-#. :QAT:634:
-#: zypp/CountryCode.cc:344
-msgid "Reunion"
-msgstr "Reunion"
-
 #. language code: roa
 #: zypp/LanguageCode.cc:891
 msgid "Romance (Other)"
 msgstr "IsiRomance (Esinye)"
 
-#. :REU:638:
-#: zypp/CountryCode.cc:345
-msgid "Romania"
-msgstr "Romania"
-
-#. language code: rum ron ro
-#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
-msgid "Romanian"
-msgstr "IsiRomania"
+#. language code: roh rm
+#: zypp/LanguageCode.cc:893
+msgid "Raeto-Romance"
+msgstr "IsiRaeto-Romance"
 
 #. language code: rom
 #: zypp/LanguageCode.cc:895
 msgid "Romany"
 msgstr "IsiRomany"
 
+#. language code: rum ron ro
+#: zypp/LanguageCode.cc:897 zypp/LanguageCode.cc:899
+msgid "Romanian"
+msgstr "IsiRomania"
+
 #. language code: run rn
 #: zypp/LanguageCode.cc:901
 msgid "Rundi"
@@ -3498,44 +3645,25 @@ msgstr "IsiRundi"
 msgid "Russian"
 msgstr "IsiRashiya"
 
-#: zypp/CountryCode.cc:347
-msgid "Russian Federation"
-msgstr "Russian Federation"
-
-#. :RUS:643:
-#: zypp/CountryCode.cc:348
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#. :SGP:702:
-#: zypp/CountryCode.cc:355
-msgid "Saint Helena"
-msgstr "Saint Helena"
-
-#. :COM:174:
-#: zypp/CountryCode.cc:276
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts ne-Nevis"
-
-#. :LBN:422:
-#: zypp/CountryCode.cc:284
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+#. language code: sad
+#: zypp/LanguageCode.cc:905
+msgid "Sandawe"
+msgstr "IsiSandawe"
 
-#: zypp/CountryCode.cc:297
-#, fuzzy
-msgid "Saint Martin"
-msgstr "San Marino"
+#. language code: sag sg
+#: zypp/LanguageCode.cc:907
+msgid "Sango"
+msgstr "IsiSango"
 
-#. :POL:616:
-#: zypp/CountryCode.cc:336
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre ne-Miquelon"
+#. language code: sah
+#: zypp/LanguageCode.cc:909
+msgid "Yakut"
+msgstr "IsiYakut"
 
-#. :VAT:336:
-#: zypp/CountryCode.cc:391
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent and the Grenadines"
+#. language code: sai
+#: zypp/LanguageCode.cc:911
+msgid "South American Indian (Other)"
+msgstr "IsiNdiya SaseMelika EseNingizimu (Esinye)"
 
 #. language code: sal
 #: zypp/LanguageCode.cc:913
@@ -3544,74 +3672,44 @@ msgstr "Izilimi ZesiSalisha"
 
 #. language code: sam
 #: zypp/LanguageCode.cc:915
-msgid "Samaritan Aramaic"
-msgstr "Isi-Aramu SaseSamariya"
-
-#. language code: smi
-#: zypp/LanguageCode.cc:965
-msgid "Sami Languages (Other)"
-msgstr "Izilimi ZamaSami (Esinye)"
-
-#. :WLF:876:
-#: zypp/CountryCode.cc:398
-msgid "Samoa"
-msgstr "Samoa"
-
-#. language code: smo sm
-#: zypp/LanguageCode.cc:971
-msgid "Samoan"
-msgstr "IsiSamoa"
-
-#. :SLE:694:
-#: zypp/CountryCode.cc:360
-msgid "San Marino"
-msgstr "San Marino"
-
-#. language code: sad
-#: zypp/LanguageCode.cc:905
-msgid "Sandawe"
-msgstr "IsiSandawe"
-
-#. language code: sag sg
-#: zypp/LanguageCode.cc:907
-msgid "Sango"
-msgstr "IsiSango"
+msgid "Samaritan Aramaic"
+msgstr "Isi-Aramu SaseSamariya"
 
 #. language code: san sa
 #: zypp/LanguageCode.cc:917
 msgid "Sanskrit"
 msgstr "IsiSanskrit"
 
+#. language code: sas
+#: zypp/LanguageCode.cc:919
+msgid "Sasak"
+msgstr "IsiSasak"
+
 #. language code: sat
 #: zypp/LanguageCode.cc:921
 msgid "Santali"
 msgstr "IsiSantali"
 
-#. :SUR:740:
-#: zypp/CountryCode.cc:364
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome ne-Principe"
-
-#. language code: srd sc
-#: zypp/LanguageCode.cc:991
-msgid "Sardinian"
-msgstr "IsiSardinia"
-
-#. language code: sas
-#: zypp/LanguageCode.cc:919
-msgid "Sasak"
-msgstr "IsiSasak"
+#. language code: scc srp sr
+#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
+msgid "Serbian"
+msgstr "IsiSerbia"
 
-#. :RWA:646:
-#: zypp/CountryCode.cc:349
-msgid "Saudi Arabia"
-msgstr "Saudi Arabia"
+#. language code: scn
+#: zypp/LanguageCode.cc:927
+msgid "Sicilian"
+msgstr "IsiSicilia"
 
 #. language code: sco
 #: zypp/LanguageCode.cc:929
 msgid "Scots"
 msgstr "IsiScots"
 
+#. language code: scr hrv hr
+#: zypp/LanguageCode.cc:931 zypp/LanguageCode.cc:933
+msgid "Croatian"
+msgstr "IsiCroatia"
+
 #. language code: sel
 #: zypp/LanguageCode.cc:935
 msgid "Selkup"
@@ -3622,151 +3720,40 @@ msgstr "IsiSelkup"
 msgid "Semitic (Other)"
 msgstr "IsiSemi (Esinye)"
 
-#. :SMR:674:
-#: zypp/CountryCode.cc:361
-msgid "Senegal"
-msgstr "Senegal"
-
-#. :ROU:642:
-#: zypp/CountryCode.cc:346
-#, fuzzy
-msgid "Serbia"
-msgstr "IsiSerbia"
-
-#. language code: scc srp sr
-#: zypp/LanguageCode.cc:923 zypp/LanguageCode.cc:925
-msgid "Serbian"
-msgstr "IsiSerbia"
-
-#. language code: srr
-#: zypp/LanguageCode.cc:993
-msgid "Serer"
-msgstr "IsiSerer"
-
-#: zypp/RepoManager.cc:349
-#, fuzzy
-msgid "Service alias cannot start with dot."
-msgstr "Igama le-VM alikwazi ukuqala ngenombolo."
-
-#: zypp/repo/RepoException.cc:129
-#, fuzzy
-msgid "Service plugin does not support changing an attribute."
-msgstr ""
-"uhlobo lomthombo wokwaziswa we-VAR1 alulusekeli uhlelo lokuboniswa "
-"kwezinguquko"
+#. language code: sga
+#: zypp/LanguageCode.cc:939
+msgid "Irish, Old (to 900)"
+msgstr "Isi-Irish, Esidala (ukuya ku-900)"
 
-#. :SLB:090:
-#: zypp/CountryCode.cc:351
-msgid "Seychelles"
-msgstr "Seychelles"
+#. language code: sgn
+#: zypp/LanguageCode.cc:941
+msgid "Sign Languages"
+msgstr "Izilimi Zezandla"
 
 #. language code: shn
 #: zypp/LanguageCode.cc:943
 msgid "Shan"
 msgstr "IsiShan"
 
-#. language code: sna sn
-#: zypp/LanguageCode.cc:975
-msgid "Shona"
-msgstr "IsiShona"
-
-#. language code: iii ii
-#: zypp/LanguageCode.cc:551
-msgid "Sichuan Yi"
-msgstr "IsiSichuan Yi"
-
-#. language code: scn
-#: zypp/LanguageCode.cc:927
-msgid "Sicilian"
-msgstr "IsiSicilia"
-
 #. language code: sid
 #: zypp/LanguageCode.cc:945
 msgid "Sidamo"
 msgstr "IsiSidamo"
 
-#. :SVK:703:
-#: zypp/CountryCode.cc:359
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#. language code: sgn
-#: zypp/LanguageCode.cc:941
-msgid "Sign Languages"
-msgstr "Izilimi Zezandla"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2369
-#, fuzzy
-msgid "Signature does not verify"
-msgstr "Into ayitholakali."
-
-#: zypp/KeyRing.cc:575
-#, fuzzy, c-format, boost-format
-msgid "Signature file %s not found"
-msgstr "Into ayitholakali."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2365
-#, fuzzy
-msgid "Signature is OK"
-msgstr "Into ayitholakali."
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2371
-#, fuzzy
-msgid "Signature is OK, but key is not trusted"
-msgstr "Into ayitholakali."
-
-#: zypp/repo/PackageProvider.cc:216
-#, fuzzy
-msgid "Signature verification failed"
-msgstr "DBI Execution failed: %s"
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2373
-msgid "Signatures public key is not available"
-msgstr ""
-
-#. language code: bla
-#: zypp/LanguageCode.cc:277
-msgid "Siksika"
-msgstr "IsiSiksika"
-
-#. language code: snd sd
-#: zypp/LanguageCode.cc:977
-msgid "Sindhi"
-msgstr "IsiSindhi"
-
-#. :SWE:752:
-#: zypp/CountryCode.cc:354
-msgid "Singapore"
-msgstr "Singapore"
-
 #. language code: sin si
 #: zypp/LanguageCode.cc:947
 msgid "Sinhala"
 msgstr "IsiSinhala"
 
-#. language code: sit
-#: zypp/LanguageCode.cc:951
-msgid "Sino-Tibetan (Other)"
-msgstr "IsiTibeti SamaSino (Esinye)"
-
 #. language code: sio
 #: zypp/LanguageCode.cc:949
 msgid "Siouan Languages"
 msgstr "Izilimi ZaseSioua"
 
-#. language code: sms
-#: zypp/LanguageCode.cc:973
-msgid "Skolt Sami"
-msgstr "IsiSami SamaSkolt"
-
-#. language code: den
-#: zypp/LanguageCode.cc:383
-msgid "Slave (Athapascan)"
-msgstr "IsiSlave (Sesi-Athapasca)"
+#. language code: sit
+#: zypp/LanguageCode.cc:951
+msgid "Sino-Tibetan (Other)"
+msgstr "IsiTibeti SamaSino (Esinye)"
 
 #. language code: sla
 #: zypp/LanguageCode.cc:953
@@ -3778,210 +3765,141 @@ msgstr "Isi-Slavic (Esinye)"
 msgid "Slovak"
 msgstr "IsiSlovak"
 
-#. :SJM:744:
-#: zypp/CountryCode.cc:358
-msgid "Slovakia"
-msgstr "Slovakia"
-
-#. :SHN:654:
-#: zypp/CountryCode.cc:356
-msgid "Slovenia"
-msgstr "Slovenia"
-
 #. language code: slv sl
 #: zypp/LanguageCode.cc:959
 msgid "Slovenian"
 msgstr "IsiSlovenia"
 
-#. language code: sog
-#: zypp/LanguageCode.cc:981
-msgid "Sogdian"
-msgstr "IsiSogdia"
-
-#. :SAU:682:
-#: zypp/CountryCode.cc:350
-msgid "Solomon Islands"
-msgstr "Solomon Islands"
-
-#. language code: som so
-#: zypp/LanguageCode.cc:983
-msgid "Somali"
-msgstr "IsiSomali"
+#. language code: sma
+#: zypp/LanguageCode.cc:961
+msgid "Southern Sami"
+msgstr "IsiSami SaseNingizimu"
 
-#. :SEN:686:
-#: zypp/CountryCode.cc:362
-msgid "Somalia"
-msgstr "Somalia"
+#. language code: sme se
+#: zypp/LanguageCode.cc:963
+msgid "Northern Sami"
+msgstr "IsiSami SaseNyakatho"
 
-#. language code: son
-#: zypp/LanguageCode.cc:985
-msgid "Songhai"
-msgstr "IsiSonghai"
+#. language code: smi
+#: zypp/LanguageCode.cc:965
+msgid "Sami Languages (Other)"
+msgstr "Izilimi ZamaSami (Esinye)"
 
-#. language code: snk
-#: zypp/LanguageCode.cc:979
-msgid "Soninke"
-msgstr "IsiSoninke"
+#. language code: smj
+#: zypp/LanguageCode.cc:967
+msgid "Lule Sami"
+msgstr "IsiSami SamaLule"
 
-#. language code: wen
-#: zypp/LanguageCode.cc:1119
-msgid "Sorbian Languages"
-msgstr "Izilimi ZamaSorbia"
+#. language code: smn
+#: zypp/LanguageCode.cc:969
+msgid "Inari Sami"
+msgstr "IsiSami Sama-Inari"
 
-#: zypp/target/hal/HalContext.cc:24
-msgid "Sorry, but this version of libzypp was built without HAL support."
-msgstr ""
+#. language code: smo sm
+#: zypp/LanguageCode.cc:971
+msgid "Samoan"
+msgstr "IsiSamoa"
 
-#. language code: sot st
-#: zypp/LanguageCode.cc:987
-msgid "Sotho, Southern"
-msgstr "IsiSuthu, SaseNingizimu"
+#. language code: sms
+#: zypp/LanguageCode.cc:973
+msgid "Skolt Sami"
+msgstr "IsiSami SamaSkolt"
 
-#. :MYT:175:
-#: zypp/CountryCode.cc:401
-msgid "South Africa"
-msgstr "South Africa"
+#. language code: sna sn
+#: zypp/LanguageCode.cc:975
+msgid "Shona"
+msgstr "IsiShona"
 
-#. language code: sai
-#: zypp/LanguageCode.cc:911
-msgid "South American Indian (Other)"
-msgstr "IsiNdiya SaseMelika EseNingizimu (Esinye)"
+#. language code: snd sd
+#: zypp/LanguageCode.cc:977
+msgid "Sindhi"
+msgstr "IsiSindhi"
 
-#. :GRC:300:
-#: zypp/CountryCode.cc:246
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "South Georgia kanye ne-South Sandwich Islands"
+#. language code: snk
+#: zypp/LanguageCode.cc:979
+msgid "Soninke"
+msgstr "IsiSoninke"
 
-#. :PRK:408:
-#: zypp/CountryCode.cc:278
-msgid "South Korea"
-msgstr "South Korea"
+#. language code: sog
+#: zypp/LanguageCode.cc:981
+msgid "Sogdian"
+msgstr "IsiSogdia"
 
-#. language code: alt
-#: zypp/LanguageCode.cc:193
-msgid "Southern Altai"
-msgstr "Isi-Altai SaseNingizimu"
+#. language code: som so
+#: zypp/LanguageCode.cc:983
+msgid "Somali"
+msgstr "IsiSomali"
 
-#. language code: sma
-#: zypp/LanguageCode.cc:961
-msgid "Southern Sami"
-msgstr "IsiSami SaseNingizimu"
+#. language code: son
+#: zypp/LanguageCode.cc:985
+msgid "Songhai"
+msgstr "IsiSonghai"
 
-#. :ERI:232:
-#: zypp/CountryCode.cc:223
-msgid "Spain"
-msgstr "Spain"
+#. language code: sot st
+#: zypp/LanguageCode.cc:987
+msgid "Sotho, Southern"
+msgstr "IsiSuthu, SaseNingizimu"
 
 #. language code: spa es
 #: zypp/LanguageCode.cc:989
 msgid "Spanish"
 msgstr "ISipanishi"
 
-#. :LIE:438:
-#: zypp/CountryCode.cc:286
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#. language code: srd sc
+#: zypp/LanguageCode.cc:991
+msgid "Sardinian"
+msgstr "IsiSardinia"
 
-#. :SYC:690:
-#: zypp/CountryCode.cc:352
-msgid "Sudan"
-msgstr "Sudan"
+#. language code: srr
+#: zypp/LanguageCode.cc:993
+msgid "Serer"
+msgstr "IsiSerer"
 
-#: zypp/Dep.cc:102
-msgid "Suggests"
-msgstr ""
+#. language code: ssa
+#: zypp/LanguageCode.cc:995
+msgid "Nilo-Saharan (Other)"
+msgstr "IsiSahara EsiyisiNilo (Esinye)"
+
+#. language code: ssw ss
+#: zypp/LanguageCode.cc:997
+msgid "Swati"
+msgstr "IsiSwati"
 
 #. language code: suk
 #: zypp/LanguageCode.cc:999
 msgid "Sukuma"
 msgstr "IsiSukuma"
 
-#. language code: sux
-#: zypp/LanguageCode.cc:1005
-msgid "Sumerian"
-msgstr "IsiSumeri"
-
 #. language code: sun su
 #: zypp/LanguageCode.cc:1001
 msgid "Sundanese"
 msgstr "IsiSundanese"
 
-#: zypp/Dep.cc:104
-msgid "Supplements"
-msgstr ""
-
-#. :SOM:706:
-#: zypp/CountryCode.cc:363
-msgid "Suriname"
-msgstr "Suriname"
-
 #. language code: sus
 #: zypp/LanguageCode.cc:1003
 msgid "Susu"
 msgstr "IsiSusu"
 
-#. :SVN:705:
-#: zypp/CountryCode.cc:357
-msgid "Svalbard and Jan Mayen"
-msgstr "Svalbard ne-Jan Mayen"
+#. language code: sux
+#: zypp/LanguageCode.cc:1005
+msgid "Sumerian"
+msgstr "IsiSumeri"
 
 #. language code: swa sw
 #: zypp/LanguageCode.cc:1007
 msgid "Swahili"
 msgstr "IsiSwahili"
 
-#. language code: ssw ss
-#: zypp/LanguageCode.cc:997
-msgid "Swati"
-msgstr "IsiSwati"
-
-#. :SYR:760:
-#: zypp/CountryCode.cc:367
-msgid "Swaziland"
-msgstr "Swaziland"
-
-#. :SDN:736:
-#: zypp/CountryCode.cc:353
-msgid "Sweden"
-msgstr "Sweden"
-
 #. language code: swe sv
 #: zypp/LanguageCode.cc:1009
 msgid "Swedish"
 msgstr "IsiSwidi"
 
-#. :COG:178:
-#: zypp/CountryCode.cc:199
-msgid "Switzerland"
-msgstr "Switzerland"
-
-#. :SLV:222:
-#: zypp/CountryCode.cc:366
-msgid "Syria"
-msgstr "Syria"
-
 #. language code: syr
 #: zypp/LanguageCode.cc:1011
 msgid "Syriac"
 msgstr "IsiSyria"
 
-#: zypp/media/MediaException.cc:91
-#, c-format, boost-format
-msgid "System exception '%s' on medium '%s'."
-msgstr ""
-
-#: zypp/ZYppFactory.cc:394
-#, c-format, boost-format
-msgid ""
-"System management is locked by the application with pid %d (%s).\n"
-"Close this application before trying again."
-msgstr ""
-
-#. language code: tgl tl
-#: zypp/LanguageCode.cc:1031
-msgid "Tagalog"
-msgstr "IsiTagalog"
-
 #. language code: tah ty
 #: zypp/LanguageCode.cc:1013
 msgid "Tahitian"
@@ -3992,36 +3910,11 @@ msgstr "IsiTahiti"
 msgid "Tai (Other)"
 msgstr "Isi-Tai (Esinye)"
 
-#. :TUV:798:
-#: zypp/CountryCode.cc:382
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#. language code: tgk tg
-#: zypp/LanguageCode.cc:1029
-msgid "Tajik"
-msgstr "IsiTajik"
-
-#. :THA:764:
-#: zypp/CountryCode.cc:373
-msgid "Tajikistan"
-msgstr "Tajikistan"
-
-#. language code: tmh
-#: zypp/LanguageCode.cc:1051
-msgid "Tamashek"
-msgstr "IsiTamashek"
-
 #. language code: tam ta
 #: zypp/LanguageCode.cc:1017
 msgid "Tamil"
 msgstr "IsiTamil"
 
-#. :TWN:158:
-#: zypp/CountryCode.cc:383
-msgid "Tanzania"
-msgstr "Tanzania"
-
 #. language code: tat tt
 #: zypp/LanguageCode.cc:1019
 msgid "Tatar"
@@ -4032,6 +3925,11 @@ msgstr "Isi-Tatar"
 msgid "Telugu"
 msgstr "IsiTelugu"
 
+#. language code: tem
+#: zypp/LanguageCode.cc:1023
+msgid "Timne"
+msgstr "IsiTimne"
+
 #. language code: ter
 #: zypp/LanguageCode.cc:1025
 msgid "Tereno"
@@ -4042,35 +3940,21 @@ msgstr "IsiTereno"
 msgid "Tetum"
 msgstr "IsiTetum"
 
+#. language code: tgk tg
+#: zypp/LanguageCode.cc:1029
+msgid "Tajik"
+msgstr "IsiTajik"
+
+#. language code: tgl tl
+#: zypp/LanguageCode.cc:1031
+msgid "Tagalog"
+msgstr "IsiTagalog"
+
 #. language code: tha th
 #: zypp/LanguageCode.cc:1033
 msgid "Thai"
 msgstr "IsiThai"
 
-#. :TGO:768:
-#: zypp/CountryCode.cc:372
-msgid "Thailand"
-msgstr "Thailand"
-
-#: zypp/VendorSupportOptions.cc:39
-msgid "The level of support is unspecified"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:42
-#, fuzzy
-msgid "The vendor does not provide support."
-msgstr "Idiski ayikho."
-
-#: zypp/base/InterProcessMutex.cc:143
-msgid "This action is being run by another program already."
-msgstr ""
-
-#: zypp/solver/detail/SATResolver.cc:1217
-#: zypp/solver/detail/SATResolver.cc:1238
-#, fuzzy
-msgid "This request will break your system!"
-msgstr "Isicelo sesikhona kakade."
-
 #. language code: tib bod bo
 #: zypp/LanguageCode.cc:1035 zypp/LanguageCode.cc:1037
 msgid "Tibetan"
@@ -4086,46 +3970,25 @@ msgstr "IsiTigre"
 msgid "Tigrinya"
 msgstr "IsiTigrinya"
 
-#: zypp/media/MediaException.cc:207
-#, c-format, boost-format
-msgid "Timeout exceeded when accessing '%s'."
-msgstr ""
-
-#. language code: tem
-#: zypp/LanguageCode.cc:1023
-msgid "Timne"
-msgstr "IsiTimne"
-
 #. language code: tiv
 #: zypp/LanguageCode.cc:1043
 msgid "Tiv"
 msgstr "IsiTiv"
 
+#. language code: tlh
+#: zypp/LanguageCode.cc:1047
+msgid "Klingon"
+msgstr "IsiKlingon"
+
 #. language code: tli
 #: zypp/LanguageCode.cc:1049
 msgid "Tlingit"
 msgstr "IsiTlingit"
 
-#. :ATF:260:
-#: zypp/CountryCode.cc:371
-msgid "Togo"
-msgstr "Togo"
-
-#. language code: tpi
-#: zypp/LanguageCode.cc:1057
-msgid "Tok Pisin"
-msgstr "IsiTok Pisin"
-
-#. :TJK:762:
-#. language code: tkl
-#: zypp/CountryCode.cc:374 zypp/LanguageCode.cc:1045
-msgid "Tokelau"
-msgstr "IsiTokelau"
-
-#. :TUN:788:
-#: zypp/CountryCode.cc:377
-msgid "Tonga"
-msgstr "Tonga"
+#. language code: tmh
+#: zypp/LanguageCode.cc:1051
+msgid "Tamashek"
+msgstr "IsiTamashek"
 
 #. language code: tog
 #: zypp/LanguageCode.cc:1053
@@ -4137,103 +4000,66 @@ msgstr "IsiTonga (SamaNyasa)"
 msgid "Tonga (Tonga Islands)"
 msgstr "IsTonga (Eziqingini ZamaTonga)"
 
-#. TranslatorExplanation first %s is key name, second is keyring name
-#: zypp/KeyRing.cc:522
-#, c-format, boost-format
-msgid "Tried to import not existent key %s into keyring %s"
-msgstr ""
-
-#. :TUR:792:
-#: zypp/CountryCode.cc:380
-msgid "Trinidad and Tobago"
-msgstr "Trinidad ne-Tobago"
+#. language code: tpi
+#: zypp/LanguageCode.cc:1057
+msgid "Tok Pisin"
+msgstr "IsiTok Pisin"
 
 #. language code: tsi
 #: zypp/LanguageCode.cc:1059
 msgid "Tsimshian"
 msgstr "IsiTsimshian"
 
+#. language code: tsn tn
+#: zypp/LanguageCode.cc:1061
+msgid "Tswana"
+msgstr "IsiTswana"
+
 #. language code: tso ts
 #: zypp/LanguageCode.cc:1063
 msgid "Tsonga"
 msgstr "IsiTsonga"
 
-#. language code: tsn tn
-#: zypp/LanguageCode.cc:1061
-msgid "Tswana"
-msgstr "IsiTswana"
+#. language code: tuk tk
+#: zypp/LanguageCode.cc:1065
+msgid "Turkmen"
+msgstr "IsiTurkment"
 
 #. language code: tum
 #: zypp/LanguageCode.cc:1067
 msgid "Tumbuka"
 msgstr "IsiTumbuka"
 
-#. :TKM:795:
-#: zypp/CountryCode.cc:376
-msgid "Tunisia"
-msgstr "Tunisia"
-
 #. language code: tup
 #: zypp/LanguageCode.cc:1069
 msgid "Tupi Languages"
 msgstr "Izilimi ZamaTupi"
 
-#. :TLS:626:
-#: zypp/CountryCode.cc:379
-msgid "Turkey"
-msgstr "Turkey"
-
 #. language code: tur tr
 #: zypp/LanguageCode.cc:1071
 msgid "Turkish"
 msgstr "IsiTurkey"
 
-#. language code: ota
-#: zypp/LanguageCode.cc:841
-msgid "Turkish, Ottoman (1500-1928)"
-msgstr "IsiTurkey, Isi-Ottoman (1500-1928"
-
-#. language code: tuk tk
-#: zypp/LanguageCode.cc:1065
-msgid "Turkmen"
-msgstr "IsiTurkment"
-
-#. :TKL:772:
-#: zypp/CountryCode.cc:375
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#. :SWZ:748:
-#: zypp/CountryCode.cc:368
-msgid "Turks and Caicos Islands"
-msgstr "Turks ne-Caicos Islands"
+#. language code: tut
+#: zypp/LanguageCode.cc:1073
+msgid "Altaic (Other)"
+msgstr "Isi-Atlaic (Esinye)"
 
-#. :TTO:780:
-#. language code: tvl
-#: zypp/CountryCode.cc:381 zypp/LanguageCode.cc:1075
-msgid "Tuvalu"
-msgstr "IsiTuvalu"
+#. language code: twi tw
+#: zypp/LanguageCode.cc:1077
+msgid "Twi"
+msgstr "IsiTwi"
 
 #. language code: tyv
 #: zypp/LanguageCode.cc:1079
 msgid "Tuvinian"
 msgstr "IsiTuvinia"
 
-#. language code: twi tw
-#: zypp/LanguageCode.cc:1077
-msgid "Twi"
-msgstr "IsiTwi"
-
 #. language code: udm
 #: zypp/LanguageCode.cc:1081
 msgid "Udmurt"
 msgstr "Isi-Udmurt"
 
-#. :UKR:804:
-#: zypp/CountryCode.cc:385
-msgid "Uganda"
-msgstr "Uganda"
-
 #. language code: uga
 #: zypp/LanguageCode.cc:1083
 msgid "Ugaritic"
@@ -4244,11 +4070,6 @@ msgstr "Isi-Ugaritic"
 msgid "Uighur"
 msgstr "Isi-Uighur"
 
-#. :TZA:834:
-#: zypp/CountryCode.cc:384
-msgid "Ukraine"
-msgstr "Ukraine"
-
 #. language code: ukr uk
 #: zypp/LanguageCode.cc:1087
 msgid "Ukrainian"
@@ -4259,208 +4080,36 @@ msgstr "Isi-Ukrania"
 msgid "Umbundu"
 msgstr "Isi-Umbundu"
 
-#: zypp/Url.cc:300
-msgid "Unable to clone Url object"
-msgstr "Ayikwazi ukukopisha into ye-Url"
-
-#: zypp/target/hal/HalContext.cc:229
-msgid "Unable to create dbus connection"
-msgstr "Ayikwazanga ukwakha ukuxhumana nge-dbus"
-
-#: zypp/target/hal/HalContext.cc:272
-msgid "Unable to initalize HAL context -- hald not running?"
-msgstr "Ayikwazi ukuqalisa i-HAL context --i-hald ayisebenzi?"
-
-#: zypp/Url.cc:326 zypp/Url.cc:340
-msgid "Unable to parse Url components"
-msgstr "Ayikwazi ukucaza izingxenyana ze-Url"
-
 #. language code: und
 #: zypp/LanguageCode.cc:1091
 msgid "Undetermined"
 msgstr "Olunganqunyiwe"
 
-#: zypp/RepoManager.cc:1377
-msgid "Unhandled repository type"
-msgstr ""
-
-#. :AND:020:
-#: zypp/CountryCode.cc:159
-msgid "United Arab Emirates"
-msgstr "United Arab Emirates"
-
-#. :GAB:266:
-#: zypp/CountryCode.cc:233
-msgid "United Kingdom"
-msgstr "United Kingdom"
-
-#. :UMI:581:
-#: zypp/CountryCode.cc:387
-msgid "United States"
-msgstr "United States"
-
-#. :UGA:800:
-#: zypp/CountryCode.cc:386
-msgid "United States Minor Outlying Islands"
-msgstr "United States Minor Outlying Islands"
-
-#: zypp/CountryCode.cc:50
-msgid "Unknown country: "
-msgstr "Izwe elingaziwa:"
-
-#. TranslatorExplanation '%s' is an URL
-#: zypp/RepoManager.cc:1467 zypp/RepoManager.cc:2472
-#, fuzzy, c-format, boost-format
-msgid "Unknown error reading from '%s'"
-msgstr "Kwenzeke iphutha lapho ifunda iflophi diski."
-
-#: zypp/LanguageCode.cc:49
-msgid "Unknown language: "
-msgstr "Ulimi olungaziwa:"
-
-#: zypp/base/StrMatcher.cc:152
-#, fuzzy, c-format, boost-format
-msgid "Unknown match mode '%s'"
-msgstr "Ikhomandi engaziwa"
-
-#: zypp/base/StrMatcher.cc:153
-#, c-format, boost-format
-msgid "Unknown match mode '%s' for pattern '%s'"
-msgstr ""
-
-#. translators: Cleanup a repository previously owned by a meanwhile unknown (deleted) service.
-#. %1% = service name
-#. %2% = repository name
-#: zypp/RepoManager.cc:849
-#, boost-format
-msgid "Unknown service '%1%': Removing orphaned service repository '%2%'"
-msgstr ""
-
-#: zypp/VendorSupportOptions.cc:56
-msgid "Unknown support option. Description not available"
-msgstr ""
-
-#. translators: possible rpm package signature check result [brief]
-#: zypp/target/rpm/RpmDb.cc:2367
-msgid "Unknown type of signature"
-msgstr ""
-
-#: zypp/media/MediaUserAuth.cc:136
-#, c-format, boost-format
-msgid "Unsupported HTTP authentication method '%s'"
-msgstr ""
-
-#: zypp/media/MediaException.cc:140
-#, fuzzy, c-format, boost-format
-msgid "Unsupported URI scheme in '%s'."
-msgstr "Uhlelo '%1' lwe-URL engekho emthethweni."
-
-#. language code: hsb
-#: zypp/LanguageCode.cc:535
-msgid "Upper Sorbian"
-msgstr "IsiSorbia Sangenhla"
-
 #. language code: urd ur
 #: zypp/LanguageCode.cc:1093
 msgid "Urdu"
 msgstr "Isi-Urdu"
 
-#: zypp/url/UrlBase.cc:154
-#, c-format, boost-format
-msgid "Url scheme does not allow a %s"
-msgstr "Uhlelo lwe-URL aluyivumeli i-%s"
-
-#: zypp/url/UrlBase.cc:1022
-msgid "Url scheme does not allow a host component"
-msgstr "Uhlelo lwe-URL aluyivumeli ingxenyana yesiphakeli"
-
-#: zypp/url/UrlBase.cc:983
-msgid "Url scheme does not allow a password"
-msgstr "Uhlelo lwe-URL aluyivumeli iphasiwedi"
-
-#: zypp/url/UrlBase.cc:1070
-msgid "Url scheme does not allow a port"
-msgstr "Uhlelo lwe-URL aluyivumeli iphasiwedi"
-
-#: zypp/url/UrlBase.cc:949
-msgid "Url scheme does not allow a username"
-msgstr "Uhlelo lwe-URL alulivumeli igama lomsebenzisi"
-
-#: zypp/url/UrlBase.cc:824
-msgid "Url scheme is a required component"
-msgstr "Uhlelo lwe-Url luyingxenyana edingekayo"
-
-#: zypp/url/UrlBase.cc:1012
-msgid "Url scheme requires a host component"
-msgstr "Uhlelo lwe-Url ludinga ingxenyana yesiphakeli"
-
-#: zypp/url/UrlBase.cc:1098
-msgid "Url scheme requires path name"
-msgstr "Uhlelo lwe-Url ludinga igama lomgudu"
-
-#. :USA:840:
-#: zypp/CountryCode.cc:388
-msgid "Uruguay"
-msgstr "Uruguay"
-
 #. language code: uzb uz
 #: zypp/LanguageCode.cc:1095
 msgid "Uzbek"
 msgstr "Isi-Uzbek"
 
-#. :URY:858:
-#: zypp/CountryCode.cc:389
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
 #. language code: vai
 #: zypp/LanguageCode.cc:1097
 msgid "Vai"
 msgstr "IsiVai"
 
-#. we will throw this later if no URL checks out fine
-#: zypp/RepoManager.cc:1082
-msgid "Valid metadata not found at specified URL"
-msgid_plural "Valid metadata not found at specified URLs"
-msgstr[0] ""
-msgstr[1] ""
-
-#. :VNM:704:
-#: zypp/CountryCode.cc:396
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
 #. language code: ven ve
 #: zypp/LanguageCode.cc:1099
 msgid "Venda"
 msgstr "IsiVenda"
 
-#. :VCT:670:
-#: zypp/CountryCode.cc:392
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#. :VIR:850:
-#: zypp/CountryCode.cc:395
-msgid "Vietnam"
-msgstr "Vietnam"
-
 #. language code: vie vi
 #: zypp/LanguageCode.cc:1101
 msgid "Vietnamese"
 msgstr "IsiVietnam"
 
-#. :VGB:092:
-#: zypp/CountryCode.cc:394
-msgid "Virgin Islands, U.S."
-msgstr "Virgin Islands, U.S."
-
-#: zypp/media/MediaCurl.cc:1008
-msgid ""
-"Visit the Novell Customer Center to check whether your registration is valid "
-"and has not expired."
-msgstr ""
-
 #. language code: vol vo
 #: zypp/LanguageCode.cc:1103
 msgid "Volapuk"
@@ -4477,19 +4126,9 @@ msgid "Wakashan Languages"
 msgstr "Izilimi ZamaWakasha"
 
 #. language code: wal
-#: zypp/LanguageCode.cc:1109
-msgid "Walamo"
-msgstr "IsiWalamo"
-
-#. :VUT:548:
-#: zypp/CountryCode.cc:397
-msgid "Wallis and Futuna"
-msgstr "Wallis ne-Futuna"
-
-#. language code: wln wa
-#: zypp/LanguageCode.cc:1121
-msgid "Walloon"
-msgstr "IsiWalloon"
+#: zypp/LanguageCode.cc:1109
+msgid "Walamo"
+msgstr "IsiWalamo"
 
 #. language code: war
 #: zypp/LanguageCode.cc:1111
@@ -4506,26 +4145,31 @@ msgstr "IsiWasho"
 msgid "Welsh"
 msgstr "IsiWelsh"
 
-#. :EGY:818:
-#: zypp/CountryCode.cc:221
-msgid "Western Sahara"
-msgstr "Western Sahara"
+#. language code: wen
+#: zypp/LanguageCode.cc:1119
+msgid "Sorbian Languages"
+msgstr "Izilimi ZamaSorbia"
+
+#. language code: wln wa
+#: zypp/LanguageCode.cc:1121
+msgid "Walloon"
+msgstr "IsiWalloon"
 
 #. language code: wol wo
 #: zypp/LanguageCode.cc:1123
 msgid "Wolof"
 msgstr "IsiWolof"
 
+#. language code: xal
+#: zypp/LanguageCode.cc:1125
+msgid "Kalmyk"
+msgstr "IsiKalmyk"
+
 #. language code: xho xh
 #: zypp/LanguageCode.cc:1127
 msgid "Xhosa"
 msgstr "IsiXhosa"
 
-#. language code: sah
-#: zypp/LanguageCode.cc:909
-msgid "Yakut"
-msgstr "IsiYakut"
-
 #. language code: yao
 #: zypp/LanguageCode.cc:1129
 msgid "Yao"
@@ -4536,11 +4180,6 @@ msgstr "IsiYao"
 msgid "Yapese"
 msgstr "IsiYapese"
 
-#. :WSM:882:
-#: zypp/CountryCode.cc:399
-msgid "Yemen"
-msgstr "Yemen"
-
 #. language code: yid yi
 #: zypp/LanguageCode.cc:1133
 msgid "Yiddish"
@@ -4551,346 +4190,723 @@ msgstr "IsiYiddish"
 msgid "Yoruba"
 msgstr "IsiYoruba"
 
-#. language code: ypk
-#: zypp/LanguageCode.cc:1137
-msgid "Yupik Languages"
-msgstr "Izilimi ZamaYupik"
+#. language code: ypk
+#: zypp/LanguageCode.cc:1137
+msgid "Yupik Languages"
+msgstr "Izilimi ZamaYupik"
+
+#. language code: zap
+#: zypp/LanguageCode.cc:1139
+msgid "Zapotec"
+msgstr "IsiZapotec"
+
+#. language code: zen
+#: zypp/LanguageCode.cc:1141
+msgid "Zenaga"
+msgstr "IsiZenaga"
+
+#. language code: zha za
+#: zypp/LanguageCode.cc:1143
+msgid "Zhuang"
+msgstr "IsiZhuang"
+
+#. language code: znd
+#: zypp/LanguageCode.cc:1145
+msgid "Zande"
+msgstr "IsiZande"
+
+#. language code: zul zu
+#: zypp/LanguageCode.cc:1147
+msgid "Zulu"
+msgstr "IsiZulu"
+
+#. language code: zun
+#: zypp/LanguageCode.cc:1149
+msgid "Zuni"
+msgstr "IsiZuni"
+
+#. TranslatorExplanation first %s is key name, second is keyring name
+#: zypp/KeyRing.cc:522
+#, c-format, boost-format
+msgid "Tried to import not existent key %s into keyring %s"
+msgstr ""
+
+#: zypp/KeyRing.cc:566
+#, fuzzy
+msgid "Failed to delete key."
+msgstr "Ayikwazanga ukuqala i-VM."
+
+#: zypp/KeyRing.cc:575
+#, fuzzy, c-format, boost-format
+msgid "Signature file %s not found"
+msgstr "Into ayitholakali."
+
+#: zypp/repo/RepoProvideFile.cc:259
+#, fuzzy, c-format, boost-format
+msgid "Can't provide file '%s' from repository '%s'"
+msgstr "Ayikwazi ukuhlinzeka nge-%s kwi-%s"
+
+#: zypp/repo/RepoProvideFile.cc:265
+#, fuzzy
+msgid "No url in repository."
+msgstr "Ifayela %1 ayitholakali enqolobaneni yamafayela."
+
+#: zypp/repo/RepoException.cc:129
+#, fuzzy
+msgid "Service plugin does not support changing an attribute."
+msgstr ""
+"uhlobo lomthombo wokwaziswa we-VAR1 alulusekeli uhlelo lokuboniswa "
+"kwezinguquko"
+
+#. TranslatorExplanation %s = package being checked for integrity
+#: zypp/repo/PackageProvider.cc:157
+#, fuzzy, c-format, boost-format
+msgid ""
+"Package %s seems to be corrupted during transfer. Do you want to retry "
+"retrieval?"
+msgstr ""
+"Iphakheji %s ihlulekile lapho ihlolwa ukuthembeka. Ufuna ukuphinde uzame "
+"ukuyilanda futhi?"
+
+#: zypp/repo/PackageProvider.cc:216
+#, fuzzy
+msgid "Signature verification failed"
+msgstr "DBI Execution failed: %s"
+
+#. TranslatorExplanation %s = name of the package being processed.
+#: zypp/repo/PackageProvider.cc:386
+#, fuzzy, c-format, boost-format
+msgid "Failed to provide Package %s. Do you want to retry retrieval?"
+msgstr ""
+"Iphakheji %s ihlulekile lapho ihlolwa ukuthembeka. Ufuna ukuphinde uzame "
+"ukuyilanda futhi?"
+
+#: zypp/repo/PackageProvider.cc:515
+msgid "applydeltarpm check failed."
+msgstr "ukuhlola i-applydeltarpm kuhlulekile."
+
+#: zypp/repo/PackageProvider.cc:525
+msgid "applydeltarpm failed."
+msgstr "i-applydeltarpm ihlulekile."
+
+#: zypp/ZYppFactory.cc:394
+#, c-format, boost-format
+msgid ""
+"System management is locked by the application with pid %d (%s).\n"
+"Close this application before trying again."
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:975
+#, c-format, boost-format
+msgid "%s does not belong to a distupgrade repository"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:979
+#, fuzzy, c-format, boost-format
+msgid "%s has inferior architecture"
+msgstr "%s ihlinzeka nge-%s, kodwa inobunye ubuciko bomklamo."
+
+#: zypp/solver/detail/SATResolver.cc:983
+#, fuzzy, c-format, boost-format
+msgid "problem with installed package %s"
+msgstr "ikhomandi yokukhipha amaphakheji"
+
+#: zypp/solver/detail/SATResolver.cc:986
+#, fuzzy
+msgid "conflicting requests"
+msgstr "Isicelo Sokuxhuma kwi-:"
+
+#: zypp/solver/detail/SATResolver.cc:989
+#, fuzzy
+msgid "some dependency problem"
+msgstr "Ayikwazi ukufaka %s ngenxa yezinkinga zohlelo oluncike kwezinye"
+
+#: zypp/solver/detail/SATResolver.cc:992
+#, fuzzy, c-format, boost-format
+msgid "nothing provides requested %s"
+msgstr "Akukho okunikeza %s"
+
+#: zypp/solver/detail/SATResolver.cc:993 zypp/solver/detail/SATResolver.cc:997
+msgid "Have you enabled all requested repositories?"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:996
+#, fuzzy, c-format, boost-format
+msgid "package %s does not exist"
+msgstr "Idiski ayikho."
+
+#: zypp/solver/detail/SATResolver.cc:1000
+msgid "unsupported request"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1003
+#, fuzzy, c-format, boost-format
+msgid "%s is provided by the system and cannot be erased"
+msgstr "%s ihluthulelwe futhi ngeke ikwazi ukukhipheka."
+
+#: zypp/solver/detail/SATResolver.cc:1007
+#, fuzzy, c-format, boost-format
+msgid "%s is not installable"
+msgstr "alufakiwe"
+
+#: zypp/solver/detail/SATResolver.cc:1012
+#, fuzzy, c-format, boost-format
+msgid "nothing provides %s needed by %s"
+msgstr "%s idingwa yi- %s"
+
+#: zypp/solver/detail/SATResolver.cc:1017
+#, fuzzy, c-format, boost-format
+msgid "cannot install both %s and %s"
+msgstr "Ayikwazi ukufaka %s"
+
+#: zypp/solver/detail/SATResolver.cc:1022
+#, fuzzy, c-format, boost-format
+msgid "%s conflicts with %s provided by %s"
+msgstr "%s ixabana ne- %s"
+
+#: zypp/solver/detail/SATResolver.cc:1027
+#, fuzzy, c-format, boost-format
+msgid "%s obsoletes %s provided by %s"
+msgstr "%s yenza zingasebenzi %s"
+
+#: zypp/solver/detail/SATResolver.cc:1032
+#, fuzzy, c-format, boost-format
+msgid "installed %s obsoletes %s provided by %s"
+msgstr "%s yenza zingasebenzi %s"
+
+#: zypp/solver/detail/SATResolver.cc:1036
+#, fuzzy, c-format, boost-format
+msgid "solvable %s conflicts with %s provided by itself"
+msgstr "%s ixabana ne- %s"
+
+#: zypp/solver/detail/SATResolver.cc:1068
+#, c-format, boost-format
+msgid "%s requires %s, but this requirement cannot be provided"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1070
+#, fuzzy
+msgid "deleted providers: "
+msgstr "Akukho okunikeza %s"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1081
+#, fuzzy
+msgid ""
+"\n"
+"uninstallable providers: "
+msgstr "Abekho abanye abaphakeli abafakiwe be-%s"
+
+#. translators: 'uninstallable' == 'not installable'
+#: zypp/solver/detail/SATResolver.cc:1084
+#, fuzzy
+msgid "uninstallable providers: "
+msgstr "Abekho abanye abaphakeli abafakiwe be-%s"
+
+#: zypp/solver/detail/SATResolver.cc:1141
+#, c-format, boost-format
+msgid "remove lock to allow removal of %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1146
+#: zypp/solver/detail/SATResolver.cc:1182
+#, c-format, boost-format
+msgid "do not install %s"
+msgstr "ungafaki %s"
+
+#: zypp/solver/detail/SATResolver.cc:1161
+#: zypp/solver/detail/SATResolver.cc:1203
+#, c-format, boost-format
+msgid "keep %s"
+msgstr "Gcina %s"
+
+#: zypp/solver/detail/SATResolver.cc:1166
+#, fuzzy, c-format, boost-format
+msgid "remove lock to allow installation of %s"
+msgstr "ungafaki %s"
 
-#. :ZAF:710:
-#: zypp/CountryCode.cc:402
-msgid "Zambia"
-msgstr "Zambia"
+#: zypp/solver/detail/SATResolver.cc:1217
+#: zypp/solver/detail/SATResolver.cc:1238
+#, fuzzy
+msgid "This request will break your system!"
+msgstr "Isicelo sesikhona kakade."
 
-#. language code: znd
-#: zypp/LanguageCode.cc:1145
-msgid "Zande"
-msgstr "IsiZande"
+#: zypp/solver/detail/SATResolver.cc:1218
+#: zypp/solver/detail/SATResolver.cc:1239
+msgid "ignore the warning of a broken system"
+msgstr ""
 
-#. language code: zap
-#: zypp/LanguageCode.cc:1139
-msgid "Zapotec"
-msgstr "IsiZapotec"
+#: zypp/solver/detail/SATResolver.cc:1223
+#, fuzzy, c-format, boost-format
+msgid "do not ask to install a solvable providing %s"
+msgstr "Abekho abanye abaphakeli abafakiwe be-%s"
 
-#. language code: zen
-#: zypp/LanguageCode.cc:1141
-msgid "Zenaga"
-msgstr "IsiZenaga"
+#: zypp/solver/detail/SATResolver.cc:1245
+#, fuzzy, c-format, boost-format
+msgid "do not ask to delete all solvables providing %s"
+msgstr "Ungafaki noma ususe maqondana nezixazululi"
 
-#. language code: zha za
-#: zypp/LanguageCode.cc:1143
-msgid "Zhuang"
-msgstr "IsiZhuang"
+#: zypp/solver/detail/SATResolver.cc:1258
+#, c-format, boost-format
+msgid "do not install most recent version of %s"
+msgstr ""
 
-#. :ZMB:894:
-#: zypp/CountryCode.cc:403
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: zypp/solver/detail/SATResolver.cc:1279
+#, fuzzy, c-format, boost-format
+msgid "keep %s despite the inferior architecture"
+msgstr "%s ihlinzeka nge-%s, kodwa inobunye ubuciko bomklamo."
 
-#. language code: zul zu
-#: zypp/LanguageCode.cc:1147
-msgid "Zulu"
-msgstr "IsiZulu"
+#: zypp/solver/detail/SATResolver.cc:1284
+#, fuzzy, c-format, boost-format
+msgid "install %s despite the inferior architecture"
+msgstr "Faka %s nakuba izoshintsha ubuciko bomklamo"
 
-#. language code: zun
-#: zypp/LanguageCode.cc:1149
-msgid "Zuni"
-msgstr "IsiZuni"
+#: zypp/solver/detail/SATResolver.cc:1293
+#, fuzzy, c-format, boost-format
+msgid "keep obsolete %s"
+msgstr "%s yenza zingasebenzi %s"
 
-#: zypp/repo/PackageProvider.cc:515
-msgid "applydeltarpm check failed."
-msgstr "ukuhlola i-applydeltarpm kuhlulekile."
+#: zypp/solver/detail/SATResolver.cc:1298
+#, c-format, boost-format
+msgid "install %s from excluded repository"
+msgstr ""
 
-#: zypp/repo/PackageProvider.cc:525
-msgid "applydeltarpm failed."
-msgstr "i-applydeltarpm ihlulekile."
+#: zypp/solver/detail/SATResolver.cc:1318
+#, fuzzy, c-format, boost-format
+msgid "downgrade of %s to %s"
+msgstr "Ilande %s kwi-%s"
 
 #: zypp/solver/detail/SATResolver.cc:1325
 #, c-format, boost-format
 msgid "architecture change of %s to %s"
 msgstr ""
 
+#: zypp/solver/detail/SATResolver.cc:1334
+#, c-format, boost-format
+msgid ""
+"install %s (with vendor change)\n"
+"  %s  -->  %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1343
+#, c-format, boost-format
+msgid "replacement of %s with %s"
+msgstr ""
+
+#: zypp/solver/detail/SATResolver.cc:1354
+#, fuzzy, c-format, boost-format
+msgid "deinstallation of %s"
+msgstr "Ukufaka uhlelo"
+
 #. TranslatorExplanation %s = name of package, patch, selection ...
 #: zypp/solver/detail/ProblemSolutionIgnore.cc:42
 #, fuzzy, c-format, boost-format
 msgid "break %s by ignoring some of its dependencies"
 msgstr "Sishaye indiva lesi sidingo lapha nje kuphela"
 
-#: zypp/solver/detail/SATResolver.cc:1017
+#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
+#, fuzzy
+msgid "generally ignore of some dependencies"
+msgstr "Sishaye indiva lesi sidingo lapha nje kuphela"
+
+#: zypp/parser/RepoindexFileReader.cc:197
+#, c-format, boost-format
+msgid "Required attribute '%s' is missing."
+msgstr ""
+
+#: zypp/parser/RepoindexFileReader.cc:209
+#, c-format, boost-format
+msgid "One or both of '%s' or '%s' attributes is required."
+msgstr ""
+
+#: zypp/base/InterProcessMutex.cc:83
 #, fuzzy, c-format, boost-format
-msgid "cannot install both %s and %s"
-msgstr "Ayikwazi ukufaka %s"
+msgid "Can't open lock file: %s"
+msgstr "Ayikwazi ukuvula ifayela %1."
 
-#: zypp/solver/detail/SATResolver.cc:986
+#: zypp/base/InterProcessMutex.cc:143
+msgid "This action is being run by another program already."
+msgstr ""
+
+#. TranslatorExplanation followed by the list of error messages that lead to this exception
+#: zypp/base/Exception.cc:107
 #, fuzzy
-msgid "conflicting requests"
-msgstr "Isicelo Sokuxhuma kwi-:"
+msgid "History:"
+msgstr "Linganisa Umlando"
 
-#: zypp/target/rpm/RpmDb.cc:2344
+#: zypp/base/StrMatcher.cc:152
+#, fuzzy, c-format, boost-format
+msgid "Unknown match mode '%s'"
+msgstr "Ikhomandi engaziwa"
+
+#: zypp/base/StrMatcher.cc:153
 #, c-format, boost-format
-msgid "created backup %s"
-msgstr "yakhe i-backup %s"
+msgid "Unknown match mode '%s' for pattern '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1354
+#: zypp/base/StrMatcher.cc:157
+#, c-format, boost-format
+msgid "Invalid regular expression '%s': regcomp returned %d"
+msgstr ""
+
+#: zypp/base/StrMatcher.cc:158
 #, fuzzy, c-format, boost-format
-msgid "deinstallation of %s"
-msgstr "Ukufaka uhlelo"
+msgid "Invalid regular expression '%s'"
+msgstr "Uhlelo lwe-Url olungekho emthethweni '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1070
-#, fuzzy
-msgid "deleted providers: "
-msgstr "Akukho okunikeza %s"
+#: zypp/misc/CheckAccessDeleted.cc:242
+msgid "Please install package 'lsof' first."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1245
+#. !\todo add comma to the message for the next release
+#: zypp/media/MediaCIFS.cc:430 zypp/media/MediaCurl.cc:1692
+#, c-format, boost-format
+msgid "Authentication required for '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:31
 #, fuzzy, c-format, boost-format
-msgid "do not ask to delete all solvables providing %s"
-msgstr "Ungafaki noma ususe maqondana nezixazululi"
+msgid "Failed to mount %s on %s"
+msgstr "Ayikwazi ukuvula %s - %s\n"
 
-#: zypp/solver/detail/SATResolver.cc:1223
+#: zypp/media/MediaException.cc:41
 #, fuzzy, c-format, boost-format
-msgid "do not ask to install a solvable providing %s"
-msgstr "Abekho abanye abaphakeli abafakiwe be-%s"
+msgid "Failed to unmount %s"
+msgstr "Ihlulekile ukufaka imoduli \"%s\"."
 
-#: zypp/solver/detail/SATResolver.cc:1146
-#: zypp/solver/detail/SATResolver.cc:1182
+#: zypp/media/MediaException.cc:47
 #, c-format, boost-format
-msgid "do not install %s"
-msgstr "ungafaki %s"
+msgid "Bad file name: %s"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1258
+#: zypp/media/MediaException.cc:53
 #, c-format, boost-format
-msgid "do not install most recent version of %s"
+msgid "Medium not opened when trying to perform action '%s'."
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1318
+#: zypp/media/MediaException.cc:60
 #, fuzzy, c-format, boost-format
-msgid "downgrade of %s to %s"
-msgstr "Ilande %s kwi-%s"
+msgid "File '%s' not found on medium '%s'"
+msgstr "Ifayela %1 ayitholakali enqolobaneni yamafayela."
+
+#: zypp/media/MediaException.cc:67
+#, fuzzy, c-format, boost-format
+msgid "Cannot write file '%s'."
+msgstr "Ayikwazi ukubhala efayeleni %1."
+
+#: zypp/media/MediaException.cc:72
+msgid "Medium not attached"
+msgstr ""
+
+#: zypp/media/MediaException.cc:77
+msgid "Bad media attach point"
+msgstr ""
+
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:84
+#, c-format, boost-format
+msgid "Download (curl) initialization failed for '%s'"
+msgstr ""
+
+#: zypp/media/MediaException.cc:91
+#, c-format, boost-format
+msgid "System exception '%s' on medium '%s'."
+msgstr ""
+
+#: zypp/media/MediaException.cc:98
+#, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a file."
+msgstr ""
+
+#: zypp/media/MediaException.cc:106
+#, fuzzy, c-format, boost-format
+msgid "Path '%s' on medium '%s' is not a directory."
+msgstr "I-%1 ayiyona i-directory."
+
+#: zypp/media/MediaException.cc:115
+msgid "Malformed URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:125
+#, fuzzy
+msgid "Empty host name in URI"
+msgstr "Igama le-CA elingenalutho"
+
+#: zypp/media/MediaException.cc:130
+msgid "Empty filesystem in URI"
+msgstr ""
+
+#: zypp/media/MediaException.cc:135
+msgid "Empty destination in URI"
+msgstr ""
 
-#: zypp/solver/detail/ProblemSolutionIgnore.cc:48
-#, fuzzy
-msgid "generally ignore of some dependencies"
-msgstr "Sishaye indiva lesi sidingo lapha nje kuphela"
+#: zypp/media/MediaException.cc:140
+#, fuzzy, c-format, boost-format
+msgid "Unsupported URI scheme in '%s'."
+msgstr "Uhlelo '%1' lwe-URL engekho emthethweni."
 
-#: zypp/solver/detail/SATResolver.cc:1218
-#: zypp/solver/detail/SATResolver.cc:1239
-msgid "ignore the warning of a broken system"
+#: zypp/media/MediaException.cc:145
+msgid "Operation not supported by medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1334
+#: zypp/media/MediaException.cc:152
 #, c-format, boost-format
 msgid ""
-"install %s (with vendor change)\n"
-"  %s  -->  %s"
+"Download (curl) error for '%s':\n"
+"Error code: %s\n"
+"Error message: %s\n"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1284
-#, fuzzy, c-format, boost-format
-msgid "install %s despite the inferior architecture"
-msgstr "Faka %s nakuba izoshintsha ubuciko bomklamo"
-
-#: zypp/solver/detail/SATResolver.cc:1298
+#. TranslatorExplanation: curl is the name of a library, don't translate
+#: zypp/media/MediaException.cc:161
 #, c-format, boost-format
-msgid "install %s from excluded repository"
+msgid "Error occurred while setting download (curl) options for '%s':"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1032
-#, fuzzy, c-format, boost-format
-msgid "installed %s obsoletes %s provided by %s"
-msgstr "%s yenza zingasebenzi %s"
-
-#: zypp/VendorSupportOptions.cc:31
-msgid "invalid"
+#: zypp/media/MediaException.cc:169
+#, c-format, boost-format
+msgid "Media source '%s' does not contain the desired medium"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1161
-#: zypp/solver/detail/SATResolver.cc:1203
+#: zypp/media/MediaException.cc:175
 #, c-format, boost-format
-msgid "keep %s"
-msgstr "Gcina %s"
+msgid "Medium '%s' is in use by another instance"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1279
+#: zypp/media/MediaException.cc:182
+msgid "Cannot eject any media"
+msgstr ""
+
+#: zypp/media/MediaException.cc:184
 #, fuzzy, c-format, boost-format
-msgid "keep %s despite the inferior architecture"
-msgstr "%s ihlinzeka nge-%s, kodwa inobunye ubuciko bomklamo."
+msgid "Cannot eject media '%s'"
+msgstr "Ayikwazi ukuvula into esesendlalelweni (desktop) '%s'"
 
-#: zypp/solver/detail/SATResolver.cc:1293
+#: zypp/media/MediaException.cc:199
 #, fuzzy, c-format, boost-format
-msgid "keep obsolete %s"
-msgstr "%s yenza zingasebenzi %s"
+msgid "Permission to access '%s' denied."
+msgstr "Izimvume zinqatshiwe"
 
-#: zypp/target/hal/HalContext.cc:242
-msgid "libhal_ctx_new: Can't create libhal context"
-msgstr "I-libhal_ctx_new: Ayikwazi ukwakha i-libhal context"
+#: zypp/media/MediaException.cc:207
+#, c-format, boost-format
+msgid "Timeout exceeded when accessing '%s'."
+msgstr ""
 
-#: zypp/target/hal/HalContext.cc:257
-msgid "libhal_set_dbus_connection: Can't set dbus connection"
-msgstr "I-libhal_set_dbus_connection: Ayikwazi ukwakha ukuxhumana kwe-dbus"
+#: zypp/media/MediaException.cc:215
+#, c-format, boost-format
+msgid "Location '%s' is temporarily unaccessible."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1012
-#, fuzzy, c-format, boost-format
-msgid "nothing provides %s needed by %s"
-msgstr "%s idingwa yi- %s"
+#: zypp/media/MediaException.cc:223
+#, c-format, boost-format
+msgid " SSL certificate problem, verify that the CA cert is OK for '%s'."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:992
-#, fuzzy, c-format, boost-format
-msgid "nothing provides requested %s"
-msgstr "Akukho okunikeza %s"
+#: zypp/media/MediaException.cc:231
+#, c-format, boost-format
+msgid "Cannot find available loop device to mount the image file from '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:996
-#, fuzzy, c-format, boost-format
-msgid "package %s does not exist"
-msgstr "Idiski ayikho."
+#: zypp/media/MediaUserAuth.cc:136
+#, c-format, boost-format
+msgid "Unsupported HTTP authentication method '%s'"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:983
-#, fuzzy, c-format, boost-format
-msgid "problem with installed package %s"
-msgstr "ikhomandi yokukhipha amaphakheji"
+#: zypp/media/MediaCurl.cc:1008
+msgid ""
+"Visit the Novell Customer Center to check whether your registration is valid "
+"and has not expired."
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1166
-#, fuzzy, c-format, boost-format
-msgid "remove lock to allow installation of %s"
-msgstr "ungafaki %s"
+#: zypp/sat/detail/PoolImpl.cc:184
+#, fuzzy
+msgid "Can not create sat-pool."
+msgstr "Ayikwazi ukwakha ifayela."
 
-#: zypp/solver/detail/SATResolver.cc:1141
-#, c-format, boost-format
-msgid "remove lock to allow removal of %s"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:34
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
 msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:1343
-#, c-format, boost-format
-msgid "replacement of %s with %s"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:40
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2029
-#, fuzzy, c-format, boost-format
-msgid "rpm created %s as %s, but it was impossible to determine the difference"
-msgstr "I-rpm yakhe %s njenge-%s kodwa bekungenakwenzeka ukubona umehluko"
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:47
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from package\n"
+"     %3%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2031
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename) %2%(package1) %3%(package2)
+#: zypp/sat/FileConflicts.cc:53
+#, boost-format
 msgid ""
-"rpm created %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file from install of\n"
+"     %3%"
 msgstr ""
-"I-rpm yakhe i-%s njenge-%s.\n"
-"Nansi imigqa yokuqala engu-25 yomehluko:\n"
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2024
-#, fuzzy, c-format, boost-format
-msgid "rpm saved %s as %s, but it was impossible to determine the difference"
-msgstr "I-rpm igcine %s njenge-%s kodwa bekungenakwenzeka ukubona umehluko"
+#. [lhs][rhs] 0 = installed; 1 = to be installed
+#. TranslatorExplanation %1%(filename1) %2%(package1) %%3%(filename2) 4%(package2)
+#: zypp/sat/FileConflicts.cc:68
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#. %s = filenames
-#: zypp/target/rpm/RpmDb.cc:2026
-#, c-format, boost-format
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:76
+#, boost-format
 msgid ""
-"rpm saved %s as %s.\n"
-"Here are the first 25 lines of difference:\n"
+"File %1%\n"
+"  from package\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
 msgstr ""
-"I-rpm igcine i-%s njenge-%s.\n"
-"Nansi imigqa yokuqala engu-25 yomehluko:\n"
 
-#: zypp/solver/detail/SATResolver.cc:1036
-#, fuzzy, c-format, boost-format
-msgid "solvable %s conflicts with %s provided by itself"
-msgstr "%s ixabana ne- %s"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:85
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from package\n"
+"     %4%"
+msgstr ""
 
-#: zypp/solver/detail/SATResolver.cc:989
-#, fuzzy
-msgid "some dependency problem"
-msgstr "Ayikwazi ukufaka %s ngenxa yezinkinga zohlelo oluncike kwezinye"
+#. TranslatorExplanation %1%(filename1) %2%(package1) %3%(filename2) %4%(package2)
+#: zypp/sat/FileConflicts.cc:93
+#, boost-format
+msgid ""
+"File %1%\n"
+"  from install of\n"
+"     %2%\n"
+"  conflicts with file\n"
+"     %3%\n"
+"  from install of\n"
+"     %4%"
+msgstr ""
 
-#. translators: 'uninstallable' == 'not installable'
-#: zypp/solver/detail/SATResolver.cc:1084
 #, fuzzy
-msgid "uninstallable providers: "
-msgstr "Abekho abanye abaphakeli abafakiwe be-%s"
+#~ msgid "do not keep %s installed"
+#~ msgstr "alufakiwe"
 
-#: zypp/VendorSupportOptions.cc:14
-msgid "unknown"
-msgstr "akwaziwa"
+#, fuzzy
+#~ msgid "Failed to download %s from %s"
+#~ msgstr "Ayikwazi ukuvula %s - %s\n"
 
-#: zypp/VendorSupportOptions.cc:17
-msgid "unsupported"
-msgstr ""
+#~ msgid "Serbia and Montenegro"
+#~ msgstr "Serbia ne-Montenegro"
 
-#: zypp/solver/detail/SATResolver.cc:1000
-msgid "unsupported request"
-msgstr ""
+#, fuzzy
+#~ msgid "Unknown Distribution"
+#~ msgstr "Uhlu olungaziwa okukhethwa kulo"
 
 #, fuzzy
+#~ msgid "ignore some dependencies of %s"
+#~ msgstr "ayikwazanga ukuxazulula izinhlelo ezincike kwezinye"
+
 #~ msgid ""
-#~ "\n"
-#~ "There is no resource available which supports this requirement."
+#~ "File %s does not have a checksum.\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "Awukho umthombo otholakalayo osekela lemfuneko."
+#~ "Ifayela %s ayinayo i-checksum.\n"
+#~ "Nokho yisebenzise ifayela?"
 
 #~ msgid ""
-#~ "\n"
-#~ "These resolvables will be deleted from the system."
+#~ "File %s failed integrity check with the folowing key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "\n"
-#~ "Lezi zixazululi zizosulwa kwisistimu."
-
-#~ msgid " Error!"
-#~ msgstr "Iphutha!"
-
-#~ msgid " Important!"
-#~ msgstr "Kubalulekile!"
-
-#~ msgid " fails checksum verification."
-#~ msgstr "ihlulekile lapho kufakazelwa i-checksum."
-
-#~ msgid " miss checksum."
-#~ msgstr "yeqe i-checksum."
-
-#~ msgid "%s cannot be installed due to missing dependencies"
-#~ msgstr "%s ayikwazi ukufkwa ngenxa yezinhlelo encike kuzo ezilahlekile"
-
-#~ msgid "%s conflicts with other resolvables"
-#~ msgstr "%s ixabana nezinye izixazululi"
+#~ "Ifayela %s yehlulekile ekuhlolweni kokwethembeka ngesikhiye "
+#~ "esilandelayo:\n"
+#~ "%s|%s|%s\n"
+#~ " Nokho yisebenzise ifayela?"
 
 #~ msgid ""
-#~ "%s conflicts with:\n"
-#~ "%s"
+#~ "File %s has an invalid checksum.\n"
+#~ "Expected %s, found %s\n"
+#~ "Use the file anyway?"
 #~ msgstr ""
-#~ "%s ixabana ne-:\n"
-#~ "%s"
-
-#~ msgid "%s depended on %s"
-#~ msgstr "%s yencike kwi- %s"
-
-#~ msgid "%s dependend on %s"
-#~ msgstr "%s ibincike kwi- %s"
+#~ "Ifayela %s ine-checksum engasebenzi.\n"
+#~ "Bekulindeleke %s, kwatholakala %s\n"
+#~ " Nokho yisebenzise ifayela?"
 
-#~ msgid "%s depends on %s"
-#~ msgstr "%s yencike kwi- %s"
+#~ msgid ""
+#~ "File %s has an unknown checksum %s.\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Ifayela %s ine-checksum engaziwa %s.\n"
+#~ "Nokho yisebenzise ifayela?"
 
-#~ msgid "%s depends on other resolvables"
-#~ msgstr "%s yenzike kwezinye izixazululi"
+#~ msgid ""
+#~ "File %s is not signed.\n"
+#~ "Use it anyway?"
+#~ msgstr ""
+#~ "Ifayela %s ayisayiniwe.\n"
+#~ "Nokho yisebenzise?"
 
-#~ msgid "%s depends on:%s"
-#~ msgstr "%s yencike kwi-:%s"
+#~ msgid ""
+#~ "File %s is signed with an unknown key:\n"
+#~ "%s|%s|%s\n"
+#~ "Use the file anyway?"
+#~ msgstr ""
+#~ "Ifayela %s isayinwe ngesikhiye esingaziwa:\n"
+#~ "%s|%s|%s\n"
+#~ " Nokho yisebenzise ifayela?"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
+#~ msgid ""
+#~ "Untrusted key found:\n"
+#~ "%s|%s|%s\n"
+#~ "Trust key?"
 #~ msgstr ""
-#~ "%s igcwalisa izinhlelo okuncikwe kuzo ze-%s kodwa izogcinwa kwisistimu "
-#~ "yakho"
+#~ "Isikhiye esingenakwethenjwa sitholakele:\n"
+#~ "%s|%s|%s\n"
+#~ " Sethembe isikhiye?"
 
-#, fuzzy
-#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
-#~ msgstr "%s igcwalisa izinhlelo okuncikwe kuzo ze-%s kodwa izokhishwa"
+#~ msgid "%s remove failed"
+#~ msgstr "Ukususa i-%s akuphumelelanga"
 
-#~ msgid "%s has missing dependencies"
-#~ msgstr "%s inezinhlelo encike kuzo ezilahlekile"
+#, fuzzy
+#~ msgid "Invalid user name or password."
+#~ msgstr "Iphasiwedi ye-CA engekho emthethweni."
 
-#~ msgid "%s has unfulfilled requirements"
-#~ msgstr "%s inezimfuneko ezingagcwalisiwe"
+#~ msgid "rpm output:"
+#~ msgstr "okukhishiwe kwe-rpm:"
 
 #~ msgid "%s install failed"
 #~ msgstr "ukufakwa kwe-%s akuphumelelanga"
@@ -4898,132 +4914,85 @@ msgstr ""
 #~ msgid "%s installed ok"
 #~ msgstr "%s efakiwe ilungile"
 
-#, fuzzy
-#~ msgid "%s is enhanced by %s"
-#~ msgstr "%s ithathelwa indawo yi- %s"
-
-#, fuzzy
-#~ msgid "%s is freshened by %s"
-#~ msgstr "%s idingwa yi- %s"
+#~ msgid "%s remove ok"
+#~ msgstr "ukususa i-%s kuphumelele"
 
 #, fuzzy
-#~ msgid "%s is lacking the requirement %s"
-#~ msgstr "%s ilahlekelwe into edingekayo %s"
-
-#~ msgid "%s is needed by other resolvables"
-#~ msgstr "%s idingwa ezinye izixazululi"
-
 #~ msgid ""
-#~ "%s is needed by:\n"
-#~ "%s"
+#~ "%s provides this dependency, but would change the architecture of the "
+#~ "installed item"
 #~ msgstr ""
-#~ "%s idingwa yi-:\n"
-#~ "%s"
-
-#~ msgid "%s is not installed and has been marked as uninstallable"
-#~ msgstr "%s ayifakwanga futhi iye yaphawulwa njengengafakeki"
-
-#, fuzzy
-#~ msgid "%s is recommended by %s"
-#~ msgstr "%s idingwa yi- %s"
-
-#~ msgid "%s is replaced by %s"
-#~ msgstr "%s ithathelwa indawo yi- %s"
+#~ "%s ihlinzeka ngalolu hlelo okuncikwe kulo kodwa ingabushintsha ubuciko "
+#~ "bomklamo bento efakiwe"
 
 #, fuzzy
 #~ msgid ""
-#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ "%s provides this dependency, but would change the vendor of the installed "
+#~ "item"
 #~ msgstr ""
-#~ "%s idingwa ngesinye isixazululi esifakiwe, ngakho ngeke ingalinkeki."
+#~ "%s ihlinzeka ngalolu hlelo okuncikwe kulo kodwa ingabushintsha ubuciko "
+#~ "bomklamo bento efakiwe"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s is required by another resolvable selected for installation, so it "
-#~ "won't be unlinked."
-#~ msgstr ""
-#~ "%s idingwa ngesinye isixazululi esifakiwe, ngakho ngeke ingalinkeki."
-
-#~ msgid ""
-#~ "%s is required by other to-be-installed resolvable, so it won't be "
-#~ "unlinked."
-#~ msgstr ""
-#~ "%s idingwa ngesinye isixazululi esizofakwa, ngakho ngeke ingalinkeki."
+#~ msgid "Do not install or delete the resolvables concerned"
+#~ msgstr "Ungafaki noma ususe maqondana nezixazululi"
 
-#, fuzzy
-#~ msgid ""
-#~ "%s is scheduled to be installed, but this is impossible due to dependency "
-#~ "problems."
-#~ msgstr ""
-#~ "%s ihlelelwe ukuba ifakwe, kodwa lokhu akunakwenzeka ngenxa yezinkinga "
-#~ "zezinhlelo okuncikwe kuzo."
+#~ msgid "Ignore that %s is already set to install"
+#~ msgstr "Kushaye indiva ukuthi i-%s isisethelwe ukufakwa kakade"
 
-#, fuzzy
-#~ msgid "%s is suggested by %s"
-#~ msgstr "%s idingwa yi- %s"
+#~ msgid "Ignore the obsolete %s in %s"
+#~ msgstr "Ishaye indiva into engasebenzi i-%s e-%s"
 
-#, fuzzy
-#~ msgid "%s is supplemented by %s"
-#~ msgstr "%s idingwa yi- %s"
+#~ msgid "Ignore this conflict of %s"
+#~ msgstr "Kushaye indiva lokhu kuxabana kwe-%s"
 
-#~ msgid "%s is uninstallable due to conflicts with %s"
-#~ msgstr "%s ayifakeki ngenxa yokuxabana ne- %s"
+#~ msgid "Ignore this requirement just here"
+#~ msgstr "Sishaye indiva lesi sidingo lapha nje kuphela"
 
 #, fuzzy
-#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
-#~ msgstr ""
-#~ "%s yenza ingasebenzi i-%s. Kodwa %s ayikwazi ukususwa ngoba ihluthulelwe."
-
-#~ msgid "%s obsoletes other resolvables"
-#~ msgstr "%s yenza ezinye izixazululi zingasebenzi"
+#~ msgid "Install %s although it would change the vendor"
+#~ msgstr "Faka %s nakuba izoshintsha ubuciko bomklamo"
 
-#~ msgid "%s part of %s"
-#~ msgstr "%s ingxenye ye- %s"
+#~ msgid "Install missing resolvables"
+#~ msgstr "Faka izixazululi ezilahlekile"
 
-#~ msgid "%s provides %s,  but is scheduled to be kept."
-#~ msgstr "%s ihlinzeka nge-%s, kodwa ihlelelwe ukuba igcinwe."
+#~ msgid "Keep resolvables"
+#~ msgstr "Gcina Izixazululi"
 
-#~ msgid "%s provides %s, but another version of that %s is already installed."
-#~ msgstr ""
-#~ "%s ihlinzeka nge-%s, kodwa olunye uhlelo lwale-%s selufakiwe kakade."
+#~ msgid "Unlock these resolvables"
+#~ msgstr "Vula izihluthulelo zalezi zixazululi"
 
-#, fuzzy
-#~ msgid "%s provides %s, but has another vendor (%s)."
-#~ msgstr "%s ihlinzeka nge-%s, kodwa inobunye ubuciko bomklamo."
+#~ msgid "delete %s"
+#~ msgstr "Susa %s"
 
-#~ msgid "%s provides %s, but is scheduled to be uninstalled."
-#~ msgstr "%s ihlinzeka nge-%s, kodwa ihlelelwe ukuba ikhishwe."
+#~ msgid "install %s"
+#~ msgstr "faka %s"
 
-#~ msgid "%s provides %s, but it is locked."
-#~ msgstr "%s ihlinzeka nge-%s, kodwa ihluthulelwe."
+#~ msgid "unlock %s"
+#~ msgstr "vula isihluthulelo se-%s"
 
-#~ msgid ""
-#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
-#~ "for more details."
-#~ msgstr ""
-#~ "%s ihlinzeka nge-%s, kodwa ayikhipheki.  Zama ukuyifaka yodwa ukuze "
-#~ "uthole imininingwane eyengeziwe."
+#~ msgid "unlock all resolvables"
+#~ msgstr "Vula izihluthulelo zezixazululi"
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the architecture of the "
-#~ "installed item"
-#~ msgstr ""
-#~ "%s ihlinzeka ngalolu hlelo okuncikwe kulo kodwa ingabushintsha ubuciko "
-#~ "bomklamo bento efakiwe"
+#~ msgid "Can't open solv-file: "
+#~ msgstr "Ayikwazi ukuvula ifayela %1."
 
 #, fuzzy
-#~ msgid ""
-#~ "%s provides this dependency, but would change the vendor of the installed "
-#~ "item"
-#~ msgstr ""
-#~ "%s ihlinzeka ngalolu hlelo okuncikwe kulo kodwa ingabushintsha ubuciko "
-#~ "bomklamo bento efakiwe"
+#~ msgid "Error reading solv-file: "
+#~ msgstr "Kwenzeke iphutha ifunda i-sector %u."
 
-#~ msgid "%s remove failed"
-#~ msgstr "Ukususa i-%s akuphumelelanga"
+#~ msgid "Path Parameter parsing not supported for this URL"
+#~ msgstr "Ukucazwa kwepharamitha yomgudu akusekelwa kule-URL"
+
+#~ msgid "Path parameter parsing not supported for this URL"
+#~ msgstr "Ukucazwa kwepharamitha yomgudu akusekelwa kule-URL"
+
+#~ msgid "Software management is already running."
+#~ msgstr "Ukulawulwa kwe-software sekuyasebenza kakade."
 
-#~ msgid "%s remove ok"
-#~ msgstr "ukususa i-%s kuphumelele"
+#~ msgid "%s is replaced by %s"
+#~ msgstr "%s ithathelwa indawo yi- %s"
 
 #~ msgid "%s replaced by %s"
 #~ msgstr "%s ingenelwe esikhundleni yi- %s"
@@ -5038,356 +5007,387 @@ msgstr ""
 #~ msgid "%s will be installed by the user.\n"
 #~ msgstr "%s ayinakukhishwa ngoba isadingeka namanje"
 
-#, fuzzy
-#~ msgid "%s will not be uninstalled, because it is still required"
-#~ msgstr "%s ayinakukhishwa ngoba isadingeka namanje"
-
-#~ msgid ", Action: "
-#~ msgstr ", Isinyathelo:"
+#~ msgid "Invalid information"
+#~ msgstr "ukwaziswa okungasebenzi"
 
-#~ msgid ", Trigger: "
-#~ msgstr ", Qalisa:"
+#~ msgid "%s is needed by other resolvables"
+#~ msgstr "%s idingwa ezinye izixazululi"
 
-#, fuzzy
 #~ msgid ""
-#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
-#~ "installation"
-#~ msgstr "Ingxabano nge-%s (%s) idinga ukususwa kwe-%s ezofakwa "
+#~ "%s is needed by:\n"
+#~ "%s"
+#~ msgstr ""
+#~ "%s idingwa yi-:\n"
+#~ "%s"
+
+#~ msgid "%s conflicts with other resolvables"
+#~ msgstr "%s ixabana nezinye izixazululi"
 
 #~ msgid ""
-#~ "At least one source already registered, stored sources cannot be restored."
+#~ "%s conflicts with:\n"
+#~ "%s"
 #~ msgstr ""
-#~ "Okungenani umthombo owodwa usubhalisiwe kakade, imithombo egciniwe "
-#~ "ayinakubuyiselwa."
+#~ "%s ixabana ne-:\n"
+#~ "%s"
+
+#~ msgid "%s obsoletes other resolvables"
+#~ msgstr "%s yenza ezinye izixazululi zingasebenzi"
 
-#, fuzzy
 #~ msgid ""
-#~ "Can't install %s since it is already marked as needed to be uninstalled"
-#~ msgstr "Ayikwazi ukufaka i-%s njengoba isiphawulwe ukuthi idinga ukukhiswa"
+#~ "\n"
+#~ "These resolvables will be deleted from the system."
+#~ msgstr ""
+#~ "\n"
+#~ "Lezi zixazululi zizosulwa kwisistimu."
+
+#~ msgid "%s depends on other resolvables"
+#~ msgstr "%s yenzike kwezinye izixazululi"
+
+#~ msgid "%s depends on %s"
+#~ msgstr "%s yencike kwi- %s"
+
+#~ msgid "%s depends on:%s"
+#~ msgstr "%s yencike kwi-:%s"
+
+#~ msgid "Child of"
+#~ msgstr "Ingane ka-"
 
 #, fuzzy
 #~ msgid ""
-#~ "Can't install %s, because %s is already marked as needed to for "
-#~ "installation"
+#~ "\n"
+#~ "There is no resource available which supports this requirement."
 #~ msgstr ""
-#~ "Ayikwazi ukufaka i-%s njengoba %s isiphawulwe ukuthi idinga ukukhiswa"
+#~ "\n"
+#~ "Awukho umthombo otholakalayo osekela lemfuneko."
 
 #, fuzzy
-#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgid ""
+#~ "Due to the problems described above/below, this resolution will not solve "
+#~ "all dependencies"
 #~ msgstr ""
-#~ "Ayikwazi ukufaka i-%s njengoba ingakwazi ukuyisebenzisa kule sistimu."
+#~ "Izinkinga ezidlulelwe yisikhathi ezichazwe ngenhla/ngezansi kwalokhu "
+#~ "ngeke zixazulule zonke izinhlelo okuncikwe kuzo."
 
 #, fuzzy
-#~ msgid "Can't open solv-file: "
-#~ msgstr "Ayikwazi ukuvula ifayela %1."
+#~ msgid "Cannot install %s, because it is conflicting with %s"
+#~ msgstr "Ayikwazi ukufaka %s ngoba ixabana ne-%s"
 
-#~ msgid "Can't satisfy requirement %s for %s"
-#~ msgstr "Ayikwazi ukwanelisa isidingo se-%s ye-%s"
+#~ msgid "%s is not installed and has been marked as uninstallable"
+#~ msgstr "%s ayifakwanga futhi iye yaphawulwa njengengafakeki"
 
-#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
-#~ msgstr "Ayikwazi ukufaka %s ukze igcwalise izinhlelo okuncikwe kuzo ze%s"
+#~ msgid "%s has unfulfilled requirements"
+#~ msgstr "%s inezimfuneko ezingagcwalisiwe"
 
-#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgid "%s has missing dependencies"
+#~ msgstr "%s inezinhlelo encike kuzo ezilahlekile"
+
+#~ msgid "%s cannot be installed due to missing dependencies"
+#~ msgstr "%s ayikwazi ukufkwa ngenxa yezinhlelo encike kuzo ezilahlekile"
+
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be uninstalled"
+#~ msgstr "%s igcwalisa izinhlelo okuncikwe kuzo ze-%s kodwa izokhishwa"
+
+#, fuzzy
+#~ msgid "%s fulfills dependencies of %s but will be kept on your system"
 #~ msgstr ""
-#~ "Ayikwazi ukwakha ifayela edingekayo ukuze ifake uhlelo lokuvuselela."
+#~ "%s igcwalisa izinhlelo okuncikwe kuzo ze-%s kodwa izogcinwa kwisistimu "
+#~ "yakho"
 
-#~ msgid "Cannot install %s to fulfil the dependencies of %s"
-#~ msgstr "Ayikwazi ukufaka %s ukuze igcwalise izinhlelo okuncikwe kuzo ze-%s"
+#~ msgid "No need to install %s"
+#~ msgstr "Asikho isidingo sokuyifaka %s"
 
 #, fuzzy
 #~ msgid "Cannot install %s to fulfill the dependencies of %s"
 #~ msgstr "Ayikwazi ukufaka %s ukuze igcwalise izinhlelo okuncikwe kuzo ze-%s"
 
+#~ msgid "Cannot install %s to fulfil the dependencies of %s"
+#~ msgstr "Ayikwazi ukufaka %s ukuze igcwalise izinhlelo okuncikwe kuzo ze-%s"
+
+#, fuzzy
+#~ msgid "%s will not be uninstalled, because it is still required"
+#~ msgstr "%s ayinakukhishwa ngoba isadingeka namanje"
+
+#, fuzzy
+#~ msgid "%s obsoletes %s. But %s cannot be deleted, because it is locked."
+#~ msgstr ""
+#~ "%s yenza ingasebenzi i-%s. Kodwa %s ayikwazi ukususwa ngoba ihluthulelwe."
+
 #, fuzzy
 #~ msgid "Cannot install %s, because it is conflicting"
 #~ msgstr "Ayikwazi ukufaka %s ngoba iyaxabana"
 
-#, fuzzy
-#~ msgid "Cannot install %s, because it is conflicting with %s"
-#~ msgstr "Ayikwazi ukufaka %s ngoba ixabana ne-%s"
+#~ msgid "%s is uninstallable due to conflicts with %s"
+#~ msgstr "%s ayifakeki ngenxa yokuxabana ne- %s"
 
-#~ msgid "Child of"
-#~ msgstr "Ingane ka-"
+#~ msgid "for requiring %s for %s when upgrading %s"
+#~ msgstr "ngokudinga i-%s ye-%s lapho kuvuselelwa uhlelo %s"
 
 #, fuzzy
-#~ msgid "Do not install or delete the resolvables concerned"
-#~ msgstr "Ungafaki noma ususe maqondana nezixazululi"
+#~ msgid "%s is lacking the requirement %s"
+#~ msgstr "%s ilahlekelwe into edingekayo %s"
 
-#, fuzzy
-#~ msgid "Double timeout"
-#~ msgstr "<b>Ukuchofoza Kabili Kuphelelwe Isikhathi </b>"
+#~ msgid ", Action: "
+#~ msgstr ", Isinyathelo:"
 
-#~ msgid "Downloading %s"
-#~ msgstr "Ilanda i-%s"
+#~ msgid ", Trigger: "
+#~ msgstr ", Qalisa:"
 
-#, fuzzy
-#~ msgid ""
-#~ "Due to the problems described above/below, this resolution will not solve "
-#~ "all dependencies"
-#~ msgstr ""
-#~ "Izinkinga ezidlulelwe yisikhathi ezichazwe ngenhla/ngezansi kwalokhu "
-#~ "ngeke zixazulule zonke izinhlelo okuncikwe kuzo."
+#~ msgid "package"
+#~ msgstr "iphakheji"
 
-#, fuzzy
-#~ msgid "Error reading solv-file: "
-#~ msgstr "Kwenzeke iphutha ifunda i-sector %u."
+#~ msgid "selection"
+#~ msgstr "okukhethiwe"
 
-#~ msgid "Establishing %s"
-#~ msgstr "Imisa %s"
+#~ msgid "pattern"
+#~ msgstr "iphethini"
 
-#, fuzzy
-#~ msgid "Failed to download %s from %s"
-#~ msgstr "Ayikwazi ukuvula %s - %s\n"
+#~ msgid "product"
+#~ msgstr "umkhiqizo"
 
-#~ msgid ""
-#~ "File %s does not have a checksum.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "Ifayela %s ayinayo i-checksum.\n"
-#~ "Nokho yisebenzise ifayela?"
+#~ msgid "patch"
+#~ msgstr "isichibiyelo"
 
-#~ msgid ""
-#~ "File %s failed integrity check with the folowing key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "Ifayela %s yehlulekile ekuhlolweni kokwethembeka ngesikhiye "
-#~ "esilandelayo:\n"
-#~ "%s|%s|%s\n"
-#~ " Nokho yisebenzise ifayela?"
+#~ msgid "script"
+#~ msgstr "I-script"
 
-#~ msgid ""
-#~ "File %s has an invalid checksum.\n"
-#~ "Expected %s, found %s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "Ifayela %s ine-checksum engasebenzi.\n"
-#~ "Bekulindeleke %s, kwatholakala %s\n"
-#~ " Nokho yisebenzise ifayela?"
+#~ msgid "message"
+#~ msgstr "umyalezo"
 
-#~ msgid ""
-#~ "File %s has an unknown checksum %s.\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "Ifayela %s ine-checksum engaziwa %s.\n"
-#~ "Nokho yisebenzise ifayela?"
+#~ msgid "atom"
+#~ msgstr "i-athomu"
 
-#~ msgid ""
-#~ "File %s is not signed.\n"
-#~ "Use it anyway?"
-#~ msgstr ""
-#~ "Ifayela %s ayisayiniwe.\n"
-#~ "Nokho yisebenzise?"
+#~ msgid "system"
+#~ msgstr "isistimu"
 
-#~ msgid ""
-#~ "File %s is signed with an unknown key:\n"
-#~ "%s|%s|%s\n"
-#~ "Use the file anyway?"
-#~ msgstr ""
-#~ "Ifayela %s isayinwe ngesikhiye esingaziwa:\n"
-#~ "%s|%s|%s\n"
-#~ " Nokho yisebenzise ifayela?"
+#~ msgid "Resolvable"
+#~ msgstr "Isixazululi"
 
-#~ msgid "Ignore that %s is already set to install"
-#~ msgstr "Kushaye indiva ukuthi i-%s isisethelwe ukufakwa kakade"
+#~ msgid "Marking this resolution attempt as invalid."
+#~ msgstr "Ukuphawula lomzamo we-resolution akusebenzi."
 
-#~ msgid "Ignore the obsolete %s in %s"
-#~ msgstr "Ishaye indiva into engasebenzi i-%s e-%s"
+#~ msgid "Marking resolvable %s as uninstallable"
+#~ msgstr "Ukuphawula isixazululi %s njengesingafakeki"
 
-#~ msgid "Ignore this conflict of %s"
-#~ msgstr "Kushaye indiva lokhu kuxabana kwe-%s"
+#, fuzzy
+#~ msgid ""
+#~ "%s is scheduled to be installed, but this is impossible due to dependency "
+#~ "problems."
+#~ msgstr ""
+#~ "%s ihlelelwe ukuba ifakwe, kodwa lokhu akunakwenzeka ngenxa yezinkinga "
+#~ "zezinhlelo okuncikwe kuzo."
 
-#~ msgid "Ignore this requirement generally"
-#~ msgstr "Sishaye indiva lesi sidingo kaningi"
+#, fuzzy
+#~ msgid ""
+#~ "Can't install %s since it is already marked as needed to be uninstalled"
+#~ msgstr "Ayikwazi ukufaka i-%s njengoba isiphawulwe ukuthi idinga ukukhiswa"
 
-#~ msgid "Ignore this requirement just here"
-#~ msgstr "Sishaye indiva lesi sidingo lapha nje kuphela"
+#, fuzzy
+#~ msgid "Can't install %s, because it does not apply to this system."
+#~ msgstr ""
+#~ "Ayikwazi ukufaka i-%s njengoba ingakwazi ukuyisebenzisa kule sistimu."
 
 #, fuzzy
-#~ msgid "Install %s although it would change the vendor"
-#~ msgstr "Faka %s nakuba izoshintsha ubuciko bomklamo"
+#~ msgid ""
+#~ "Can't install %s, because %s is already marked as needed to for "
+#~ "installation"
+#~ msgstr ""
+#~ "Ayikwazi ukufaka i-%s njengoba %s isiphawulwe ukuthi idinga ukukhiswa"
+
+#~ msgid "This would invalidate %s."
+#~ msgstr "Lokhu kuzokwenza i-%s ingasebenzi."
 
-#~ msgid "Install missing resolvables"
-#~ msgstr "Faka izixazululi ezilahlekile"
+#~ msgid "Establishing %s"
+#~ msgstr "Imisa %s"
 
 #~ msgid "Installing %s"
 #~ msgstr "Ifaka %s"
 
-#~ msgid "Invalid information"
-#~ msgstr "ukwaziswa okungasebenzi"
+#~ msgid "Updating %s to %s"
+#~ msgstr "Ivuselela %s kwi-%s"
 
-#, fuzzy
-#~ msgid "Invalid user name or password."
-#~ msgstr "Iphasiwedi ye-CA engekho emthethweni."
+#~ msgid "Skipping %s: already installed"
+#~ msgstr "Yeqa %s: isifakiwe kakade"
 
-#~ msgid "Keep resolvables"
-#~ msgstr "Gcina Izixazululi"
+#, fuzzy
+#~ msgid "There are no alternative providers of %s installed"
+#~ msgstr "Abekho abanye abaphakeli abafakiwe be-%s"
 
-#~ msgid "Marking %s as uninstallable due to conflicts over %s"
-#~ msgstr "Ukuphawula i-%s njengengafakeki ngenxa yezingxabano nge-%s"
+#~ msgid "for %s"
+#~ msgstr "nge-%s"
 
-#~ msgid "Marking resolvable %s as uninstallable"
-#~ msgstr "Ukuphawula isixazululi %s njengesingafakeki"
+#, fuzzy
+#~ msgid "Upgrading to %s to avoid removing %s is not possible."
+#~ msgstr "Ukuvuselela kwi-%s ukuze ugweme ukususa %s akunakwenzeka."
 
-#~ msgid "Marking this resolution attempt as invalid."
-#~ msgstr "Ukuphawula lomzamo we-resolution akusebenzi."
+#~ msgid "%s provides %s, but is scheduled to be uninstalled."
+#~ msgstr "%s ihlinzeka nge-%s, kodwa ihlelelwe ukuba ikhishwe."
 
-#~ msgid "No need to install %s"
-#~ msgstr "Asikho isidingo sokuyifaka %s"
+#~ msgid "%s provides %s, but another version of that %s is already installed."
+#~ msgstr ""
+#~ "%s ihlinzeka nge-%s, kodwa olunye uhlelo lwale-%s selufakiwe kakade."
 
-#, fuzzy
 #~ msgid ""
-#~ "Package %s fails integrity check. Do you want to retry, or abort "
-#~ "installation?"
+#~ "%s provides %s, but it is uninstallable.  Try installing it on its own "
+#~ "for more details."
 #~ msgstr ""
-#~ "Iphakheji %s ihlulekile lapho ihlolwa ukuthembeka. Ufuna ukuphinde uzame "
-#~ "ukuyilanda futhi, noma uyeke ukufaka uhlelo?"
-
-#~ msgid "Path Parameter parsing not supported for this URL"
-#~ msgstr "Ukucazwa kwepharamitha yomgudu akusekelwa kule-URL"
+#~ "%s ihlinzeka nge-%s, kodwa ayikhipheki.  Zama ukuyifaka yodwa ukuze "
+#~ "uthole imininingwane eyengeziwe."
 
-#~ msgid "Path parameter parsing not supported for this URL"
-#~ msgstr "Ukucazwa kwepharamitha yomgudu akusekelwa kule-URL"
+#~ msgid "%s provides %s, but it is locked."
+#~ msgstr "%s ihlinzeka nge-%s, kodwa ihluthulelwe."
 
-#~ msgid "Reading filelist from %s"
-#~ msgstr "Ifunda uhlu lwamafayela oluvela kwi-%s"
+#~ msgid "%s provides %s,  but is scheduled to be kept."
+#~ msgstr "%s ihlinzeka nge-%s, kodwa ihlelelwe ukuba igcinwe."
 
-#~ msgid "Reading index files"
-#~ msgstr "Ifuna amafayela e-index"
+#, fuzzy
+#~ msgid "%s provides %s, but has another vendor (%s)."
+#~ msgstr "%s ihlinzeka nge-%s, kodwa inobunye ubuciko bomklamo."
 
-#~ msgid "Reading packages file"
-#~ msgstr "Ifunda ifayela yamaphakheji"
+#~ msgid "Can't satisfy requirement %s for %s"
+#~ msgstr "Ayikwazi ukwanelisa isidingo se-%s ye-%s"
 
-#~ msgid "Reading packages from %s"
-#~ msgstr "Ifunda amaphakheji avela kwi-%s"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another resolvable selected for installation, so it "
+#~ "won't be unlinked."
+#~ msgstr ""
+#~ "%s idingwa ngesinye isixazululi esifakiwe, ngakho ngeke ingalinkeki."
 
-#~ msgid "Reading patch %s"
-#~ msgstr "Ifunda isichibiyelo %s"
+#, fuzzy
+#~ msgid ""
+#~ "%s is required by another installed resolvable, so it won't be unlinked."
+#~ msgstr ""
+#~ "%s idingwa ngesinye isixazululi esifakiwe, ngakho ngeke ingalinkeki."
 
-#~ msgid "Reading patches index %s"
-#~ msgstr "Ifunda i-index %s yezichibiyelo"
+#, fuzzy
+#~ msgid ""
+#~ "A conflict over %s (%s) requires the removal of %s which is scheduled for "
+#~ "installation"
+#~ msgstr "Ingxabano nge-%s (%s) idinga ukususwa kwe-%s ezofakwa "
 
-#~ msgid "Reading pattern from %s"
-#~ msgstr "Ifunda iphethini evela kwi-%s"
+#~ msgid "Marking %s as uninstallable due to conflicts over %s"
+#~ msgstr "Ukuphawula i-%s njengengafakeki ngenxa yezingxabano nge-%s"
 
-#~ msgid "Reading product from %s"
-#~ msgstr "Ifunda umkhiqizo ovela kwi-%s"
+#~ msgid "from %s"
+#~ msgstr "ivela %s"
 
-#~ msgid "Reading selection from %s"
-#~ msgstr "Ifunda okukhethiwe okuvela kwi-%s"
+#~ msgid " Error!"
+#~ msgstr "Iphutha!"
 
-#~ msgid "Reading translation: %s"
-#~ msgstr "Ifunda inkumusho: %s"
+#~ msgid " Important!"
+#~ msgstr "Kubalulekile!"
 
-#~ msgid "Resolvable"
-#~ msgstr "Isixazululi"
+#~ msgid "%s depended on %s"
+#~ msgstr "%s yencike kwi- %s"
 
-#~ msgid "Serbia and Montenegro"
-#~ msgstr "Serbia ne-Montenegro"
+#, fuzzy
+#~ msgid "%s is recommended by %s"
+#~ msgstr "%s idingwa yi- %s"
 
-#~ msgid "Skipping %s: already installed"
-#~ msgstr "Yeqa %s: isifakiwe kakade"
+#, fuzzy
+#~ msgid "%s is suggested by %s"
+#~ msgstr "%s idingwa yi- %s"
 
-#~ msgid "Software management is already running."
-#~ msgstr "Ukulawulwa kwe-software sekuyasebenza kakade."
+#, fuzzy
+#~ msgid "%s is enhanced by %s"
+#~ msgstr "%s ithathelwa indawo yi- %s"
 
-#~ msgid "The script file failed the checksum test."
-#~ msgstr "I-script sihlulekile lapho kwenziwa ukuhlolwa kwe-checksum."
+#, fuzzy
+#~ msgid "%s is supplemented by %s"
+#~ msgstr "%s idingwa yi- %s"
 
-#~ msgid "The signed repomd.xml file failed the signature check."
-#~ msgstr "Ifayela ye-repomd.xml esayiniwe ihlulekile lapho ihlolwa isignisha."
+#~ msgid "%s part of %s"
+#~ msgstr "%s ingxenye ye- %s"
 
 #, fuzzy
-#~ msgid "There are no alternative providers of %s installed"
-#~ msgstr "Abekho abanye abaphakeli abafakiwe be-%s"
+#~ msgid "Double timeout"
+#~ msgstr "<b>Ukuchofoza Kabili Kuphelelwe Isikhathi </b>"
 
-#~ msgid "This would invalidate %s."
-#~ msgstr "Lokhu kuzokwenza i-%s ingasebenzi."
+#, fuzzy
+#~ msgid "%s is freshened by %s"
+#~ msgstr "%s idingwa yi- %s"
 
 #~ msgid "Unable to parse Url authority"
 #~ msgstr "Ayikwazi ukucaza igunya le-Url"
 
-#~ msgid "Unable to restore all sources."
-#~ msgstr "Ayikwazi ukubuyisela yonke imithombo."
-
-#, fuzzy
-#~ msgid "Unknown Distribution"
-#~ msgstr "Uhlu olungaziwa okukhethwa kulo"
-
-#~ msgid "Unlock these resolvables"
-#~ msgstr "Vula izihluthulelo zalezi zixazululi"
+#~ msgid "Ignore this requirement generally"
+#~ msgstr "Sishaye indiva lesi sidingo kaningi"
 
 #~ msgid ""
-#~ "Untrusted key found:\n"
-#~ "%s|%s|%s\n"
-#~ "Trust key?"
+#~ "%s is required by other to-be-installed resolvable, so it won't be "
+#~ "unlinked."
 #~ msgstr ""
-#~ "Isikhiye esingenakwethenjwa sitholakele:\n"
-#~ "%s|%s|%s\n"
-#~ " Sethembe isikhiye?"
+#~ "%s idingwa ngesinye isixazululi esizofakwa, ngakho ngeke ingalinkeki."
 
-#~ msgid "Updating %s to %s"
-#~ msgstr "Ivuselela %s kwi-%s"
+#~ msgid "Cannot create a file needed to perform update installation."
+#~ msgstr ""
+#~ "Ayikwazi ukwakha ifayela edingekayo ukuze ifake uhlelo lokuvuselela."
 
-#, fuzzy
-#~ msgid "Upgrading to %s to avoid removing %s is not possible."
-#~ msgstr "Ukuvuselela kwi-%s ukuze ugweme ukususa %s akunakwenzeka."
+#~ msgid "Unable to restore all sources."
+#~ msgstr "Ayikwazi ukubuyisela yonke imithombo."
 
-#~ msgid "atom"
-#~ msgstr "i-athomu"
+#~ msgid ""
+#~ "At least one source already registered, stored sources cannot be restored."
+#~ msgstr ""
+#~ "Okungenani umthombo owodwa usubhalisiwe kakade, imithombo egciniwe "
+#~ "ayinakubuyiselwa."
 
-#~ msgid "delete %s"
-#~ msgstr "Susa %s"
+#~ msgid "Cannot be install %s to fulfil the dependencies of %s"
+#~ msgstr "Ayikwazi ukufaka %s ukze igcwalise izinhlelo okuncikwe kuzo ze%s"
 
-#, fuzzy
-#~ msgid "do not keep %s installed"
-#~ msgstr "alufakiwe"
+#~ msgid "%s dependend on %s"
+#~ msgstr "%s ibincike kwi- %s"
 
-#~ msgid "for %s"
-#~ msgstr "nge-%s"
+#~ msgid "Reading index files"
+#~ msgstr "Ifuna amafayela e-index"
 
-#~ msgid "for requiring %s for %s when upgrading %s"
-#~ msgstr "ngokudinga i-%s ye-%s lapho kuvuselelwa uhlelo %s"
+#~ msgid "The signed repomd.xml file failed the signature check."
+#~ msgstr "Ifayela ye-repomd.xml esayiniwe ihlulekile lapho ihlolwa isignisha."
 
-#~ msgid "from %s"
-#~ msgstr "ivela %s"
+#~ msgid "Reading product from %s"
+#~ msgstr "Ifunda umkhiqizo ovela kwi-%s"
 
-#, fuzzy
-#~ msgid "ignore some dependencies of %s"
-#~ msgstr "ayikwazanga ukuxazulula izinhlelo ezincike kwezinye"
+#~ msgid "Reading filelist from %s"
+#~ msgstr "Ifunda uhlu lwamafayela oluvela kwi-%s"
 
-#~ msgid "install %s"
-#~ msgstr "faka %s"
+#~ msgid "Reading packages from %s"
+#~ msgstr "Ifunda amaphakheji avela kwi-%s"
 
-#~ msgid "message"
-#~ msgstr "umyalezo"
+#~ msgid "Reading selection from %s"
+#~ msgstr "Ifunda okukhethiwe okuvela kwi-%s"
 
-#~ msgid "package"
-#~ msgstr "iphakheji"
+#~ msgid "Reading pattern from %s"
+#~ msgstr "Ifunda iphethini evela kwi-%s"
 
-#~ msgid "patch"
-#~ msgstr "isichibiyelo"
+#~ msgid "Reading patches index %s"
+#~ msgstr "Ifunda i-index %s yezichibiyelo"
 
-#~ msgid "pattern"
-#~ msgstr "iphethini"
+#~ msgid "Reading patch %s"
+#~ msgstr "Ifunda isichibiyelo %s"
 
-#~ msgid "product"
-#~ msgstr "umkhiqizo"
+#~ msgid "The script file failed the checksum test."
+#~ msgstr "I-script sihlulekile lapho kwenziwa ukuhlolwa kwe-checksum."
 
-#~ msgid "rpm output:"
-#~ msgstr "okukhishiwe kwe-rpm:"
+#~ msgid "Reading packages file"
+#~ msgstr "Ifunda ifayela yamaphakheji"
 
-#~ msgid "script"
-#~ msgstr "I-script"
+#~ msgid "Reading translation: %s"
+#~ msgstr "Ifunda inkumusho: %s"
 
-#~ msgid "selection"
-#~ msgstr "okukhethiwe"
+#, fuzzy
+#~ msgid ""
+#~ "Package %s fails integrity check. Do you want to retry, or abort "
+#~ "installation?"
+#~ msgstr ""
+#~ "Iphakheji %s ihlulekile lapho ihlolwa ukuthembeka. Ufuna ukuphinde uzame "
+#~ "ukuyilanda futhi, noma uyeke ukufaka uhlelo?"
 
-#~ msgid "system"
-#~ msgstr "isistimu"
+#~ msgid " miss checksum."
+#~ msgstr "yeqe i-checksum."
 
-#~ msgid "unlock %s"
-#~ msgstr "vula isihluthulelo se-%s"
+#~ msgid " fails checksum verification."
+#~ msgstr "ihlulekile lapho kufakazelwa i-checksum."
 
-#~ msgid "unlock all resolvables"
-#~ msgstr "Vula izihluthulelo zezixazululi"
+#~ msgid "Downloading %s"
+#~ msgstr "Ilanda i-%s"
index acf75bb..a93c4e7 100644 (file)
@@ -94,6 +94,10 @@ namespace zypp
     template<typename TIntegral>
     using ZeroInit = DefaultIntegral<TIntegral,TIntegral(0)>;
 
+    template<class Tp, Tp TInitial>
+    std::string asString( const DefaultIntegral<Tp,TInitial> & obj )
+    { return asString( obj.get() ); }
+
   /////////////////////////////////////////////////////////////////
 } // namespace zypp
 ///////////////////////////////////////////////////////////////////